diff --git a/applications/lazimageeditor/DLBitmap.pas b/applications/lazimageeditor/DLBitmap.pas
index f3df8f91c..e5c9f23dc 100644
--- a/applications/lazimageeditor/DLBitmap.pas
+++ b/applications/lazimageeditor/DLBitmap.pas
@@ -1,4 +1,4 @@
-unit DLBitmap;
+unit DLBitmap;
{$mode objfpc}{$H+}
@@ -6,7 +6,8 @@ interface
uses
Classes, SysUtils, LCLType, LCLIntf, LMessages, LCLProc, Controls, Graphics,
- Forms, Types, IntfGraphics, FPImage, Math, FPImgCanv, FPCanvas, ClipBrd;
+ Forms, Types, IntfGraphics, FPImage, Math, FPImgCanv, FPCanvas, StdCtrls,
+ ClipBrd, ExtCtrls;
type
tagRGBATRIPLE = record
@@ -72,6 +73,41 @@ type
property PaperColor: TColor read GetPaperColor write SetPaperColor;
end;
+ TTextEditor = class;
+
+ TTextEdit = class(TCustomEdit)
+ private
+ FCanvas: TCanvas;
+ protected
+ procedure KeyDown(var Key: Word; Shift: TShiftState); override;
+ public
+ Editor: TTextEditor;
+ constructor Create(AOwner: TComponent); override;
+ destructor Destroy; override;
+ procedure EraseBackground(DC: HDC); override;
+ property Canvas: TCanvas read FCanvas write FCanvas;
+ end;
+
+ TTextEditor = class(TCustomControl)
+ private
+ FEdit: TTextEdit;
+ FTimer: TIdleTimer;
+ flashnum: integer;
+ protected
+ procedure Paint; override;
+ procedure DrawFlashLine(Sender: TObject);
+ procedure Changing(Sender: TObject);
+ public
+ IMGCanvas: TCanvas;
+ PositionIndex, StartX, StartY, TextX, TextY: integer;
+ procedure StartEdit(ContainerX, ContainerY, IMGX, IMGY: integer);
+ procedure StopEdit;
+ constructor Create(AOwner: TComponent); override;
+ destructor Destroy; override;
+ procedure EraseBackground(DC: HDC); override;
+ property Editor: TTextEdit read FEdit write FEdit;
+ end;
+
procedure LazBMPRotate90(const aBitmap: TDLBitmap; IsTurnRight: boolean);
procedure BMPRotate90(const Bitmap: TDLBitmap);
procedure DrawSamePixel(ABitmap: TDLBitmap; Value: integer);
@@ -85,10 +121,10 @@ procedure ChangeRGB(SrcBmp: TDLBitmap; RedChange, GreenChange, BlueChange: integ
procedure ChangeBrightness(SrcBmp: TDLBitmap; ValueChange: integer);
procedure ChangeContrast(SrcBmp: TDLBitmap; ValueChange: integer);
procedure SprayPoints(DLBmp: TDLBitmap; X, Y: integer; Radians: integer; PColor: TColor);
-function GetRColor(const Color: TColor): Byte;
-function GetGColor(const Color: TColor): Byte;
-function GetBColor(const Color: TColor): Byte;
-procedure SprayPoints(aCanvas: TCanvas; X, Y: integer; Radians: Integer; PColor: TColor);
+function GetRColor(const Color: TColor): byte;
+function GetGColor(const Color: TColor): byte;
+function GetBColor(const Color: TColor): byte;
+procedure SprayPoints(aCanvas: TCanvas; X, Y: integer; Radians: integer; PColor: TColor);
implementation
@@ -386,5 +422,132 @@ begin
end;
+constructor TTextEdit.Create(AOwner: TComponent);
+begin
+ inherited;
+ BorderStyle := bsNone;
+ Width := 1;
+ Parent := TWinControl(AOwner);
+ FCanvas := TCanvas.Create;
+ FCanvas.Handle := GetDC(Self.Handle);
+ FCanvas.Brush.Style := bsClear;
+end;
+
+destructor TTextEdit.Destroy;
+begin
+ inherited;
+ FCanvas.Free;
+end;
+
+procedure TTextEdit.EraseBackground(DC: HDC);
+begin
+ inherited EraseBackground(DC);
+
+end;
+
+procedure TTextEdit.KeyDown(var Key: Word; Shift: TShiftState);
+begin
+ inherited;
+ if Editor.PositionIndex <> SelStart then
+ begin
+ Editor.PositionIndex := Length(Text); //SelStart;
+ Editor.DrawFlashLine(nil);
+ end;
+end;
+
+constructor TTextEditor.Create(AOwner: TComponent);
+begin
+ inherited;
+ BorderStyle := bsNone;
+ Width := 1;
+ Height := 16;
+ Parent := TWinControl(AOwner);
+ FEdit := TTextEdit.Create(AOwner);
+ FEdit.Parent := Self;
+ FEdit.Left := 3;
+ FEdit.Top := 0;
+ FEdit.Editor := Self;
+ FEdit.Show;
+ FTimer := TIdleTimer.Create(AOwner);
+ FTimer.OnTimer := @DrawFlashLine;
+ FTimer.Interval := 500;
+ FTimer.Enabled := False;
+ FEdit.OnChange := @Changing;
+ Visible := False;
+end;
+
+destructor TTextEditor.Destroy;
+begin
+ inherited;
+ FEdit.Free;
+ FTimer.Free;
+end;
+
+procedure TTextEditor.EraseBackground(DC: HDC);
+begin
+ inherited EraseBackground(DC);
+
+end;
+
+procedure TTextEditor.Paint;
+begin
+ inherited Paint;
+end;
+
+procedure TTextEditor.DrawFlashLine(Sender: TObject);
+var FlashLeft: integer; LeftText: string;
+begin
+ FEdit.SetFocus;
+ flashnum := flashnum + 1;
+ if flashnum > 1000 then
+ flashnum := 0;
+ if flashnum mod 2 = 0 then
+ Canvas.Pen.Color := clWhite
+ else
+ Canvas.Pen.Color := clBlack;
+ LeftText := Copy(FEdit.Text, 1, PositionIndex);
+ FlashLeft := StartX + Canvas.TextWidth(LeftText);
+ Left := FlashLeft;
+ Top := StartY;
+ Canvas.Line(0, 0, 0, Height);
+end;
+
+procedure TTextEditor.StartEdit(ContainerX, ContainerY, IMGX, IMGY: integer);
+begin
+ if IMGCanvas = nil then
+ Exit;
+ Left := ContainerX;
+ Top := ContainerY;
+ StartX := ContainerX;
+ StartY := ContainerY;
+ TextX := IMGX;
+ TextY := IMGY;
+ FEdit.Text := '';
+ Show;
+ FTimer.Enabled := True;
+end;
+
+procedure TTextEditor.StopEdit;
+begin
+ FTimer.Enabled := False;
+ Hide;
+end;
+
+procedure TTextEditor.Changing(Sender: TObject);
+var TextLeft: integer; LeftText, RightText: string;
+begin
+ LeftText := Copy(FEdit.Text, 1, PositionIndex);
+ RightText := Copy(FEdit.Text, PositionIndex + 1, Length(FEdit.text));
+ TextLeft := TextX + Canvas.TextWidth(LeftText);
+ if IMGCanvas = nil then
+ Exit;
+ //IMGCanvas.TextOut(22, 22, FEdit.Text);
+ IMGCanvas.Brush.Style := bsClear;
+ IMGCanvas.TextOut(TextLeft, TextY, RightText);
+ //if PositionIndex <> FEdit.SelStart then
+ // PositionIndex := FEdit.SelStart;
+ PositionIndex := Length(FEdit.Text);
+end;
+
end.
diff --git a/applications/lazimageeditor/DLBmpUtils.inc b/applications/lazimageeditor/DLBmpUtils.inc
index 85e8f7268..e297e2c15 100644
--- a/applications/lazimageeditor/DLBmpUtils.inc
+++ b/applications/lazimageeditor/DLBmpUtils.inc
@@ -560,7 +560,7 @@ end;
procedure SprayPoints(aCanvas: TCanvas; X, Y: integer; Radians: Integer; PColor: TColor);
var
- i, a, b, temp, ci, center: Integer;
+ i, a, b, temp, ci, center, Radian2, Radian3: Integer;
begin
if aCanvas = nil then
Exit;
@@ -574,35 +574,25 @@ begin
b := Random(Round(Radians * 0.65));
if (temp < 50) then b := 0 - b;
if (a * a + b * b < Sqr(Round(Radians * 0.65))) then
- begin
aCanvas.Pixels[X + a, Y + b] := PColor;
- end;
- end;
- for i := 0 to Radians div 3 do
- begin
+ Radian2 := Radians div 3;
temp := Random(100);
- a := Random(Round(Radians * 0.65));
+ a := Random(Round(Radian2 * 0.65));
if (temp < 50) then a := 0 - a;
temp := Random(100);
- b := Random(Round(Radians * 0.65));
+ b := Random(Round(Radian2 * 0.65));
if (temp < 50) then b := 0 - b;
- if (a * a + b * b < Sqr(Round(Radians * 0.65))) then
- begin
+ if (a * a + b * b < Sqr(Round(Radian2 * 0.65))) then
aCanvas.Pixels[X + a, Y + b] := PColor;
- end;
- end;
- for i := 0 to Radians * 2 div 3 do
- begin
+ Radian3 := Radians * 2 div 3;
temp := Random(100);
- a := Random(Round(Radians * 0.65));
+ a := Random(Round(Radian3 * 0.65));
if (temp < 50) then a := 0 - a;
temp := Random(100);
- b := Random(Round(Radians * 0.65));
+ b := Random(Round(Radian3 * 0.65));
if (temp < 50) then b := 0 - b;
- if (a * a + b * b < Sqr(Round(Radians * 0.65))) then
- begin
+ if (a * a + b * b < Sqr(Round(Radian3 * 0.65))) then
aCanvas.Pixels[X + a, Y + b] := PColor;
- end;
end;
end;
diff --git a/applications/lazimageeditor/lazimageeditor.lpi b/applications/lazimageeditor/lazimageeditor.lpi
index 2bb0250c4..59a1a9dba 100644
--- a/applications/lazimageeditor/lazimageeditor.lpi
+++ b/applications/lazimageeditor/lazimageeditor.lpi
@@ -50,7 +50,7 @@
-
+
@@ -60,23 +60,23 @@
+
-
-
-
+
+
+
-
-
-
-
+
+
+
@@ -172,8 +172,8 @@
-
-
+
+
@@ -181,9 +181,9 @@
-
+
-
+
@@ -336,8 +336,8 @@
-
-
+
+
@@ -360,9 +360,9 @@
-
-
-
+
+
+
@@ -385,17 +385,17 @@
-
-
+
+
-
-
-
+
+
+
@@ -409,124 +409,124 @@
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
diff --git a/applications/lazimageeditor/main.lfm b/applications/lazimageeditor/main.lfm
index de6b0ac4e..2005040a1 100644
--- a/applications/lazimageeditor/main.lfm
+++ b/applications/lazimageeditor/main.lfm
@@ -1,7 +1,7 @@
object MainForm: TMainForm
- Left = 135
+ Left = 260
Height = 681
- Top = 90
+ Top = 147
Width = 935
Caption = 'Lazarus Image Editor'
ClientHeight = 659
@@ -40,6 +40,7 @@
Images = ImageListTools
Indent = 0
TabOrder = 0
+ OnClick = ToolBarToolsClick
object ToolSpray: TToolButton
Left = 0
Hint = 'Spray'
@@ -153,11 +154,22 @@
end
object ToolBrush: TToolButton
Left = 0
+ Hint = 'Brush'
Top = 402
Caption = 'ToolBrush'
+ Grouped = True
ImageIndex = 5
OnClick = ToolBrushClick
end
+ object ToolText: TToolButton
+ Left = 0
+ Hint = 'Text'
+ Top = 442
+ Caption = 'ToolBrush'
+ Grouped = True
+ ImageIndex = 5
+ OnClick = ToolTextClick
+ end
end
end
object StatusBar: TStatusBar
@@ -387,7 +399,7 @@
object ComboBoxZoom: TComboBox
Left = 0
Height = 27
- Top = 2
+ Top = 3
Width = 76
Anchors = [akLeft]
ItemHeight = 19
@@ -422,6 +434,43 @@
ImageIndex = 11
OnClick = ZoomOutBtnClick
end
+ object ToolButton1: TToolButton
+ Left = 534
+ Top = 0
+ Width = 8
+ Caption = 'ToolButton1'
+ Style = tbsSeparator
+ end
+ object Panel1: TPanel
+ Left = 542
+ Height = 32
+ Top = 0
+ Width = 168
+ BevelOuter = bvNone
+ ClientHeight = 32
+ ClientWidth = 168
+ TabOrder = 1
+ object FontListBox: TComboBox
+ Left = 2
+ Height = 27
+ Top = 3
+ Width = 112
+ ItemHeight = 19
+ OnChange = FontListBoxChange
+ OnClick = FontListBoxClick
+ Style = csDropDownList
+ TabOrder = 0
+ end
+ object FontSize: TSpinEdit
+ Left = 117
+ Height = 27
+ Top = 3
+ Width = 50
+ OnChange = FontSizeChange
+ TabOrder = 1
+ Value = 10
+ end
+ end
end
object PanelOptions: TPanel
Left = 0
@@ -1299,9 +1348,9 @@
TabOrder = 5
object checkFuzzy: TCheckBox
Left = 4
- Height = 23
+ Height = 19
Top = 9
- Width = 24
+ Width = 20
OnChange = checkFuzzyChange
TabOrder = 0
end
diff --git a/applications/lazimageeditor/main.lrs b/applications/lazimageeditor/main.lrs
index 13c89e04f..0cbd51797 100644
--- a/applications/lazimageeditor/main.lrs
+++ b/applications/lazimageeditor/main.lrs
@@ -1,7 +1,7 @@
{ This is an automatically generated lazarus resource file }
LazarusResources.Add('TMainForm','FORMDATA',[
- 'TPF0'#9'TMainForm'#8'MainForm'#4'Left'#3#135#0#6'Height'#3#169#2#3'Top'#2'Z'
+ 'TPF0'#9'TMainForm'#8'MainForm'#4'Left'#3#4#1#6'Height'#3#169#2#3'Top'#3#147#0
+#5'Width'#3#167#3#7'Caption'#6#20'Lazarus Image Editor'#12'ClientHeight'#3
+#147#2#11'ClientWidth'#3#167#3#12'Font.CharSet'#7#14'GB2312_CHARSET'#11'Font'
+'.Height'#2#243#9'Font.Name'#6#12#229#190#174#232#189#175#233#155#133#233#187
@@ -14,58 +14,61 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#2#0#6'Height'#3#20#2#3'Top'#2#0#5'Width'#2'('#5'Align'#7#6'alLeft'#12'Butto'
+'nHeight'#2'('#11'ButtonWidth'#2'('#7'Caption'#6#12'ToolBarTools'#21'Constra'
+'ints.MinHeight'#3#146#1#6'Images'#7#14'ImageListTools'#6'Indent'#2#0#8'TabO'
- +'rder'#2#0#0#11'TToolButton'#9'ToolSpray'#4'Left'#2#0#4'Hint'#6#5'Spray'#3'T'
- +'op'#3'j'#1#7'Grouped'#9#10'ImageIndex'#2#9#7'OnClick'#7#14'ToolSprayClick'
+ +'rder'#2#0#7'OnClick'#7#17'ToolBarToolsClick'#0#11'TToolButton'#9'ToolSpray'
+ +#4'Left'#2#0#4'Hint'#6#5'Spray'#3'Top'#3'j'#1#7'Grouped'#9#10'ImageIndex'#2#9
+ +#7'OnClick'#7#14'ToolSprayClick'#14'ParentShowHint'#8#8'ShowHint'#9#5'Style'
+ +#7#8'tbsCheck'#0#0#11'TToolButton'#13'ToolFloodFill'#4'Left'#2#0#4'Hint'#6#10
+ +'Flood Fill'#3'Top'#3'B'#1#7'Grouped'#9#10'ImageIndex'#2#8#7'OnClick'#7#18'T'
+ +'oolFloodFillClick'#14'ParentShowHint'#8#8'ShowHint'#9#5'Style'#7#8'tbsCheck'
+ +#0#0#11'TToolButton'#10'ToolEraser'#4'Left'#2#0#4'Hint'#6#15'Eraser/Replacer'
+ +#3'Top'#2'z'#7'Grouped'#9#10'ImageIndex'#2#3#7'OnClick'#7#15'ToolEraserClick'
+#14'ParentShowHint'#8#8'ShowHint'#9#5'Style'#7#8'tbsCheck'#0#0#11'TToolButto'
- +'n'#13'ToolFloodFill'#4'Left'#2#0#4'Hint'#6#10'Flood Fill'#3'Top'#3'B'#1#7'G'
- +'rouped'#9#10'ImageIndex'#2#8#7'OnClick'#7#18'ToolFloodFillClick'#14'ParentS'
- +'howHint'#8#8'ShowHint'#9#5'Style'#7#8'tbsCheck'#0#0#11'TToolButton'#10'Tool'
- +'Eraser'#4'Left'#2#0#4'Hint'#6#15'Eraser/Replacer'#3'Top'#2'z'#7'Grouped'#9
- +#10'ImageIndex'#2#3#7'OnClick'#7#15'ToolEraserClick'#14'ParentShowHint'#8#8
- +'ShowHint'#9#5'Style'#7#8'tbsCheck'#0#0#11'TToolButton'#7'ToolPen'#4'Left'#2
- +#0#4'Hint'#6#3'Pen'#3'Top'#2'R'#7'Grouped'#9#10'ImageIndex'#2#2#7'OnClick'#7
- +#12'ToolPenClick'#14'ParentShowHint'#8#8'ShowHint'#9#5'Style'#7#8'tbsCheck'#0
- +#0#11'TToolButton'#13'ToolColorPick'#4'Left'#2#0#4'Hint'#6#10'Color Pick'#3
- +'Top'#2'*'#7'Grouped'#9#10'ImageIndex'#2#1#7'OnClick'#7#18'ToolColorPickClic'
- +'k'#14'ParentShowHint'#8#8'ShowHint'#9#5'Style'#7#8'tbsCheck'#0#0#11'TToolBu'
- +'tton'#8'ToolMask'#4'Left'#2#0#4'Hint'#6#4'Mask'#3'Top'#2#2#7'Grouped'#9#10
- +'ImageIndex'#2#0#7'OnClick'#7#13'ToolMaskClick'#14'ParentShowHint'#8#8'ShowH'
- +'int'#9#5'Style'#7#8'tbsCheck'#0#0#11'TToolButton'#8'ToolLine'#4'Left'#2#0#4
- +'Hint'#6#4'Line'#3'Top'#3#162#0#4'Down'#9#7'Grouped'#9#10'ImageIndex'#2#4#7
- +'OnClick'#7#13'ToolLineClick'#14'ParentShowHint'#8#8'ShowHint'#9#5'Style'#7#8
- +'tbsCheck'#0#0#11'TToolButton'#13'ToolRectangle'#4'Left'#2#0#4'Hint'#6#27'Re'
- +'cTangle / Round Rectangle'#3'Top'#3#202#0#7'Grouped'#9#10'ImageIndex'#2#5#7
- +'OnClick'#7#18'ToolRectangleClick'#14'ParentShowHint'#8#8'ShowHint'#9#5'Styl'
- +'e'#7#8'tbsCheck'#0#0#11'TToolButton'#11'ToolPolygon'#4'Left'#2#0#4'Hint'#6#7
- +'Polygon'#3'Top'#3#26#1#7'Grouped'#9#10'ImageIndex'#2#7#7'OnClick'#7#16'Tool'
- +'PolygonClick'#14'ParentShowHint'#8#8'ShowHint'#9#5'Style'#7#8'tbsCheck'#0#0
- +#11'TToolButton'#11'ToolEllipse'#4'Left'#2#0#4'Hint'#6#7'Ellipse'#3'Top'#3
- +#242#0#7'Grouped'#9#10'ImageIndex'#2#6#7'OnClick'#7#12'ToolEllClick'#14'Pare'
- +'ntShowHint'#8#8'ShowHint'#9#5'Style'#7#8'tbsCheck'#0#0#11'TToolButton'#9'To'
- +'olBrush'#4'Left'#2#0#3'Top'#3#146#1#7'Caption'#6#9'ToolBrush'#10'ImageIndex'
- +#2#5#7'OnClick'#7#14'ToolBrushClick'#0#0#0#0#10'TStatusBar'#9'StatusBar'#4'L'
- +'eft'#2#0#6'Height'#2#22#3'Top'#3'}'#2#5'Width'#3#167#3#6'Panels'#14#1#5'Wid'
- +'th'#3#250#0#0#1#9'Alignment'#7#8'taCenter'#5'Width'#2'P'#0#1#9'Alignment'#7
- +#8'taCenter'#5'Width'#2'P'#0#1#5'Width'#2'P'#0#1#5'Width'#2'P'#0#1#5'Width'#2
- +'2'#0#0#11'SimplePanel'#8#0#0#6'TPanel'#12'PanelPallete'#4'Left'#3'\'#3#6'He'
- +'ight'#3#20#2#3'Top'#2'i'#5'Width'#2'K'#5'Align'#7#7'alRight'#8'AutoSize'#9
- +#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#3#20#2#11'ClientWidth'#2'K'#8'T'
- +'abOrder'#2#1#0#13'TColorPalette'#7'Palette'#4'Left'#2#0#6'Height'#3#20#2#3
- +'Top'#2#0#5'Width'#2'K'#5'Align'#7#8'alClient'#11'ButtonWidth'#2#12#12'Butto'
- +'nHeight'#2#12#8'DragMode'#7#11'dmAutomatic'#16'OnColorMouseMove'#7#21'Palet'
- +'teColorMouseMove'#11'OnColorPick'#7#16'PaletteColorPick'#0#0#0#6'TPanel'#12
- +'PanelToolBar'#4'Left'#2#0#6'Height'#2'i'#3'Top'#2#0#5'Width'#3#167#3#5'Alig'
- +'n'#7#5'alTop'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2'i'#11'ClientWid'
- +'th'#3#167#3#8'TabOrder'#2#2#0#6'TBevel'#6'Bevel1'#4'Left'#2#0#6'Height'#2#2
- +#3'Top'#2'E'#5'Width'#3#167#3#5'Align'#7#5'alTop'#5'Shape'#7#12'bsBottomLine'
- +#0#0#6'TBevel'#6'Bevel2'#4'Left'#2#0#6'Height'#2#2#3'Top'#2'!'#5'Width'#3#167
- +#3#5'Align'#7#5'alTop'#5'Shape'#7#12'bsBottomLine'#0#0#8'TToolBar'#7'ToolBar'
- +#4'Left'#2#0#6'Height'#2'!'#3'Top'#2#0#5'Width'#3#167#3#12'ButtonHeight'#2' '
- +#11'ButtonWidth'#2'$'#5'Color'#7#9'clBtnFace'#11'EdgeBorders'#11#0#6'Images'
- +#7#16'ImageListActions'#11'ParentColor'#8#8'TabOrder'#2#0#0#11'TToolButton'#9
- +'ToolClose'#4'Left'#2'm'#4'Hint'#6#5'Close'#3'Top'#2#0#7'Caption'#6#6'&Close'
- +#10'ImageIndex'#2#3#7'OnClick'#7#16'FileCloseExecute'#14'ParentShowHint'#8#8
- ,'ShowHint'#9#0#0#11'TToolButton'#8'ToolSave'#4'Left'#2'I'#4'Hint'#6#4'Save'#3
+ +'n'#7'ToolPen'#4'Left'#2#0#4'Hint'#6#3'Pen'#3'Top'#2'R'#7'Grouped'#9#10'Imag'
+ +'eIndex'#2#2#7'OnClick'#7#12'ToolPenClick'#14'ParentShowHint'#8#8'ShowHint'#9
+ +#5'Style'#7#8'tbsCheck'#0#0#11'TToolButton'#13'ToolColorPick'#4'Left'#2#0#4
+ +'Hint'#6#10'Color Pick'#3'Top'#2'*'#7'Grouped'#9#10'ImageIndex'#2#1#7'OnClic'
+ +'k'#7#18'ToolColorPickClick'#14'ParentShowHint'#8#8'ShowHint'#9#5'Style'#7#8
+ +'tbsCheck'#0#0#11'TToolButton'#8'ToolMask'#4'Left'#2#0#4'Hint'#6#4'Mask'#3'T'
+ +'op'#2#2#7'Grouped'#9#10'ImageIndex'#2#0#7'OnClick'#7#13'ToolMaskClick'#14'P'
+ +'arentShowHint'#8#8'ShowHint'#9#5'Style'#7#8'tbsCheck'#0#0#11'TToolButton'#8
+ +'ToolLine'#4'Left'#2#0#4'Hint'#6#4'Line'#3'Top'#3#162#0#4'Down'#9#7'Grouped'
+ +#9#10'ImageIndex'#2#4#7'OnClick'#7#13'ToolLineClick'#14'ParentShowHint'#8#8
+ +'ShowHint'#9#5'Style'#7#8'tbsCheck'#0#0#11'TToolButton'#13'ToolRectangle'#4
+ +'Left'#2#0#4'Hint'#6#27'RecTangle / Round Rectangle'#3'Top'#3#202#0#7'Groupe'
+ +'d'#9#10'ImageIndex'#2#5#7'OnClick'#7#18'ToolRectangleClick'#14'ParentShowHi'
+ +'nt'#8#8'ShowHint'#9#5'Style'#7#8'tbsCheck'#0#0#11'TToolButton'#11'ToolPolyg'
+ +'on'#4'Left'#2#0#4'Hint'#6#7'Polygon'#3'Top'#3#26#1#7'Grouped'#9#10'ImageInd'
+ +'ex'#2#7#7'OnClick'#7#16'ToolPolygonClick'#14'ParentShowHint'#8#8'ShowHint'#9
+ +#5'Style'#7#8'tbsCheck'#0#0#11'TToolButton'#11'ToolEllipse'#4'Left'#2#0#4'Hi'
+ +'nt'#6#7'Ellipse'#3'Top'#3#242#0#7'Grouped'#9#10'ImageIndex'#2#6#7'OnClick'#7
+ +#12'ToolEllClick'#14'ParentShowHint'#8#8'ShowHint'#9#5'Style'#7#8'tbsCheck'#0
+ +#0#11'TToolButton'#9'ToolBrush'#4'Left'#2#0#4'Hint'#6#5'Brush'#3'Top'#3#146#1
+ +#7'Caption'#6#9'ToolBrush'#7'Grouped'#9#10'ImageIndex'#2#5#7'OnClick'#7#14'T'
+ +'oolBrushClick'#0#0#11'TToolButton'#8'ToolText'#4'Left'#2#0#4'Hint'#6#4'Text'
+ +#3'Top'#3#186#1#7'Caption'#6#9'ToolBrush'#7'Grouped'#9#10'ImageIndex'#2#5#7
+ +'OnClick'#7#13'ToolTextClick'#0#0#0#0#10'TStatusBar'#9'StatusBar'#4'Left'#2#0
+ +#6'Height'#2#22#3'Top'#3'}'#2#5'Width'#3#167#3#6'Panels'#14#1#5'Width'#3#250
+ +#0#0#1#9'Alignment'#7#8'taCenter'#5'Width'#2'P'#0#1#9'Alignment'#7#8'taCente'
+ +'r'#5'Width'#2'P'#0#1#5'Width'#2'P'#0#1#5'Width'#2'P'#0#1#5'Width'#2'2'#0#0
+ +#11'SimplePanel'#8#0#0#6'TPanel'#12'PanelPallete'#4'Left'#3'\'#3#6'Height'#3
+ +#20#2#3'Top'#2'i'#5'Width'#2'K'#5'Align'#7#7'alRight'#8'AutoSize'#9#10'Bevel'
+ +'Outer'#7#6'bvNone'#12'ClientHeight'#3#20#2#11'ClientWidth'#2'K'#8'TabOrder'
+ +#2#1#0#13'TColorPalette'#7'Palette'#4'Left'#2#0#6'Height'#3#20#2#3'Top'#2#0#5
+ +'Width'#2'K'#5'Align'#7#8'alClient'#11'ButtonWidth'#2#12#12'ButtonHeight'#2
+ +#12#8'DragMode'#7#11'dmAutomatic'#16'OnColorMouseMove'#7#21'PaletteColorMous'
+ +'eMove'#11'OnColorPick'#7#16'PaletteColorPick'#0#0#0#6'TPanel'#12'PanelToolB'
+ +'ar'#4'Left'#2#0#6'Height'#2'i'#3'Top'#2#0#5'Width'#3#167#3#5'Align'#7#5'alT'
+ +'op'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2'i'#11'ClientWidth'#3#167#3
+ +#8'TabOrder'#2#2#0#6'TBevel'#6'Bevel1'#4'Left'#2#0#6'Height'#2#2#3'Top'#2'E'
+ +#5'Width'#3#167#3#5'Align'#7#5'alTop'#5'Shape'#7#12'bsBottomLine'#0#0#6'TBev'
+ +'el'#6'Bevel2'#4'Left'#2#0#6'Height'#2#2#3'Top'#2'!'#5'Width'#3#167#3#5'Alig'
+ +'n'#7#5'alTop'#5'Shape'#7#12'bsBottomLine'#0#0#8'TToolBar'#7'ToolBar'#4'Left'
+ +#2#0#6'Height'#2'!'#3'Top'#2#0#5'Width'#3#167#3#12'ButtonHeight'#2' '#11'But'
+ +'tonWidth'#2'$'#5'Color'#7#9'clBtnFace'#11'EdgeBorders'#11#0#6'Images'#7#16
+ ,'ImageListActions'#11'ParentColor'#8#8'TabOrder'#2#0#0#11'TToolButton'#9'Too'
+ +'lClose'#4'Left'#2'm'#4'Hint'#6#5'Close'#3'Top'#2#0#7'Caption'#6#6'&Close'#10
+ +'ImageIndex'#2#3#7'OnClick'#7#16'FileCloseExecute'#14'ParentShowHint'#8#8'Sh'
+ +'owHint'#9#0#0#11'TToolButton'#8'ToolSave'#4'Left'#2'I'#4'Hint'#6#4'Save'#3
+'Top'#2#0#7'Caption'#6#5'&Save'#10'ImageIndex'#2#2#7'OnClick'#7#15'FileSaveE'
+'xecute'#14'ParentShowHint'#8#8'ShowHint'#9#0#0#11'TToolButton'#8'ToolOpen'#4
+'Left'#2'%'#4'Hint'#6#4'Open'#3'Top'#2#0#7'Caption'#6#8'&Open...'#10'ImageIn'
@@ -95,7 +98,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+'bled'#8#10'ImageIndex'#2#5#14'ParentShowHint'#8#8'ShowHint'#9#0#0#6'TPanel'
+#9'PanelZoom'#4'Left'#3#165#1#6'Height'#2' '#3'Top'#2#0#5'Width'#2'M'#10'Bev'
+'elOuter'#7#6'bvNone'#12'ClientHeight'#2' '#11'ClientWidth'#2'M'#8'TabOrder'
- +#2#0#0#9'TComboBox'#12'ComboBoxZoom'#4'Left'#2#0#6'Height'#2#27#3'Top'#2#2#5
+ +#2#0#0#9'TComboBox'#12'ComboBoxZoom'#4'Left'#2#0#6'Height'#2#27#3'Top'#2#3#5
+'Width'#2'L'#7'Anchors'#11#6'akLeft'#0#10'ItemHeight'#2#19#9'ItemIndex'#2#2
+#13'Items.Strings'#1#6#4'25 %'#6#4'50 %'#6#5'100 %'#6#5'200 %'#6#5'400 %'#6#5
+'800 %'#6#6'1000 %'#0#8'OnChange'#7#18'ComboBoxZoomChange'#13'OnEditingDone'
@@ -103,386 +106,61 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#5'100 %'#0#0#0#11'TToolButton'#9'ZoomInBtn'#4'Left'#3#242#1#3'Top'#2#0#7'Ca'
+'ption'#6#9'ZoomInBtn'#10'ImageIndex'#2#10#7'OnClick'#7#14'ZoomInBtnClick'#0
+#0#11'TToolButton'#10'ZoomOutBtn'#4'Left'#3#129#1#3'Top'#2#0#7'Caption'#6#10
- +'ZoomOutBtn'#10'ImageIndex'#2#11#7'OnClick'#7#15'ZoomOutBtnClick'#0#0#0#6'TP'
- +'anel'#12'PanelOptions'#4'Left'#2#0#6'Height'#2'"'#3'Top'#2'#'#5'Width'#3#167
- +#3#5'Align'#7#5'alTop'#25'BorderSpacing.InnerBorder'#2#4#31'BorderSpacing.Ce'
- +'llAlignVertical'#7#9'ccaCenter'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'
- +#2'"'#11'ClientWidth'#3#167#3#8'TabOrder'#2#1#0#6'TLabel'#16'LabelFillOutlin'
- +'e'#4'Left'#2'g'#6'Height'#2'"'#3'Top'#2#0#5'Width'#2'H'#5'Align'#7#6'alLeft'
- +#7'Caption'#6#14'Fill, Outline:'#21'Constraints.MinHeight'#2' '#6'Layout'#7#8
- +'tlCenter'#11'ParentColor'#8#0#0#6'TLabel'#10'LabelShape'#4'Left'#2#0#6'Heig'
- +'ht'#2'"'#3'Top'#2#0#5'Width'#2'*'#5'Align'#7#6'alLeft'#7'Caption'#6#6'Shape'
- +':'#21'Constraints.MinHeight'#2' '#6'Layout'#7#8'tlCenter'#11'ParentColor'#8
- +#0#0#6'TLabel'#13'LabelMaskTool'#4'Left'#3#2#1#6'Height'#2'"'#3'Top'#2#0#5'W'
- +'idth'#2'C'#5'Align'#7#6'alLeft'#7'Caption'#6#10'Mask Tool:'#21'Constraints.'
- +'MinHeight'#2' '#6'Layout'#7#8'tlCenter'#11'ParentColor'#8#0#0#6'TPanel'#11
- +'PanelColors'#4'Left'#3#211#2#6'Height'#2'"'#3'Top'#2#0#5'Width'#3#212#0#5'A'
- +'lign'#7#7'alRight'#8'AutoSize'#9#25'BorderSpacing.InnerBorder'#2#4'!BorderS'
- +'pacing.CellAlignHorizontal'#7#10'ccaLeftTop'#31'BorderSpacing.CellAlignVert'
- +'ical'#7#9'ccaCenter'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2'"'#11'Cl'
- +'ientWidth'#3#212#0#8'TabOrder'#2#0#0#6'TLabel'#12'LabelOutline'#4'Left'#2#8
- +#6'Height'#2'"'#3'Top'#2#0#5'Width'#2'1'#5'Align'#7#7'alRight'#7'Caption'#6#8
- +'Outline:'#6'Layout'#7#8'tlCenter'#11'ParentColor'#8#0#0#6'TLabel'#9'LabelFi'
- +'ll'#4'Left'#2'Y'#6'Height'#2'"'#3'Top'#2#0#5'Width'#2#20#5'Align'#7#7'alRig'
- +'ht'#7'Caption'#6#5'Fill:'#6'Layout'#7#8'tlCenter'#11'ParentColor'#8#0#0#6'T'
- +'Label'#10'LabelPaper'#4'Left'#3#141#0#6'Height'#2'"'#3'Top'#2#0#5'Width'#2
- +''''#5'Align'#7#7'alRight'#7'Caption'#6#6'Paper:'#6'Layout'#7#8'tlCenter'#11
- +'ParentColor'#8#0#0#6'TPanel'#12'PanelOutline'#4'Left'#2'?'#6'Height'#2#22#3
- +'Top'#2#6#5'Width'#2#20#5'Align'#7#7'alRight'#20'BorderSpacing.Around'#2#6#10
- ,'BevelInner'#7#9'bvLowered'#5'Color'#7#7'clWhite'#8'DragMode'#7#11'dmAutomat'
- +'ic'#11'ParentColor'#8#8'TabOrder'#2#0#10'OnDragOver'#7#18'PanelPaperDragOve'
- +'r'#0#0#6'TPanel'#9'PanelFill'#4'Left'#2's'#6'Height'#2#22#3'Top'#2#6#5'Widt'
- +'h'#2#20#5'Align'#7#7'alRight'#20'BorderSpacing.Around'#2#6#10'BevelInner'#7
- +#9'bvLowered'#5'Color'#7#7'clWhite'#8'DragMode'#7#11'dmAutomatic'#11'ParentC'
- +'olor'#8#8'TabOrder'#2#1#10'OnDragOver'#7#18'PanelPaperDragOver'#0#0#6'TPane'
- +'l'#10'PanelPaper'#4'Left'#3#186#0#6'Height'#2#22#3'Top'#2#6#5'Width'#2#20#5
- +'Align'#7#7'alRight'#20'BorderSpacing.Around'#2#6#10'BevelInner'#7#9'bvLower'
- +'ed'#5'Color'#7#7'clWhite'#8'DragMode'#7#11'dmAutomatic'#11'ParentColor'#8#8
- +'TabOrder'#2#2#10'OnDblClick'#7#18'PanelPaperDblClick'#10'OnDragOver'#7#18'P'
- +'anelPaperDragOver'#0#0#0#6'TPanel'#16'PanelFillOutline'#4'Left'#3#175#0#6'H'
- +'eight'#2'"'#3'Top'#2#0#5'Width'#2'S'#5'Align'#7#6'alLeft'#10'BevelOuter'#7#6
- +'bvNone'#12'ClientHeight'#2'"'#11'ClientWidth'#2'S'#8'TabOrder'#2#1#0#12'TSp'
- +'eedButton'#15'ToolFillOutline'#4'Left'#2#4#6'Height'#2#24#3'Top'#2#5#5'Widt'
- +'h'#2#25#7'Anchors'#11#6'akLeft'#0#4'Down'#9#10'Glyph.Data'#10#234#4#0#0#230
- +#4#0#0'BM'#230#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0#24#0#0#0
- +#0#0#176#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+ +'ZoomOutBtn'#10'ImageIndex'#2#11#7'OnClick'#7#15'ZoomOutBtnClick'#0#0#11'TTo'
+ +'olButton'#11'ToolButton1'#4'Left'#3#22#2#3'Top'#2#0#5'Width'#2#8#7'Caption'
+ +#6#11'ToolButton1'#5'Style'#7#12'tbsSeparator'#0#0#6'TPanel'#6'Panel1'#4'Lef'
+ +'t'#3#30#2#6'Height'#2' '#3'Top'#2#0#5'Width'#3#168#0#10'BevelOuter'#7#6'bvN'
+ +'one'#12'ClientHeight'#2' '#11'ClientWidth'#3#168#0#8'TabOrder'#2#1#0#9'TCom'
+ +'boBox'#11'FontListBox'#4'Left'#2#2#6'Height'#2#27#3'Top'#2#3#5'Width'#2'p'
+ +#10'ItemHeight'#2#19#8'OnChange'#7#17'FontListBoxChange'#7'OnClick'#7#16'Fon'
+ +'tListBoxClick'#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#0#0#0#9'TSpinEdi'
+ +'t'#8'FontSize'#4'Left'#2'u'#6'Height'#2#27#3'Top'#2#3#5'Width'#2'2'#8'OnCha'
+ +'nge'#7#14'FontSizeChange'#8'TabOrder'#2#1#5'Value'#2#10#0#0#0#0#6'TPanel'#12
+ +'PanelOptions'#4'Left'#2#0#6'Height'#2'"'#3'Top'#2'#'#5'Width'#3#167#3#5'Ali'
+ +'gn'#7#5'alTop'#25'BorderSpacing.InnerBorder'#2#4#31'BorderSpacing.CellAlign'
+ +'Vertical'#7#9'ccaCenter'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2'"'#11
+ +'ClientWidth'#3#167#3#8'TabOrder'#2#1#0#6'TLabel'#16'LabelFillOutline'#4'Lef'
+ +'t'#2'g'#6'Height'#2'"'#3'Top'#2#0#5'Width'#2'H'#5'Align'#7#6'alLeft'#7'Capt'
+ +'ion'#6#14'Fill, Outline:'#21'Constraints.MinHeight'#2' '#6'Layout'#7#8'tlCe'
+ +'nter'#11'ParentColor'#8#0#0#6'TLabel'#10'LabelShape'#4'Left'#2#0#6'Height'#2
+ +'"'#3'Top'#2#0#5'Width'#2'*'#5'Align'#7#6'alLeft'#7'Caption'#6#6'Shape:'#21
+ +'Constraints.MinHeight'#2' '#6'Layout'#7#8'tlCenter'#11'ParentColor'#8#0#0#6
+ +'TLabel'#13'LabelMaskTool'#4'Left'#3#2#1#6'Height'#2'"'#3'Top'#2#0#5'Width'#2
+ +'C'#5'Align'#7#6'alLeft'#7'Caption'#6#10'Mask Tool:'#21'Constraints.MinHeigh'
+ +'t'#2' '#6'Layout'#7#8'tlCenter'#11'ParentColor'#8#0#0#6'TPanel'#11'PanelCol'
+ +'ors'#4'Left'#3#211#2#6'Height'#2'"'#3'Top'#2#0#5'Width'#3#212#0#5'Align'#7#7
+ ,'alRight'#8'AutoSize'#9#25'BorderSpacing.InnerBorder'#2#4'!BorderSpacing.Cel'
+ +'lAlignHorizontal'#7#10'ccaLeftTop'#31'BorderSpacing.CellAlignVertical'#7#9
+ +'ccaCenter'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2'"'#11'ClientWidth'
+ +#3#212#0#8'TabOrder'#2#0#0#6'TLabel'#12'LabelOutline'#4'Left'#2#8#6'Height'#2
+ +'"'#3'Top'#2#0#5'Width'#2'1'#5'Align'#7#7'alRight'#7'Caption'#6#8'Outline:'#6
+ +'Layout'#7#8'tlCenter'#11'ParentColor'#8#0#0#6'TLabel'#9'LabelFill'#4'Left'#2
+ +'Y'#6'Height'#2'"'#3'Top'#2#0#5'Width'#2#20#5'Align'#7#7'alRight'#7'Caption'
+ +#6#5'Fill:'#6'Layout'#7#8'tlCenter'#11'ParentColor'#8#0#0#6'TLabel'#10'Label'
+ +'Paper'#4'Left'#3#141#0#6'Height'#2'"'#3'Top'#2#0#5'Width'#2''''#5'Align'#7#7
+ +'alRight'#7'Caption'#6#6'Paper:'#6'Layout'#7#8'tlCenter'#11'ParentColor'#8#0
+ +#0#6'TPanel'#12'PanelOutline'#4'Left'#2'?'#6'Height'#2#22#3'Top'#2#6#5'Width'
+ +#2#20#5'Align'#7#7'alRight'#20'BorderSpacing.Around'#2#6#10'BevelInner'#7#9
+ +'bvLowered'#5'Color'#7#7'clWhite'#8'DragMode'#7#11'dmAutomatic'#11'ParentCol'
+ +'or'#8#8'TabOrder'#2#0#10'OnDragOver'#7#18'PanelPaperDragOver'#0#0#6'TPanel'
+ +#9'PanelFill'#4'Left'#2's'#6'Height'#2#22#3'Top'#2#6#5'Width'#2#20#5'Align'#7
+ +#7'alRight'#20'BorderSpacing.Around'#2#6#10'BevelInner'#7#9'bvLowered'#5'Col'
+ +'or'#7#7'clWhite'#8'DragMode'#7#11'dmAutomatic'#11'ParentColor'#8#8'TabOrder'
+ +#2#1#10'OnDragOver'#7#18'PanelPaperDragOver'#0#0#6'TPanel'#10'PanelPaper'#4
+ +'Left'#3#186#0#6'Height'#2#22#3'Top'#2#6#5'Width'#2#20#5'Align'#7#7'alRight'
+ +#20'BorderSpacing.Around'#2#6#10'BevelInner'#7#9'bvLowered'#5'Color'#7#7'clW'
+ +'hite'#8'DragMode'#7#11'dmAutomatic'#11'ParentColor'#8#8'TabOrder'#2#2#10'On'
+ +'DblClick'#7#18'PanelPaperDblClick'#10'OnDragOver'#7#18'PanelPaperDragOver'#0
+ +#0#0#6'TPanel'#16'PanelFillOutline'#4'Left'#3#175#0#6'Height'#2'"'#3'Top'#2#0
+ +#5'Width'#2'S'#5'Align'#7#6'alLeft'#10'BevelOuter'#7#6'bvNone'#12'ClientHeig'
+ +'ht'#2'"'#11'ClientWidth'#2'S'#8'TabOrder'#2#1#0#12'TSpeedButton'#15'ToolFil'
+ +'lOutline'#4'Left'#2#4#6'Height'#2#24#3'Top'#2#5#5'Width'#2#25#7'Anchors'#11
+ +#6'akLeft'#0#4'Down'#9#10'Glyph.Data'#10#234#4#0#0#230#4#0#0'BM'#230#4#0#0#0
+ +#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0#24#0#0#0#0#0#176#4#0#0'd'#0#0
+ +#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0
- +#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0
- +#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0
- +#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- ,#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#10'GroupIndex'#2#1#9'NumGlyphs'#2#0#7'OnCli'
- +'ck'#7#20'ToolFillOutlineClick'#0#0#12'TSpeedButton'#11'ToolOutline'#4'Left'
- +#2#29#6'Height'#2#24#3'Top'#2#5#5'Width'#2#25#7'Anchors'#11#6'akLeft'#0#10'G'
- +'lyph.Data'#10'z'#6#0#0'v'#6#0#0'BMv'#6#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0
- +#0#20#0#0#0#1#0' '#0#0#0#0#0'@'#6#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0#0
- +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0
- +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0
- +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0
- +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0
- +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0
- +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0
- +#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0
- +#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0
- +#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0
- +#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0
- +#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0
- +#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0
- +#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255
- ,#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0
- +#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0
- +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0
- +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0
- +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0
- +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0
- +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#10'GroupIndex'#2#1
- +#9'NumGlyphs'#2#0#7'OnClick'#7#16'ToolOutlineClick'#0#0#12'TSpeedButton'#8'T'
- +'oolFill'#4'Left'#2'6'#6'Height'#2#24#3'Top'#2#5#5'Width'#2#25#7'Anchors'#11
- +#6'akLeft'#0#10'Glyph.Data'#10#234#4#0#0#230#4#0#0'BM'#230#4#0#0#0#0#0#0'6'#0
- +#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0#24#0#0#0#0#0#176#4#0#0'd'#0#0#0'd'#0#0#0
- +#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#255#255#255#255#255#255#255#255#255#255#255#255
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#255#255#255#255#255#255#255#255#255
- +#255#255#255#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#255#255#255#255#255#255
- +#255#255#255#255#255#255#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#255#255#255
- +#255#255#255#255#255#255#255#255#255#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#255#255#255#255#255#255#255#255#255#255#255#255#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#255#255#255#255#255#255#255#255#255#255#255#255#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#255#255#255#255#255#255#255#255#255#255#255#255#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#255#255#255#255#255#255#255#255#255#255
- +#255#255#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#255#255#255#255#255#255#255
- +#255#255#255#255#255#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#255#255#255#255
- +#255#255#255#255#255#255#255#255#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#255
- +#255#255#255#255#255#255#255#255#255#255#255#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#255#255#255#255#255#255#255#255#255#255#255#255#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#255#255#255#255#255#255#255#255#255#255#255#255#128#128
- ,#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#255#255#255#255#255#255#255#255#255#255#255
- +#255#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#255#255#255#255#255#255#255#255
- +#255#255#255#255#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#10'GroupIndex'#2#1#9'NumGlyphs'#2#0#7'OnClick'#7
- +#13'ToolFillClick'#0#0#0#6'TPanel'#10'PanelShape'#4'Left'#2'*'#6'Height'#2'"'
- +#3'Top'#2#0#5'Width'#2'='#5'Align'#7#6'alLeft'#10'BevelOuter'#7#6'bvNone'#12
- +'ClientHeight'#2'"'#11'ClientWidth'#2'='#8'TabOrder'#2#2#0#12'TSpeedButton'
- +#13'ToolRectShape'#4'Left'#2#7#6'Height'#2#24#3'Top'#2#5#5'Width'#2#25#7'Anc'
- +'hors'#11#6'akLeft'#0#4'Down'#9#10'Glyph.Data'#10#234#4#0#0#230#4#0#0'BM'#230
- +#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0#24#0#0#0#0#0#176#4#0#0
- +'d'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0
- +#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0
- +#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0
- +#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- ,#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0
- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
- +#0#0#0#0#0#0#0#0#0#0#10'GroupIndex'#2#1#9'NumGlyphs'#2#0#7'OnClick'#7#18'Too'
- +'lRectShapeClick'#0#0#12'TSpeedButton'#15'ToolCircleShape'#4'Left'#2#31#6'He'
- +'ight'#2#24#3'Top'#2#5#5'Width'#2#25#7'Anchors'#11#6'akLeft'#0#10'Glyph.Data'
- +#10'z'#6#0#0'v'#6#0#0'BMv'#6#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0
- +#1#0' '#0#0#0#0#0'@'#6#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#216#216#216#0#132
- +#132#132#0'CCC'#255'((('#255' '#255' '#255'((('#255'CCC'#255#132#132#132
- +#0#216#216#216#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#133#133
- +#133#0#25#25#25#255#1#1#1#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0
- +#255#0#0#0#255#1#1#1#255#25#25#25#255#133#133#133#0#255#255#255#0#255#255#255
- +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#251#251#251#0'PPP'
- +#255#1#1#1#255#3#3#3#255'+++'#255'WWW'#255'jjj'#255'ooo'#255'ooo'#255'jjj'
- +#255'WWW'#255'+++'#255#3#3#3#255#1#1#1#255'PPP'#255#251#251#251#0#255#255#255
- +#0#255#255#255#0#255#255#255#0#251#251#251#0'PPP'#255#0#0#0#255#9#9#9#255'[['
- +'['#255'}}}'#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
- +#255#127#127#127#255#127#127#127#255'}}}'#255'[[['#255#9#9#9#255#0#0#0#255'P'
- +'PP'#255#251#251#251#0#255#255#255#0#255#255#255#0#133#133#133#0#1#1#1#255#9
- +#9#9#255'hhh'#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
- +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
- +#127#255#127#127#127#255'hhh'#255#9#9#9#255#1#1#1#255#133#133#133#0#255#255
- +#255#0#216#216#216#0#25#25#25#255#3#3#3#255'[[['#255#127#127#127#255#127#127
- +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
- +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
- +#127#127#127#255'[[['#255#3#3#3#255#25#25#25#255#216#216#216#0#132#132#132#0
- +#1#1#1#255'+++'#255'}}}'#255#127#127#127#255#127#127#127#255#127#127#127#255
- +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
- +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255'}}}'#255
- +'+++'#255#1#1#1#255#132#132#132#0'CCC'#255#0#0#0#255'WWW'#255#127#127#127#255
- +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
- +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
- +#127#255#127#127#127#255#127#127#127#255#127#127#127#255'WWW'#255#0#0#0#255
- +'CCC'#255'((('#255#0#0#0#255'jjj'#255#127#127#127#255#127#127#127#255#127#127
- +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
- +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
- +#127#127#127#255#127#127#127#255'jjj'#255#0#0#0#255'((('#255' '#255#0#0#0
- +#255'ooo'#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
- +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
- +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
- +#127#255'ooo'#255#0#0#0#255' '#255' '#255#0#0#0#255'ooo'#255#127#127#127
- +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
- +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
- +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255'ooo'#255#0#0#0
- +#255' '#255'((('#255#0#0#0#255'jjj'#255#127#127#127#255#127#127#127#255#127
- +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
- +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
- +#255#127#127#127#255#127#127#127#255'jjj'#255#0#0#0#255'((('#255'CCC'#255#0#0
- +#0#255'WWW'#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
- +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
- +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
- +#127#127#255'WWW'#255#0#0#0#255'CCC'#255#132#132#132#0#1#1#1#255'+++'#255'}}'
- +'}'#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
- +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
- +#127#127#127#255#127#127#127#255#127#127#127#255'}}}'#255'+++'#255#1#1#1#255
- ,#132#132#132#0#216#216#216#0#25#25#25#255#3#3#3#255'[[['#255#127#127#127#255
- +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
- +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
- +#127#255#127#127#127#255'[[['#255#3#3#3#255#25#25#25#255#216#216#216#0#255
- +#255#255#0#133#133#133#0#1#1#1#255#9#9#9#255'hhh'#255#127#127#127#255#127#127
- +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
- +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255'hhh'#255#9#9#9
- +#255#1#1#1#255#133#133#133#0#255#255#255#0#255#255#255#0#251#251#251#0'PPP'
- +#255#0#0#0#255#9#9#9#255'[[['#255'}}}'#255#127#127#127#255#127#127#127#255
- +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255'}}}'#255'[['
- +'['#255#9#9#9#255#0#0#0#255'PPP'#255#251#251#251#0#255#255#255#0#255#255#255
- +#0#255#255#255#0#251#251#251#0'PPP'#255#1#1#1#255#3#3#3#255'+++'#255'WWW'#255
- +'jjj'#255'ooo'#255'ooo'#255'jjj'#255'WWW'#255'+++'#255#3#3#3#255#1#1#1#255'P'
- +'PP'#255#251#251#251#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255
- +#0#255#255#255#0#255#255#255#0#133#133#133#0#25#25#25#255#1#1#1#255#0#0#0#255
- +#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#1#1#1#255#25#25#25#255#133
- +#133#133#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#216#216#216#0
- +#132#132#132#0'CCC'#255'((('#255' '#255' '#255'((('#255'CCC'#255#132#132
- +#132#0#216#216#216#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#10'GroupIndex'#2#1#9'NumGlyphs'#2#0#7'OnClick'#7#20'ToolCircl'
- +'eShapeClick'#0#0#0#6'TPanel'#13'PanelMaskTool'#4'Left'#3'E'#1#6'Height'#2'"'
- +#3'Top'#2#0#5'Width'#2'V'#5'Align'#7#6'alLeft'#10'BevelOuter'#7#6'bvNone'#12
- +'ClientHeight'#2'"'#11'ClientWidth'#2'V'#8'TabOrder'#2#3#0#12'TSpeedButton'
- +#17'ToolMaskRectangle'#4'Left'#2#7#6'Height'#2#24#3'Top'#2#5#5'Width'#2#25#7
- +'Anchors'#11#6'akLeft'#0#4'Down'#9#10'Glyph.Data'#10#234#4#0#0#230#4#0#0'BM'
- +#230#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0#24#0#0#0#0#0#176#4
- +#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128
+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128
+#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128
@@ -513,7 +191,182 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0
+#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- ,#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ ,#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0
+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+ +#0#0#0#0#0#0#10'GroupIndex'#2#1#9'NumGlyphs'#2#0#7'OnClick'#7#20'ToolFillOut'
+ +'lineClick'#0#0#12'TSpeedButton'#11'ToolOutline'#4'Left'#2#29#6'Height'#2#24
+ +#3'Top'#2#5#5'Width'#2#25#7'Anchors'#11#6'akLeft'#0#10'Glyph.Data'#10'z'#6#0
+ +#0'v'#6#0#0'BMv'#6#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0' '#0#0
+ +#0#0#0'@'#6#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#255#0#0#0#255#0#0#0
+ +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0
+ +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0
+ +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0
+ +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0
+ +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0
+ +#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0
+ +#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255
+ +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0
+ +#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255
+ +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0
+ +#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255
+ +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0
+ +#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255
+ +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0
+ +#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ ,#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255
+ +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0
+ +#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255
+ +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0
+ +#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255
+ +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0
+ +#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255
+ +#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0
+ +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0
+ +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0
+ +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0
+ +#0#0#255#0#0#0#255#0#0#0#255#10'GroupIndex'#2#1#9'NumGlyphs'#2#0#7'OnClick'#7
+ +#16'ToolOutlineClick'#0#0#12'TSpeedButton'#8'ToolFill'#4'Left'#2'6'#6'Height'
+ +#2#24#3'Top'#2#5#5'Width'#2#25#7'Anchors'#11#6'akLeft'#0#10'Glyph.Data'#10
+ +#234#4#0#0#230#4#0#0'BM'#230#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0
+ +#0#1#0#24#0#0#0#0#0#176#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#255#255#255#255#255#255#255#255#255#255#255#255#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#255#255#255#255#255#255#255#255#255#255#255#255#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#255#255#255#255#255#255#255#255#255#255#255#255#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#255#255#255#255#255#255#255#255#255#255
+ +#255#255#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#255#255#255#255#255#255#255
+ +#255#255#255#255#255#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#255#255#255#255
+ +#255#255#255#255#255#255#255#255#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#255
+ +#255#255#255#255#255#255#255#255#255#255#255#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#255#255#255#255#255#255#255#255#255#255#255#255#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#255#255#255#255#255#255#255#255#255#255#255#255#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ ,#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#255#255#255#255#255#255#255#255#255#255#255
+ +#255#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#255#255#255#255#255#255#255#255
+ +#255#255#255#255#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#255#255#255#255#255
+ +#255#255#255#255#255#255#255#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#255#255
+ +#255#255#255#255#255#255#255#255#255#255#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#255#255#255#255#255#255#255#255#255#255#255#255#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#255#255#255#255#255#255#255#255#255#255#255#255#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#10'GroupIndex'#2#1#9'NumGlyphs'#2#0#7'OnClick'#7#13'ToolFillClick'#0#0#0#6
+ +'TPanel'#10'PanelShape'#4'Left'#2'*'#6'Height'#2'"'#3'Top'#2#0#5'Width'#2'='
+ +#5'Align'#7#6'alLeft'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2'"'#11'Cl'
+ +'ientWidth'#2'='#8'TabOrder'#2#2#0#12'TSpeedButton'#13'ToolRectShape'#4'Left'
+ +#2#7#6'Height'#2#24#3'Top'#2#5#5'Width'#2#25#7'Anchors'#11#6'akLeft'#0#4'Dow'
+ +'n'#9#10'Glyph.Data'#10#234#4#0#0#230#4#0#0'BM'#230#4#0#0#0#0#0#0'6'#0#0#0'('
+ +#0#0#0#20#0#0#0#20#0#0#0#1#0#24#0#0#0#0#0#176#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0
+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0
+ +#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0
+ +#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128
+#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128
@@ -525,367 +378,526 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128
+#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0
+ +#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ ,#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0
+ +#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0
+ +#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
- +#0#0#0#0#0#0#0#0#0#0#0#0#10'GroupIndex'#2#1#9'NumGlyphs'#2#0#7'OnClick'#7#22
- +'ToolMaskRectangleClick'#0#0#12'TSpeedButton'#15'ToolMaskEllipse'#4'Left'#2
- +#31#6'Height'#2#24#3'Top'#2#5#5'Width'#2#25#7'Anchors'#11#6'akLeft'#0#10'Gly'
- +'ph.Data'#10'z'#6#0#0'v'#6#0#0'BMv'#6#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0
- +#20#0#0#0#1#0' '#0#0#0#0#0'@'#6#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#216#216#216#0
- +#132#132#132#0'CCC'#255'((('#255' '#255' '#255'((('#255'CCC'#255#132#132
- +#132#0#216#216#216#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#133
- +#133#133#0#25#25#25#255#1#1#1#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0
- +#0#255#0#0#0#255#1#1#1#255#25#25#25#255#133#133#133#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#251#251#251#0
- +'PPP'#255#1#1#1#255#3#3#3#255'+++'#255'WWW'#255'jjj'#255'ooo'#255'ooo'#255'j'
- +'jj'#255'WWW'#255'+++'#255#3#3#3#255#1#1#1#255'PPP'#255#251#251#251#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#251#251#251#0'PPP'#255#0#0#0#255#9#9#9#255
- +'[[['#255'}}}'#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
- +#127#255#127#127#127#255#127#127#127#255'}}}'#255'[[['#255#9#9#9#255#0#0#0
- +#255'PPP'#255#251#251#251#0#255#255#255#0#255#255#255#0#133#133#133#0#1#1#1
- +#255#9#9#9#255'hhh'#255#127#127#127#255#127#127#127#255#127#127#127#255#127
- +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
- +#127#127#127#255#127#127#127#255'hhh'#255#9#9#9#255#1#1#1#255#133#133#133#0
- +#255#255#255#0#216#216#216#0#25#25#25#255#3#3#3#255'[[['#255#127#127#127#255
- +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
- +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
- +#127#255#127#127#127#255'[[['#255#3#3#3#255#25#25#25#255#216#216#216#0#132
- +#132#132#0#1#1#1#255'+++'#255'}}}'#255#127#127#127#255#127#127#127#255#127
- +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
- +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
- +#255'}}}'#255'+++'#255#1#1#1#255#132#132#132#0'CCC'#255#0#0#0#255'WWW'#255
- +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
- +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
- +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255'WWW'
- +#255#0#0#0#255'CCC'#255'((('#255#0#0#0#255'jjj'#255#127#127#127#255#127#127
- +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
- +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
- +#127#127#127#255#127#127#127#255#127#127#127#255'jjj'#255#0#0#0#255'((('#255
- +' '#255#0#0#0#255'ooo'#255#127#127#127#255#127#127#127#255#127#127#127#255
- +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
- +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
- +#127#255#127#127#127#255'ooo'#255#0#0#0#255' '#255' '#255#0#0#0#255'ooo'
- +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
- +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
- +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
- +'ooo'#255#0#0#0#255' '#255'((('#255#0#0#0#255'jjj'#255#127#127#127#255#127
- +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
- +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
- +#255#127#127#127#255#127#127#127#255#127#127#127#255'jjj'#255#0#0#0#255'((('
- +#255'CCC'#255#0#0#0#255'WWW'#255#127#127#127#255#127#127#127#255#127#127#127
- +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
- ,#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
- +#127#127#255#127#127#127#255'WWW'#255#0#0#0#255'CCC'#255#132#132#132#0#1#1#1
- +#255'+++'#255'}}}'#255#127#127#127#255#127#127#127#255#127#127#127#255#127
- +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
- +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255'}}}'#255'++'
- +'+'#255#1#1#1#255#132#132#132#0#216#216#216#0#25#25#25#255#3#3#3#255'[[['#255
- +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
- +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
- +#127#255#127#127#127#255#127#127#127#255'[[['#255#3#3#3#255#25#25#25#255#216
- +#216#216#0#255#255#255#0#133#133#133#0#1#1#1#255#9#9#9#255'hhh'#255#127#127
- +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
- +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
- +'hhh'#255#9#9#9#255#1#1#1#255#133#133#133#0#255#255#255#0#255#255#255#0#251
- +#251#251#0'PPP'#255#0#0#0#255#9#9#9#255'[[['#255'}}}'#255#127#127#127#255#127
- +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
- +'}}}'#255'[[['#255#9#9#9#255#0#0#0#255'PPP'#255#251#251#251#0#255#255#255#0
+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#10'Grou'
+ +'pIndex'#2#1#9'NumGlyphs'#2#0#7'OnClick'#7#18'ToolRectShapeClick'#0#0#12'TSp'
+ +'eedButton'#15'ToolCircleShape'#4'Left'#2#31#6'Height'#2#24#3'Top'#2#5#5'Wid'
+ +'th'#2#25#7'Anchors'#11#6'akLeft'#0#10'Glyph.Data'#10'z'#6#0#0'v'#6#0#0'BMv'
+ +#6#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0' '#0#0#0#0#0'@'#6#0#0
+ +'d'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#216#216#216#0#132#132#132#0'CCC'#255'((('#255' '
+ +' '#255' '#255'((('#255'CCC'#255#132#132#132#0#216#216#216#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#133#133#133#0#25#25#25#255#1#1#1#255#0
+ +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#1#1#1#255#25#25#25
+ +#255#133#133#133#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#251#251#251#0'PPP'#255#1#1#1#255#3#3#3#255'+++'
+#255'WWW'#255'jjj'#255'ooo'#255'ooo'#255'jjj'#255'WWW'#255'+++'#255#3#3#3#255
+#1#1#1#255'PPP'#255#251#251#251#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#133#133#133#0#25#25#25#255#1#1#1
- +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#1#1#1#255#25
- +#25#25#255#133#133#133#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#216#216#216#0#132#132#132#0'CCC'#255'((('#255' '#255' '#255'((('#255'CC'
- +'C'#255#132#132#132#0#216#216#216#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#10'GroupIndex'#2#1#9'NumGlyphs'#2#0#7'OnClick'#7
- +#20'ToolMaskEllipseClick'#0#0#12'TSpeedButton'#17'ToolMaskFloodFill'#4'Left'
- +#2'8'#6'Height'#2#24#3'Top'#2#5#5'Width'#2#25#7'Anchors'#11#6'akLeft'#0#10'G'
- +'lyph.Data'#10'z'#6#0#0'v'#6#0#0'BMv'#6#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0
- +#0#20#0#0#0#1#0' '#0#0#0#0#0'@'#6#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#0#0#0#3#16#10#10#142#15#11#11#217#13#10#10#193#0#0#0#25#0#0#0'8'#17#11
- +#11#160#15#11#11#201#15#9#9'd'#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#15#10#10#161#140#138#138#249#203#204#204
- +#255'zyy'#254#28#25#25#231'933'#240#127#127#127#255#193#194#194#255#26#23#23
- +#232#0#0#0'"'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#14#9#9'sSQQ'
- +#241#233#233#233#255#189#189#189#255#135#135#135#255#135#135#135#255#193#193
- +#193#255#222#222#222#255'f__'#243#12#9#9#212#0#0#0#15#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#0#0#0#31'&$$'#233#230#230#230#255#186#187#187#255'~~~'#255#129
- +#129#129#255#166#166#166#255#229#229#229#255#134#134#134#255#10#10#10#220#0#0
- +#0'/'#0#0#0#10#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#15#11#11#170#210#210#210
- +#255#175#175#175#255'}}}'#255#130#130#130#255'}}}'#255#225#225#225#255#194
- +#194#194#255#140#140#140#255#21#21#21#253'222'#236#14#14#14#239#9#9#9#237#13
- +#13#13#211#11#11#11#163#0#0#0'/'#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#17#15#15#211#224#224#224#255'ttt'#255#155#155#155#255#130#130
- +#130#255#162#162#162#255#234#234#234#255#162#162#162#255#135#135#135#255']]]'
- +#255'yyy'#255#230#230#230#255#222#222#222#255#197#197#197#255#136#136#136#254
- +#19#19#19#237#10#10#10#193#0#0#0'5'#255#255#255#0#255#255#255#0#21#18#18#215
- +#205#205#205#255#135#135#135#255#225#225#225#255'{{{'#255#127#127#127#255#152
- +#152#152#255#131#131#131#255#142#142#142#255#134#134#134#255#30#30#30#255#144
- +#144#144#255#133#133#133#255#153#153#153#255#210#210#210#255#207#207#207#255
- +#141#141#141#255#20#20#20#237#9#9#9#155#0#0#0#1#16#12#12#175#133#134#134#255
- +#131#131#131#255#211#211#211#255#231#231#231#255#144#144#144#255#135#135#135
- +#255'zzz'#255'iii'#255')))'#255#128#128#128#255#191#191#191#255#172#172#172
- +#255#166#166#166#255'zzz'#255'rrr'#255#186#186#186#255#185#185#185#255'888'
- +#241#10#10#10#151#4#2#2'NIFF'#242#135#135#135#255'{{{'#255#136#136#136#255
- +#130#130#130#255#135#135#135#255'ccc'#255':::'#255'QQQ'#255#201#201#201#255
- ,#177#177#177#255#173#173#173#255#169#169#169#255#171#171#171#255'rrr'#255#180
- +#180#180#255#173#173#173#255#176#176#176#255#9#9#9#231#0#0#0#3#16#14#14#224
- +#196#197#197#255#171#171#171#255#130#130#130#255#135#135#135#255#140#140#140
- +#255'eee'#255'888'#255#129#129#129#255#202#202#202#255#178#178#178#255#173
- +#173#173#255#169#169#169#255#170#170#170#255'uuu'#255#178#178#178#255#174#174
- +#174#255'ZZZ'#251#10#10#10#139#255#255#255#0#16#10#10#149#174#174#174#255#234
- +#234#234#255#154#154#154#255#130#130#130#255#135#135#135#255'xxx'#255'WWW'
- +#255#30#30#30#255#182#182#182#255#141#141#141#255#150#150#150#255#175#175#175
- +#255#132#132#132#255#173#173#173#255#179#179#179#255#187#187#187#255#15#15#15
- +#238#0#0#0'!'#255#255#255#0#0#0#0#25#18#16#16#226#208#208#208#255#223#223#223
- +#255'{{{'#255#178#178#178#255#204#204#204#255#135#135#135#255'333'#255'XXX'
- +#255#201#201#201#255#210#210#210#255#141#141#141#255'___'#255#189#189#189#255
- +#180#180#180#255#148#148#148#255#9#9#9#207#255#255#255#0#255#255#255#0#255
- +#255#255#0#10#3#4'9'#16#13#13#221#206#206#206#255#222#222#222#255#146#146#146
- +#255#209#209#209#255#201#201#201#255#144#144#144#255#18#18#18#255'WWW'#255
- +#129#129#129#255#157#157#157#255#215#215#215#255#195#195#195#255#196#196#196
- +#255'666'#242#2#2#2'['#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255
- +#0#0#0#0#23#13#12#12#231#130#130#130#255#198#198#198#255#134#134#134#255#142
- +#142#142#255#177#177#177#255'BBB'#255#3#3#3#255#14#14#14#255'KKK'#255'qqq'
- +#255#132#132#132#255#203#203#203#255#9#9#9#239#0#0#0#8#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#13#7#4#4#137#9#9#9#236
- +#16#16#16#247'-,,'#255'BBB'#255#135#135#135#255#206#206#206#255#216#216#216
- +#255'ppp'#255#19#19#19#255'LLL'#255'FFF'#254#11#11#11#162#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#0#0#0'B'#9#10#10#207#25#26#26#236'ddd'#254
- +'ooo'#255#137#137#137#255#145#145#145#255#193#192#192#255'==='#255#9#9#9#251
- +#0#0#0'2'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255
+ +#251#251#251#0'PPP'#255#0#0#0#255#9#9#9#255'[[['#255'}}}'#255#127#127#127#255
+ +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
+ +#255'}}}'#255'[[['#255#9#9#9#255#0#0#0#255'PPP'#255#251#251#251#0#255#255#255
+ +#0#255#255#255#0#133#133#133#0#1#1#1#255#9#9#9#255'hhh'#255#127#127#127#255
+ +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
+ +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255'hhh'#255
+ +#9#9#9#255#1#1#1#255#133#133#133#0#255#255#255#0#216#216#216#0#25#25#25#255#3
+ +#3#3#255'[[['#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
+ +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
+ +#127#255#127#127#127#255#127#127#127#255#127#127#127#255'[[['#255#3#3#3#255
+ +#25#25#25#255#216#216#216#0#132#132#132#0#1#1#1#255'+++'#255'}}}'#255#127#127
+ +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
+ +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
+ +#127#127#127#255#127#127#127#255'}}}'#255'+++'#255#1#1#1#255#132#132#132#0'C'
+ +'CC'#255#0#0#0#255'WWW'#255#127#127#127#255#127#127#127#255#127#127#127#255
+ +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
+ +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
+ +#127#255#127#127#127#255'WWW'#255#0#0#0#255'CCC'#255'((('#255#0#0#0#255'jjj'
+ +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
+ +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
+ +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
+ +'jjj'#255#0#0#0#255'((('#255' '#255#0#0#0#255'ooo'#255#127#127#127#255#127
+ +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
+ +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
+ +#255#127#127#127#255#127#127#127#255#127#127#127#255'ooo'#255#0#0#0#255' '
+ +#255' '#255#0#0#0#255'ooo'#255#127#127#127#255#127#127#127#255#127#127#127
+ +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
+ +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
+ ,#127#127#255#127#127#127#255'ooo'#255#0#0#0#255' '#255'((('#255#0#0#0#255
+ +'jjj'#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
+ +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
+ +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
+ +#255'jjj'#255#0#0#0#255'((('#255'CCC'#255#0#0#0#255'WWW'#255#127#127#127#255
+ +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
+ +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
+ +#127#255#127#127#127#255#127#127#127#255#127#127#127#255'WWW'#255#0#0#0#255
+ +'CCC'#255#132#132#132#0#1#1#1#255'+++'#255'}}}'#255#127#127#127#255#127#127
+ +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
+ +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
+ +#127#127#127#255'}}}'#255'+++'#255#1#1#1#255#132#132#132#0#216#216#216#0#25
+ +#25#25#255#3#3#3#255'[[['#255#127#127#127#255#127#127#127#255#127#127#127#255
+ +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
+ +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255'[[['#255
+ +#3#3#3#255#25#25#25#255#216#216#216#0#255#255#255#0#133#133#133#0#1#1#1#255#9
+ +#9#9#255'hhh'#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
+ +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
+ +#127#255#127#127#127#255'hhh'#255#9#9#9#255#1#1#1#255#133#133#133#0#255#255
+ +#255#0#255#255#255#0#251#251#251#0'PPP'#255#0#0#0#255#9#9#9#255'[[['#255'}}}'
+ +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
+ +#127#255#127#127#127#255'}}}'#255'[[['#255#9#9#9#255#0#0#0#255'PPP'#255#251
+ +#251#251#0#255#255#255#0#255#255#255#0#255#255#255#0#251#251#251#0'PPP'#255#1
+ +#1#1#255#3#3#3#255'+++'#255'WWW'#255'jjj'#255'ooo'#255'ooo'#255'jjj'#255'WWW'
+ +#255'+++'#255#3#3#3#255#1#1#1#255'PPP'#255#251#251#251#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#133#133
+ +#133#0#25#25#25#255#1#1#1#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0
+ +#255#0#0#0#255#1#1#1#255#25#25#25#255#133#133#133#0#255#255#255#0#255#255#255
+#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#0#0#0'9'#9#10#10#140#14#15#15#210#10#10#10#239'.00'#237'RRR'#248
- +'???'#250#9#10#10#241#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#0#255#255#255#0#216#216#216#0#132#132#132#0'CCC'#255'((('#255' '
+ +#255' '#255'((('#255'CCC'#255#132#132#132#0#216#216#216#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#10'GroupIndex'#2#1#9'Nu'
+ +'mGlyphs'#2#0#7'OnClick'#7#20'ToolCircleShapeClick'#0#0#0#6'TPanel'#13'Panel'
+ +'MaskTool'#4'Left'#3'E'#1#6'Height'#2'"'#3'Top'#2#0#5'Width'#2'V'#5'Align'#7
+ +#6'alLeft'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2'"'#11'ClientWidth'#2
+ +'V'#8'TabOrder'#2#3#0#12'TSpeedButton'#17'ToolMaskRectangle'#4'Left'#2#7#6'H'
+ +'eight'#2#24#3'Top'#2#5#5'Width'#2#25#7'Anchors'#11#6'akLeft'#0#4'Down'#9#10
+ +'Glyph.Data'#10#234#4#0#0#230#4#0#0'BM'#230#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0
+ +#20#0#0#0#20#0#0#0#1#0#24#0#0#0#0#0#176#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0
+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0
+ +#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0
+ +#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0
+ +#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ ,#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0
+ +#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0
+ +#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#10'GroupInd'
+ +'ex'#2#1#9'NumGlyphs'#2#0#7'OnClick'#7#22'ToolMaskRectangleClick'#0#0#12'TSp'
+ +'eedButton'#15'ToolMaskEllipse'#4'Left'#2#31#6'Height'#2#24#3'Top'#2#5#5'Wid'
+ +'th'#2#25#7'Anchors'#11#6'akLeft'#0#10'Glyph.Data'#10'z'#6#0#0'v'#6#0#0'BMv'
+ +#6#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0' '#0#0#0#0#0'@'#6#0#0
+ +'d'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#216#216#216#0#132#132#132#0'CCC'#255'((('#255' '
+ +' '#255' '#255'((('#255'CCC'#255#132#132#132#0#216#216#216#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#0#0#0#4#0#0#0'5'#0#0#0'U'#0#0#0'N'#0#0#0#10#255#255#255#0#255#255#255
+ +#255#255#0#255#255#255#0#255#255#255#0#133#133#133#0#25#25#25#255#1#1#1#255#0
+ +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#1#1#1#255#25#25#25
+ +#255#133#133#133#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#251#251#251#0'PPP'#255#1#1#1#255#3#3#3#255'+++'
+ +#255'WWW'#255'jjj'#255'ooo'#255'ooo'#255'jjj'#255'WWW'#255'+++'#255#3#3#3#255
+ +#1#1#1#255'PPP'#255#251#251#251#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#251#251#251#0'PPP'#255#0#0#0#255#9#9#9#255'[[['#255'}}}'#255#127#127#127#255
+ +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
+ +#255'}}}'#255'[[['#255#9#9#9#255#0#0#0#255'PPP'#255#251#251#251#0#255#255#255
+ +#0#255#255#255#0#133#133#133#0#1#1#1#255#9#9#9#255'hhh'#255#127#127#127#255
+ +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
+ +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255'hhh'#255
+ +#9#9#9#255#1#1#1#255#133#133#133#0#255#255#255#0#216#216#216#0#25#25#25#255#3
+ +#3#3#255'[[['#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
+ +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
+ +#127#255#127#127#127#255#127#127#127#255#127#127#127#255'[[['#255#3#3#3#255
+ +#25#25#25#255#216#216#216#0#132#132#132#0#1#1#1#255'+++'#255'}}}'#255#127#127
+ +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
+ +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
+ +#127#127#127#255#127#127#127#255'}}}'#255'+++'#255#1#1#1#255#132#132#132#0'C'
+ +'CC'#255#0#0#0#255'WWW'#255#127#127#127#255#127#127#127#255#127#127#127#255
+ +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
+ +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
+ +#127#255#127#127#127#255'WWW'#255#0#0#0#255'CCC'#255'((('#255#0#0#0#255'jjj'
+ +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
+ +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
+ +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
+ +'jjj'#255#0#0#0#255'((('#255' '#255#0#0#0#255'ooo'#255#127#127#127#255#127
+ +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
+ ,#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
+ +#255#127#127#127#255#127#127#127#255#127#127#127#255'ooo'#255#0#0#0#255' '
+ +#255' '#255#0#0#0#255'ooo'#255#127#127#127#255#127#127#127#255#127#127#127
+ +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
+ +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
+ +#127#127#255#127#127#127#255'ooo'#255#0#0#0#255' '#255'((('#255#0#0#0#255
+ +'jjj'#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
+ +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
+ +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
+ +#255'jjj'#255#0#0#0#255'((('#255'CCC'#255#0#0#0#255'WWW'#255#127#127#127#255
+ +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
+ +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
+ +#127#255#127#127#127#255#127#127#127#255#127#127#127#255'WWW'#255#0#0#0#255
+ +'CCC'#255#132#132#132#0#1#1#1#255'+++'#255'}}}'#255#127#127#127#255#127#127
+ +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
+ +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
+ +#127#127#127#255'}}}'#255'+++'#255#1#1#1#255#132#132#132#0#216#216#216#0#25
+ +#25#25#255#3#3#3#255'[[['#255#127#127#127#255#127#127#127#255#127#127#127#255
+ +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
+ +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255'[[['#255
+ +#3#3#3#255#25#25#25#255#216#216#216#0#255#255#255#0#133#133#133#0#1#1#1#255#9
+ +#9#9#255'hhh'#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
+ +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
+ +#127#255#127#127#127#255'hhh'#255#9#9#9#255#1#1#1#255#133#133#133#0#255#255
+ +#255#0#255#255#255#0#251#251#251#0'PPP'#255#0#0#0#255#9#9#9#255'[[['#255'}}}'
+ +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
+ +#127#255#127#127#127#255'}}}'#255'[[['#255#9#9#9#255#0#0#0#255'PPP'#255#251
+ +#251#251#0#255#255#255#0#255#255#255#0#255#255#255#0#251#251#251#0'PPP'#255#1
+ +#1#1#255#3#3#3#255'+++'#255'WWW'#255'jjj'#255'ooo'#255'ooo'#255'jjj'#255'WWW'
+ +#255'+++'#255#3#3#3#255#1#1#1#255'PPP'#255#251#251#251#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#133#133
+ +#133#0#25#25#25#255#1#1#1#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0
+ +#255#0#0#0#255#1#1#1#255#25#25#25#255#133#133#133#0#255#255#255#0#255#255#255
+#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#10'Gr'
- +'oupIndex'#2#1#9'NumGlyphs'#2#0#7'OnClick'#7#22'ToolMaskFloodFillClick'#0#0#0
- +#0#6'TPanel'#16'PanelToolOptions'#4'Left'#2#0#6'Height'#2'"'#3'Top'#2'G'#5'W'
- +'idth'#3#167#3#5'Align'#7#5'alTop'#10'BevelOuter'#7#6'bvNone'#12'ClientHeigh'
- +'t'#2'"'#11'ClientWidth'#3#167#3#8'TabOrder'#2#2#0#6'TLabel'#9'LabelSize'#4
- +'Left'#2#0#6'Height'#2'"'#3'Top'#2#0#5'Width'#2#28#5'Align'#7#6'alLeft'#7'Ca'
- +'ption'#6#5'Size:'#21'Constraints.MinHeight'#2' '#6'Layout'#7#8'tlCenter'#11
- +'ParentColor'#8#0#0#6'TLabel'#12'LabelDensity'#4'Left'#3#234#0#6'Height'#2'"'
- +#3'Top'#2#0#5'Width'#2'2'#5'Align'#7#6'alLeft'#7'Caption'#6#8'Density:'#21'C'
- +'onstraints.MinHeight'#2' '#6'Layout'#7#8'tlCenter'#11'ParentColor'#8#0#0#6
- +'TLabel'#14'LabelRoundness'#4'Left'#2'_'#6'Height'#2'"'#3'Top'#2#0#5'Width'#2
- +'G'#5'Align'#7#6'alLeft'#7'Caption'#6#10'Roundness:'#21'Constraints.MinHeigh'
- +'t'#2' '#6'Layout'#7#8'tlCenter'#11'ParentColor'#8#0#0#6'TLabel'#14'LabelTol'
- +'erance'#4'Left'#3'a'#1#6'Height'#2'"'#3'Top'#2#0#5'Width'#2'?'#5'Align'#7#6
- +'alLeft'#7'Caption'#6#10'Tolerance:'#21'Constraints.MinHeight'#2' '#6'Layout'
- +#7#8'tlCenter'#11'ParentColor'#8#0#0#6'TPanel'#9'PanelSize'#4'Left'#2#28#6'H'
- +'eight'#2'"'#3'Top'#2#0#5'Width'#2'C'#5'Align'#7#6'alLeft'#10'BevelOuter'#7#6
- +'bvNone'#12'ClientHeight'#2'"'#11'ClientWidth'#2'C'#8'TabOrder'#2#0#0#5'TEdi'
- +'t'#8'EditSize'#4'Left'#2#3#6'Height'#2#27#3'Top'#2#3#5'Width'#2'+'#7'Anchor'
- +'s'#11#6'akLeft'#0#8'OnChange'#7#14'EditSizeChange'#8'TabOrder'#2#0#4'Text'#6
- +#2'10'#0#0#7'TUpDown'#10'UpDownSize'#4'Left'#2'.'#6'Height'#2#27#3'Top'#2#3#5
- +'Width'#2#17#9'Associate'#7#8'EditSize'#3'Min'#2#1#3'Max'#3#200#0#8'Position'
- +#2#10#8'TabOrder'#2#1#9'Thousands'#8#4'Wrap'#8#0#0#0#6'TPanel'#12'PanelDensi'
- +'ty'#4'Left'#3#28#1#6'Height'#2'"'#3'Top'#2#0#5'Width'#2'E'#5'Align'#7#6'alL'
- +'eft'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2'"'#11'ClientWidth'#2'E'#8
- +'TabOrder'#2#1#0#5'TEdit'#11'EditDensity'#4'Left'#2#3#6'Height'#2#27#3'Top'#2
- +#3#5'Width'#2'*'#7'Anchors'#11#6'akLeft'#0#8'OnChange'#7#17'EditDensityChang'
- +'e'#8'TabOrder'#2#0#4'Text'#6#3'100'#0#0#7'TUpDown'#13'UpDownDensity'#4'Left'
- ,#2'-'#6'Height'#2#27#3'Top'#2#3#5'Width'#2#17#9'Associate'#7#11'EditDensity'
- +#3'Min'#2#0#8'Position'#2'd'#8'TabOrder'#2#1#9'Thousands'#8#4'Wrap'#8#0#0#0#6
- +'TPanel'#14'PanelRoundness'#4'Left'#3#166#0#6'Height'#2'"'#3'Top'#2#0#5'Widt'
- +'h'#2'D'#5'Align'#7#6'alLeft'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2
- +'"'#11'ClientWidth'#2'D'#8'TabOrder'#2#2#0#5'TEdit'#13'EditRoundness'#4'Left'
- +#2#4#6'Height'#2#27#3'Top'#2#3#5'Width'#2'*'#7'Anchors'#11#6'akLeft'#0#8'OnC'
- +'hange'#7#19'EditRoundnessChange'#8'TabOrder'#2#0#4'Text'#6#1'0'#0#0#7'TUpDo'
- +'wn'#15'UpDownRoundness'#4'Left'#2'.'#6'Height'#2#27#3'Top'#2#3#5'Width'#2#17
- +#9'Associate'#7#13'EditRoundness'#3'Min'#2#0#3'Max'#3#0#16#8'Position'#2#0#8
- +'TabOrder'#2#1#9'Thousands'#8#4'Wrap'#8#0#0#0#6'TPanel'#14'PanelTolerance'#4
- +'Left'#3#160#1#6'Height'#2'"'#3'Top'#2#0#5'Width'#2'D'#5'Align'#7#6'alLeft'
- +#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2'"'#11'ClientWidth'#2'D'#8'Tab'
- +'Order'#2#3#0#5'TEdit'#13'EditTolerance'#4'Left'#2#2#6'Height'#2#27#3'Top'#2
- +#3#5'Width'#2'*'#7'Anchors'#11#6'akLeft'#0#8'OnChange'#7#19'EditToleranceCha'
- +'nge'#8'TabOrder'#2#0#4'Text'#6#1'0'#0#0#7'TUpDown'#15'UpDownTolerance'#4'Le'
- +'ft'#2','#6'Height'#2#27#3'Top'#2#3#5'Width'#2#17#9'Associate'#7#13'EditTole'
- +'rance'#3'Min'#2#0#8'Position'#2#0#8'TabOrder'#2#1#9'Thousands'#8#4'Wrap'#8#0
- +#0#0#6'TLabel'#15'LabelTolerance1'#4'Left'#3#228#1#6'Height'#2'"'#3'Top'#2#0
- +#5'Width'#2';'#5'Align'#7#6'alLeft'#7'Caption'#6#11'Fill Alpha:'#21'Constrai'
- +'nts.MinHeight'#2' '#6'Layout'#7#8'tlCenter'#11'ParentColor'#8#0#0#6'TPanel'
- +#15'PanelTolerance1'#4'Left'#3#31#2#6'Height'#2'"'#3'Top'#2#0#5'Width'#2'D'#5
- +'Align'#7#6'alLeft'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2'"'#11'Clie'
- +'ntWidth'#2'D'#8'TabOrder'#2#4#0#9'TSpinEdit'#13'spinFillAlpha'#4'Left'#2#10
- +#6'Height'#2#27#3'Top'#2#3#5'Width'#2'5'#8'OnChange'#7#19'spinFillAlphaChang'
- +'e'#8'TabOrder'#2#0#5'Value'#2'd'#0#0#0#6'TLabel'#15'LabelTolerance2'#4'Left'
- +#3'c'#2#6'Height'#2'"'#3'Top'#2#0#5'Width'#2'#'#5'Align'#7#6'alLeft'#7'Capti'
- +'on'#6#5'Fuzzy'#21'Constraints.MinHeight'#2' '#6'Layout'#7#8'tlCenter'#11'Pa'
- +'rentColor'#8#0#0#6'TPanel'#15'PanelTolerance2'#4'Left'#3#134#2#6'Height'#2
- +'"'#3'Top'#2#0#5'Width'#2#30#5'Align'#7#6'alLeft'#10'BevelOuter'#7#6'bvNone'
- +#12'ClientHeight'#2'"'#11'ClientWidth'#2#30#8'TabOrder'#2#5#0#9'TCheckBox'#10
- +'checkFuzzy'#4'Left'#2#4#6'Height'#2#23#3'Top'#2#9#5'Width'#2#24#8'OnChange'
- +#7#16'checkFuzzyChange'#8'TabOrder'#2#0#0#0#0#0#0#6'TPanel'#13'PanelPictures'
- +#4'Left'#2'('#6'Height'#3#20#2#3'Top'#2'i'#5'Width'#3'4'#3#5'Align'#7#8'alCl'
- +'ient'#10'BevelOuter'#7#9'bvLowered'#8'TabOrder'#2#3#0#0#9'TMainMenu'#8'Main'
- +'Menu'#6'Images'#7#16'ImageListActions'#4'left'#2'r'#3'top'#2'~'#0#9'TMenuIt'
- +'em'#12'MenuItemFile'#7'Caption'#6#5'&File'#0#9'TMenuItem'#11'MenuItemNew'#7
- +'Caption'#6#7'&New...'#11'Bitmap.Data'#10'z'#6#0#0'v'#6#0#0'BMv'#6#0#0#0#0#0
+ +#255#255#0#255#255#255#0#216#216#216#0#132#132#132#0'CCC'#255'((('#255' '
+ +#255' '#255'((('#255'CCC'#255#132#132#132#0#216#216#216#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#10'GroupIndex'#2#1#9'Nu'
+ +'mGlyphs'#2#0#7'OnClick'#7#20'ToolMaskEllipseClick'#0#0#12'TSpeedButton'#17
+ +'ToolMaskFloodFill'#4'Left'#2'8'#6'Height'#2#24#3'Top'#2#5#5'Width'#2#25#7'A'
+ +'nchors'#11#6'akLeft'#0#10'Glyph.Data'#10'z'#6#0#0'v'#6#0#0'BMv'#6#0#0#0#0#0
+#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0' '#0#0#0#0#0'@'#6#0#0'd'#0#0#0'd'
- +#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#255#255#255#0#0#0#0#31#0#0#0#254#4#4#4
- +#251#6#6#6#249#7#7#7#249#9#9#9#247#15#15#13#246#25#25#20#246#26#26#21#245#26
- +#26#22#244#25#25#22#243#25#25#23#242#25#25#24#242#25#25#25#241#0#0#0#255#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#31
- +#20#20#20#243#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#253#255#255#255#247#255#255#255#240#255#255#255#228
- +#255#255#255#228#255#255#255#228#255#255#255#231#255#0#0#0#255#0#0#0#2#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#30#19#19#19#244
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#252#255#255#255
- +#236#255#255#255#228#255#255#255#231#255#2#2#2#253#0#0#0#5#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#0#0#0#29#18#18#18#244#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#254#255#255#255
- +#233#255#255#255#230#255#3#3#3#252#0#0#0#8#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#0#0#0#28#17#17#17#244#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#250#255#255
- +#255#229#255#4#4#4#251#0#0#0#10#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#0#0#0#27#17#17#17#244#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#234#255#6#6
- +#6#250#0#0#0#13#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0
- +#26#17#17#17#244#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#241#255#8#8#8#248#0#0#0#15
- ,#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#26#16#16#16
- +#245#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#245#255#11#11#11#248#0#0#0#18#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#25#15#15#15#245#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#248#255#13#13#13#247#0#0#0#20#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#0#0#0#24#14#14#14#245#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#250#255#15#15#15#246#0#0#0#23#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#0#0#0#23#14#14#14#246#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#251#255#17#17#16#245#0#0#0#25#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#0#0#0#22#13#13#13#246#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#252#255#19#19#18#244#0#0#0#28#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#0#0#0#21#12#12#12#246#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#254#255#22
- +#22#21#243#0#0#0#31#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0
- +#0#0#21#12#12#12#247#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#22#22#22#243#0#0
- +#0'!'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#20#11#11
- +#11#247#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#24#24#24#242#0#0#0'$'#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#19#11#11#11#247
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255'...'#255#14#14#14#255#14
- +#14#14#255#14#14#14#255#17#17#17#250#0#0#0'&'#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#0#0#0#18#10#10#10#247#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#3#3#3#255#209#209#209#255#167#167#167#255#11#11#11
- +#255#8#8#8#221#0#0#0#12#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255
- +#0#0#0#0#17#9#9#9#248#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#7#7
- +#7#255#163#163#163#255#14#14#14#255#8#8#8#206#0#0#0#9#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#16#8#8#8#248#240#240
- +#240#255#241#241#241#255#242#242#242#255#243#243#243#255#244#244#244#255#245
- +#245#245#255#246#246#246#255#247#247#247#255#10#10#10#255#9#9#9#254#7#7#7#180
- +#0#0#0#2#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255
- +#0#255#255#255#0#0#0#0#12#6#6#6#238#10#10#10#243#9#9#9#244#8#8#8#245#7#7#7
- +#246#7#7#7#247#6#6#6#248#5#5#5#249#4#4#4#250#5#5#5#252#5#5#5#140#255#255#255
- +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#4'H'
- +'int'#6#3'New'#10'ImageIndex'#2#0#8'ShortCut'#3'N@'#7'OnClick'#7#14'FileNewE'
- +'xecute'#0#0#9'TMenuItem'#12'MenuItemOpen'#7'Caption'#6#8'&Open...'#11'Bitma'
- +'p.Data'#10'z'#6#0#0'v'#6#0#0'BMv'#6#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0
- +#20#0#0#0#1#0' '#0#0#0#0#0'@'#6#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#255#255
+ +#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255
+ +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#0#0#0#3#16#10#10#142#15#11#11#217#13#10#10#193#0
+ +#0#0#25#0#0#0'8'#17#11#11#160#15#11#11#201#15#9#9'd'#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#15#10#10#161#140#138
+ +#138#249#203#204#204#255'zyy'#254#28#25#25#231'933'#240#127#127#127#255#193
+ +#194#194#255#26#23#23#232#0#0#0'"'#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#14#9#9'sSQQ'#241#233#233#233#255#189#189#189#255#135#135#135#255
+ +#135#135#135#255#193#193#193#255#222#222#222#255'f__'#243#12#9#9#212#0#0#0#15
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#0#0#0#31'&$$'#233#230#230#230#255#186
+ +#187#187#255'~~~'#255#129#129#129#255#166#166#166#255#229#229#229#255#134#134
+ +#134#255#10#10#10#220#0#0#0'/'#0#0#0#10#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#15#11#11#170#210#210#210#255#175#175#175#255'}}}'#255#130#130#130#255'}}}'
+ +#255#225#225#225#255#194#194#194#255#140#140#140#255#21#21#21#253'222'#236#14
+ +#14#14#239#9#9#9#237#13#13#13#211#11#11#11#163#0#0#0'/'#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#17#15#15#211#224#224#224#255'ttt'#255#155
+ +#155#155#255#130#130#130#255#162#162#162#255#234#234#234#255#162#162#162#255
+ ,#135#135#135#255']]]'#255'yyy'#255#230#230#230#255#222#222#222#255#197#197
+ +#197#255#136#136#136#254#19#19#19#237#10#10#10#193#0#0#0'5'#255#255#255#0#255
+ +#255#255#0#21#18#18#215#205#205#205#255#135#135#135#255#225#225#225#255'{{{'
+ +#255#127#127#127#255#152#152#152#255#131#131#131#255#142#142#142#255#134#134
+ +#134#255#30#30#30#255#144#144#144#255#133#133#133#255#153#153#153#255#210#210
+ +#210#255#207#207#207#255#141#141#141#255#20#20#20#237#9#9#9#155#0#0#0#1#16#12
+ +#12#175#133#134#134#255#131#131#131#255#211#211#211#255#231#231#231#255#144
+ +#144#144#255#135#135#135#255'zzz'#255'iii'#255')))'#255#128#128#128#255#191
+ +#191#191#255#172#172#172#255#166#166#166#255'zzz'#255'rrr'#255#186#186#186
+ +#255#185#185#185#255'888'#241#10#10#10#151#4#2#2'NIFF'#242#135#135#135#255'{'
+ +'{{'#255#136#136#136#255#130#130#130#255#135#135#135#255'ccc'#255':::'#255'Q'
+ +'QQ'#255#201#201#201#255#177#177#177#255#173#173#173#255#169#169#169#255#171
+ +#171#171#255'rrr'#255#180#180#180#255#173#173#173#255#176#176#176#255#9#9#9
+ +#231#0#0#0#3#16#14#14#224#196#197#197#255#171#171#171#255#130#130#130#255#135
+ +#135#135#255#140#140#140#255'eee'#255'888'#255#129#129#129#255#202#202#202
+ +#255#178#178#178#255#173#173#173#255#169#169#169#255#170#170#170#255'uuu'#255
+ +#178#178#178#255#174#174#174#255'ZZZ'#251#10#10#10#139#255#255#255#0#16#10#10
+ +#149#174#174#174#255#234#234#234#255#154#154#154#255#130#130#130#255#135#135
+ +#135#255'xxx'#255'WWW'#255#30#30#30#255#182#182#182#255#141#141#141#255#150
+ +#150#150#255#175#175#175#255#132#132#132#255#173#173#173#255#179#179#179#255
+ +#187#187#187#255#15#15#15#238#0#0#0'!'#255#255#255#0#0#0#0#25#18#16#16#226
+ +#208#208#208#255#223#223#223#255'{{{'#255#178#178#178#255#204#204#204#255#135
+ +#135#135#255'333'#255'XXX'#255#201#201#201#255#210#210#210#255#141#141#141
+ +#255'___'#255#189#189#189#255#180#180#180#255#148#148#148#255#9#9#9#207#255
+ +#255#255#0#255#255#255#0#255#255#255#0#10#3#4'9'#16#13#13#221#206#206#206#255
+ +#222#222#222#255#146#146#146#255#209#209#209#255#201#201#201#255#144#144#144
+ +#255#18#18#18#255'WWW'#255#129#129#129#255#157#157#157#255#215#215#215#255
+ +#195#195#195#255#196#196#196#255'666'#242#2#2#2'['#255#255#255#0#255#255#255
+ +#0#255#255#255#0#255#255#255#0#0#0#0#23#13#12#12#231#130#130#130#255#198#198
+ +#198#255#134#134#134#255#142#142#142#255#177#177#177#255'BBB'#255#3#3#3#255
+ +#14#14#14#255'KKK'#255'qqq'#255#132#132#132#255#203#203#203#255#9#9#9#239#0#0
+ +#0#8#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0
+ +#0#0#13#7#4#4#137#9#9#9#236#16#16#16#247'-,,'#255'BBB'#255#135#135#135#255
+ +#206#206#206#255#216#216#216#255'ppp'#255#19#19#19#255'LLL'#255'FFF'#254#11
+ +#11#11#162#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0'B'#9#10
+ +#10#207#25#26#26#236'ddd'#254'ooo'#255#137#137#137#255#145#145#145#255#193
+ +#192#192#255'==='#255#9#9#9#251#0#0#0'2'#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0'9'#9#10#10#140#14#15#15#210
+ +#10#10#10#239'.00'#237'RRR'#248'???'#250#9#10#10#241#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#0#0#0#4#0#0#0'5'#0#0#0'U'#0#0#0'N'#0#0
+ +#0#10#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#10'GroupIndex'#2#1#9'NumGlyphs'#2#0#7'OnClick'#7
+ +#22'ToolMaskFloodFillClick'#0#0#0#0#6'TPanel'#16'PanelToolOptions'#4'Left'#2
+ +#0#6'Height'#2'"'#3'Top'#2'G'#5'Width'#3#167#3#5'Align'#7#5'alTop'#10'BevelO'
+ +'uter'#7#6'bvNone'#12'ClientHeight'#2'"'#11'ClientWidth'#3#167#3#8'TabOrder'
+ +#2#2#0#6'TLabel'#9'LabelSize'#4'Left'#2#0#6'Height'#2'"'#3'Top'#2#0#5'Width'
+ +#2#28#5'Align'#7#6'alLeft'#7'Caption'#6#5'Size:'#21'Constraints.MinHeight'#2
+ +' '#6'Layout'#7#8'tlCenter'#11'ParentColor'#8#0#0#6'TLabel'#12'LabelDensity'
+ +#4'Left'#3#234#0#6'Height'#2'"'#3'Top'#2#0#5'Width'#2'2'#5'Align'#7#6'alLeft'
+ +#7'Caption'#6#8'Density:'#21'Constraints.MinHeight'#2' '#6'Layout'#7#8'tlCen'
+ +'ter'#11'ParentColor'#8#0#0#6'TLabel'#14'LabelRoundness'#4'Left'#2'_'#6'Heig'
+ +'ht'#2'"'#3'Top'#2#0#5'Width'#2'G'#5'Align'#7#6'alLeft'#7'Caption'#6#10'Roun'
+ +'dness:'#21'Constraints.MinHeight'#2' '#6'Layout'#7#8'tlCenter'#11'ParentCol'
+ +'or'#8#0#0#6'TLabel'#14'LabelTolerance'#4'Left'#3'a'#1#6'Height'#2'"'#3'Top'
+ +#2#0#5'Width'#2'?'#5'Align'#7#6'alLeft'#7'Caption'#6#10'Tolerance:'#21'Const'
+ +'raints.MinHeight'#2' '#6'Layout'#7#8'tlCenter'#11'ParentColor'#8#0#0#6'TPan'
+ +'el'#9'PanelSize'#4'Left'#2#28#6'Height'#2'"'#3'Top'#2#0#5'Width'#2'C'#5'Ali'
+ ,'gn'#7#6'alLeft'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2'"'#11'ClientW'
+ +'idth'#2'C'#8'TabOrder'#2#0#0#5'TEdit'#8'EditSize'#4'Left'#2#3#6'Height'#2#27
+ +#3'Top'#2#3#5'Width'#2'+'#7'Anchors'#11#6'akLeft'#0#8'OnChange'#7#14'EditSiz'
+ +'eChange'#8'TabOrder'#2#0#4'Text'#6#2'10'#0#0#7'TUpDown'#10'UpDownSize'#4'Le'
+ +'ft'#2'.'#6'Height'#2#27#3'Top'#2#3#5'Width'#2#17#9'Associate'#7#8'EditSize'
+ +#3'Min'#2#1#3'Max'#3#200#0#8'Position'#2#10#8'TabOrder'#2#1#9'Thousands'#8#4
+ +'Wrap'#8#0#0#0#6'TPanel'#12'PanelDensity'#4'Left'#3#28#1#6'Height'#2'"'#3'To'
+ +'p'#2#0#5'Width'#2'E'#5'Align'#7#6'alLeft'#10'BevelOuter'#7#6'bvNone'#12'Cli'
+ +'entHeight'#2'"'#11'ClientWidth'#2'E'#8'TabOrder'#2#1#0#5'TEdit'#11'EditDens'
+ +'ity'#4'Left'#2#3#6'Height'#2#27#3'Top'#2#3#5'Width'#2'*'#7'Anchors'#11#6'ak'
+ +'Left'#0#8'OnChange'#7#17'EditDensityChange'#8'TabOrder'#2#0#4'Text'#6#3'100'
+ +#0#0#7'TUpDown'#13'UpDownDensity'#4'Left'#2'-'#6'Height'#2#27#3'Top'#2#3#5'W'
+ +'idth'#2#17#9'Associate'#7#11'EditDensity'#3'Min'#2#0#8'Position'#2'd'#8'Tab'
+ +'Order'#2#1#9'Thousands'#8#4'Wrap'#8#0#0#0#6'TPanel'#14'PanelRoundness'#4'Le'
+ +'ft'#3#166#0#6'Height'#2'"'#3'Top'#2#0#5'Width'#2'D'#5'Align'#7#6'alLeft'#10
+ +'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2'"'#11'ClientWidth'#2'D'#8'TabOrd'
+ +'er'#2#2#0#5'TEdit'#13'EditRoundness'#4'Left'#2#4#6'Height'#2#27#3'Top'#2#3#5
+ +'Width'#2'*'#7'Anchors'#11#6'akLeft'#0#8'OnChange'#7#19'EditRoundnessChange'
+ +#8'TabOrder'#2#0#4'Text'#6#1'0'#0#0#7'TUpDown'#15'UpDownRoundness'#4'Left'#2
+ +'.'#6'Height'#2#27#3'Top'#2#3#5'Width'#2#17#9'Associate'#7#13'EditRoundness'
+ +#3'Min'#2#0#3'Max'#3#0#16#8'Position'#2#0#8'TabOrder'#2#1#9'Thousands'#8#4'W'
+ +'rap'#8#0#0#0#6'TPanel'#14'PanelTolerance'#4'Left'#3#160#1#6'Height'#2'"'#3
+ +'Top'#2#0#5'Width'#2'D'#5'Align'#7#6'alLeft'#10'BevelOuter'#7#6'bvNone'#12'C'
+ +'lientHeight'#2'"'#11'ClientWidth'#2'D'#8'TabOrder'#2#3#0#5'TEdit'#13'EditTo'
+ +'lerance'#4'Left'#2#2#6'Height'#2#27#3'Top'#2#3#5'Width'#2'*'#7'Anchors'#11#6
+ +'akLeft'#0#8'OnChange'#7#19'EditToleranceChange'#8'TabOrder'#2#0#4'Text'#6#1
+ +'0'#0#0#7'TUpDown'#15'UpDownTolerance'#4'Left'#2','#6'Height'#2#27#3'Top'#2#3
+ +#5'Width'#2#17#9'Associate'#7#13'EditTolerance'#3'Min'#2#0#8'Position'#2#0#8
+ +'TabOrder'#2#1#9'Thousands'#8#4'Wrap'#8#0#0#0#6'TLabel'#15'LabelTolerance1'#4
+ +'Left'#3#228#1#6'Height'#2'"'#3'Top'#2#0#5'Width'#2';'#5'Align'#7#6'alLeft'#7
+ +'Caption'#6#11'Fill Alpha:'#21'Constraints.MinHeight'#2' '#6'Layout'#7#8'tlC'
+ +'enter'#11'ParentColor'#8#0#0#6'TPanel'#15'PanelTolerance1'#4'Left'#3#31#2#6
+ +'Height'#2'"'#3'Top'#2#0#5'Width'#2'D'#5'Align'#7#6'alLeft'#10'BevelOuter'#7
+ +#6'bvNone'#12'ClientHeight'#2'"'#11'ClientWidth'#2'D'#8'TabOrder'#2#4#0#9'TS'
+ +'pinEdit'#13'spinFillAlpha'#4'Left'#2#10#6'Height'#2#27#3'Top'#2#3#5'Width'#2
+ +'5'#8'OnChange'#7#19'spinFillAlphaChange'#8'TabOrder'#2#0#5'Value'#2'd'#0#0#0
+ +#6'TLabel'#15'LabelTolerance2'#4'Left'#3'c'#2#6'Height'#2'"'#3'Top'#2#0#5'Wi'
+ +'dth'#2'#'#5'Align'#7#6'alLeft'#7'Caption'#6#5'Fuzzy'#21'Constraints.MinHeig'
+ +'ht'#2' '#6'Layout'#7#8'tlCenter'#11'ParentColor'#8#0#0#6'TPanel'#15'PanelTo'
+ +'lerance2'#4'Left'#3#134#2#6'Height'#2'"'#3'Top'#2#0#5'Width'#2#30#5'Align'#7
+ +#6'alLeft'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2'"'#11'ClientWidth'#2
+ +#30#8'TabOrder'#2#5#0#9'TCheckBox'#10'checkFuzzy'#4'Left'#2#4#6'Height'#2#19
+ +#3'Top'#2#9#5'Width'#2#20#8'OnChange'#7#16'checkFuzzyChange'#8'TabOrder'#2#0
+ +#0#0#0#0#0#6'TPanel'#13'PanelPictures'#4'Left'#2'('#6'Height'#3#20#2#3'Top'#2
+ +'i'#5'Width'#3'4'#3#5'Align'#7#8'alClient'#10'BevelOuter'#7#9'bvLowered'#8'T'
+ +'abOrder'#2#3#0#0#9'TMainMenu'#8'MainMenu'#6'Images'#7#16'ImageListActions'#4
+ +'left'#2'r'#3'top'#2'~'#0#9'TMenuItem'#12'MenuItemFile'#7'Caption'#6#5'&File'
+ +#0#9'TMenuItem'#11'MenuItemNew'#7'Caption'#6#7'&New...'#11'Bitmap.Data'#10'z'
+ +#6#0#0'v'#6#0#0'BMv'#6#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0' '
+ +#0#0#0#0#0'@'#6#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#255#255
+ +#255#0#0#0#0#31#0#0#0#254#4#4#4#251#6#6#6#249#7#7#7#249#9#9#9#247#15#15#13
+ +#246#25#25#20#246#26#26#21#245#26#26#22#244#25#25#22#243#25#25#23#242#25#25
+ +#24#242#25#25#25#241#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#0#0#0#31#20#20#20#243#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#253#255#255#255
+ +#247#255#255#255#240#255#255#255#228#255#255#255#228#255#255#255#228#255#255
+ +#255#231#255#0#0#0#255#0#0#0#2#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#0#0#0#30#19#19#19#244#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#252#255#255#255#236#255#255#255#228#255#255#255#231#255#2#2
+ +#2#253#0#0#0#5#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0
+ +#29#18#18#18#244#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#254#255#255#255#233#255#255#255#230#255#3#3#3#252#0#0#0#8
+ ,#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#28#17#17#17
+ +#244#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#250#255#255#255#229#255#4#4#4#251#0#0#0#10#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#27#17#17#17#244#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#234#255#6#6#6#250#0#0#0#13#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#0#0#0#26#17#17#17#244#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#241#255#8#8#8#248#0#0#0#15#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#0#0#0#26#16#16#16#245#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#245#255
+ +#11#11#11#248#0#0#0#18#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255
+ +#0#0#0#0#25#15#15#15#245#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#248#255#13#13#13#247
+ +#0#0#0#20#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#24#14
+ +#14#14#245#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#250#255#15#15#15#246#0#0#0#23
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#23#14#14#14
+ +#246#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#251#255#17#17#16#245#0#0#0#25#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#22#13#13#13#246#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#252#255#19#19#18#244#0#0#0#28#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#0#0#0#21#12#12#12#246#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#254#255#22#22#21#243#0#0#0#31#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#0#0#0#21#12#12#12#247#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#22#22#22#243#0#0#0'!'#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#0#0#0#20#11#11#11#247#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#24#24#24#242#0#0#0'$'#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#0#0#0#19#11#11#11#247#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255'...'#255#14#14#14#255#14#14#14#255#14#14#14#255#17#17#17#250#0#0#0
+ +'&'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#18#10#10#10
+ +#247#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#3#3#3#255#209#209
+ +#209#255#167#167#167#255#11#11#11#255#8#8#8#221#0#0#0#12#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#0#0#0#17#9#9#9#248#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#7#7#7#255#163#163#163#255#14#14#14#255#8#8#8
+ +#206#0#0#0#9#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#0#0#0#16#8#8#8#248#240#240#240#255#241#241#241#255#242#242#242#255#243
+ +#243#243#255#244#244#244#255#245#245#245#255#246#246#246#255#247#247#247#255
+ +#10#10#10#255#9#9#9#254#7#7#7#180#0#0#0#2#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#12#6#6#6#238#10#10#10
+ +#243#9#9#9#244#8#8#8#245#7#7#7#246#7#7#7#247#6#6#6#248#5#5#5#249#4#4#4#250#5
+ +#5#5#252#5#5#5#140#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#4'Hint'#6#3'New'#10'ImageIndex'#2#0#8'ShortCut'
+ +#3'N@'#7'OnClick'#7#14'FileNewExecute'#0#0#9'TMenuItem'#12'MenuItemOpen'#7'C'
+ +'aption'#6#8'&Open...'#11'Bitmap.Data'#10'z'#6#0#0'v'#6#0#0'BMv'#6#0#0#0#0#0
+ +#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0' '#0#0#0#0#0'@'#6#0#0'd'#0#0#0'd'
+ ,#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255
+ +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0'D'#15#12#10#240#6#4#3#252#3
- +#2#1#254#3#2#2#254#3#2#2#254#3#2#2#254#3#2#1#254#3#2#1#254#3#2#2#254#4#3#2
- +#253#2#2#1#254#1#1#1#254#2#2#1#253#11#9#6#245#22#17#13#231#18#14#10#194#0#0#0
- +#27#255#255#255#0#255#255#255#0#14#10#8#207#149'c<'#255#227#150'^'#255#231
- ,#152'_'#255#231#151'_'#255#229#152'^'#255#229#150'\'#255#229#148'['#255#228
- +#147'Z'#255#227#147'X'#255#224#143'T'#255#220#138'N'#255#211#132'H'#255#201
- +'|@'#255#187'p7'#255#161'[%'#255'I('#12#255#8#4#0#177#255#255#255#0#255#255
- +#255#0#5#4#3#249#213#144'Z'#255#227#153'a'#255#227#153'`'#255#225#151'^'#255
- +#223#148'['#255#220#145'W'#255#217#141'R'#255#214#137'L'#255#210#132'G'#255
- +#206#127'@'#255#201'z:'#255#197'u3'#255#192'o,'#255#188'i%'#255#183'd'#30#255
- +#159'S'#20#255#15#8#3#230#255#255#255#0#0#0#0#28#18#13#9#247#232#159'h'#255
- +#233#160'i'#255#232#159'h'#255#230#157'f'#255#228#154'b'#255#224#150']'#255
- +#221#146'W'#255#217#141'Q'#255#213#136'K'#255#208#130'D'#255#204'}>'#255#199
- +'w7'#255#195'r0'#255#190'l('#255#185'f!'#255#179'_'#25#255#5#3#1#249#0#0#0#1
- +#0#0#0'H4%'#26#247#237#165'p'#255#238#166'q'#255#237#165'p'#255#235#163'm'
- +#255#232#159'h'#255#228#154'b'#255#224#149'\'#255#220#144'V'#255#215#139'O'
- +#255#211#133'H'#255#206#127'A'#255#201'z:'#255#196't2'#255#192'n+'#255#187'h'
- +'$'#255#182'b'#28#255#12#6#2#248#0#0#0' '#0#0#0'|R9'''#254#242#172'x'#255#243
- +#173'y'#255#242#171'x'#255#239#168's'#255#235#163'n'#255#231#158'g'#255#227
- +#153'`'#255#222#147'Y'#255#217#141'R'#255#212#135'K'#255#208#129'C'#255#203
- +'{<'#255#198'u4'#255#193'o-'#255#188'i%'#255#183'c'#30#255#31#16#4#251#0#0#0
- +'J'#12#8#5#190'yV<'#255#247#177#127#255#248#179#129#255#246#177'~'#255#243
- +#172'x'#255#238#166'q'#255#233#161'j'#255#228#155'c'#255#223#149'['#255#218
- +#143'T'#255#214#137'L'#255#208#131'E'#255#203'|='#255#199'v6'#255#193'p.'#255
- +#188'j&'#255#183'd'#31#255'< '#7#254#0#0#0'|'#11#8#5#225#170#127'^'#255#250
- +#181#131#255#254#186#137#255#249#180#130#255#244#174'{'#255#239#168's'#255
- +#234#162'k'#255#229#156'd'#255#224#149'\'#255#219#143'U'#255#214#137'M'#255
- +#209#131'E'#255#204'}>'#255#199'w6'#255#194'q.'#255#189'j'''#255#184'd'#31
- +#255'k8'#13#255#8#4#0#185#10#7#4#239#230#190#154#255#248#180#131#255#250#181
- +#131#255#248#178#128#255#243#173'y'#255#238#167'r'#255#234#161'k'#255#229#155
- +'c'#255#224#149'\'#255#219#143'T'#255#214#137'M'#255#209#131'E'#255#204'}='
- +#255#199'v6'#255#194'p.'#255#189'j&'#255#184'd'#31#255#151'T'#27#255#10#5#0
- +#224#9#6#4#239#242#206#170#255#248#208#171#255#247#194#152#255#244#182#133
- +#255#240#171'x'#255#236#165'q'#255#232#160'h'#255#227#153'a'#255#222#148'Z'
- +#255#218#142'R'#255#213#136'K'#255#208#130'D'#255#205#128'A'#255#203#129'C'
- +#255#209#143'V'#255#218#161'm'#255#232#184#140#255#240#204#168#255#8#3#0#232
- +#10#7#4#149'SF9'#255#141'wb'#255#150'~g'#255#155#130'j'#255#161#134'm'#255
- +#168#140'r'#255#171#142'u'#255#168#141'r'#255#163#136'n'#255#158#131'j'#255
- +#158#132'k'#255#164#139'q'#255#163#138'p'#255#154#129'i'#255#145'yb'#255#134
- +'pZ'#255'saN'#255'TH;'#254#9#4#0#165#255#255#255#0#9#9#9#241#180#180#180#255
- +#166#166#166#255#157#157#157#255#147#147#147#255#141#141#141#255#142#142#142
- +#255#144#144#144#255#145#145#145#255#147#147#147#255#148#148#148#255#150#150
- +#150#255#154#154#154#255#162#162#162#255#172#172#172#255#181#181#181#255#136
- +#136#136#255#6#6#6#199#255#255#255#0#255#255#255#0#11#11#11#242#232#232#232
- +#255#244#244#244#255#244#244#244#255#244#244#244#255#244#244#244#255#244#244
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0
+ +'D'#15#12#10#240#6#4#3#252#3#2#1#254#3#2#2#254#3#2#2#254#3#2#2#254#3#2#1#254
+ +#3#2#1#254#3#2#2#254#4#3#2#253#2#2#1#254#1#1#1#254#2#2#1#253#11#9#6#245#22#17
+ +#13#231#18#14#10#194#0#0#0#27#255#255#255#0#255#255#255#0#14#10#8#207#149'c<'
+ +#255#227#150'^'#255#231#152'_'#255#231#151'_'#255#229#152'^'#255#229#150'\'
+ +#255#229#148'['#255#228#147'Z'#255#227#147'X'#255#224#143'T'#255#220#138'N'
+ +#255#211#132'H'#255#201'|@'#255#187'p7'#255#161'[%'#255'I('#12#255#8#4#0#177
+ +#255#255#255#0#255#255#255#0#5#4#3#249#213#144'Z'#255#227#153'a'#255#227#153
+ +'`'#255#225#151'^'#255#223#148'['#255#220#145'W'#255#217#141'R'#255#214#137
+ +'L'#255#210#132'G'#255#206#127'@'#255#201'z:'#255#197'u3'#255#192'o,'#255#188
+ +'i%'#255#183'd'#30#255#159'S'#20#255#15#8#3#230#255#255#255#0#0#0#0#28#18#13
+ +#9#247#232#159'h'#255#233#160'i'#255#232#159'h'#255#230#157'f'#255#228#154'b'
+ +#255#224#150']'#255#221#146'W'#255#217#141'Q'#255#213#136'K'#255#208#130'D'
+ +#255#204'}>'#255#199'w7'#255#195'r0'#255#190'l('#255#185'f!'#255#179'_'#25
+ +#255#5#3#1#249#0#0#0#1#0#0#0'H4%'#26#247#237#165'p'#255#238#166'q'#255#237
+ +#165'p'#255#235#163'm'#255#232#159'h'#255#228#154'b'#255#224#149'\'#255#220
+ +#144'V'#255#215#139'O'#255#211#133'H'#255#206#127'A'#255#201'z:'#255#196't2'
+ +#255#192'n+'#255#187'h$'#255#182'b'#28#255#12#6#2#248#0#0#0' '#0#0#0'|R9'''
+ +#254#242#172'x'#255#243#173'y'#255#242#171'x'#255#239#168's'#255#235#163'n'
+ +#255#231#158'g'#255#227#153'`'#255#222#147'Y'#255#217#141'R'#255#212#135'K'
+ +#255#208#129'C'#255#203'{<'#255#198'u4'#255#193'o-'#255#188'i%'#255#183'c'#30
+ +#255#31#16#4#251#0#0#0'J'#12#8#5#190'yV<'#255#247#177#127#255#248#179#129#255
+ +#246#177'~'#255#243#172'x'#255#238#166'q'#255#233#161'j'#255#228#155'c'#255
+ +#223#149'['#255#218#143'T'#255#214#137'L'#255#208#131'E'#255#203'|='#255#199
+ +'v6'#255#193'p.'#255#188'j&'#255#183'd'#31#255'< '#7#254#0#0#0'|'#11#8#5#225
+ +#170#127'^'#255#250#181#131#255#254#186#137#255#249#180#130#255#244#174'{'
+ +#255#239#168's'#255#234#162'k'#255#229#156'd'#255#224#149'\'#255#219#143'U'
+ +#255#214#137'M'#255#209#131'E'#255#204'}>'#255#199'w6'#255#194'q.'#255#189'j'
+ +''''#255#184'd'#31#255'k8'#13#255#8#4#0#185#10#7#4#239#230#190#154#255#248
+ +#180#131#255#250#181#131#255#248#178#128#255#243#173'y'#255#238#167'r'#255
+ +#234#161'k'#255#229#155'c'#255#224#149'\'#255#219#143'T'#255#214#137'M'#255
+ +#209#131'E'#255#204'}='#255#199'v6'#255#194'p.'#255#189'j&'#255#184'd'#31#255
+ +#151'T'#27#255#10#5#0#224#9#6#4#239#242#206#170#255#248#208#171#255#247#194
+ +#152#255#244#182#133#255#240#171'x'#255#236#165'q'#255#232#160'h'#255#227#153
+ +'a'#255#222#148'Z'#255#218#142'R'#255#213#136'K'#255#208#130'D'#255#205#128
+ +'A'#255#203#129'C'#255#209#143'V'#255#218#161'm'#255#232#184#140#255#240#204
+ +#168#255#8#3#0#232#10#7#4#149'SF9'#255#141'wb'#255#150'~g'#255#155#130'j'#255
+ +#161#134'm'#255#168#140'r'#255#171#142'u'#255#168#141'r'#255#163#136'n'#255
+ +#158#131'j'#255#158#132'k'#255#164#139'q'#255#163#138'p'#255#154#129'i'#255
+ +#145'yb'#255#134'pZ'#255'saN'#255'TH;'#254#9#4#0#165#255#255#255#0#9#9#9#241
+ +#180#180#180#255#166#166#166#255#157#157#157#255#147#147#147#255#141#141#141
+ +#255#142#142#142#255#144#144#144#255#145#145#145#255#147#147#147#255#148#148
+ +#148#255#150#150#150#255#154#154#154#255#162#162#162#255#172#172#172#255#181
+ +#181#181#255#136#136#136#255#6#6#6#199#255#255#255#0#255#255#255#0#11#11#11
+ +#242#232#232#232#255#244#244#244#255#244#244#244#255#244#244#244#255#244#244
+#244#255#244#244#244#255#244#244#244#255#244#244#244#255#244#244#244#255#244
+#244#244#255#244#244#244#255#244#244#244#255#244#244#244#255#244#244#244#255
- +#157#157#157#249#3#3#3#175#255#255#255#0#255#255#255#0#11#11#11#227#215#215
- +#215#255#244#244#244#255#244#244#244#255#244#244#244#255#244#244#244#255#243
- +#243#243#255#236#236#236#255#202#202#202#219#129#129#129#186'|||'#187'{{{'
- +#186'{{{'#184'{{{'#182'vvv'#174'hhh'#169#16#16#16#218#0#0#0'r'#255#255#255#0
- +#255#255#255#0#1#1#1#159#204#204#204#250#237#237#237#255#236#236#236#255#239
- +#239#239#255#238#238#238#255#213#213#213#246'???'#232#0#0#0#171#0#0#0#156#0#0
- +#0#154#0#0#0#151#0#0#0#149#0#0#0#146#0#0#0#143#0#0#0#140#0#0#0'M'#0#0#0#5#255
- +#255#255#0#255#255#255#0#0#0#0#24#7#7#7#186#14#14#14#209#18#18#18#215#27#27
- +#27#217#15#15#15#214#5#5#5#177#0#0#0'3'#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#244#244#244#255#157#157#157#249#3#3#3#175#255#255#255#0#255#255#255#0#11#11
+ +#11#227#215#215#215#255#244#244#244#255#244#244#244#255#244#244#244#255#244
+ +#244#244#255#243#243#243#255#236#236#236#255#202#202#202#219#129#129#129#186
+ +'|||'#187'{{{'#186'{{{'#184'{{{'#182'vvv'#174'hhh'#169#16#16#16#218#0#0#0'r'
+ +#255#255#255#0#255#255#255#0#1#1#1#159#204#204#204#250#237#237#237#255#236
+ +#236#236#255#239#239#239#255#238#238#238#255#213#213#213#246'???'#232#0#0#0
+ +#171#0#0#0#156#0#0#0#154#0#0#0#151#0#0#0#149#0#0#0#146#0#0#0#143#0#0#0#140#0
+ +#0#0'M'#0#0#0#5#255#255#255#0#255#255#255#0#0#0#0#24#7#7#7#186#14#14#14#209
+ +#18#18#18#215#27#27#27#217#15#15#15#214#5#5#5#177#0#0#0'3'#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ ,#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
@@ -893,440 +905,439 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#4'Hint'#6#4'Open'#10'ImageIndex'#2#1#8'ShortCut'#3'O@'#7'OnClick'#7#15
- +'FileOpenExecute'#0#0#9'TMenuItem'#12'MenuItemSave'#7'Caption'#6#5'&Save'#11
- +'Bitmap.Data'#10'z'#6#0#0'v'#6#0#0'BMv'#6#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0
- ,#0#0#20#0#0#0#1#0' '#0#0#0#0#0'@'#6#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#7#0
- +#0#159#10#0#0#211#10#0#0#211#10#0#0#212#10#0#0#213#9#0#0#215#9#0#0#216#9#0#0
- +#217#9#0#0#218#9#0#0#219#8#0#0#220#8#0#0#222#8#0#0#222#8#0#0#223#8#0#0#224#7
- +#0#0#225#7#0#0#226#7#0#0#227#7#0#0#229#4#0#0#147#9#0#0#217'T'#0#0#255#171'vv'
- +#255#221#200#200#255#221#200#200#255#221#200#200#255#222#200#200#255#222#200
- +#200#255#222#200#200#255#222#200#200#255#222#200#200#255#222#200#200#255#222
- +#200#200#255#222#200#200#255#222#200#200#255#222#200#200#255#223#200#200#255
- +#189#143#143#255'J'#0#0#255#9#0#0#182#9#0#0#218'h'#0#0#255#201#152#152#255
+ +#255#255#0#255#255#255#0#4'Hint'#6#4'Open'#10'ImageIndex'#2#1#8'ShortCut'#3
+ +'O@'#7'OnClick'#7#15'FileOpenExecute'#0#0#9'TMenuItem'#12'MenuItemSave'#7'Ca'
+ +'ption'#6#5'&Save'#11'Bitmap.Data'#10'z'#6#0#0'v'#6#0#0'BMv'#6#0#0#0#0#0#0'6'
+ +#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0' '#0#0#0#0#0'@'#6#0#0'd'#0#0#0'd'#0#0#0
+ +#0#0#0#0#0#0#0#0#7#0#0#159#10#0#0#211#10#0#0#211#10#0#0#212#10#0#0#213#9#0#0
+ +#215#9#0#0#216#9#0#0#217#9#0#0#218#9#0#0#219#8#0#0#220#8#0#0#222#8#0#0#222#8
+ +#0#0#223#8#0#0#224#7#0#0#225#7#0#0#226#7#0#0#227#7#0#0#229#4#0#0#147#9#0#0
+ +#217'T'#0#0#255#171'vv'#255#221#200#200#255#221#200#200#255#221#200#200#255
+ +#222#200#200#255#222#200#200#255#222#200#200#255#222#200#200#255#222#200#200
+ +#255#222#200#200#255#222#200#200#255#222#200#200#255#222#200#200#255#222#200
+ +#200#255#223#200#200#255#189#143#143#255'J'#0#0#255#9#0#0#182#9#0#0#218'h'#0
+ +#0#255#201#152#152#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#218
- +#184#184#255'U'#0#0#255#9#0#0#183#9#0#0#219'h'#0#0#255#201#152#152#255#255
+ +#255#255#255#255#255#218#184#184#255'U'#0#0#255#9#0#0#183#9#0#0#219'h'#0#0
+ +#255#201#152#152#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#218#184
- +#184#255'V'#0#0#255#9#0#0#185#9#0#0#220'h'#0#0#255#201#152#152#255#255#255
+ +#255#255#255#255#218#184#184#255'V'#0#0#255#9#0#0#185#9#0#0#220'h'#0#0#255
+ +#201#152#152#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#218#184#184
- +#255'V'#0#0#255#9#0#0#186#9#0#0#220'h'#0#0#255#201#152#152#255#255#255#255
+ +#255#255#255#218#184#184#255'V'#0#0#255#9#0#0#186#9#0#0#220'h'#0#0#255#201
+ +#152#152#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#218#184#184#255
- +'W'#0#0#255#9#0#0#187#9#0#0#220'i'#0#0#255#201#152#152#255#255#255#255#255
+ +#255#255#218#184#184#255'W'#0#0#255#9#0#0#187#9#0#0#220'i'#0#0#255#201#152
+ +#152#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#218#184#184#255'X'#0
- +#0#255#10#0#0#188#8#0#0#221'i'#0#0#255#175#143#176#255#179#179#235#255#179
+ +#255#218#184#184#255'X'#0#0#255#10#0#0#188#8#0#0#221'i'#0#0#255#175#143#176
+ +#255#179#179#235#255#179#179#235#255#179#179#235#255#179#179#235#255#179#179
+ +#235#255#179#179#235#255#179#179#235#255#179#179#235#255#179#179#235#255#179
+#179#235#255#179#179#235#255#179#179#235#255#179#179#235#255#179#179#235#255
- +#179#179#235#255#179#179#235#255#179#179#235#255#179#179#235#255#179#179#235
- +#255#179#179#235#255#179#179#235#255#179#179#235#255#179#160#199#255'Y'#0#0
- +#255#10#0#0#190#8#0#0#222'i'#0#0#255#157#137#193#255#128#128#221#255#128#128
- +#221#255#128#128#221#255#128#128#221#255#128#128#221#255#128#128#221#255#128
- +#128#221#255#128#128#221#255#128#128#221#255#128#128#221#255#128#128#221#255
- +#128#128#221#255#128#128#221#255#128#128#221#255#152#143#210#255'Y'#0#0#255
- +#10#0#0#191#8#0#0#223'i'#0#0#255#157#137#193#255#128#128#221#255#128#128#221
+ +#179#160#199#255'Y'#0#0#255#10#0#0#190#8#0#0#222'i'#0#0#255#157#137#193#255
+ +#128#128#221#255#128#128#221#255#128#128#221#255#128#128#221#255#128#128#221
+#255#128#128#221#255#128#128#221#255#128#128#221#255#128#128#221#255#128#128
- +#221#255#128#128#221#255#128#128#221#255#128#128#221#255#128#128#221#255#128
- +#128#221#255#128#128#221#255#128#128#221#255#152#143#210#255'Z'#0#0#255#10#0
- +#0#192#8#0#0#223'j'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0
- +#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0
- +#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'['#0#0#255#10#0#0#193#8#0
- +#0#224'j'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0
- +#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0
- +#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'\'#0#0#255#10#0#0#195#8#0#0#225'j'#0
- +#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0
- +#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0
- +#0#255'{'#0#0#255'{'#0#0#255'\'#0#0#255#10#0#0#196#8#0#0#225'j'#0#0#255'{'#0
- +#0#255'{'#0#0#255'y'#0#0#255'~VU'#255#137'us'#255#137'sr'#255#137'sq'#255#137
- +'rp'#255#137'qo'#255#135'nl'#255#132'ki'#255#131'jh'#255#135'kj'#255'v10'#255
- +'{'#0#0#255'{'#0#0#255']'#0#0#255#10#0#0#197#7#0#0#226'k'#0#0#255'{'#0#0#255
- +'{'#0#0#255'n'#7#7#255#169#169#166#255#166#166#163#255#166#166#163#255#166
- +#166#163#255#166#166#163#255#166#166#163#255'}US'#255'p'#3#3#255'p'#3#3#255
- +#142#132#129#255#137'ur'#255'{'#0#0#255'{'#0#0#255'^'#0#0#255#10#0#0#198#7#0
- +#0#227'k'#0#0#255'{'#0#0#255'{'#0#0#255'n'#7#7#255#181#181#178#255#166#166
- +#163#255#166#166#163#255#166#166#163#255#166#166#163#255#166#166#163#255#129
- +'UT'#255'{'#0#0#255'{'#0#0#255#141#131#129#255#138'vs'#255'{'#0#0#255'{'#0#0
- +#255'_'#0#0#255#10#0#0#199#7#0#0#227'k'#0#0#255'{'#0#0#255'{'#0#0#255'o'#6#6
- +#255#190#190#188#255#171#171#168#255#166#166#163#255#166#166#163#255#166#166
- +#163#255#166#166#163#255#129'UT'#255'{'#0#0#255'{'#0#0#255#141#131#129#255
- +#138'vs'#255'{'#0#0#255'{'#0#0#255'_'#0#0#255#10#0#0#200#7#0#0#228'k'#0#0#255
- +'{'#0#0#255'{'#0#0#255'o'#5#5#255#187#187#184#255#204#204#202#255#174#174#171
- +#255#166#166#163#255#166#166#163#255#166#166#163#255#129'UT'#255'{'#0#0#255
- +'{'#0#0#255#141#131#129#255#138'vs'#255'{'#0#0#255'{'#0#0#255'I'#0#0#254#8#0
- ,#0#193#7#0#0#229'W'#0#0#255'c'#0#0#255'c'#0#0#255'['#4#4#255#181#181#178#255
- +#204#204#202#255#202#202#201#255#193#193#191#255#185#185#183#255#177#177#175
- +#255#153#141#139#255#135'lj'#255#135'lj'#255#157#154#152#255#133'vs'#255'c'#0
- +#0#255'I'#0#0#253#6#0#0#232#0#0#0'"'#6#0#0#177#9#0#0#217#9#0#0#217#9#0#0#217
- +#9#0#0#218',''&'#230',&&'#230',&&'#230',&%'#230'+&%'#230'+%$'#230'+%$'#230'*'
- +'$#'#230')##'#229')#"'#229'"'#28#27#228#9#0#0#217#8#0#0#202#0#0#0#29#255#255
- +#255#0#4'Hint'#6#4'Save'#10'ImageIndex'#2#2#8'ShortCut'#3'S@'#7'OnClick'#7#15
- +'FileSaveExecute'#0#0#9'TMenuItem'#14'MenuItemSaveAs'#7'Caption'#6#11'Save &'
- +'As...'#4'Hint'#6#7'Save As'#7'OnClick'#7#17'FileSaveAsExecute'#0#0#9'TMenuI'
- +'tem'#19'MenuItemExportAsLRS'#7'Caption'#6#19'&Export As *.lrs...'#7'OnClick'
- +#7#22'FileExportAsLRSExecute'#0#0#9'TMenuItem'#13'MenuItemClose'#7'Caption'#6
- +#6'&Close'#11'Bitmap.Data'#10'z'#6#0#0'v'#6#0#0'BMv'#6#0#0#0#0#0#0'6'#0#0#0
- +'('#0#0#0#20#0#0#0#20#0#0#0#1#0' '#0#0#0#0#0'@'#6#0#0'd'#0#0#0'd'#0#0#0#0#0#0
- +#0#0#0#0#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#5'A'#3#4#19#191#1#3
- +#16#169#0#0#0#10#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#0#0#0#16#1#3#18#175#2#3#17#205#0#0#0','#255#255#255
- +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#1#1#8'K'#1#2#6#249
- +'""'''#255#14#15#23#248#2#3#10#231#0#0#0#21#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#0#0#0#24#1#2#9#232#16#17#26#245#29#30'$'#255#1#1#5
- +#248#0#0#3'='#255#255#255#0#255#255#255#0#255#255#255#0#0#0#5'A'#2#2#6#248'1'
- +'12'#255'AAA'#255'==='#255#17#18#26#254#2#3#10#233#0#0#0#22#255#255#255#0#255
- +#255#255#0#0#0#0#24#1#2#9#233#20#21#29#250';;;'#255'AAA'#255'**.'#255#1#1#4
- +#250#0#0#6'C'#255#255#255#0#0#0#0'0'#1#2#6#246'223'#255'AAA'#255'AAA'#255'AA'
- +'A'#255'==='#255#16#17#25#252#1#2#9#232#0#0#0#23#0#0#0#24#1#2#9#233#19#20#28
- +#251';;;'#255'AAA'#255'AAA'#255'AAA'#255',,/'#255#1#1#5#249#0#0#6':'#2#3#18
- +#194#25#26'"'#254'AAA'#255'AAA'#255'AAA'#255'BBB'#255'DDD'#255'AAA'#255#18#19
- +#28#251#1#2#9#232#1#2#10#234#19#19#28#251'???'#255'EEE'#255'CCC'#255'AAA'#255
- +'AAA'#255'AAA'#255#30#31''''#252#2#4#20#172#1#3#16#156#11#12#22#251'QQQ'#255
- +'BBB'#255'EEE'#255'GGG'#255'III'#255'JJJ'#255'HHH'#255#25#26'!'#250'!"'''#251
- +'FFF'#255'KKK'#255'III'#255'HHH'#255'EEE'#255'CCC'#255'KKK'#255#15#16#26#249
- +#0#1#15#141#0#0#0#8#2#3#12#218#21#22#30#250'[[['#255'III'#255'KKK'#255'MMM'
- +#255'OOO'#255'PPP'#255'PPP'#255'PPP'#255'QQQ'#255'PPP'#255'NNN'#255'LLL'#255
- +'JJJ'#255'SSS'#255#24#25'#'#249#2#3#13#215#0#0#0#4#255#255#255#0#0#0#0#14#2#3
- +#12#221#23#24'!'#250'___'#255'PPP'#255'RRR'#255'TTT'#255'UUU'#255'VVV'#255'V'
- +'VV'#255'VVV'#255'UUU'#255'SSS'#255'QQQ'#255'WWW'#255#26#27'$'#249#2#3#12#217
- +#0#0#0#12#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#13#2#3#12#219#24#25
- +'"'#249'ZZZ'#255'WWW'#255'YYY'#255'ZZZ'#255'[[['#255'[[['#255'[[['#255'YYY'
- +#255'XXX'#255'WWW'#255#24#25'#'#249#2#3#12#217#0#0#0#12#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#13#2#4#13#218#23#24'"'
- +#250'YYY'#255']]]'#255'___'#255'```'#255'```'#255'```'#255'^^^'#255'ZZZ'#255
- +#22#23' '#250#2#3#12#217#0#0#0#12#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#24#2#3#10#234'!"*'#251'```'
- +#255'bbb'#255'ddd'#255'eee'#255'eee'#255'eee'#255'ccc'#255'```'#255#31#31'('
- +#249#2#3#9#233#0#0#0#23#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255
- +#0#255#255#255#0#0#0#0#24#2#3#10#233#30#31''''#250'YYY'#255'ddd'#255'ggg'#255
- +'iii'#255'jjj'#255'jjj'#255'iii'#255'hhh'#255'eee'#255']]]'#255#26#27'$'#250
- +#2#3#10#232#0#0#0#22#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#23#2#3
- +#10#232#28#29'%'#250'VVV'#255'ccc'#255'ggg'#255'kkk'#255'mmm'#255'ooo'#255'o'
- +'oo'#255'nnn'#255'lll'#255'iii'#255'eee'#255'\\\'#255#24#25'"'#251#2#3#10#231
- +#0#0#0#21#255#255#255#0#0#0#0#21#2#3#9#229#28#29'$'#250'SSS'#255'aaa'#255'ff'
- +'f'#255'jjj'#255'nnn'#255'rrr'#255'rrr'#255'sss'#255'sss'#255'ppp'#255'lll'
- +#255'hhh'#255'ccc'#255'XXX'#255#23#24'!'#251#2#3#10#228#0#0#0#14#2#4#18#177
- +#21#22#31#248'RRR'#255'^^^'#255'ccc'#255'hhh'#255'mmm'#255'qqq'#255'zzz'#255
- +#30#31'('#249'"#+'#249'zzz'#255'sss'#255'nnn'#255'jjj'#255'eee'#255'```'#255
- +'VVV'#255#16#17#26#247#1#3#16#156#2#3#19#197'&''.'#254'aaa'#255'___'#255'ddd'
- +#255'iii'#255'nnn'#255'~~~'#255#31' )'#248#3#4#14#216#4#5#14#218'"#,'#250#128
- +#128#128#255'ppp'#255'kkk'#255'fff'#255'```'#255'ccc'#255'"#,'#253#2#3#18#183
- +#0#0#2'+'#2#2#6#248'AAE'#255'hhh'#255'ccc'#255'hhh'#255'}}}'#255#31'!)'#248#3
- +#4#13#216#0#0#0#12#0#0#0#13#4#5#13#219'!"*'#249#127#127#127#255'jjj'#255'eee'
- +#255'jjj'#255'CCI'#254#2#3#9#241#0#0#0#28#255#255#255#0#0#0#2'1'#1#1#5#250'C'
- +'DH'#255'hhh'#255'ttt'#255#29#30'('#248#3#4#13#218#0#0#0#12#255#255#255#0#255
- +#255#255#0#0#0#0#13#3#4#13#220'!"*'#249'vvv'#255'jjj'#255'EEK'#255#1#2#6#248
- +#0#0#0'*'#255#255#255#0#255#255#255#0#255#255#255#0#0#0#5'B'#0#1#3#251'&''/'
- +#254#19#19#28#247#2#2#10#225#0#0#0#16#255#255#255#0#255#255#255#0#255#255#255
- ,#0#255#255#255#0#0#0#0#14#3#4#12#217#20#21#30#250'%&/'#252#2#2#6#246#0#0#0'0'
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0
- +#29#1#3#16#171#4#5#14'x'#0#0#0#5#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#5#0#2#15#141#2#4#19#157#0#0
- +#0'+'#255#255#255#0#255#255#255#0#255#255#255#0#4'Hint'#6#5'Close'#10'ImageI'
- +'ndex'#2#3#8'ShortCut'#3's@'#7'OnClick'#7#16'FileCloseExecute'#0#0#9'TMenuIt'
- +'em'#9'MenuItem2'#7'Caption'#6#1'-'#0#0#9'TMenuItem'#12'MenuItemExit'#7'Capt'
- +'ion'#6#4'Exit'#8'ShortCut'#4's'#128#0#0#7'OnClick'#7#17'MenuItemExitClick'#0
- +#0#0#9'TMenuItem'#12'MenuItemEdit'#7'Caption'#6#5'&Edit'#0#9'TMenuItem'#12'M'
- +'enuItemUndo'#7'Caption'#6#5'&Undo'#7'Enabled'#8#11'Bitmap.Data'#10'z'#6#0#0
- +'v'#6#0#0'BMv'#6#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0' '#0#0#0
- +#0#0'@'#6#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0'373q353'#248'5;4'#221'5<4'#181'333T'
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#221#255#128#128#221#255#128#128#221#255#128#128#221#255#128#128#221#255#152
+ +#143#210#255'Y'#0#0#255#10#0#0#191#8#0#0#223'i'#0#0#255#157#137#193#255#128
+ +#128#221#255#128#128#221#255#128#128#221#255#128#128#221#255#128#128#221#255
+ +#128#128#221#255#128#128#221#255#128#128#221#255#128#128#221#255#128#128#221
+ +#255#128#128#221#255#128#128#221#255#128#128#221#255#128#128#221#255#152#143
+ +#210#255'Z'#0#0#255#10#0#0#192#8#0#0#223'j'#0#0#255'{'#0#0#255'{'#0#0#255'{'
+ +#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'
+ +#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'['
+ +#0#0#255#10#0#0#193#8#0#0#224'j'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'
+ +#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'
+ +#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'\'#0#0#255#10
+ +#0#0#195#8#0#0#225'j'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'
+ +#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'
+ +#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'\'#0#0#255#10#0#0#196#8
+ +#0#0#225'j'#0#0#255'{'#0#0#255'{'#0#0#255'y'#0#0#255'~VU'#255#137'us'#255#137
+ +'sr'#255#137'sq'#255#137'rp'#255#137'qo'#255#135'nl'#255#132'ki'#255#131'jh'
+ +#255#135'kj'#255'v10'#255'{'#0#0#255'{'#0#0#255']'#0#0#255#10#0#0#197#7#0#0
+ +#226'k'#0#0#255'{'#0#0#255'{'#0#0#255'n'#7#7#255#169#169#166#255#166#166#163
+ +#255#166#166#163#255#166#166#163#255#166#166#163#255#166#166#163#255'}US'#255
+ ,'p'#3#3#255'p'#3#3#255#142#132#129#255#137'ur'#255'{'#0#0#255'{'#0#0#255'^'#0
+ +#0#255#10#0#0#198#7#0#0#227'k'#0#0#255'{'#0#0#255'{'#0#0#255'n'#7#7#255#181
+ +#181#178#255#166#166#163#255#166#166#163#255#166#166#163#255#166#166#163#255
+ +#166#166#163#255#129'UT'#255'{'#0#0#255'{'#0#0#255#141#131#129#255#138'vs'
+ +#255'{'#0#0#255'{'#0#0#255'_'#0#0#255#10#0#0#199#7#0#0#227'k'#0#0#255'{'#0#0
+ +#255'{'#0#0#255'o'#6#6#255#190#190#188#255#171#171#168#255#166#166#163#255
+ +#166#166#163#255#166#166#163#255#166#166#163#255#129'UT'#255'{'#0#0#255'{'#0
+ +#0#255#141#131#129#255#138'vs'#255'{'#0#0#255'{'#0#0#255'_'#0#0#255#10#0#0
+ +#200#7#0#0#228'k'#0#0#255'{'#0#0#255'{'#0#0#255'o'#5#5#255#187#187#184#255
+ +#204#204#202#255#174#174#171#255#166#166#163#255#166#166#163#255#166#166#163
+ +#255#129'UT'#255'{'#0#0#255'{'#0#0#255#141#131#129#255#138'vs'#255'{'#0#0#255
+ +'{'#0#0#255'I'#0#0#254#8#0#0#193#7#0#0#229'W'#0#0#255'c'#0#0#255'c'#0#0#255
+ +'['#4#4#255#181#181#178#255#204#204#202#255#202#202#201#255#193#193#191#255
+ +#185#185#183#255#177#177#175#255#153#141#139#255#135'lj'#255#135'lj'#255#157
+ +#154#152#255#133'vs'#255'c'#0#0#255'I'#0#0#253#6#0#0#232#0#0#0'"'#6#0#0#177#9
+ +#0#0#217#9#0#0#217#9#0#0#217#9#0#0#218',''&'#230',&&'#230',&&'#230',&%'#230
+ +'+&%'#230'+%$'#230'+%$'#230'*$#'#230')##'#229')#"'#229'"'#28#27#228#9#0#0#217
+ +#8#0#0#202#0#0#0#29#255#255#255#0#4'Hint'#6#4'Save'#10'ImageIndex'#2#2#8'Sho'
+ +'rtCut'#3'S@'#7'OnClick'#7#15'FileSaveExecute'#0#0#9'TMenuItem'#14'MenuItemS'
+ +'aveAs'#7'Caption'#6#11'Save &As...'#4'Hint'#6#7'Save As'#7'OnClick'#7#17'Fi'
+ +'leSaveAsExecute'#0#0#9'TMenuItem'#19'MenuItemExportAsLRS'#7'Caption'#6#19'&'
+ +'Export As *.lrs...'#7'OnClick'#7#22'FileExportAsLRSExecute'#0#0#9'TMenuItem'
+ +#13'MenuItemClose'#7'Caption'#6#6'&Close'#11'Bitmap.Data'#10'z'#6#0#0'v'#6#0
+ +#0'BMv'#6#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0' '#0#0#0#0#0'@'
+ +#6#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#0#0#5'A'#3#4#19#191#1#3#16#169#0#0#0#10#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#16#1#3#18#175
+ +#2#3#17#205#0#0#0','#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#1#1#8'K'#1#2#6#249'""'''#255#14#15#23#248#2#3#10#231#0#0#0#21
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#24#1#2#9#232
+ +#16#17#26#245#29#30'$'#255#1#1#5#248#0#0#3'='#255#255#255#0#255#255#255#0#255
+ +#255#255#0#0#0#5'A'#2#2#6#248'112'#255'AAA'#255'==='#255#17#18#26#254#2#3#10
+ +#233#0#0#0#22#255#255#255#0#255#255#255#0#0#0#0#24#1#2#9#233#20#21#29#250';;'
+ +';'#255'AAA'#255'**.'#255#1#1#4#250#0#0#6'C'#255#255#255#0#0#0#0'0'#1#2#6#246
+ +'223'#255'AAA'#255'AAA'#255'AAA'#255'==='#255#16#17#25#252#1#2#9#232#0#0#0#23
+ +#0#0#0#24#1#2#9#233#19#20#28#251';;;'#255'AAA'#255'AAA'#255'AAA'#255',,/'#255
+ +#1#1#5#249#0#0#6':'#2#3#18#194#25#26'"'#254'AAA'#255'AAA'#255'AAA'#255'BBB'
+ +#255'DDD'#255'AAA'#255#18#19#28#251#1#2#9#232#1#2#10#234#19#19#28#251'???'
+ +#255'EEE'#255'CCC'#255'AAA'#255'AAA'#255'AAA'#255#30#31''''#252#2#4#20#172#1
+ +#3#16#156#11#12#22#251'QQQ'#255'BBB'#255'EEE'#255'GGG'#255'III'#255'JJJ'#255
+ +'HHH'#255#25#26'!'#250'!"'''#251'FFF'#255'KKK'#255'III'#255'HHH'#255'EEE'#255
+ +'CCC'#255'KKK'#255#15#16#26#249#0#1#15#141#0#0#0#8#2#3#12#218#21#22#30#250'['
+ +'[['#255'III'#255'KKK'#255'MMM'#255'OOO'#255'PPP'#255'PPP'#255'PPP'#255'QQQ'
+ +#255'PPP'#255'NNN'#255'LLL'#255'JJJ'#255'SSS'#255#24#25'#'#249#2#3#13#215#0#0
+ +#0#4#255#255#255#0#0#0#0#14#2#3#12#221#23#24'!'#250'___'#255'PPP'#255'RRR'
+ +#255'TTT'#255'UUU'#255'VVV'#255'VVV'#255'VVV'#255'UUU'#255'SSS'#255'QQQ'#255
+ +'WWW'#255#26#27'$'#249#2#3#12#217#0#0#0#12#255#255#255#0#255#255#255#0#255
+ +#255#255#0#0#0#0#13#2#3#12#219#24#25'"'#249'ZZZ'#255'WWW'#255'YYY'#255'ZZZ'
+ +#255'[[['#255'[[['#255'[[['#255'YYY'#255'XXX'#255'WWW'#255#24#25'#'#249#2#3
+ +#12#217#0#0#0#12#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#0#0#0#13#2#4#13#218#23#24'"'#250'YYY'#255']]]'#255'___'#255'```'
+ +#255'```'#255'```'#255'^^^'#255'ZZZ'#255#22#23' '#250#2#3#12#217#0#0#0#12#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'333'#14'4:4'
- +#192'5>4'#251'B{<'#255'5F3'#243'4:4'#213'333='#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#0#0#0#0#24#2#3#10#234'!"*'#251'```'#255'bbb'#255'ddd'#255'eee'#255'eee'
+ +#255'eee'#255'ccc'#255'```'#255#31#31'('#249#2#3#9#233#0#0#0#23#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#24#2#3#10#233
+ +#30#31''''#250'YYY'#255'ddd'#255'ggg'#255'iii'#255'jjj'#255'jjj'#255'iii'#255
+ +'hhh'#255'eee'#255']]]'#255#26#27'$'#250#2#3#10#232#0#0#0#22#255#255#255#0
+ +#255#255#255#0#255#255#255#0#0#0#0#23#2#3#10#232#28#29'%'#250'VVV'#255'ccc'
+ +#255'ggg'#255'kkk'#255'mmm'#255'ooo'#255'ooo'#255'nnn'#255'lll'#255'iii'#255
+ +'eee'#255'\\\'#255#24#25'"'#251#2#3#10#231#0#0#0#21#255#255#255#0#0#0#0#21#2
+ +#3#9#229#28#29'$'#250'SSS'#255'aaa'#255'fff'#255'jjj'#255'nnn'#255'rrr'#255
+ +'rrr'#255'sss'#255'sss'#255'ppp'#255'lll'#255'hhh'#255'ccc'#255'XXX'#255#23
+ +#24'!'#251#2#3#10#228#0#0#0#14#2#4#18#177#21#22#31#248'RRR'#255'^^^'#255'ccc'
+ ,#255'hhh'#255'mmm'#255'qqq'#255'zzz'#255#30#31'('#249'"#+'#249'zzz'#255'sss'
+ +#255'nnn'#255'jjj'#255'eee'#255'```'#255'VVV'#255#16#17#26#247#1#3#16#156#2#3
+ +#19#197'&''.'#254'aaa'#255'___'#255'ddd'#255'iii'#255'nnn'#255'~~~'#255#31' '
+ +')'#248#3#4#14#216#4#5#14#218'"#,'#250#128#128#128#255'ppp'#255'kkk'#255'fff'
+ +#255'```'#255'ccc'#255'"#,'#253#2#3#18#183#0#0#2'+'#2#2#6#248'AAE'#255'hhh'
+ +#255'ccc'#255'hhh'#255'}}}'#255#31'!)'#248#3#4#13#216#0#0#0#12#0#0#0#13#4#5
+ +#13#219'!"*'#249#127#127#127#255'jjj'#255'eee'#255'jjj'#255'CCI'#254#2#3#9
+ +#241#0#0#0#28#255#255#255#0#0#0#2'1'#1#1#5#250'CDH'#255'hhh'#255'ttt'#255#29
+ +#30'('#248#3#4#13#218#0#0#0#12#255#255#255#0#255#255#255#0#0#0#0#13#3#4#13
+ +#220'!"*'#249'vvv'#255'jjj'#255'EEK'#255#1#2#6#248#0#0#0'*'#255#255#255#0#255
+ +#255#255#0#255#255#255#0#0#0#5'B'#0#1#3#251'&''/'#254#19#19#28#247#2#2#10#225
+ +#0#0#0#16#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#14#3
+ +#4#12#217#20#21#30#250'%&/'#252#2#2#6#246#0#0#0'0'#255#255#255#0#255#255#255
+ +#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#29#1#3#16#171#4#5#14'x'#0
+ +#0#0#5#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#0#0#0#5#0#2#15#141#2#4#19#157#0#0#0'+'#255#255#255#0#255#255
+ +#255#0#255#255#255#0#4'Hint'#6#5'Close'#10'ImageIndex'#2#3#8'ShortCut'#3's@'
+ +#7'OnClick'#7#16'FileCloseExecute'#0#0#9'TMenuItem'#9'MenuItem2'#7'Caption'#6
+ +#1'-'#0#0#9'TMenuItem'#12'MenuItemExit'#7'Caption'#6#4'Exit'#8'ShortCut'#4's'
+ +#128#0#0#7'OnClick'#7#17'MenuItemExitClick'#0#0#0#9'TMenuItem'#12'MenuItemEd'
+ +'it'#7'Caption'#6#5'&Edit'#0#9'TMenuItem'#12'MenuItemUndo'#7'Caption'#6#5'&U'
+ +'ndo'#7'Enabled'#8#11'Bitmap.Data'#10'z'#6#0#0'v'#6#0#0'BMv'#6#0#0#0#0#0#0'6'
+ +#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0' '#0#0#0#0#0'@'#6#0#0'd'#0#0#0'd'#0#0#0
+ +#0#0#0#0#0#0#0#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0'333'#2'493'#148'6A5'#245'G'#151'='#255';q3'#255'393'#245
- +'333L'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'353e5=4'
- +#246'O'#175'C'#255'=}4'#255'372'#244'3337'#255#255#255#0#255#255#255#0#255
+ +#255#0'373q353'#248'5;4'#221'5<4'#181'333T'#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0'5;4'#180'Dz='#252'L'#170'@'#255';s4'#255'4:4'
- +#213#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'333''493'
- +#246'Q'#176'D'#255'E'#154':'#255'5?3'#243'3337'#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0'333)594'#185'333'#8#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0'5;4'#210'J'#147'@'#255'O'#175'B'#255'=l6'#254'493'#151#255#255#255
- +#0#255#255#255#0#255#255#255#0#255#255#255#0'333'#19'595'#230'333'#255'333'
- +#16#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0'4:4'#229'M'#161'B'#255'S'#184'F'#255'@}8'#255'5=4'
- +#186#255#255#255#0#255#255#255#0#255#255#255#0'333'#5'6:6'#202'RtM'#249'585'
- +#248'333'#16#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0'3337473'#249'Q'#177'E'#255'S'#184'F'#255'I'#149'@'#255
- +'5<4'#208#255#255#255#0#255#255#255#0#255#255#255#0'6:6'#163'G[E'#245#129#201
- +'w'#255'585'#248'333'#16#255#255#255#0#255#255#255#0#255#255#255#0'333'#8'33'
- +'31343r594'#244'P'#149'G'#255'V'#185'I'#255'S'#184'F'#255'D|='#255'4:4'#158
- +#255#255#255#0#255#255#255#0'564t>G='#245#133#197'{'#255#137#206#128#255'696'
- +#248'7;7'#174'7<7'#163'8>7'#185'6;6'#229'464'#250';G9'#240'EdA'#243'['#168'Q'
- +#255'^'#188'R'#255'Y'#186'L'#255'S'#184'F'#255';T7'#243'333T'#255#255#255#0
- +'333J8;7'#247#131#187'{'#255#145#210#136#255#144#209#135#255'w'#171'p'#255'g'
- +#145'b'#255'd'#142'^'#255'f'#151'_'#255'o'#176'g'#255'u'#196'j'#255'p'#196'e'
- +#255'k'#194'`'#255'f'#191'Z'#255'`'#189'T'#255'['#187'N'#255'K'#146'A'#255'4'
- +'83'#234'333'#13'333+685'#245'z'#170't'#255#151#212#142#255#153#213#145#255
- +#151#212#142#255#146#210#138#255#141#208#132#255#136#206'~'#255#131#203'y'
- +#255'}'#201's'#255'x'#199'm'#255'r'#197'g'#255'm'#194'a'#255'g'#192'['#255'a'
- +#190'U'#255'R'#154'H'#255'5:4'#245'333='#255#255#255#0'7:6'#183'WpS'#253#148
- +#211#140#255#154#213#146#255#159#215#150#255#154#213#145#255#148#211#139#255
- +#143#208#133#255#137#206#127#255#131#204'z'#255'~'#201't'#255'x'#199'n'#255
- +'s'#197'h'#255'l'#193'a'#255'['#162'S'#255'Cd?'#245'494'#235'333N'#255#255
- +#255#0#255#255#255#0'333-685'#240'o'#152'j'#253#149#211#141#255#151#212#142
- +#255#149#211#141#255'x'#168'r'#255'g'#142'a'#255'e'#144'`'#255'c'#143'\'#255
- +'Y'#129'T'#255'OpK'#249'BV?'#240'474'#248'6;5'#223'484'#133'333'#10#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0'333-685'#240'm'#151'g'#253
- +#143#209#134#255#142#208#133#255':@9'#244'696'#167'8<7'#163'7<7'#166'464'#139
- +'333q333L333'#17#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'333-685'#240'i'#150'c'
- ,#253#135#205'}'#255'9?8'#243'333 '#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0'333-585'#240'd'#147']'#253'8?8'#243'333 '#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'333-585'#240
- +'353'#253'333 '#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#255#0#255#255#255#0'333'#14'4:4'#192'5>4'#251'B{<'#255'5F3'#243'4:4'
+ +#213'333='#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'333'#2'493'#148'6A5'
+ +#245'G'#151'='#255';q3'#255'393'#245'333L'#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0'333-595'#186'333'#15#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0'353e5=4'#246'O'#175'C'#255'=}4'#255'372'#244'33'
+ +'37'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#4'Hint'#6
- +#4'Undo'#10'ImageIndex'#2#4#8'ShortCut'#3'Z@'#0#0#9'TMenuItem'#12'MenuItemRe'
- +'do'#7'Caption'#6#5'&Redo'#7'Enabled'#8#11'Bitmap.Data'#10'z'#6#0#0'v'#6#0#0
- +'BMv'#6#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0' '#0#0#0#0#0'@'#6
- +#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0'333'#1'333X5<4'#183'5;4'#222'343'#249'363i'#255#255#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'5;4'#180
+ +'Dz='#252'L'#170'@'#255';s4'#255'4:4'#213#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0'333''493'#246'Q'#176'D'#255'E'#154':'#255'5?3'#243
+ +'3337'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +'333)594'#185'333'#8#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0'5;4'#210'J'#147'@'#255'O'#175'B'
+ +#255'=l6'#254'493'#151#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255
+ +#0'333'#19'595'#230'333'#255'333'#16#255#255#255#0#255#255#255#0#255#255#255
+ +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'4:4'#229'M'#161'B'
+ +#255'S'#184'F'#255'@}8'#255'5=4'#186#255#255#255#0#255#255#255#0#255#255#255
+ +#0'333'#5'6:6'#202'RtM'#249'585'#248'333'#16#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'3337473'#249'Q'#177'E'
+ +#255'S'#184'F'#255'I'#149'@'#255'5<4'#208#255#255#255#0#255#255#255#0#255#255
+ +#255#0'6:6'#163'G[E'#245#129#201'w'#255'585'#248'333'#16#255#255#255#0#255
+ +#255#255#0#255#255#255#0'333'#8'3331343r594'#244'P'#149'G'#255'V'#185'I'#255
+ +'S'#184'F'#255'D|='#255'4:4'#158#255#255#255#0#255#255#255#0'564t>G='#245#133
+ +#197'{'#255#137#206#128#255'696'#248'7;7'#174'7<7'#163'8>7'#185'6;6'#229'464'
+ +#250';G9'#240'EdA'#243'['#168'Q'#255'^'#188'R'#255'Y'#186'L'#255'S'#184'F'
+ +#255';T7'#243'333T'#255#255#255#0'333J8;7'#247#131#187'{'#255#145#210#136#255
+ +#144#209#135#255'w'#171'p'#255'g'#145'b'#255'd'#142'^'#255'f'#151'_'#255'o'
+ +#176'g'#255'u'#196'j'#255'p'#196'e'#255'k'#194'`'#255'f'#191'Z'#255'`'#189'T'
+ +#255'['#187'N'#255'K'#146'A'#255'483'#234'333'#13'333+685'#245'z'#170't'#255
+ +#151#212#142#255#153#213#145#255#151#212#142#255#146#210#138#255#141#208#132
+ +#255#136#206'~'#255#131#203'y'#255'}'#201's'#255'x'#199'm'#255'r'#197'g'#255
+ ,'m'#194'a'#255'g'#192'['#255'a'#190'U'#255'R'#154'H'#255'5:4'#245'333='#255
+ +#255#255#0'7:6'#183'WpS'#253#148#211#140#255#154#213#146#255#159#215#150#255
+ +#154#213#145#255#148#211#139#255#143#208#133#255#137#206#127#255#131#204'z'
+ +#255'~'#201't'#255'x'#199'n'#255's'#197'h'#255'l'#193'a'#255'['#162'S'#255'C'
+ +'d?'#245'494'#235'333N'#255#255#255#0#255#255#255#0'333-685'#240'o'#152'j'
+ +#253#149#211#141#255#151#212#142#255#149#211#141#255'x'#168'r'#255'g'#142'a'
+ +#255'e'#144'`'#255'c'#143'\'#255'Y'#129'T'#255'OpK'#249'BV?'#240'474'#248'6;'
+ +'5'#223'484'#133'333'#10#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0'333-685'#240'm'#151'g'#253#143#209#134#255#142#208#133#255':@9'#244'6'
+ +'96'#167'8<7'#163'7<7'#166'464'#139'333q333L333'#17#255#255#255#0#255#255#255
+ +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0'333-685'#240'i'#150'c'#253#135#205'}'#255'9?8'#243'333 '#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'333-585'#240'd'#147']'
+ +#253'8?8'#243'333 '#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0'333-585'#240'353'#253'333 '#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'333-595'#186
+ +'333'#15#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255
+ +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#4'Hint'#6#4'Undo'#10'ImageIndex'#2#4#8'ShortCut'#3
+ +'Z@'#0#0#9'TMenuItem'#12'MenuItemRedo'#7'Caption'#6#5'&Redo'#7'Enabled'#8#11
+ +'Bitmap.Data'#10'z'#6#0#0'v'#6#0#0'BMv'#6#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0
+ +#0#0#20#0#0#0#1#0' '#0#0#0#0#0'@'#6#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'333'#1'333X5<4'#183'5;4'
+ +#222'343'#249'363i'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'333B5:4'#217':M8'#242'H'
+ +'}@'#255'5=4'#251'5:4'#185'333'#11#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'333R5;5'#245'R'#145'J'
+ +#255'X'#164'N'#255'7@6'#245'594'#136'333'#1#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'333=594'#245
+ +']'#164'T'#255'e'#186'['#255'6<5'#246'353W'#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0'6:5'#221'\'#151'T'#255'p'#196'd'#255'Q{L'#251'6;6'#170#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0'333?;E9'#243'v'#198'k'#255'q'#187'g'
+ +#255'695'#246'333!'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'6;6'#161
+ +'['#134'U'#254'}'#201's'#255'g'#155'`'#255'8=7'#202#255#255#255#0#255#255#255
+ +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'333'
+ +#12'594'#185'333$'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0'8>7'#195'j'#159'c'#255#132#204'z'#255'u'#174'm'#255'8<7'#222
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0'333'#24'333'#255'594'#225'333'#15#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0'8=7'#215'v'#172'n'#255#138#207#129#255
+ +#135#197'~'#255'575'#248'3333'#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0'333'#24'6:5'#246'GlC'#248'5:4'#195'33'
+ +'3'#3#255#255#255#0#255#255#255#0#255#255#255#0'8=7'#168'u'#153'q'#255#147
+ +#210#138#255#148#211#139#255'x'#164'r'#255'7:7'#244'333n3330333'#7#255#255
+ +#255#0#255#255#255#0#255#255#255#0'333'#24'6;5'#246'g'#189'\'#255'>S;'#245'4'
+ +'94'#154#255#255#255#0#255#255#255#0#255#255#255#0'333\SeQ'#244#172#220#165
+ +#255#152#212#144#255#157#215#149#255#136#185#130#255'TiQ'#243'@I>'#240'464'
+ +#250'8<7'#228'8>8'#184'7<6'#164'6;6'#177'6<6'#246'i'#193']'#255'_'#180'T'#255
+ +'7B6'#245'353k'#255#255#255#0#255#255#255#0'333'#16'696'#237#147#185#141#255
+ ,#164#217#156#255#154#213#145#255#153#213#144#255#148#211#139#255#143#209#134
+ +#255#136#203'~'#255'v'#178'o'#255'e'#150'^'#255']'#140'W'#255'['#140'T'#255
+ +'`'#162'X'#255'i'#193']'#255'c'#190'W'#255'W'#167'L'#255'494'#247'333D'#255
+ +#255#255#0#255#255#255#0'333D;?:'#246#152#191#146#255#168#219#161#255#148#210
+ +#139#255#143#209#134#255#139#207#130#255#135#205'}'#255#130#203'x'#255'}'#201
+ +'r'#255'x'#199'm'#255'r'#197'g'#255'm'#194'a'#255'g'#192'\'#255'b'#190'V'#255
+ +'\'#188'P'#255'M'#148'C'#255'473'#243'333&'#255#255#255#0#255#255#255#0'343U'
+ +'696'#238'^vZ'#246#144#189#139#255#140#206#132#255#134#205'|'#255#130#203'x'
+ +#255'~'#201't'#255'y'#200'o'#255't'#198'j'#255'o'#196'd'#255'j'#193'_'#255'e'
+ +#191'Y'#255'`'#189'T'#255'['#187'N'#255'U'#185'H'#255'>b9'#252'483'#174#255
+ +#255#255#0#255#255#255#0#255#255#255#0'333'#14'685'#139'7<7'#224'585'#248'FX'
+ +'C'#240'QrM'#248'X'#129'R'#255'['#140'T'#255'W'#138'Q'#255'T'#133'M'#255'Z'
+ +#157'Q'#255'b'#190'V'#255']'#188'Q'#255'X'#186'K'#255'F'#132'>'#253'473'#238
+ +'333('#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0'333'#18'333N333q464'#140'6<6'#167'6<5'#163'584'#170'8B7'#242
+ +'^'#188'R'#255'Y'#186'M'#255'G'#132'?'#253'473'#238'333('#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0'333(7A6'#242'Z'#187'M'#255'G'#133'?'#253'473'#238'333('#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0'333(7A5'#242'G'#132'?'#253'473'
+ +#238'333('#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'333(3'
+ +'53'#252'473'#238'333('#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255
+#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0'333B5:4'#217':M8'#242'H}@'#255'5=4'#251'5:4'#185'333'#11
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#0#255#255#255#0'333'#20'493'#186'333('#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#4'Hint'#6#4'Redo'#10'ImageIndex'#2#5#8
+ +'ShortCut'#3'Z`'#0#0#9'TMenuItem'#9'MenuItem1'#7'Caption'#6#1'-'#0#0#9'TMenu'
+ +'Item'#11'MenuItemCut'#7'Caption'#6#4'Cu&t'#11'Bitmap.Data'#10'z'#6#0#0'v'#6
+ +#0#0'BMv'#6#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0' '#0#0#0#0#0
+ +'@'#6#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0'333R5;5'#245'R'#145'J'#255'X'#164'N'#255'7@6'#245'594'
- +#136'333'#1#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0'333=594'#245']'#164'T'#255'e'#186'['#255'6<5'
- +#246'353W'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'6:5'#221'\'#151'T'
- +#255'p'#196'd'#255'Q{L'#251'6;6'#170#255#255#255#0#255#255#255#0#255#255#255
- +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0'333?;E9'#243'v'#198'k'#255'q'#187'g'#255'695'#246'333!'#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0'6;6'#161'['#134'U'#254'}'#201's'#255'g'
- +#155'`'#255'8=7'#202#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0'333'#12'594'#185'333$'#255#255#255
- +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'8>7'#195'j'#159'c'
- +#255#132#204'z'#255'u'#174'm'#255'8<7'#222#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'333'#24'3'
- +'33'#255'594'#225'333'#15#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0'8=7'#215'v'#172'n'#255#138#207#129#255#135#197'~'#255'575'#248'3333'
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0'333'#24'6:5'#246'GlC'#248'5:4'#195'333'#3#255#255#255#0#255#255
- +#255#0#255#255#255#0'8=7'#168'u'#153'q'#255#147#210#138#255#148#211#139#255
- +'x'#164'r'#255'7:7'#244'333n3330333'#7#255#255#255#0#255#255#255#0#255#255
- +#255#0'333'#24'6;5'#246'g'#189'\'#255'>S;'#245'494'#154#255#255#255#0#255#255
- +#255#0#255#255#255#0'333\SeQ'#244#172#220#165#255#152#212#144#255#157#215#149
- +#255#136#185#130#255'TiQ'#243'@I>'#240'464'#250'8<7'#228'8>8'#184'7<6'#164'6'
- +';6'#177'6<6'#246'i'#193']'#255'_'#180'T'#255'7B6'#245'353k'#255#255#255#0
- +#255#255#255#0'333'#16'696'#237#147#185#141#255#164#217#156#255#154#213#145
- +#255#153#213#144#255#148#211#139#255#143#209#134#255#136#203'~'#255'v'#178'o'
- +#255'e'#150'^'#255']'#140'W'#255'['#140'T'#255'`'#162'X'#255'i'#193']'#255'c'
- +#190'W'#255'W'#167'L'#255'494'#247'333D'#255#255#255#0#255#255#255#0'333D;?:'
- +#246#152#191#146#255#168#219#161#255#148#210#139#255#143#209#134#255#139#207
- +#130#255#135#205'}'#255#130#203'x'#255'}'#201'r'#255'x'#199'm'#255'r'#197'g'
- +#255'm'#194'a'#255'g'#192'\'#255'b'#190'V'#255'\'#188'P'#255'M'#148'C'#255'4'
- +'73'#243'333&'#255#255#255#0#255#255#255#0'343U696'#238'^vZ'#246#144#189#139
- +#255#140#206#132#255#134#205'|'#255#130#203'x'#255'~'#201't'#255'y'#200'o'
- +#255't'#198'j'#255'o'#196'd'#255'j'#193'_'#255'e'#191'Y'#255'`'#189'T'#255'['
- +#187'N'#255'U'#185'H'#255'>b9'#252'483'#174#255#255#255#0#255#255#255#0#255
- +#255#255#0'333'#14'685'#139'7<7'#224'585'#248'FXC'#240'QrM'#248'X'#129'R'#255
- ,'['#140'T'#255'W'#138'Q'#255'T'#133'M'#255'Z'#157'Q'#255'b'#190'V'#255']'#188
- +'Q'#255'X'#186'K'#255'F'#132'>'#253'473'#238'333('#255#255#255#0#255#255#255
- +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'333'#18'333N333q4'
- +'64'#140'6<6'#167'6<5'#163'584'#170'8B7'#242'^'#188'R'#255'Y'#186'M'#255'G'
- +#132'?'#253'473'#238'333('#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'333(7A6'#242'Z'#187
- +'M'#255'G'#133'?'#253'473'#238'333('#255#255#255#0#255#255#255#0#255#255#255
- +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0'333(7A5'#242'G'#132'?'#253'473'#238'333('#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0'333(353'#252'473'#238'333('#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'333'#20'493'
- +#186'333('#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#4'Hint'#6#4'Redo'#10'ImageIndex'#2#5#8'ShortCut'#3'Z`'#0#0#9'TMenuIte'
- +'m'#9'MenuItem1'#7'Caption'#6#1'-'#0#0#9'TMenuItem'#11'MenuItemCut'#7'Captio'
- +'n'#6#4'Cu&t'#11'Bitmap.Data'#10'z'#6#0#0'v'#6#0#0'BMv'#6#0#0#0#0#0#0'6'#0#0
- +#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0' '#0#0#0#0#0'@'#6#0#0'd'#0#0#0'd'#0#0#0#0#0
- +#0#0#0#0#0#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255
- +#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255
- +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0
+#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255
- +#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0
- +#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0
- +#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255
- +#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255
- +#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255
- +#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0
+ +#255#0#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255
+ +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0
+ +#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255
- +#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255
+ +#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255
+ +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0
+ +#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255
+ +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255
+ +#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0
+ +#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0
+ +#0#0#255#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255
+ +#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0
+ +#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0
+#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0
- +#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255
- +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0
+ +#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0
- ,#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255
- +#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0
- +#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0
- +#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255
- +#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0
- +#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0
+ ,#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0
+#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255
- +#255#0#255#255#255#0#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#0#0#0
- +#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#0#0#0#255#0
- +#0#0#255#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#255#255#255#0#255
- +#255#255#0#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#255#255#255#0#255
- +#255#255#0#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#0#0
- +#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255
- +#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255
- +#255#255#0#4'Hint'#6#3'Cut'#10'ImageIndex'#2#6#8'ShortCut'#3'X@'#7'OnClick'#7
- +#14'EditCutExecute'#0#0#9'TMenuItem'#12'MenuItemCopy'#7'Caption'#6#5'&Copy'
- +#11'Bitmap.Data'#10'z'#6#0#0'v'#6#0#0'BMv'#6#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20
- +#0#0#0#20#0#0#0#1#0' '#0#0#0#0#0'@'#6#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0
- +#255#255#255#0#255#255#255#0#14#14#14#255#20#20#20#255#20#20#20#255#20#20#20
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0
+ +#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0
+ +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0
+ +#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255
+ +#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255
+ +#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255
+ +#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0
+ +#255#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#255#255
+ +#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255
+ +#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0
+ +#255#255#255#0#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#0#0#0#255#0#0
+ +#0#255#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0
+ +#0#255#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#255#255#255#0#255#255
+ +#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0
+ +#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#255
+ +#255#255#0#255#255#255#0#255#255#255#0#4'Hint'#6#3'Cut'#10'ImageIndex'#2#6#8
+ +'ShortCut'#3'X@'#7'OnClick'#7#14'EditCutExecute'#0#0#9'TMenuItem'#12'MenuIte'
+ +'mCopy'#7'Caption'#6#5'&Copy'#11'Bitmap.Data'#10'z'#6#0#0'v'#6#0#0'BMv'#6#0#0
+ +#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0' '#0#0#0#0#0'@'#6#0#0'd'#0#0
+ +#0'd'#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#255#255#255#0#14#14#14#255#20#20#20
+#255#20#20#20#255#20#20#20#255#20#20#20#255#20#20#20#255#20#20#20#255#20#20
- +#20#255#20#20#20#255#20#20#20#255#19#19#19#255#0#0#0#255#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#21#21#21
+ +#20#255#20#20#20#255#20#20#20#255#20#20#20#255#20#20#20#255#19#19#19#255#0#0
+ +#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#21#21#21#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#0#0#0
+ +#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#21#21#21#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#0#0#0#255#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#21#21#21#255
+ +#255#255#255#255#255#255#255#255#255#254#254#254#255#255#255#255#255#0#0#0
+ +#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#21#21#21#255#255#255#255#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0
+ +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#255#0
+ +#0#0#255#255#255#255#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#21#21#21#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#254#254#254#255#255#255#255#255#0#0#0#255#0#0#0#255#0#0#0#255#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#21#21#21#255#255#255#255
- +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0
- +#0#0#255#0#0#0#255#0#0#0#255#255#255#255#255#0#0#0#255#255#255#255#255#0#0#0
- +#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#21#21#21#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#0#0#0#255#255#255#255#255#0#0#0#255#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#21#21#21#255#255#255#255
- +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#0#0#0#255#255#255#255#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#21#21#21#255#255#255#255#255#0#0#0#255#0#0#0#255#0#0#0
- +#255#0#0#0#255#255#255#255#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0
- +#255#255#255#255#255#0#0#0#255#255#255#255#255#0#0#0#255#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#21#21#21#255#255#255#255#255#0#0#0#255
- +#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#253#253#253#255#255#255#255#255#0#0#0
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#0#0#0
+#255#255#255#255#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#21#21#21#255#255#255#255#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0
- +#255#255#255#255#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255
- +#255#255#255#0#0#0#255#255#255#255#255#0#0#0#255#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#21#21#21#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#0#0#0#255#255#255#255#255#0#0#0#255
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#21#21#21#255#255#255
+ +#255#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#255#0#0#0#255#0
+ +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#255#0#0#0#255#255#255#255
+ ,#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#21#21
+ +#21#255#255#255#255#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#253#253
+ +#253#255#255#255#255#255#0#0#0#255#255#255#255#255#0#0#0#255#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#21#21#21#255#255#255#255#255#0#0#0
+ +#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#255#0#0#0#255#0#0#0#255#0#0#0
+ +#255#0#0#0#255#0#0#0#255#255#255#255#255#0#0#0#255#255#255#255#255#0#0#0#255
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#21#21#21#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#0#0#0#255#255#255#255#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255
- ,#255#0#255#255#255#0#21#21#21#255#255#255#255#255#0#0#0#255#0#0#0#255#0#0#0
- +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255
- +#255#255#255#255#0#0#0#255#255#255#255#255#0#0#0#255#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#21#21#21#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#0#0#0#255#255#255#255#255#0#0#0#255#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#21#21#21#255#255#255#255#255#0#0#0#255#0#0#0#255
+ +#255#255#255#255#255#255#255#255#0#0#0#255#255#255#255#255#0#0#0#255#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#21#21#21#255#255#255#255#255
+#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0
- +#255#255#255#255#255#0#0#0#255#255#255#255#255#0#0#0#255#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#21#21#21#255#255#255#255#255#255#255
+ +#255#0#0#0#255#0#0#0#255#255#255#255#255#0#0#0#255#255#255#255#255#0#0#0#255
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#21#21#21#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#0#0#0#255#255#255#255#255#0#0#0#255#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#21#21#21#255#255#255#255#255#0#0#0#255#0#0
+ +#255#255#255#255#255#255#255#255#0#0#0#255#255#255#255#255#0#0#0#255#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#21#21#21#255#255#255#255#255
+ +#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0
+ +#255#0#0#0#255#0#0#0#255#255#255#255#255#0#0#0#255#255#255#255#255#0#0#0#255
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#21#21#21#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#0#0#0#255#255#255#255#255#0#0#0#255#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#21#21#21#255#255#255#255#255
+ +#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0
+ +#255#0#0#0#255#0#0#0#255#255#255#255#255#0#0#0#255#255#255#255#255#0#0#0#255
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#21#21#21#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#0#0#0#255#255#255#255#255#0#0#0#255#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#19#19#19#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#0#0#0#255#255#255#255#255#0#0#0#255#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0
+#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255
- +#0#0#0#255#255#255#255#255#0#0#0#255#255#255#255#255#0#0#0#255#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#21#21#21#255#255#255#255#255#255
+ +#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#255#0#0#0#255#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#0#0#0#255#255#255#255#255#0#0#0#255#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#19#19#19#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#0#0#0#255#255#255#255#255#0#0#0#255#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0
- +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0
- +#255#0#0#0#255#0#0#0#255#255#255#255#255#0#0#0#255#255#255#255#0#255#255#255
- +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#0#0#0#255#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0
- +#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255
- +#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#4'Hint'
- +#6#4'Copy'#10'ImageIndex'#2#7#8'ShortCut'#3'C@'#7'OnClick'#7#15'EditCopyExec'
- +'ute'#0#0#9'TMenuItem'#13'MenuItemPaste'#7'Caption'#6#6'&Paste'#11'Bitmap.Da'
- +'ta'#10'z'#6#0#0'v'#6#0#0'BMv'#6#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0
- +#0#0#1#0' '#0#0#0#0#0'@'#6#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#255#255#255
- +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0
- +#0#255'--.'#255'99:'#255'334'#255'889'#255'111'#255#22#22#22#255#0#0#0#255
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#255#255#255#255#255#255#255#255#0#0#0#255#255#255#255#0#255#255#255
+ +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0
+ +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0
+ +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0
+ +#4'Hint'#6#4'Copy'#10'ImageIndex'#2#7#8'ShortCut'#3'C@'#7'OnClick'#7#15'Edit'
+ +'CopyExecute'#0#0#9'TMenuItem'#13'MenuItemPaste'#7'Caption'#6#6'&Paste'#11'B'
+ +'itmap.Data'#10'z'#6#0#0'v'#6#0#0'BMv'#6#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0
+ +#0#20#0#0#0#1#0' '#0#0#0#0#0'@'#6#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#27#27#27#255#128#128#128#255#128#128#128#255#128#128#128
- +#255#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128#255#0#0#0
- +#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#0#0#0#0#255'--.'#255'99:'#255'334'#255'889'#255'111'#255#22#22#22#255#0
+ +#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255
+ +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#27#27#27#255#128#128#128#255#128#128#128#255#128#128
+ +#128#255#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128#255#0#0
+ +#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0' !'#255#128#128#128#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0
+#0#0#255#128#128#128#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0
@@ -1334,7 +1345,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#0#255#255#255#0#255#255#255#0'!!!'#255#128#128#128#255#0#0#0#255#255
+#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#128#128#128#255#0#0#0#255
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ ,#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0' '#255#128#128#128#255#0#0#0#255#255#255#255#0#0#0#0#255#0#0#0#255#0
+#0#0#255#128#128#128#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
@@ -1345,7 +1356,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+' !'#255#128#128#128#255#0#0#0#255#255#255#255#0#0#0#0#255#128#128#128#255#0
+#0#0#255#128#128#128#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- ,#255#255#0#0#0#0#255'(()'#255#0#0#0#255#128#128#128#255#0#0#0#255#255#255#255
+ +#255#255#0#0#0#0#255'(()'#255#0#0#0#255#128#128#128#255#0#0#0#255#255#255#255
+#0#0#0#0#255#128#128#128#255#0#0#0#255#128#128#128#255#0#0#0#255#255#255#255
+#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#128#128#128#255#0#0#0#255
@@ -1398,7 +1409,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#16#0#2#21#175
+#1#2#22#205#0#0#0','#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#0#1#11'K'#1#1#10#249#21#22'w'#255#9#10':'#248#1#2#16#231#0#0#0
- +#21#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#24#0#1#13
+ ,#21#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#24#0#1#13
+#232#10#11'@'#245#19#19'j'#255#0#1#9#248#0#0#3'='#255#255#255#0#255#255#255#0
+#255#255#255#0#0#0#5'A'#1#1#12#248#31#31#165#255'**'#216#255''''''#206#255#11
+#11'C'#254#1#2#15#233#0#0#0#22#255#255#255#0#255#255#255#0#0#0#0#24#1#1#13
@@ -1409,7 +1420,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#1#9#249#0#0#6':'#1#3#23#194#17#18'X'#254'**'#216#255'**'#216#255'**'#216#255
+',,'#216#255'//'#217#255'--'#209#255#13#14'D'#251#1#1#12#232#1#2#14#234#13#14
+'D'#251',,'#200#255'//'#217#255'--'#216#255'**'#216#255'**'#216#255'**'#216
- ,#255#20#21'h'#252#1#3#26#172#0#2#20#156#8#9','#251'=='#215#255',,'#216#255'/'
+ +#255#20#21'h'#252#1#3#26#172#0#2#20#156#8#9','#251'=='#215#255',,'#216#255'/'
+'/'#217#255'33'#218#255'66'#219#255'88'#219#255'66'#214#255#19#20'S'#250#25
+#25'i'#251'55'#204#255'88'#220#255'66'#219#255'44'#218#255'11'#218#255'--'
+#217#255'55'#215#255#11#12'6'#249#0#1#16#141#0#0#0#8#1#2#17#218#15#16'A'#250
@@ -1462,7 +1473,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+'lick'#7#20'EditSelectAllExecute'#0#0#0#9'TMenuItem'#15'MenuItemPicture'#7'C'
+'aption'#6#8'&Picture'#0#9'TMenuItem'#14'MenuItemResize'#7'Caption'#6#9'Resi'
+'ze...'#7'OnClick'#7#19'MenuItemResizeClick'#0#0#9'TMenuItem'#19'MenuItemRes'
- +'izePaper'#7'Caption'#6#15'Resize Paper...'#7'OnClick'#7#24'MenuItemResizePa'
+ ,'izePaper'#7'Caption'#6#15'Resize Paper...'#7'OnClick'#7#24'MenuItemResizePa'
+'perClick'#0#0#9'TMenuItem'#23'MenuItemClipPaperToMask'#7'Caption'#6#18'Clip'
+' Paper To Mask'#0#0#9'TMenuItem'#9'MenuItem7'#7'Caption'#6#1'-'#0#0#9'TMenu'
+'Item'#12'MenuItemFlip'#7'Caption'#6#4'Flip'#0#9'TMenuItem'#20'MenuItemHoriz'
@@ -1473,7 +1484,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+'ise'#7'OnClick'#7#15'Rotate90Execute'#0#0#9'TMenuItem'#11'MenuItem180'#7'Ca'
+'ption'#6#12'180Clockwise'#7'OnClick'#7#16'Rotate180Execute'#0#0#9'TMenuItem'
+#11'MenuItem270'#7'Caption'#6#12'270Clockwise'#7'OnClick'#7#16'Rotate270Exec'
- ,'ute'#0#0#9'TMenuItem'#14'MenuItemCustom'#7'Caption'#6#9'Custom...'#7'Enable'
+ +'ute'#0#0#9'TMenuItem'#14'MenuItemCustom'#7'Caption'#6#9'Custom...'#7'Enable'
+'d'#8#0#0#0#9'TMenuItem'#9'MenuItem4'#7'Caption'#6#1'-'#0#0#9'TMenuItem'#14
+'MenuItemColors'#7'Caption'#6#6'Colors'#0#9'TMenuItem'#14'MenuItemInvert'#7
+'Caption'#6#6'Invert'#7'OnClick'#7#19'ColorsInvertExecute'#0#0#9'TMenuItem'
@@ -1526,7 +1537,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#128#0#0#255#128#0#0
+ ,#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#128#0#0#255#128#0#0
+#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
@@ -1537,7 +1548,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- ,#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#128#0#0#255
+#128#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
@@ -1590,7 +1601,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#0#128#0#0#255#128#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ ,#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#128#0#0
+#255#128#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#128
+#0#0#255#128#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
@@ -1601,7 +1612,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- ,#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
@@ -1654,7 +1665,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#0#128#0#0#255#128#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#128#0#0#255#128#0#0#255#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ ,#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#128#0#0#255#128#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255
@@ -1665,7 +1676,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#0#128#0#0#255#128#0#0#255#128#0#0#255#128#0#0#255#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#128#0#0#255#128#0#0#255#128#0#0#255#128#0
+#0#255#255#255#255#0#255#255#255#0#128#0#0#255#128#0#0#255#128#0#0#255#128#0
- ,#0#255#255#255#255#0#255#255#255#0#128#0#0#255#128#0#0#255#128#0#0#255#128#0
+ +#0#255#255#255#255#0#255#255#255#0#128#0#0#255#128#0#0#255#128#0#0#255#128#0
+#0#255#255#255#255#0#255#255#255#0#128#0#0#255#128#0#0#255#128#0#0#255#128#0
+#0#255#255#255#255#0#255#255#255#0#128#0#0#255#128#0#0#255#128#0#0#255#128#0
+#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
@@ -1718,7 +1729,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#0#0#0#8#0#6#7#221#2'O`'#252#4#180#231
- +#255#2#167#227#255#0#154#223#255#1#156#224#255#2#169#228#255#4#182#232#255#3
+ ,#255#2#167#227#255#0#154#223#255#1#156#224#255#2#169#228#255#4#182#232#255#3
+'g|'#255#0#25#29#255#3'OX'#255#0#9#9#223#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
@@ -1729,7 +1740,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#0#3#3'X'#0#5#6#193#0#6#7#254#2'Oc'#255#2#157#206
- ,#255#1#162#226#255#0#149#222#255#1#161#225#255#3#174#229#255#5#187#233#255#5
+ +#255#1#162#226#255#0#149#222#255#1#161#225#255#3#174#229#255#5#187#233#255#5
+#136#161#255#0#3#3#252#0#0#0'f'#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
@@ -1782,7 +1793,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0'>'#195#195#195
+ ,#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0'>'#195#195#195
+#255#15#15#15#255#0#0#0#255#0#0#0#197#0#0#0#29#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
@@ -1793,7 +1804,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- ,#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#0#0#0'GCCC'#243#11#11#11#254#0#0#0#176#0#0#0#15#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
@@ -1846,7 +1857,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ ,#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
@@ -1857,7 +1868,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- ,#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
@@ -1910,7 +1921,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+'.]'#255#0'W'#175#255#0'd'#201#255#0'd'#201#255#0'd'#201#255#0'd'#201#255#0
+'d'#201#255#0'd'#201#255#0'd'#201#255#0'd'#201#255#0'?'#127#255#0#0#0#255#0#0
+#0#194#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ ,#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#0#0#0#170#0#0#0#255#7#8#10#255#16#17#21#255#24#25#31
+#255#12#14#17#255#0#0#0#255#0#0#0#255#0#1#2#255#0'&L'#255#0'\'#186#255#0'd'
+#201#255#0'd'#201#255#0'd'#201#255#0'd'#201#255#0'd'#201#255#0'P'#161#255#0#2
@@ -1921,7 +1932,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#0#0#0#255#0#20')'#255#0'_'#192#255#0'd'#201#255#0'd'#201#255#0'd'#201
+#255#0'['#184#255#0#11#22#253#0#0#0#249#0#0#0'5'#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- ,#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0'T'#0
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0'T'#0
+#0#0#255'qv'#134#255#206#211#229#255#206#211#229#255#206#211#229#255#206#211
+#229#255#206#211#229#255#200#206#226#255#161#172#206#255'HM]'#255#0#0#0#255#0
+#28'8'#255#0'c'#199#255#0'd'#201#255#0'b'#197#255#0#25'2'#255#0#0#0#255#0#0#0
@@ -1974,7 +1985,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#0#0#0'u'#0#0#0#255'nu'#140#255#157#168#204#255#157#168#204#255
- +#157#168#204#255#156#167#203#255'ag~'#255#12#13#16#254#0#0#0#255#0#0#0#199#0
+ ,#157#168#204#255#156#167#203#255'ag~'#255#12#13#16#254#0#0#0#255#0#0#0#199#0
+#0#0'3'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
@@ -1985,7 +1996,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#0#0#0''''#0#0#0#255#213#213#213#255'___'#255'-0;'#255'?DR'#255
- ,#1#1#1#255#0#0#0#253#0#0#0#148#0#0#0#16#255#255#255#0#255#255#255#0#255#255
+ +#1#1#1#255#0#0#0#253#0#0#0#148#0#0#0#16#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
@@ -2038,7 +2049,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ ,#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
@@ -2049,7 +2060,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#0'd'#201#255#0'd'#201#255#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- ,#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0
+'6'#0#0#1#250#27',>'#254'|'#173#224#255#127#177#227#255'&{'#209#255#0'd'#201
+#255#0'd'#201#255#0'd'#201#255#0'd'#201#255#0'd'#201#255#0'd'#201#255#0'd'
+#201#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255
@@ -2102,7 +2113,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#0#255#10'3C'#255'u'#214#241#255#131#222#238#255':'#199#211#255#9#176#178#255
+#4'PT'#255#0#0#0#255#0#7#9#255#0'Tq'#255#0#148#219#255#3#172#229#255#6#188
+#228#255#0#11#14#255#0#7#14#255#0#0#0#255#0#0#0'Y'#255#255#255#0#255#255#255
- +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ ,#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#0#0#0'C'#0#1#2#255#0#16#24#255'Z'#196#227#255#131#228#246#255'X'#234
+#248#255#13#247#252#255#12#240#250#255#9#217#243#255#4#152#184#255#0'''4'#255
@@ -2113,7 +2124,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#128#145#148#255'k'#153#158#255#15#191#197#255#13#243#251#255#10#221#244#255
+#7#198#237#255#3#176#230#255#0#152#222#255#0'+;'#255#0#2#3#255#6#172#196#255
+#6'z'#129#255#0#0#0#255#0#0#0#220#0#0#0#2#255#255#255#0#255#255#255#0#255#255
- ,#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0
+#146#0#0#0#255'8-='#255#160#149#165#255#136#127#139#255#12#12#13#255#0#0#0
+#255#4'aj'#255#7#199#235#255#4#179#231#255#1#157#224#255#1#163#226#255#4#160
@@ -2166,7 +2177,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#0#0#0#182#12#8#13#253#204#143#226#255#227#159#252#255
+ ,#255#0#255#255#255#0#0#0#0#182#12#8#13#253#204#143#226#255#227#159#252#255
+#227#159#252#255#227#159#252#255#225#157#250#255#216#151#240#255#201#140#223
+#255#176'{'#195#255'iJu'#255#1#0#1#255#0#0#0#180#0#0#0#2#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
@@ -2177,7 +2188,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#0#184#0#0#0#14#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- ,#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0
+'p'#0#0#0#254#2#1#3#254'Q8Z'#255'sP'#127#255'lKx'#255'C/K'#255#1#1#2#255#0#0
+#0#254#0#0#0#130#0#0#0#2#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
@@ -2230,7 +2241,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ ,#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
@@ -2241,7 +2252,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#128#128#128#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255
- ,#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
@@ -2294,7 +2305,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ ,#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255
@@ -2305,7 +2316,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0
+#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- ,#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255
@@ -2358,7 +2369,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0
+ ,#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0
+#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
@@ -2369,7 +2380,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- ,#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#128#128#128#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
@@ -2422,7 +2433,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ ,#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
@@ -2433,7 +2444,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#0#144#0#0#0#144#0#0#0#144#0#0#0#144#0#0#0#144#0#0#0#144#0#0#0#144#0#0#0#144
+#0#0#0#144#0#0#0#144#0#0#0#144#0#0#0#144#0#0#0#144#0#0#0#144#0#0#0#144#0#0#0
+#144#0#0#0#144#0#0#0#144#0#0#0'g'#255#255#255#0#255#255#255#0#255#255#255#0
- ,#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#0#0#0'@'#2#5#2#252')_)'#252'.`-'#252'0`0'#252'0`0'#252'.`.'#252')'
+'_)'#252'$_%'#252#31'^ '#252#25']'#25#252#19'\'#20#252#12'['#13#252#6'['#7
+#252#0'Z'#2#252#0'Z'#2#252#0'Z'#2#252#0'Z'#2#252#0'Z'#2#252#0'Z'#2#252#0'Z'#2
@@ -2486,7 +2497,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#7#0#10#250#0#0#0'['#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#0#0#0'@'#3#14#3#247'>'#234'@'#255'D'#235'E'#255
+'G'#236'H'#255'G'#236'H'#255#9#16#10#255#137'J'#154#255#222#131#244#255#228
- +#145#246#255#233#158#248#255#235#162#249#255#232#153#247#255#226#140#246#255
+ ,#145#246#255#233#158#248#255#235#162#249#255#232#153#247#255#226#140#246#255
+#220'~'#244#255#214'o'#241#255#208'a'#239#255#202'R'#237#255#196'C'#235#255
+#190'5'#233#255#183'&'#231#255#177#23#229#255#171#8#227#255#168#0#226#255'e'
+#0#136#255#5#0#8#235#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
@@ -2497,7 +2508,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+'3'#233#255#183'$'#231#255#177#22#229#255#171#7#227#255#168#0#226#255#154#0
+#207#255#0#0#0#255#0#0#0#25#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#0#0#0'@'#1#14#1#247#28#230#31#255' '#230'#'#255'#'#230
- ,'%'#255#24#157#25#255#22#18#25#255#217'v'#242#255#223#132#244#255#228#144#246
+ +'%'#255#24#157#25#255#22#18#25#255#217'v'#242#255#223#132#244#255#228#144#246
+#255#232#154#248#255#232#154#248#255#229#146#246#255#224#134#245#255#218'x'
+#243#255#212'j'#241#255#206'\'#239#255#200'M'#237#255#194'?'#235#255#188'0'
+#232#255#182'"'#230#255#176#19#228#255#169#4#226#255#168#0#226#255#168#0#226
@@ -2550,7 +2561,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#163#0#219#255#2#0#2#253#0#0#0'*'#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#0#0#0#6#1#0#2#252#135#9#178#255#174#14#228#255#174
- +#15#228#255#174#15#228#255#174#14#228#255#173#11#227#255#171#7#227#255#169#2
+ ,#15#228#255#174#15#228#255#174#14#228#255#173#11#227#255#171#7#227#255#169#2
+#226#255#168#0#226#255#168#0#226#255#168#0#226#255#168#0#226#255#168#0#226
+#255#168#0#226#255#168#0#226#255#168#0#226#255#168#0#226#255'~'#0#170#255#3#0
+#3#249#0#0#0#3#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
@@ -2561,7 +2572,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#168#0#226#255#168#0#226#255#165#0#222#255#30#0''''#248#5#0#7#154#255#255#255
+#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- ,#255#0#0#0#0#15#5#0#8#234'?'#0'V'#253#161#0#216#255#168#0#226#255#168#0#226
+ +#255#0#0#0#0#15#5#0#8#234'?'#0'V'#253#161#0#216#255#168#0#226#255#168#0#226
+#255#168#0#226#255#168#0#226#255#168#0#226#255#168#0#226#255#168#0#226#255
+#168#0#226#255#168#0#226#255#168#0#226#255#168#0#226#255#168#0#226#255#159#0
+#214#255'<'#0'P'#252#6#0#8#229#0#0#0#11#255#255#255#0#255#255#255#0#255#255
@@ -2614,7 +2625,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#1#0#0#0';'#0#0#0#140#5#7#9
+#222#1#2#3#250#0#0#0#255#0#0#0#255#0#1#1#252#2#6#8#231#0#2#3#158#0#0#0'L'#0#0
- +#0#6#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ ,#0#6#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#29#3#4#5#192#0#0#1#255
@@ -2625,7 +2636,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0
+'^'#2#3#4#244#23'$*'#250'w'#176#203#255#146#215#246#255#139#212#245#255#127
+#207#244#255'q'#201#242#255'c'#195#240#255'S'#188#237#255'C'#182#235#255'4'
- ,#175#233#255'!'#154#211#255#6'4H'#252#0#1#1#253#0#0#0#130#0#0#0#5#255#255#255
+ +#175#233#255'!'#154#211#255#6'4H'#252#0#1#1#253#0#0#0#130#0#0#0#5#255#255#255
+#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#0#0#0#8#1#4#4#177#1#1#2#254'?ev'#255#143#211#241#255#158
@@ -2678,7 +2689,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#0#0#0#0#166#10';R'#253'*'#171#232#255'5'#176#233#255'>'#179#234#255'E'
+#183#235#255'K'#185#236#255'N'#186#237#255'N'#186#237#255'K'#185#236#255'G'
+#183#236#255'?'#180#235#255'6'#176#233#255','#172#232#255'!'#167#230#255#20
- +#162#228#255#7#157#227#255#0#154#226#255#0#154#226#255#0#154#226#255#0#154
+ ,#162#228#255#7#157#227#255#0#154#226#255#0#154#226#255#0#154#226#255#0#154
+#226#255#0#154#226#255#0#154#226#255#0#154#226#255#0'U|'#255#0#6#8#222#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#0#5#6#197#10'Kj'#255'!'#167#230#255'+'#171#232#255'3'#175#233#255'9'
@@ -2689,7 +2700,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#0#3#5#189#6'Fd'#255#23#163#229#255' '#167#230#255''''#170#231#255'-'
+#172#232#255'1'#174#233#255'2'#175#233#255'2'#175#233#255'0'#174#232#255'+'
- ,#172#232#255'%'#169#231#255#29#166#230#255#20#162#228#255#10#158#227#255#0
+ +#172#232#255'%'#169#231#255#29#166#230#255#20#162#228#255#10#158#227#255#0
+#154#226#255#0#154#226#255#0#154#226#255#0#154#226#255#0#154#226#255#0#154
+#226#255#0#154#226#255#0#154#226#255#0#154#226#255#0'a'#142#255#0#4#6#239#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
@@ -2742,7 +2753,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0'f'#0#2#3#247#0'"1'#250
+#0#132#194#255#0#154#226#255#0#154#226#255#0#154#226#255#0#154#226#255#0#154
+#226#255#0#154#226#255#0#154#226#255#0#154#226#255#0#154#226#255#0#154#226
- +#255#0#144#211#255#0'7R'#253#0#1#1#254#0#2#2#141#0#0#0#7#255#255#255#0#255
+ ,#255#0#144#211#255#0'7R'#253#0#1#1#254#0#2#2#141#0#0#0#7#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#0#0#0'"'#0#4#5#200#0#4#6#252#0'V~'#255#0#145#213
@@ -2753,7 +2764,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#0#0#0#2#0#0#0'u'#0#2#3#246#0#2#3#253#0'''8'#249#0'Ba'#255#0'Sy'
+#255#0'V~'#255#0'Ee'#255#0'0E'#251#0#6#8#250#0#1#1#252#0#2#3#152#0#0#0#11#255
- ,#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#8#0#0#0'L'#0#0#0
@@ -2806,7 +2817,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#0#0#0'('#7#4#4#216#30#12#11#247'%'#14#13#247#7#2#2#223#0#0#0'/'
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ ,#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0'b'#3#2#2#249'V(&'
@@ -2817,7 +2828,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#14#6
+#3#3#170#8#4#4#250#153'MJ'#255#235'rm'#255#234'lf'#255#233'f^'#255#232'_V'
+#255#160'=6'#255#12#4#4#249#7#3#1#179#0#0#0#17#255#255#255#0#255#255#255#0
- ,#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#0#0#0'5'#7#3#3#228'*'#24#23#247#205'on'#255#237'|y'#255#236'v'
@@ -2870,7 +2881,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#255#0#0#0#0''''#1#0#0#254#211'RJ'#255#232'^V'#255#233'aY'#255#233'c'
+'\'#255#233'd]'#255#233'd\'#255#233'bZ'#255#232'_W'#255#232'\S'#255#231'WM'
+#255#230'RG'#255#229'L@'#255#228'F9'#255#227'@1'#255#226'9)'#255#225'2!'#255
- +#224'+'#25#255#223'$'#16#255#222#28#8#255#221#22#0#255#221#22#0#255#211#21#0
+ ,#224'+'#25#255#223'$'#16#255#222#28#8#255#221#22#0#255#221#22#0#255#211#21#0
+#255#5#0#0#251#0#0#0'7'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255
+#0#255#255#255#0#255#255#255#0#255#255#255#0#9#3#2#219#134'1+'#255#231'WM'
+#255#231'ZP'#255#232'\R'#255#232'\S'#255#232'\R'#255#231'ZP'#255#231'WM'#255
@@ -2881,7 +2892,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#18#14#247#230'PE'#255#230'RG'#255#230'TI'#255#230'TI'#255#230'SI'#255#230'R'
+'G'#255#230'OD'#255#229'L@'#255#229'H;'#255#228'C6'#255#227'>0'#255#226'9)'
+#255#225'3#'#255#224'-'#27#255#223''''#20#255#222' '#12#255#221#25#4#255#221
- ,#22#0#255#221#22#0#255#221#22#0#255'F'#7#0#250#4#0#0#144#255#255#255#0#255
+ +#22#0#255#221#22#0#255#221#22#0#255'F'#7#0#250#4#0#0#144#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#0#0#0')'#1#0#0#254#208'B7'#255#229'K>'#255#229'L?'#255
+#229'L@'#255#229'K?'#255#229'I='#255#228'G:'#255#228'D7'#255#227'@2'#255#227
@@ -2934,7 +2945,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0'0'#0
+#0#0#143#0#0#0#142#0#0#0#141#0#0#0#140#0#0#0#139#0#0#0#138#0#0#0#137#0#0#0
- +#136#0#0#0#136#0#0#0#136#0#0#0#136#0#0#0#136#0#0#0#136#0#0#0#136#0#0#0#136#0
+ ,#136#0#0#0#136#0#0#0#136#0#0#0#136#0#0#0#136#0#0#0#136#0#0#0#136#0#0#0#136#0
+#0#0#136#0#0#0'9'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
@@ -2945,7 +2956,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- ,#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
@@ -2998,7 +3009,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#210#255#155#218#221#255#159#222#226#255#162#226#230#255#166#230#235#255#167
+#231#236#255#167#231#236#255#131#181#185#255'#12'#255#0#0#0#255#2#2#2#255'kk'
+'k'#255'QQQ'#255#18#18#18#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#0#0#0' '#0#0#0#147#3#1#1#227#1#0#0#255#0#0#0#255#0#0#0
+ ,#255#0#255#255#255#0#0#0#0' '#0#0#0#147#3#1#1#227#1#0#0#255#0#0#0#255#0#0#0
+#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#11#13#13#255#29'(('#255'+>?'#255
+'8PQ'#255'Hfg'#255'e'#142#145#255#146#204#208#255#164#227#232#255#130#180#184
+#255':PQ'#255#1#1#1#255#0#0#0#255'666'#255#152#152#152#255'EEE'#255'ggg'#255
@@ -3009,7 +3020,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#138#138#138#255'|||'#255'***'#255#127#127#127#255#179#179#179#255#164#164
+#164#255#5#5#5#254#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#157#4#1#1
+#253#166';<'#255#216'}'#127#255#234#187#188#255#240#207#207#255#239#202#202
- ,#255#222#144#145#255#202'NP'#255#215'|}'#255#233#184#185#255#240#207#207#255
+ +#255#222#144#145#255#202'NP'#255#215'|}'#255#233#184#185#255#240#207#207#255
+#236#193#194#255#225#156#157#255#163'WY'#255#8#3#3#255#0#0#0#255#1#0#0#255#0
+#0#0#255'777'#255#139#139#139#255#152#152#152#255'333'#255'aaa'#255#181#181
+#181#255#183#183#183#255#179#179#179#255#175#175#175#255'==='#255#255#255#255
@@ -3062,7 +3073,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#200'GI'#255#200'GI'#255#200'GI'#255#200'GI'#255#200'GI'#255#200'GI'#255#200
+'GI'#255#200'GI'#255#200'GI'#255#200'GI'#255#168';='#255'w*+'#255#132'/0'#255
+#20#9#8#255']T>'#255#225#202#149#255#222#199#146#255#220#197#144#255#218#195
- +#142#255#216#193#140#255#214#191#138#255#212#189#136#255#210#187#134#255#208
+ ,#142#255#216#193#140#255#214#191#138#255#212#189#136#255#210#187#134#255#208
+#185#132#255#206#183#130#255#204#181#128#255#202#179'~'#255#134'xW'#255#149
+#149#148#255#175#175#175#255#171#171#171#255#167#167#167#255#200'GI'#255#200
+'GI'#255#200'GI'#255#200'GI'#255#200'GI'#255#200'GI'#255#200'GI'#255#200'GI'
@@ -3073,7 +3084,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#175#255#170#170#170#255#166#166#166#255#200'GI'#255#200'GI'#255#203'RT'#255
+#225#154#155#255#231#175#176#255#222#146#147#255#202'PR'#255#200'GI'#255#200
+'GI'#255#200'GI'#255#196'EG'#255'|,-'#255'w*+'#255#152'57'#255'3'#19#19#255#3
- ,#2#1#255#142#127']'#255#220#197#144#255#218#195#142#255#216#193#140#255#214
+ +#2#1#255#142#127']'#255#220#197#144#255#218#195#142#255#216#193#140#255#214
+#191#138#255#212#189#136#255#210#187#134#255#208#185#132#255#206#183#130#255
+#204#181#128#255#202#179'~'#255#200#177'|'#255'\TD'#255#172#172#172#255#170
+#170#170#255#166#166#166#255#200'GI'#255#203'RT'#255#237#195#195#255#240#207
@@ -3126,7 +3137,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#0#0']'#0#0#0'K'#0#0#0'9'#0#0#0''''#0#0#0#21#0#0#0#1#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#240#206#207#255#240#207#207#255
- +#240#207#207#255#223#151#152#255#200'GI'#255#200'GI'#255#200'GI'#255#200'GI'
+ ,#240#207#207#255#223#151#152#255#200'GI'#255#200'GI'#255#200'GI'#255#200'GI'
+#255#200'GI'#255#213'su'#255#240#206#207#255#240#207#207#255#223#148#149#255
+#200'GI'#255'%'#13#13#252#1#0#0#214#0#0#0')'#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
@@ -3137,7 +3148,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- ,#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
@@ -3190,7 +3201,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#6#255'zzz'#255#195#195#195#255#195#195#195#255#174#174#174#255#6#6#6#251#0#0
+#0'l'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#1#7
+ ,#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#1#7
+#7#7#182#20#20#20#249#209#209#209#255#252#252#252#255#249#249#249#255#204#204
+#204#255'PPP'#255#3#3#3#255'EEE'#255#165#165#165#255#195#195#195#255#195#195
+#195#255#195#195#195#255#195#195#195#255'fff'#255#3#3#3#243#0#0#0#22#255#255
@@ -3201,7 +3212,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#204#204#204#255#198#198#198#255#195#195#195#255#195#195#195#255#195#195
+#195#255#190#190#190#255#24#24#24#249#3#3#3#160#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- ,#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#0#0#0#22#6#6#6#250#1#1#1#255#20#20#20#255'DDD'#255'nnn'
+#255#194#194#194#255#225#225#225#255#219#219#219#255#214#214#214#255#207#207
+#207#255#201#201#201#255#195#195#195#255#195#195#195#255#195#195#195#255#195
@@ -3254,7 +3265,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+'P'#216#220#255'J'#212#216#255'D'#209#212#255'>'#205#208#255'7'#202#204#255
+'1'#198#200#255#30#136#136#255#234#230#144#255#234#230#144#255#234#230#144
+#255#234#230#144#255#234#230#144#255#234#230#144#255#234#230#144#255#234#230
- +#144#255#234#230#144#255',+'#27#249#4#4#2#171#255#255#255#0#255#255#255#0#255
+ ,#144#255#234#230#144#255',+'#27#249#4#4#2#171#255#255#255#0#255#255#255#0#255
+#255#255#0#1#3#3#246'@'#137#141#255#141#234#239#255'r'#235#242#255's'#236#242
+#255'r'#235#242#255'o'#233#240#255'j'#231#237#255'e'#228#234#255'`'#225#230
+#255'Z'#221#226#255'T'#218#222#255'M'#214#218#255'G'#211#214#255'A'#207#210
@@ -3265,7 +3276,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255'z'#240#247#255'y'#239#246#255'u'#237#244#255'p'#234#240#255'j'#231#236
+#255'd'#227#232#255']'#223#228#255'W'#220#224#255'P'#216#220#255'J'#212#216
+#255'C'#209#212#255'='#205#207#255'5'#199#201#255'"'#141#143#255#234#230#144
- ,#255#234#230#144#255#234#230#144#255#234#230#144#255#234#230#144#255#234#230
+ +#255#234#230#144#255#234#230#144#255#234#230#144#255#234#230#144#255#234#230
+#144#255#234#230#144#255#229#225#141#255#28#27#17#249#2#1#1#148#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#2#5#5#240'y'#178#181#255#210#249
+#251#255#143#242#249#255#130#244#252#255#128#243#251#255'y'#240#247#255's'
@@ -3318,7 +3329,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#3#1#4#4#199#13''''''#249'G'#207#210#255'J'#213#216#255'K'#213#217#255'K'#213
+#216#255'J'#212#216#255'H'#211#215#255'F'#210#213#255'C'#208#211#255'@'#206
+#209#255'<'#204#207#255'7'#202#204#255'3'#199#201#255'.'#196#198#255')'#193
- +#195#255'$'#191#191#255#0#0#10'TImageList'#16'ImageListActions'#6'Height'#2
+ ,#195#255'$'#191#191#255#0#0#10'TImageList'#16'ImageListActions'#6'Height'#2
+#20#5'Width'#2#20#4'left'#2'r'#3'top'#3#192#0#6'Bitmap'#10#14'K'#0#0'Li'#12#0
+#0#0#20#0#0#0#20#0#0#0#255#255#255#0#255#255#255#0#0#0#0#12#6#6#6#238#10#10
+#10#243#9#9#9#244#8#8#8#245#7#7#7#246#7#7#7#247#6#6#6#248#5#5#5#249#4#4#4#250
@@ -3329,7 +3340,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#7#7#180#0#0#0#2#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#0#0#0#17#9#9#9#248#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- ,#255#255#255#255#255#7#7#7#255#163#163#163#255#14#14#14#255#8#8#8#206#0#0#0#9
+ +#255#255#255#255#255#7#7#7#255#163#163#163#255#14#14#14#255#8#8#8#206#0#0#0#9
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0
+#18#10#10#10#247#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#3#3#3
@@ -3382,7 +3393,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#255#255#255#255#255#255#250#255#255#255#229#255#4#4#4#251#0#0#0#10
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#29#18#18#18
+#244#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ ,#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#254#255#255#255#233#255#255#255#230#255#3#3#3#252#0#0#0#8#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#30#19#19#19#244#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
@@ -3393,7 +3404,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#247#255#255#255#240#255#255#255#228#255#255#255#228#255#255#255#228#255
+#255#255#231#255#0#0#0#255#0#0#0#2#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#0#0#0#31#0#0#0#254#4#4#4#251#6#6#6#249#7#7#7#249#9#9#9#247#15
- ,#15#13#246#25#25#20#246#26#26#21#245#26#26#22#244#25#25#22#243#25#25#23#242
+ +#15#13#246#25#25#20#246#26#26#21#245#26#26#22#244#25#25#22#243#25#25#23#242
+#25#25#24#242#25#25#25#241#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255
+#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
@@ -3446,7 +3457,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#237#165'p'#255#235#163'm'#255#232#159'h'#255#228#154'b'#255#224#149'\'#255
+#220#144'V'#255#215#139'O'#255#211#133'H'#255#206#127'A'#255#201'z:'#255#196
+'t2'#255#192'n+'#255#187'h$'#255#182'b'#28#255#12#6#2#248#0#0#0' '#0#0#0#28
- +#18#13#9#247#232#159'h'#255#233#160'i'#255#232#159'h'#255#230#157'f'#255#228
+ ,#18#13#9#247#232#159'h'#255#233#160'i'#255#232#159'h'#255#230#157'f'#255#228
+#154'b'#255#224#150']'#255#221#146'W'#255#217#141'Q'#255#213#136'K'#255#208
+#130'D'#255#204'}>'#255#199'w7'#255#195'r0'#255#190'l('#255#185'f!'#255#179
+'_'#25#255#5#3#1#249#0#0#0#1#255#255#255#0#5#4#3#249#213#144'Z'#255#227#153
@@ -3457,7 +3468,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+'_'#255#229#152'^'#255#229#150'\'#255#229#148'['#255#228#147'Z'#255#227#147
+'X'#255#224#143'T'#255#220#138'N'#255#211#132'H'#255#201'|@'#255#187'p7'#255
+#161'[%'#255'I('#12#255#8#4#0#177#255#255#255#0#255#255#255#0#0#0#0'D'#15#12
- ,#10#240#6#4#3#252#3#2#1#254#3#2#2#254#3#2#2#254#3#2#2#254#3#2#1#254#3#2#1#254
+ +#10#240#6#4#3#252#3#2#1#254#3#2#2#254#3#2#2#254#3#2#2#254#3#2#1#254#3#2#1#254
+#3#2#2#254#4#3#2#253#2#2#1#254#1#1#1#254#2#2#1#253#11#9#6#245#22#17#13#231#18
+#14#10#194#0#0#0#27#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
@@ -3510,7 +3521,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#179#235#255#179#179#235#255#179#179#235#255#179#179#235#255#179#179#235#255
+#179#179#235#255#179#179#235#255#179#179#235#255#179#179#235#255#179#179#235
+#255#179#179#235#255#179#160#199#255'Y'#0#0#255#10#0#0#190#9#0#0#220'i'#0#0
- +#255#201#152#152#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ ,#255#201#152#152#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#218#184#184#255'X'#0#0#255#10#0#0#188#9#0#0#220'h'#0#0#255
@@ -3521,7 +3532,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#152#152#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- ,#255#255#218#184#184#255'V'#0#0#255#9#0#0#186#9#0#0#219'h'#0#0#255#201#152
+ +#255#255#218#184#184#255'V'#0#0#255#9#0#0#186#9#0#0#219'h'#0#0#255#201#152
+#152#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
@@ -3574,7 +3585,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255'SSS'#255'QQQ'#255'WWW'#255#26#27'$'#249#2#3#12#217#0#0#0#12#255#255#255
+#0#0#0#0#8#2#3#12#218#21#22#30#250'[[['#255'III'#255'KKK'#255'MMM'#255'OOO'
+#255'PPP'#255'PPP'#255'PPP'#255'QQQ'#255'PPP'#255'NNN'#255'LLL'#255'JJJ'#255
- +'SSS'#255#24#25'#'#249#2#3#13#215#0#0#0#4#1#3#16#156#11#12#22#251'QQQ'#255'B'
+ ,'SSS'#255#24#25'#'#249#2#3#13#215#0#0#0#4#1#3#16#156#11#12#22#251'QQQ'#255'B'
+'BB'#255'EEE'#255'GGG'#255'III'#255'JJJ'#255'HHH'#255#25#26'!'#250'!"'''#251
+'FFF'#255'KKK'#255'III'#255'HHH'#255'EEE'#255'CCC'#255'KKK'#255#15#16#26#249
+#0#1#15#141#2#3#18#194#25#26'"'#254'AAA'#255'AAA'#255'AAA'#255'BBB'#255'DDD'
@@ -3585,7 +3596,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+',,/'#255#1#1#5#249#0#0#6':'#255#255#255#0#0#0#5'A'#2#2#6#248'112'#255'AAA'
+#255'==='#255#17#18#26#254#2#3#10#233#0#0#0#22#255#255#255#0#255#255#255#0#0
+#0#0#24#1#2#9#233#20#21#29#250';;;'#255'AAA'#255'**.'#255#1#1#4#250#0#0#6'C'
- ,#255#255#255#0#255#255#255#0#255#255#255#0#1#1#8'K'#1#2#6#249'""'''#255#14#15
+ +#255#255#255#0#255#255#255#0#255#255#255#0#1#1#8'K'#1#2#6#249'""'''#255#14#15
+#23#248#2#3#10#231#0#0#0#21#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#0#0#0#24#1#2#9#232#16#17#26#245#29#30'$'#255#1#1#5#248#0#0#3'='#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#5'A'#3
@@ -3638,7 +3649,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0'5;4'#210'J'#147'@'#255'O'#175'B'#255'=l6'#254'493'#151#255#255#255
+#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ ,#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0'333''493'#246'Q'#176'D'#255'E'#154':'#255
+'5?3'#243'3337'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
@@ -3649,7 +3660,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#0'353e5=4'#246'O'#175'C'#255'=}4'#255'372'#244'3337'#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- ,'333'#2'493'#148'6A5'#245'G'#151'='#255';q3'#255'393'#245'333L'#255#255#255#0
+ +'333'#2'493'#148'6A5'#245'G'#151'='#255';q3'#255'393'#245'333L'#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0'333'#14'4:4'#192'5>4'#251'B{<'#255'5F3'#243'4:4'#213'333='#255#255#255
@@ -3702,7 +3713,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#161'['#134'U'#254'}'#201's'#255'g'#155'`'#255'8=7'#202#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+'333'#12'594'#185'333$'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255
- +#0#255#255#255#0'333?;E9'#243'v'#198'k'#255'q'#187'g'#255'695'#246'333!'#255
+ ,#0#255#255#255#0'333?;E9'#243'v'#198'k'#255'q'#187'g'#255'695'#246'333!'#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'6:5'#221'\'#151'T'
@@ -3713,7 +3724,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'333R5;5'#245
- ,'R'#145'J'#255'X'#164'N'#255'7@6'#245'594'#136'333'#1#255#255#255#0#255#255
+ +'R'#145'J'#255'X'#164'N'#255'7@6'#245'594'#136'333'#1#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0'333B5:4'#217':M8'#242'H}@'#255'5=4'#251'5:4'#185'33'
@@ -3766,7 +3777,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0
- +#0#0#255#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255
+ ,#0#0#255#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255
+#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0
+#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0
@@ -3777,7 +3788,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0
+#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0
- ,#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255
@@ -3830,7 +3841,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#255#0#21#21#21#255#255#255#255#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0
+#0#255#255#255#255#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255
+#255#255#255#0#0#0#255#255#255#255#255#0#0#0#255#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#21#21#21#255#255#255#255#255#0#0#0#255#0#0#0#255
+ ,#255#255#255#0#255#255#255#0#21#21#21#255#255#255#255#255#0#0#0#255#0#0#0#255
+#0#0#0#255#0#0#0#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#253#253#253#255#255#255#255#255#0#0#0#255#255#255
+#255#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#21
@@ -3841,7 +3852,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#0#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#0#0#0#255#255#255#255#255#0#0#0
+#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#21#21#21#255#255
- ,#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#0#0#0#255#255#255#255#255#0#0#0#255#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#21#21#21#255#255#255#255
@@ -3894,7 +3905,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#128#255#0#0#0#255#128#128#128#255#0#0#0#255#255#255#255#0#0#0#0#255#128#128
+#128#255#0#0#0#255#128#128#128#255#0#0#0#255#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#0#0#0#255#128#128#128#255#0#0#0#255#128#128#128#255#0#0
+ ,#255#0#255#255#255#0#0#0#0#255#128#128#128#255#0#0#0#255#128#128#128#255#0#0
+#0#255#255#255#255#0#0#0#0#255#128#128#128#255#0#0#0#255#128#128#128#255#0#0
+#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#128#128
@@ -3905,7 +3916,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#255#0#0#0#0#255#128#128#128#255#0#0#0#255#128#128#128#255#0#0#0#255
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- ,#255#0' !'#255#128#128#128#255#0#0#0#255#255#255#255#0#0#0#0#255#128#128#128
+ +#255#0' !'#255#128#128#128#255#0#0#0#255#255#255#255#0#0#0#0#255#128#128#128
+#255#0#0#0#255#128#128#128#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0' '#255#128#128#128#255#0#0#0#255
@@ -3958,7 +3969,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#231#255'__'#230#255'VV'#222#255#23#24'K'#250#2#2#14#232#0#0#0#22#255#255#255
+#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#24#2#2#13
+#234#29#30'\'#251'WW'#228#255'[['#229#255'^^'#230#255'__'#230#255'``'#230#255
- +'^^'#230#255'\\'#229#255'XX'#228#255#27#28'U'#249#2#2#13#233#0#0#0#23#255#255
+ ,'^^'#230#255'\\'#229#255'XX'#228#255#27#28'U'#249#2#2#13#233#0#0#0#23#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#0#0#0#13#2#3#18#218#20#21'G'#250'PP'#223#255'TT'#227#255'WW'#228#255'XX'#228
+#255'XX'#228#255'WW'#228#255'UU'#228#255'PP'#223#255#19#20'A'#250#2#3#16#217
@@ -3969,7 +3980,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#0#0#0#0#14#1#2#17#221#19#20'D'#250'QQ'#221#255'@@'#222#255'CC'#223#255'FF'
+#223#255'HH'#224#255'II'#224#255'II'#224#255'HH'#224#255'GG'#224#255'EE'#223
+#255'AA'#222#255'II'#220#255#22#23'D'#249#1#2#17#217#0#0#0#12#255#255#255#0#0
- ,#0#0#8#1#2#17#218#15#16'A'#250'II'#218#255'66'#219#255'99'#220#255'=='#221
+ +#0#0#8#1#2#17#218#15#16'A'#250'II'#218#255'66'#219#255'99'#220#255'=='#221
+#255'??'#221#255'AA'#222#255'AA'#221#255'AA'#221#255'AA'#222#255'@@'#222#255
+'>>'#221#255';;'#220#255'77'#219#255'AA'#217#255#19#20'D'#249#1#2#18#215#0#0
+#0#4#0#2#20#156#8#9','#251'=='#215#255',,'#216#255'//'#217#255'33'#218#255'6'
@@ -4022,7 +4033,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+#255#255#255#0'SWU'#189#154#157#155#170#243#232#222#166#192#144'h'#197#172'q'
+'A'#250#169'm>'#249#183#131'['#192#244#235#226#161#159#157#152#184'TWU'#190
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0
+ ,#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0
+#0#0#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0'SWU'#26'SWU'#189'psr'#208#199#196
+#192#165#232#226#219#171#231#224#217#174#199#195#189#172'str'#213'SWU'#189'L'
+'u'#141#189#31'm'#158#235#7']'#147'o'#255#255#255#0#255#255#255#0#255#255#255
@@ -4033,7 +4044,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#5'\'#146'o='#130#173#246#142#193#227#255'C'#133#175#247#7']'
+#146'o'#255#255#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#255#255
- ,#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#5'\'#146'v<'#130#172
+#246#142#193#227#255'/x'#165#247#5'['#145'e'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
@@ -4086,7 +4097,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#0#0#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0'SWU'#26'SWU'#189'psr'#208#199#196
+#192#165#232#226#219#171#231#224#217#174#199#195#189#172'str'#213'SWU'#189'L'
+'u'#141#189#31'm'#158#235#7']'#147'o'#255#255#255#0#255#255#255#0#255#255#255
- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#255#255#255#0#255#255#255#0
+ ,#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#255#255#255#0#255#255#255#0
+'SWUbSWU'#185'SWU'#235'SWU'#235'SWU'#185'SWUb'#255#255#255#0#28'k'#156#235
+#130#183#217#255'B'#133#175#247#7'\'#146'q'#255#255#255#0#255#255#255#0#0#0#0
+#0#0#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
@@ -4097,7 +4108,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#5'\'#146'v<'#130#172
+#246#142#193#227#255'/x'#165#247#5'['#145'e'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- ,#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#5'\'#146'y+w'#165#245#175#210#232#255#9'^'#148#243#0#0#0
+#0#0#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
@@ -4150,7 +4161,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+'EditRedo'#8'Category'#6#4'Edit'#7'Caption'#6#5'&Redo'#7'Checked'#9#7'Enable'
+'d'#8#4'Hint'#6#4'Redo'#10'ImageIndex'#2#5#8'ShortCut'#3'Z`'#0#0#8'TEditCut'
+#7'EditCut'#8'Category'#6#4'Edit'#7'Caption'#6#4'Cu&t'#4'Hint'#6#3'Cut'#10'I'
- +'mageIndex'#2#6#9'OnExecute'#7#14'EditCutExecute'#8'ShortCut'#3'X@'#0#0#9'TE'
+ ,'mageIndex'#2#6#9'OnExecute'#7#14'EditCutExecute'#8'ShortCut'#3'X@'#0#0#9'TE'
+'ditCopy'#8'EditCopy'#8'Category'#6#4'Edit'#7'Caption'#6#5'&Copy'#4'Hint'#6#4
+'Copy'#10'ImageIndex'#2#7#9'OnExecute'#7#15'EditCopyExecute'#8'ShortCut'#3'C'
+'@'#0#0#10'TEditPaste'#9'EditPaste'#8'Category'#6#4'Edit'#7'Caption'#6#6'&Pa'
@@ -4161,7 +4172,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+'tSelectAll'#8'Category'#6#4'Edit'#7'Caption'#6#11'Select &All'#4'Hint'#6#10
+'Select All'#9'OnExecute'#7#20'EditSelectAllExecute'#8'ShortCut'#3'A@'#0#0#7
+'TAction'#13'PictureResize'#8'Category'#6#7'Picture'#7'Caption'#6#9'Resize..'
- ,'.'#0#0#7'TAction'#18'PictureResizePaper'#8'Category'#6#7'Picture'#7'Caption'
+ +'.'#0#0#7'TAction'#18'PictureResizePaper'#8'Category'#6#7'Picture'#7'Caption'
+#6#15'Resize Paper...'#0#0#7'TAction'#16'FlipHorizontally'#8'Category'#6#11
+'PictureFlip'#7'Caption'#6#12'Horizontally'#9'OnExecute'#7#23'FlipHorizontal'
+'lyExecute'#0#0#7'TAction'#14'FlipVertically'#8'Category'#6#11'PictureFlip'#7
diff --git a/applications/lazimageeditor/main.pas b/applications/lazimageeditor/main.pas
index f360e309d..1b2fd2638 100644
--- a/applications/lazimageeditor/main.pas
+++ b/applications/lazimageeditor/main.pas
@@ -32,7 +32,7 @@ interface
uses
Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs, Menus,
ExtCtrls, ComCtrls, ActnList, StdActns, ExtDlgs, Buttons, StdCtrls, Spin,
- NewDialog, ResizeDialog, ResizePaperDialog, AboutDialog,
+ NewDialog, ResizeDialog, ResizePaperDialog, AboutDialog, DLBitmap,
PictureManager, PictureCtrls, ColorPalette;
type
@@ -45,6 +45,7 @@ type
ColorsDisable: TAction;
ColorsGrayscale: TAction;
ColorsInvert: TAction;
+ FontListBox: TComboBox;
EditCopy: TEditCopy;
EditCut: TEditCut;
EditDelete: TEditDelete;
@@ -66,6 +67,7 @@ type
MaskRemove: TAction;
Palette: TColorPalette;
MenuItemShowGrid: TMenuItem;
+ Panel1: TPanel;
PanelTolerance1: TPanel;
PanelTolerance2: TPanel;
PictureClipPaperToMask: TAction;
@@ -75,6 +77,7 @@ type
Rotate270: TAction;
Rotate90: TAction;
RotateCustom: TAction;
+ FontSize: TSpinEdit;
spinFillAlpha: TSpinEdit;
MenuItemShowMask: TMenuItem;
MenuItemView: TMenuItem;
@@ -164,6 +167,8 @@ type
ExportResourceDialog: TSaveDialog;
SavePictureDialog: TSavePictureDialog;
ToolBrush: TToolButton;
+ ToolButton1: TToolButton;
+ ToolText: TToolButton;
ZoomInBtn: TToolButton;
ZoomOutBtn: TToolButton;
ToolCircleShape: TSpeedButton;
@@ -232,6 +237,9 @@ type
procedure FileSaveExecute(Sender: TObject);
procedure FlipHorizontallyExecute(Sender: TObject);
procedure FlipVerticallyExecute(Sender: TObject);
+ procedure FontListBoxChange(Sender: TObject);
+ procedure FontListBoxClick(Sender: TObject);
+ procedure FontSizeChange(Sender: TObject);
procedure FormCloseQuery(Sender: TObject; var CanClose: boolean);
procedure FormCreate(Sender: TObject);
procedure FormShow(Sender: TObject);
@@ -258,7 +266,9 @@ type
procedure Rotate270Execute(Sender: TObject);
procedure Rotate90Execute(Sender: TObject);
procedure spinFillAlphaChange(Sender: TObject);
+ procedure ToolBarToolsClick(Sender: TObject);
procedure ToolBrushClick(Sender: TObject);
+ procedure ToolTextClick(Sender: TObject);
procedure ZoomInBtnClick(Sender: TObject);
procedure ZoomOutBtnClick(Sender: TObject);
procedure ToolCircleShapeClick(Sender: TObject);
@@ -298,6 +308,7 @@ type
procedure UpdatePictureToolsEnabled;
procedure UpdateAll;
public
+ TextEditor: TTextEditor;
procedure FileNewOnStart;
procedure OpenImageFile(FileName: string);
property ActivePicture: TPictureBitmap read GetActivePicture;
@@ -463,6 +474,12 @@ begin
ActivePictureEdit.FillAlpha := spinFillAlpha.Value;
end;
+procedure TMainForm.ToolBarToolsClick(Sender: TObject);
+begin
+ if ActivePictureEdit.Tool <> ptText then
+ TextEditor.StopEdit;
+end;
+
procedure TMainForm.ToolBrushClick(Sender: TObject);
begin
if not Pictures.CanEdit then
@@ -470,6 +487,14 @@ begin
ChangeTool(ptBrush);
end;
+procedure TMainForm.ToolTextClick(Sender: TObject);
+begin
+ if not Pictures.CanEdit then
+ Exit;
+ ChangeTool(ptText);
+ ActivePictureEdit.TextEditor := TextEditor;
+end;
+
procedure TMainForm.ZoomInBtnClick(Sender: TObject);
var
V, E: integer;
@@ -814,6 +839,7 @@ procedure TMainForm.ChangeTool(Tool: TPictureEditTool);
begin
ActivePictureEdit.Tool := Tool;
UpdateToolSettings;
+ ToolBarToolsClick(nil);
end;
procedure TMainForm.UpdatePictureToolsEnabled;
@@ -1046,6 +1072,10 @@ begin
OpenPictureDialog.Title := lieOpenPictureDialog;
SavePictureDialog.Title := lieSavePictureDialog;
ExportResourceDialog.Title := lieExportResourceDialog;
+ TextEditor := TTextEditor.Create(Self);
+ TextEditor.Parent := Self;
+ FontListBox.Items := Screen.Fonts;
+ FontListBox.ItemIndex := FontListBox.Items.IndexOf(UTF8Encode(Screen.MenuFont.Name));
end;
procedure TMainForm.FormShow(Sender: TObject);
@@ -1160,6 +1190,23 @@ begin
ActivePictureEdit.FlipVertically;
end;
+procedure TMainForm.FontListBoxChange(Sender: TObject);
+begin
+ ActivePictureEdit.Canvas.Font.Name := FontListBox.Text;
+ if ActivePictureEdit.Tool <> ptText then
+ TextEditor.StopEdit;
+end;
+
+procedure TMainForm.FontListBoxClick(Sender: TObject);
+begin
+
+end;
+
+procedure TMainForm.FontSizeChange(Sender: TObject);
+begin
+ ActivePictureEdit.Canvas.Font.Size := FontSize.Value;
+end;
+
procedure TMainForm.FormCloseQuery(Sender: TObject; var CanClose: boolean);
begin
Pictures.CloseAll;
diff --git a/applications/lazimageeditor/picturectrls.pas b/applications/lazimageeditor/picturectrls.pas
index 87dc1dba5..462a16626 100644
--- a/applications/lazimageeditor/picturectrls.pas
+++ b/applications/lazimageeditor/picturectrls.pas
@@ -31,7 +31,7 @@ interface
uses
Classes, SysUtils, LCLType, LCLIntf, Controls, Forms, ExtCtrls, Graphics, Math,
- BmpRGBGraph, BmpRGBUtils, BmpRGBTypes;
+ BmpRGBGraph, BmpRGBUtils, BmpRGBTypes, DLBitmap;
type
TPictureViewOption = (poShowGrid, poShowMask);
@@ -72,7 +72,7 @@ type
procedure UpdatePictureRect;
public
constructor Create(TheOwner: TComponent); override;
-
+ destructor Destroy; override;
procedure Paint; override;
procedure Resize; override;
procedure EraseBackground(DC: HDC); override;
@@ -111,7 +111,7 @@ type
tdRoundRectangle, tdPolygon);
TPictureEditTool = (ptLine, ptPen, ptRectangle, ptFloodFill, ptEllipse,
- ptMask, ptColorPick, ptEraser, ptSpray, ptPolygon, ptBrush);
+ ptMask, ptColorPick, ptEraser, ptSpray, ptPolygon, ptBrush, ptText);
TPicturePos = (ppTopLeft, ppTopCenter, ppTopRight, ppCenterLeft, ppCentered,
ppCenterRight, ppBottomLeft, ppBottomCenter, ppBottomRight);
@@ -176,6 +176,7 @@ type
procedure Rectangle(X1, Y1, X2, Y2: integer; Shift: TShiftState = [ssLeft]);
procedure Ellipse(X1, Y1, X2, Y2: integer; Shift: TShiftState = [ssLeft]);
procedure Polygon(X1, Y1, X2, Y2: integer; Shift: TShiftState);
+ procedure ProcessEditorText(X1, Y1, X2, Y2: integer);
procedure ProcessPointAddr(X1, Y1, X2, Y2: integer; Points: array of TPoint; PCount: integer);
procedure Mask(X1, Y1, X2, Y2: integer; Shift: TShiftState = [ssLeft]);
@@ -208,6 +209,7 @@ type
procedure EndDraw;
procedure UpdatePicture;
public
+ TextEditor: TTextEditor;
property DrawMode: TDrawMode read FDrawMode write FDrawMode;
property FillColor: TColor read FFillColor write SetFillColor;
property OutlineColor: TColor read FOutlineColor write SetOutlineColor;
@@ -417,6 +419,11 @@ begin
FScrollStop.Parent := Self;
end;
+destructor TCustomPictureView.Destroy;
+begin
+ inherited;
+end;
+
procedure TCustomPictureView.Paint;
var
I: integer;
@@ -631,6 +638,7 @@ begin
ptColorPick: ColorPick(X, Y, Shift);
ptEraser: Eraser(X, Y, Shift);
ptSpray: Spray(X, Y, Shift);
+ ptText: ProcessEditorText(X, Y, X, Y);
ptBrush: Brush(X, Y, Shift);
end;
@@ -1066,6 +1074,15 @@ begin
InvalidatePictureRect(Rect(X1, Y1, X2, Y2));
end;
+procedure TCustomPictureEdit.ProcessEditorText(X1, Y1, X2, Y2: integer);
+var P: TRect;
+begin
+ TextEditor.IMGCanvas := Picture.Canvas;
+ TextEditor.Parent := Self;
+ P := PictureToClient(Rect(X1, X2, X1, X2));
+ TextEditor.StartEdit(FPictureRect.Left +X1, FPictureRect.Top + Y1, X1, Y1);
+end;
+
procedure TCustomPictureEdit.Mask(X1, Y1, X2, Y2: integer; Shift: TShiftState);
begin
if Picture = nil then