<button id='overback' title='Step over back' class='${css.navigator}${css.stepButton} fa fa-reply' onclick=${function(){self.event.trigger('stepOverBack')}} disabled=${this.overBackDisabled} ></button>
<button id='intoback' title='Step back' class='${css.navigator}${css.stepButton} fa fa-level-up' onclick=${function(){self.event.trigger('stepIntoBack')}} disabled=${this.intoBackDisabled} ></button>
<button id='intoforward' title='Step into' class='${css.navigator}${css.stepButton} fa fa-level-down' onclick=${function(){self.event.trigger('stepIntoForward')}} disabled=${this.intoForwardDisabled} ></button>
<button id='overforward' title='Step over forward' class='${css.navigator}${css.stepButton} fa fa-share' onclick=${function(){self.event.trigger('stepOverForward')}} disabled=${this.overForwardDisabled} ></button>
</div>
<div class="${css.jumpButtons}">
<button id='jumppreviousbreakpoint' title='Jump to the previous breakpoint' class='${css.navigator}${css.jumpButton} fa fa-step-backward' onclick=${function(){self.event.trigger('jumpPreviousBreakpoint')}} disabled=${this.jumpPreviousBreakpointDisabled} ></button>
<button id='jumpout' title='Jump out' class='${css.navigator}${css.jumpButton} fa fa-eject' onclick=${function(){self.event.trigger('jumpOut')}} disabled=${this.jumpOutDisabled} ></button>
<button id='jumpnextbreakpoint' title='Jump to the next breakpoint' class='${css.navigator}${css.jumpButton} fa fa-step-forward' onclick=${function(){self.event.trigger('jumpNextBreakpoint')}} disabled=${this.jumpNextBreakpointDisabled} ></button>
</div>
<div id='reverted' style="display:none">
<button id='jumptoexception' title='Jump to exception' class='${css.navigator}${css.button} fa fa-exclamation-triangle' onclick=${function(){self.event.trigger('jumpToException',[self.revertionPoint])}} disabled=${this.jumpOutDisabled} >
</button>
<span>State changes made during this call will be reverted.</span>
<span id='outofgas' style="display:none">This call will run out of gas.</span>
<span id='parenthasthrown' style="display:none">The parent call will throw an exception</span>
<input class="${css.txinput}" id='txinput' onkeyup=${function(){self.updateTxN(arguments[0])}} type='text' placeholder=${'Transaction index or hash'} />