DBUG script with console stdout support
======================================================================================
Installation:
	- extract archive and put IMAGES dir on the same level with Autoit.exe file.
	- put Dbug.au3 to include dir (common or user)
======================================================================================
How to use:
	- add #include <Dbug.au3> in include section of you script or if you want to
	see stdout console during debug (ConsoleWrite and StdError messages)
	add #include <Dbug.au3>;CONSOLE DBUG (note: CONSOLE DBUG case sensitive,
	with one space between words)
	- for exclude part of code from debug use #Region STOP DBUG at the start of
	exluded region and #EndRegion START DBUG at the end (case sensitive with one space
	between words)
======================================================================================
Hotkeys list:
	F1 - short help
	Ctrl+F2 - set/reset breakpoint line
	F4 - pause execution
	F5 - run/resume execution
	F6 - activate main DBUG window
	F7 - step into
	F8 - step over
	F9 - run to cursor
	Ctrl+A - add selected expression from list to conditional breakpoint
	Ctrl+I - toggle on/off extended information for 1D/2D arrays
	Ctrl+L - load saved state from file
	Ctrl+R - restore original expressions list
	Ctrl+X - delete selected expression(s) from list
	Ins - insert new expression in list
	F2 - edit selected expression
	Ctrl+Enter - execute command
	Ctrl+Q - quit from DBUG
