diff --git a/applications/lazimageeditor/DLBitmap.pas b/applications/lazimageeditor/DLBitmap.pas
index 4661365d7..91830c659 100644
--- a/applications/lazimageeditor/DLBitmap.pas
+++ b/applications/lazimageeditor/DLBitmap.pas
@@ -60,6 +60,7 @@ type
procedure RGBDelta(RedChange, GreenChange, BlueChange: integer);
procedure Brightness(ValueChange: integer);
procedure Contrast(ValueChange: integer);
+ procedure ColorReplace(ColorFrom, ColorTo: TColor);
property ScanLine[Row: integer]: pRGBATriple read GetScanLine;
procedure FillEllipse(X1, Y1, X2, Y2: integer); virtual;
procedure CutToClipboard; virtual;
@@ -127,6 +128,7 @@ 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);
+procedure DLBMPColorReplace(aBitmap: TDLBitmap; ColorFrom, ColorTo: TColor);
implementation
@@ -424,6 +426,11 @@ begin
end;
+procedure TDLBitmap.ColorReplace(ColorFrom, ColorTo: TColor);
+begin
+ DLBMPColorReplace(Self, ColorFrom, ColorTo);
+end;
+
constructor TTextEdit.Create(AOwner: TComponent);
begin
inherited;
diff --git a/applications/lazimageeditor/DLBmpUtils.inc b/applications/lazimageeditor/DLBmpUtils.inc
index e297e2c15..e62a7255c 100644
--- a/applications/lazimageeditor/DLBmpUtils.inc
+++ b/applications/lazimageeditor/DLBmpUtils.inc
@@ -260,9 +260,9 @@ begin
for j := 0 to ABitmap.Width - 1 do
begin
LNew := LScan[j];
- LScan[j].rgbtBlue := LScan[j].rgbtBlue * Value div 100; //Value; //LNew.rgbtBlue;
- LScan[j].rgbtGreen := LScan[j].rgbtGreen * Value div 100; //LNew.rgbtGreen;
- LScan[j].rgbtRed := LScan[j].rgbtRed * Value div 100; //LNew.rgbtRed;
+ LScan[j].rgbtBlue := LScan[j].rgbtBlue * Value div 100;
+ LScan[j].rgbtGreen := LScan[j].rgbtGreen * Value div 100;
+ LScan[j].rgbtRed := LScan[j].rgbtRed * Value div 100;
end;
end;
ABitmap.InvalidateScanLine;
@@ -596,5 +596,29 @@ begin
end;
end;
+procedure DLBMPColorReplace(aBitmap: TDLBitmap; ColorFrom, ColorTo: TColor);
+var
+ LScan: pRGBATriple;
+ i, j: integer;
+begin
+ for i := 0 to aBitmap.Height - 1 do
+ begin
+ LScan := aBitmap.Scanline[i];
+ for j := 0 to ABitmap.Width - 1 do
+ begin
+ if (LScan[j].rgbtBlue = GetBColor(ColorFrom)) and
+ (LScan[j].rgbtGreen = GetGColor(ColorFrom)) and
+ (LScan[j].rgbtRed = GetRColor(ColorFrom)) then
+ begin
+ LScan[j].rgbtBlue := GetBColor(ColorTo);
+ LScan[j].rgbtGreen := GetGColor(ColorTo);
+ LScan[j].rgbtRed := GetRColor(ColorTo);
+ end;
+ end;
+ end;
+ aBitmap.InvalidateScanLine;
+end;
+
+
diff --git a/applications/lazimageeditor/lazimageeditor.lpi b/applications/lazimageeditor/lazimageeditor.lpi
index 37e22c55c..78940d5f0 100644
--- a/applications/lazimageeditor/lazimageeditor.lpi
+++ b/applications/lazimageeditor/lazimageeditor.lpi
@@ -49,7 +49,7 @@
-
+
@@ -58,22 +58,23 @@
-
-
-
-
+
+
+
+
-
-
+
+
+
@@ -175,7 +176,7 @@
-
+
@@ -354,10 +355,11 @@
-
+
+
-
-
+
+
@@ -387,10 +389,10 @@
-
+
-
-
+
+
@@ -406,123 +408,123 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
-
+
-
-
+
+
diff --git a/applications/lazimageeditor/main.lfm b/applications/lazimageeditor/main.lfm
index df5dada76..e7a671637 100644
--- a/applications/lazimageeditor/main.lfm
+++ b/applications/lazimageeditor/main.lfm
@@ -1,7 +1,7 @@
object MainForm: TMainForm
- Left = 260
+ Left = 180
Height = 681
- Top = 147
+ Top = 90
Width = 920
Caption = 'Lazarus Image Editor'
ClientHeight = 659
@@ -1105,6 +1105,33 @@
OnClick = ToolMaskFloodFillClick
end
end
+ object BtnFromColor: TColorButton
+ Left = 421
+ Height = 25
+ Top = 4
+ Width = 43
+ BorderWidth = 2
+ ButtonColorSize = 16
+ ButtonColor = clBlack
+ end
+ object BtnToColor: TColorButton
+ Left = 488
+ Height = 25
+ Top = 4
+ Width = 43
+ BorderWidth = 2
+ ButtonColorSize = 16
+ ButtonColor = clBlack
+ OnClick = BtnToColorClick
+ end
+ object Label1: TLabel
+ Left = 469
+ Height = 20
+ Top = 5
+ Width = 14
+ Caption = 'to'
+ ParentColor = False
+ end
end
object PanelToolOptions: TPanel
Left = 0
@@ -1348,9 +1375,9 @@
TabOrder = 5
object checkFuzzy: TCheckBox
Left = 4
- Height = 19
- Top = 9
- Width = 20
+ Height = 23
+ Top = 5
+ Width = 24
OnChange = checkFuzzyChange
TabOrder = 0
end
@@ -2071,6 +2098,10 @@
Caption = 'Grayscale'
OnClick = ColorsGrayscaleExecute
end
+ object MenuItem5: TMenuItem
+ Caption = 'Replace'
+ OnClick = MenuItem5Click
+ end
object MenuItemDisable: TMenuItem
Caption = 'Disable'
OnClick = ColorsDisableExecute
diff --git a/applications/lazimageeditor/main.lrs b/applications/lazimageeditor/main.lrs
index 72b0bc678..c074b52d8 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#4#1#6'Height'#3#169#2#3'Top'#3#147#0
+ 'TPF0'#9'TMainForm'#8'MainForm'#4'Left'#3#180#0#6'Height'#3#169#2#3'Top'#2'Z'
+#5'Width'#3#152#3#7'Caption'#6#20'Lazarus Image Editor'#12'ClientHeight'#3
+#147#2#11'ClientWidth'#3#152#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
@@ -690,214 +690,220 @@ 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#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#152#3#5'Align'#7#5'alTop'#10'BevelO'
- +'uter'#7#6'bvNone'#12'ClientHeight'#2'"'#11'ClientWidth'#3#152#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'%'#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
+ +#22'ToolMaskFloodFillClick'#0#0#0#12'TColorButton'#12'BtnFromColor'#4'Left'#3
+ +#165#1#6'Height'#2#25#3'Top'#2#4#5'Width'#2'+'#11'BorderWidth'#2#2#15'Button'
+ +'ColorSize'#2#16#11'ButtonColor'#7#7'clBlack'#0#0#12'TColorButton'#10'BtnToC'
+ +'olor'#4'Left'#3#232#1#6'Height'#2#25#3'Top'#2#4#5'Width'#2'+'#11'BorderWidt'
+ +'h'#2#2#15'ButtonColorSize'#2#16#11'ButtonColor'#7#7'clBlack'#7'OnClick'#7#15
+ +'BtnToColorClick'#0#0#6'TLabel'#6'Label1'#4'Left'#3#213#1#6'Height'#2#20#3'T'
+ +'op'#2#5#5'Width'#2#14#7'Caption'#6#2'to'#11'ParentColor'#8#0#0#0#6'TPanel'
+ +#16'PanelToolOptions'#4'Left'#2#0#6'Height'#2'"'#3'Top'#2'G'#5'Width'#3#152#3
+ +#5'Align'#7#5'alTop'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2'"'#11'Cli'
+ +'entWidth'#3#152#3#8'TabOrder'#2#2#0#6'TLabel'#9'LabelSize'#4'Left'#2#0#6'He'
+ +'ight'#2'"'#3'Top'#2#0#5'Width'#2#28#5'Align'#7#6'alLeft'#7'Caption'#6#5'Siz'
+ +'e:'#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.Mi'
+ +'nHeight'#2' '#6'Layout'#7#8'tlCenter'#11'ParentColor'#8#0#0#6'TLabel'#14'La'
+ ,'belRoundness'#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.MinHeight'#2' '#6'La'
+ +'yout'#7#8'tlCenter'#11'ParentColor'#8#0#0#6'TLabel'#14'LabelTolerance'#4'Le'
+ +'ft'#3'a'#1#6'Height'#2'"'#3'Top'#2#0#5'Width'#2'?'#5'Align'#7#6'alLeft'#7'C'
+ +'aption'#6#10'Tolerance:'#21'Constraints.MinHeight'#2' '#6'Layout'#7#8'tlCen'
+ +'ter'#11'ParentColor'#8#0#0#6'TPanel'#9'PanelSize'#4'Left'#2#28#6'Height'#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'TEdit'#8'Edi'
+ +'tSize'#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'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'PanelDensity'#4'L'
+ +'eft'#3#28#1#6'Height'#2'"'#3'Top'#2#0#5'Width'#2'E'#5'Align'#7#6'alLeft'#10
+ +'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2'"'#11'ClientWidth'#2'E'#8'TabOrd'
+ +'er'#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'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'Width'#2#17#9'Associate'#7#11'EditDensity'#3'Mi'
+ +'n'#2#0#8'Position'#2'd'#8'TabOrder'#2#1#9'Thousands'#8#4'Wrap'#8#0#0#0#6'TP'
+ +'anel'#14'PanelRoundness'#4'Left'#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'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'OnCha'
+ +'nge'#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'T'
+ +'abOrder'#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#5#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'%'#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
+#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
+ +#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
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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
+ +#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#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#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#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
@@ -905,447 +911,448 @@ 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#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#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#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#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#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#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#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#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#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'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'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'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'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
+ +#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#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
+ +#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#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#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#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#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#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#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
+ +#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#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#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
- +#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#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#255#0#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#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#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'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'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#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#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#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'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'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'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
+ +#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'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
+#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#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'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#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#0#0#0#255#0#0#0#255#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#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#255#255#255#0#255#255#255#0#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#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#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#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#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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#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
+ +#255#0#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#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#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#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#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#254#254#254#255#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#255#255#255#0#255#255#255#0#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#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#0#255#255#255#0#255#255#255#0#255#255#255#0#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'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#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
+#255#255#255#255#255#255#255#255#255#255#255#255#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#255#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#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#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#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#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#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#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#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#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#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
+ +#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#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
+ +#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#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#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#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#0#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
+#255#255#255#0#255#255#255#0#255#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#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
@@ -1402,14 +1409,14 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+'777'#255'%%%'#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#4'Hint'#6#5'Paste'#10'ImageIndex'
+#2#8#8'ShortCut'#3'V@'#7'OnClick'#7#16'EditPasteExecute'#0#0#9'TMenuItem'#14
- +'MenuItemDelete'#7'Caption'#6#7'&Delete'#11'Bitmap.Data'#10'z'#6#0#0'v'#6#0#0
+ ,'MenuItemDelete'#7'Caption'#6#7'&Delete'#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'#2#3#27#191#1#2#21#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#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
@@ -1466,14 +1473,14 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#4#16#217#19#20'6'#250'"#\'#252#2#2#10#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#2#19#171#3#4#19'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#16#141#2#3#22#157#0#0#0'+'#255#255#255#0#255#255
+ ,#255#255#255#0#0#0#0#5#0#2#16#141#2#3#22#157#0#0#0'+'#255#255#255#0#255#255
+#255#0#255#255#255#0#4'Hint'#6#6'Delete'#10'ImageIndex'#2#9#8'ShortCut'#2'.'
+#7'OnClick'#7#17'EditDeleteExecute'#0#0#9'TMenuItem'#17'MenuItemSelectAll'#7
+'Caption'#6#11'Select &All'#4'Hint'#6#10'Select All'#8'ShortCut'#3'A@'#7'OnC'
+'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'
@@ -1489,56 +1496,23 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+'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'
+#17'MenuItemGrayscale'#7'Caption'#6#9'Grayscale'#7'OnClick'#7#22'ColorsGrays'
- +'caleExecute'#0#0#9'TMenuItem'#15'MenuItemDisable'#7'Caption'#6#7'Disable'#7
- +'OnClick'#7#20'ColorsDisableExecute'#0#0#0#0#9'TMenuItem'#12'MenuItemMask'#7
- +'Caption'#6#4'Mask'#0#9'TMenuItem'#18'MenuItemMaskInvert'#7'Caption'#6#6'Inv'
- +'ert'#7'OnClick'#7#17'MaskInvertExecute'#0#0#9'TMenuItem'#18'MenuItemMaskRem'
- +'ove'#7'Caption'#6#6'Remove'#7'OnClick'#7#17'MaskRemoveExecute'#0#0#0#9'TMen'
- +'uItem'#12'MenuItemView'#7'Caption'#6#4'View'#0#9'TMenuItem'#16'MenuItemShow'
- +'Grid'#9'AutoCheck'#9#7'Caption'#6#9'Show Grid'#7'Checked'#9#7'OnClick'#7#19
- +'ViewShowGridExecute'#0#0#9'TMenuItem'#16'MenuItemShowMask'#9'AutoCheck'#9#7
- +'Caption'#6#9'Show Mask'#7'Checked'#9#7'OnClick'#7#19'ViewShowMaskExecute'#0
- +#0#0#9'TMenuItem'#12'MenuItemHelp'#7'Caption'#6#5'&Help'#0#9'TMenuItem'#18'M'
- +'enuItemHelpTopics'#7'Caption'#6#11'Help Topics'#0#0#9'TMenuItem'#9'MenuItem'
- +'3'#7'Caption'#6#1'-'#0#0#9'TMenuItem'#13'MenuItemAbout'#7'Caption'#6#29'Abo'
- +'ut Lazarus Image Editor...'#7'OnClick'#7#18'MenuItemAboutClick'#0#0#0#0#10
- +'TImageList'#14'ImageListTools'#6'Height'#2' '#5'Width'#2' '#4'left'#3#150#0
- +#3'top'#3#192#0#6'Bitmap'#10#14#160#0#0'Li'#10#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#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#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#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#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#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#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
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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#255#0
+ +'caleExecute'#0#0#9'TMenuItem'#9'MenuItem5'#7'Caption'#6#7'Replace'#7'OnClic'
+ +'k'#7#14'MenuItem5Click'#0#0#9'TMenuItem'#15'MenuItemDisable'#7'Caption'#6#7
+ +'Disable'#7'OnClick'#7#20'ColorsDisableExecute'#0#0#0#0#9'TMenuItem'#12'Menu'
+ +'ItemMask'#7'Caption'#6#4'Mask'#0#9'TMenuItem'#18'MenuItemMaskInvert'#7'Capt'
+ +'ion'#6#6'Invert'#7'OnClick'#7#17'MaskInvertExecute'#0#0#9'TMenuItem'#18'Men'
+ +'uItemMaskRemove'#7'Caption'#6#6'Remove'#7'OnClick'#7#17'MaskRemoveExecute'#0
+ +#0#0#9'TMenuItem'#12'MenuItemView'#7'Caption'#6#4'View'#0#9'TMenuItem'#16'Me'
+ +'nuItemShowGrid'#9'AutoCheck'#9#7'Caption'#6#9'Show Grid'#7'Checked'#9#7'OnC'
+ +'lick'#7#19'ViewShowGridExecute'#0#0#9'TMenuItem'#16'MenuItemShowMask'#9'Aut'
+ +'oCheck'#9#7'Caption'#6#9'Show Mask'#7'Checked'#9#7'OnClick'#7#19'ViewShowMa'
+ +'skExecute'#0#0#0#9'TMenuItem'#12'MenuItemHelp'#7'Caption'#6#5'&Help'#0#9'TM'
+ +'enuItem'#18'MenuItemHelpTopics'#7'Caption'#6#11'Help Topics'#0#0#9'TMenuIte'
+ +'m'#9'MenuItem3'#7'Caption'#6#1'-'#0#0#9'TMenuItem'#13'MenuItemAbout'#7'Capt'
+ +'ion'#6#29'About Lazarus Image Editor...'#7'OnClick'#7#18'MenuItemAboutClick'
+ +#0#0#0#0#10'TImageList'#14'ImageListTools'#6'Height'#2' '#5'Width'#2' '#4'le'
+ +'ft'#3#150#0#3'top'#3#192#0#6'Bitmap'#10#14#160#0#0'Li'#10#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
@@ -1550,771 +1524,777 @@ 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#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#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#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#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#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#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#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#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#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#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#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#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#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- ,#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#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#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#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#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#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#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#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#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#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#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#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#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- ,#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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#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#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#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#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#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#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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#255#255#255
+ +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#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#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#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#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#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#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#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#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#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#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#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#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#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#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#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#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#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#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#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#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#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#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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#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#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#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#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#0#0'9'#0#0#0#176#1#7#9#250'*p'
+ +#134#255'V'#148#168#255'N'#144#165#255#26'o'#138#255#26'o'#138#255#26'o'#138
+ +#255#26'o'#138#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#0#6#7#154#0#3#4#252#0#31'%'#255#0#9#12#255#0#2#3#255#11'4A'
+ +#255#25'k'#133#255#26'o'#138#255#26'o'#138#255#26'o'#138#255#26'o'#138#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#0#5#6
+ +#186#1'9D'#255#4#154#190#255#2#171#223#255#1'z'#170#255#0#21#31#255#2#15#20
+ +#255#18'Ob'#255#26'o'#138#255#26'o'#138#255#26'o'#138#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#5#0#4#5#219#0#13#15#255#0#0#0
+ +#255#0#2#3#255#0'#3'#255#0'f'#146#255#1'Us'#255#0#4#5#255#12'8F'#255#26'o'
+ +#138#255#22'^t'#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#2#2#131#1#16#19#249#5#172#217#255#2#162#218#255#0'|'#177#255#0'Ik'#255#0#8
+ +#11#255#1'Ka'#255#3#140#173#255#0#3#4#255#14'AQ'#255#0#4#5#250#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ ,#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#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#2#2#252#4#136#170#255#3#176#230#255#1
+ +#162#226#255#0#149#222#255#1#160#225#255#2#142#188#255#0#13#16#255#4'|'#148
+ +#255#2';C'#255#0#4#4#254#0#0#0'h'#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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'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#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#0#2#4#142#1#24#29#248#4#177#223#255#3#171#228
+ +#255#1#158#224#255#0#152#223#255#2#165#227#255#4#178#231#255#6#191#235#255#4
+ +#136#159#255#0#5#6#254#0#8#9#227#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#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#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#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#0#0#0#12#0#4#5#246#3'Q_'#255#3'^s'#255#1' )'#255#0#1#1#255#0'+?'#255#0
+ +#135#193#255#3#170#228#255#4#183#232#255#4#131#158#255#0#3#3#252#0#0#0'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
+ +#255#255#255#0#255#255#255#0#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#21#0#3#3#248#1'(0'#247#2'a{'#255
+ +#2#139#186#255#1#131#186#255#0'3K'#255#0#7#10#255#2'm'#141#255#4#127#156#255
+ +#0#3#3#252#0#0#0'b'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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#24#24#24#178#10#10#10#241#0#5#7#251#0#1#1#255#0'#5'#254#1#156#217
+ +#255#2'u'#153#255#0#3#4#255#0#1#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#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#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'7eee'#224#239#239#239#255''''''''#255#0#0
+ +#0#255#0#0#0#255#0#4#6#255#1'%2'#255#4#174#221#255#3'Uf'#255#0#6#7#230#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#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'&bbb'#246#250#250
+ +#250#255'NNN'#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#5#7#255#1'!('#254
+ +#1#27' '#250#0#8#9#192#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255
+ +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#16#16#16'm'#230#230#230#255#129#129#129#255#0#0#0#255#0#0#0#255#0#0#0#255#0
+ +#0#0#255#0#0#0#255#0#0#0#243#0#3#3#157#0#0#0'~'#0#0#0#13#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0'~~~'#197#254#254#254#255#30#30#30#255
+ +#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#145#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#155#155#155#235#192#192#192#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0
+ +#0#255#0#0#0#247#0#0#0#143#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#255#255#255#0#255#255#255#0#0#0#0#7#174#174#174#251'ccc'#255#0
+ +#0#0#255#0#0#0#255#0#0#0#239#0#0#0#162#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#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#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#11#11#11
+ +#150#134#134#134#255#0#0#0#255#0#0#0#191#0#0#0#19#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#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#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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
+ +'L'#16#16#16#213#5#5#5#189#0#0#0'Q'#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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#11#0#0#0'$'#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#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#26#4#6#11#136#6#10
+ +#21#207#2#4#11#241#1#6#20#202#0#2#10#127#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#12#5#5'i'#18#8#7#221
+ +#24#14#13#242'#'#10#8#238#12#2#1#240#20#3#0#191#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#0#0#0'5'#7#9
+ +#15#235'r|'#161#253#148#162#212#255'Pp'#220#255'&G'#176#255#7'"u'#252#0#3#14
+ +#236#0#0#0'8'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#18#7#5
+ +#154'H,+'#242#231#181#180#255#242#158#156#255#232'`X'#255#221'?2'#255#156#24
+ +#10#255#16#2#0#241#4#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#0
+ +#0#0#0#1#3#6#14#229'k'#128#199#255#161#179#243#255#139#160#240#255'l'#136#235
+ +#255'Hl'#230#255'#Q'#225#255#0'+'#177#255#0#3#12#236#0#0#0#1#255#255#255#0
+ +#255#255#255#0#0#0#0'*'#29#7#6#240#235#131'|'#255#238#132#129#255#238#131#130
+ +#255#235'nh'#255#230'PE'#255#225'2!'#255#179#18#0#255#16#2#0#224#255#255#255
+ +#0#255#255#255#0#255#255#255#0#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'L'#4#19'@'#240'1['#227#255'Nq'
+ +#231#255'a'#127#234#255'^}'#234#255'Hm'#231#255'*U'#224#255#7'2'#182#255#0#10
+ +')'#239#0#0#0'1'#255#255#255#0#255#255#255#0#17#2#0#168#139#21#8#253#227'<-'
+ +#255#230'SH'#255#233'aX'#255#232'^U'#255#229'MA'#255#206'0!'#255#155#18#2#255
+ +#24#2#0#240#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#255#255#255#0#255#255#255#0#0#3#15#149#0#16'='
+ +#245#8'6'#196#255'"P'#225#255'4]'#228#255':b'#229#255'2Y'#222#255#23':'#169
+ +#255#3'%'#138#255#0#7#28#242#0#0#0'Q'#255#255#255#0#255#255#255#0#18#2#0#166
+ +'+'#4#0#240#148#16#2#255#179'$'#22#255#207'6'''#255#208':,'#255#171'+'#31#255
+ +'}'#23#13#255'O'#8#0#242#12#1#0#231#0#0#0#24#255#255#255#0#255#255#255#0#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#2#7'q'#0#3#15#227#0#2#9#243#1#5#19#240#2#9#27#237#1#3#12#243
+ ,#0#3#13#235#0#4#18#199#0#0#0'A'#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#0#0#0'H'#19#2#0#161#22#3#0#194#19#2#0#220#17#2#0#222#21#3#0#195#16
+ +#2#0#161#3#0#0'c'#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#13#0#0#0#23#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#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#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'n'#0#0#0#255#8#30'5'#255'P'
+ +#146#214#255#6'g'#202#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#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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'G'#0#0#0#253#1#12#24#254'D'#134#202#255#9'i'#202#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'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#0#0#0'('#0#0#1#242#0#4#9#254
+ +'4u'#184#255#12'k'#203#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'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#0#0#0#18#0#0#1#220#0#0#1#255'!]'#155#255#16'm'#204#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'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#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#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#190#0#0#0#255#17'Cv'#255
+ +#17'n'#204#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'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#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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#152#0#0#0#255#6'*O'#255#13'k'#203#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'd'#201#255#0'd'#201#255#0'd'#201#255#0'd'#201#255#0'['#184#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'm'#0#0#0#255#0#23'/'#255#4'c'
+ +#196#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'd'#201#255#0'd'#201#255#0'd'#201#255
+ +#0'd'#201#255#0'b'#197#255#0#25'2'#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
+ +'F'#0#0#0#253#0#12#24#254#0'['#184#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'd'#201
+ +#255#0'd'#201#255#0'd'#201#255#0'd'#201#255#0'd'#201#255#0'+W'#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';'#0#0#1#253#0#0#0#255#0#5#11#255#0#9#19#255#0#18
+ +'%'#255#0#30'<'#255#0'.]'#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#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#5#254#0#0#1#229#0#0#0#22#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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#1#1#1#243'#'
+ +'%,'#255#179#188#215#255#187#195#220#255#195#202#224#255#194#201#223#255#183
+ +#190#214#255't|'#147#255'!$+'#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#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'`'#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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
+ +#173#0#1#1#255#177#183#205#255#206#211#229#255#206#211#229#255#206#211#229
+ +#255#193#200#223#255#170#179#210#255#159#170#205#255#157#168#204#255#156#167
+ +#203#255'6:G'#255#0#0#0#255#0'C'#134#255#0'd'#201#255#0'+W'#255#0#0#0#255#0#0
+ +#0#147#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#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#14#1#1#1#249'(+3'#255#203#209
+ +#228#255#206#211#229#255#205#210#229#255#174#183#213#255#157#168#204#255#157
+ +#168#204#255#157#168#204#255#157#168#204#255#157#168#204#255#143#153#186#255
+ +#2#2#3#255#0#19'('#255#0'?'#127#255#0#0#0#255#0#0#0#193#0#0#0#4#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#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'v{'#140#255#206#211#229#255#204#209
+ +#228#255#170#180#211#255#157#168#204#255#157#168#204#255#157#168#204#255#157
+ +#168#204#255#157#168#204#255#157#168#204#255#157#168#204#255'-0:'#255#0#0#0
+ +#255#0#1#3#255#0#0#1#228#0#0#0#22#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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#184#2#2#3#254#180#186#209#255#203#208#228#255#168#177#209#255
+ +#157#168#204#255#157#168#204#255#157#168#204#255#157#168#204#255#157#168#204
+ +#255#157#168#204#255#157#168#204#255#157#168#204#255'JO`'#255#0#0#0#255#0#0#0
+ +#253#0#0#0'4'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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#21#0#1#1#252
+ +'/2<'#255#203#209#228#255#170#180#211#255#157#168#204#255#157#168#204#255#157
+ +#168#204#255#157#168#204#255#157#168#204#255#157#168#204#255#157#168#204#255
+ +#148#159#193#255'EJZ'#255#1#1#2#254#0#0#0#255#0#0#0#155#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#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'j'#0#0#0#255'z'#128#147#255#185
+ +#193#218#255#157#168#204#255#157#168#204#255#157#168#204#255#157#168#204#255
+ +#157#168#204#255#157#168#204#255#156#167#203#255'cj'#129#255#13#14#17#253#0#0
+ +#0#255#0#0#0#203#0#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#0#0#0#195#4#4#5#254#174#181#207#255#158#169#205#255
+ +#157#168#204#255#157#168#204#255#157#168#204#255#157#168#204#255#157#168#204
+ +#255#128#137#166#255'$''/'#255#0#0#0#255#1#1#1#238#0#0#0'e'#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#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#30#0
+ +#0#0#254'58C'#255#167#177#209#255#157#168#204#255#157#168#204#255#157#168#204
+ +#255#157#168#204#255#147#157#191#255'BGV'#255#1#2#2#254#0#0#0#253#0#0#0#151#0
+ +#0#0#18#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#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#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#0#0#0#212#21#21#21#255'8'#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#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#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#20#0#1#2#228#10#16
+ +#23#253'q'#162#212#255#128#177#228#255'D'#141#215#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#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255
+ +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#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#0#0#0#188#1#1#2#254']'#139#186#255#128#177#228
+ +#255'`'#158#221#255#2'e'#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'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
+ +#0#0#0#164#0#0#0#255'Ca'#128#255#128#172#217#255't'#169#223#255#12'k'#203#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'`'#194#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#149#0#0#0#255''''''''#255
+ +#127#127#127#255'~~~'#255' "$'#255#0'!C'#255#0'G'#144#255#0'c'#199#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
+ +'#G'#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#0#0#0'R'#0
+ +#1#1#255#18',8'#255'y'#185#205#255#129#187#199#255'?'#144#154#255#4'PS'#255#0
+ +#6#7#255#0#0#0#255#0#22'-'#255#0'U'#171#255#0'd'#201#255#0'd'#201#255#0'd'
+ +#201#255#0'd'#201#255#0'6m'#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#29#0#1#2#250#3#11#15#255'f'#190#220#255#130#224#245#255'^'
+ +#228#246#255#12#238#249#255#14#249#253#255#10#213#231#255#4'l'#127#255#0#5#7
+ +#255#0#4#8#255#0'T'#169#255#0'd'#201#255#0'd'#201#255#0'H'#145#255#0#0#1#254
+ +#0#0#0#196#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#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#0#0#0#243#0#0#0#255'Dm|'
+ +#255#128#183#196#255'q'#194#205#255#18#203#215#255#14#252#254#255#11#230#247
+ +#255#8#208#240#255#5#185#233#255#2#132#183#255#0#3#5#255#0#19'&'#255#0'a'#196
+ +#255#0'U'#171#255#0#5#11#253#0#0#1#228#0#0#0#22#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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#219#0#0#0#255'!&'''#255#127#127#127#255'|||'#255#26#26#26#255#0
+ +#1#1#255#4'X^'#255#7#189#216#255#5#188#234#255#2#166#227#255#0#153#223#255#2
+ +'a~'#255#0#0#0#255#0':v'#255#0#15#31#253#0#0#1#248#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#255#255#255#0
+ +#255#255#255#0#0#0#0#157#0#0#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#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#0#0#0#255#1'Vu'#255#6#191#235#255#9#213#241#255
+ +#2'14'#255#0#1#1#255#0#0#0#136#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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#1
+ +#245#0#0#0#255'59:'#255#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#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#201#255#0#0#0#255#3'RX'#255#0#1#1#255#0#1#1#245#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#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#0#0#0'I'#0#0#0#255'O9X'#255#238#198
+ +#253#255#238#199#253#255#228#163#252#255#203#142#226#255'M6U'#255#0#0#0#255#1
+ +'4B'#255#1#152#214#255#1#159#225#255#4#182#232#255#7#204#239#255#1#22#24#255
+ +#0#4#4#255#0#2#2#254#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#0#0#0#22#2#2#2
+ +#234#25#17#28#253#222#173#240#255#239#200#253#255#228#163#252#255#227#159#252
+ +#255#227#159#252#255#226#158#251#255'pN|'#255#0#0#0#255#0#26'&'#255#4#170#220
+ +#255#7#201#238#255#10#218#239#255#1#22#22#255#0#0#0#255#0#0#0'r'#255#255#255
+ +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#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#176#1#1#1#254#173'y'#192#255#228#165
+ +#252#255#227#161#252#255#227#159#252#255#227#159#252#255#227#159#252#255#227
+ +#159#252#255#227#159#252#255#137'`'#153#255#0#0#0#255#3'k'#128#255#10#220#244
+ +#255#5'be'#255#0#0#0#255#0#0#0#179#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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'aDl'#255#227#159#252#255#227#159#252#255#227#159
+ +#252#255#227#159#252#255#227#159#252#255#227#159#252#255#227#159#252#255#227
+ +#159#252#255#227#159#252#255'('#29'.'#255#2#21#24#255#7#143#150#255#0#0#0#255
+ +#0#0#0#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
+ +#154#2#1#2#254#199#139#220#255#227#159#252#255#227#159#252#255#227#159#252
+ +#255#227#159#252#255#227#159#252#255#227#159#252#255#227#159#252#255#227#159
+ +#252#255#227#159#252#255#146'f'#163#255#0#0#0#255#0#0#0#255#0#2#2#251#0#0#0
+ +#31#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#1#1#2#216'3#8'
+ +#255#227#159#252#255#227#159#252#255#227#159#252#255#227#159#252#255#227#159
+ +#252#255#227#159#252#255#227#159#252#255#227#159#252#255#227#159#252#255#227
+ +#159#252#255#211#147#234#255#3#4#6#255#0#2#2#255#0#0#0'P'#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#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#1#1#1#251'V<`'#255#227#159
+ +#252#255#227#159#252#255#227#159#252#255#227#159#252#255#227#159#252#255#227
+ +#159#252#255#227#159#252#255#227#159#252#255#227#159#252#255#226#158#251#255
+ +'D0L'#255#0#0#0#255#0#0#0'q'#255#255#255#0#255#255#255#0#255#255#255#0#255
+ ,#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#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#2#1#2#240'D/K'#255#227#159#252#255#227
+ +#159#252#255#227#159#252#255#227#159#252#255#227#159#252#255#227#159#252#255
+ +#227#159#252#255#225#157#250#255#203#142#226#255'iIv'#255#0#0#0#255#0#0#0#133
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#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#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#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#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#1#1#252'4$:'#254#186#131#207#255#190#133#211#255
+ +#179'}'#199#255#171'x'#190#255#171'x'#190#255#166't'#183#255'>,E'#254#0#0#0
+ +#255#0#0#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'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#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#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#170#0#0#0#253#0#0#0
+ +#255#0#0#0#255#1#1#1#250#0#0#0#162#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#0#0#0#24#0#0#0'%'#0#0#0'"'#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#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ ,#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#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#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#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#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#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#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#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#128#128#128#255#0
+ +#0#0#255#0#0#0#255#0#0#0#255#128#128#128#255#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#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#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#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#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#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#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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#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#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#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#0#0'9'#0#0#0#176#1#7#9#250'*p'#134#255
- +'V'#148#168#255'N'#144#165#255#26'o'#138#255#26'o'#138#255#26'o'#138#255#26
- +'o'#138#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#0#6#7#154#0#3#4#252#0#31'%'#255#0#9#12#255#0#2#3#255#11'4A'#255#25'k'
- +#133#255#26'o'#138#255#26'o'#138#255#26'o'#138#255#26'o'#138#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#0#5#6#186#1'9D'#255
- +#4#154#190#255#2#171#223#255#1'z'#170#255#0#21#31#255#2#15#20#255#18'Ob'#255
- +#26'o'#138#255#26'o'#138#255#26'o'#138#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#5#0#4#5#219#0#13#15#255#0#0#0#255#0#2#3#255#0
- +'#3'#255#0'f'#146#255#1'Us'#255#0#4#5#255#12'8F'#255#26'o'#138#255#22'^t'#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#2#2#131#1#16#19
- +#249#5#172#217#255#2#162#218#255#0'|'#177#255#0'Ik'#255#0#8#11#255#1'Ka'#255
- +#3#140#173#255#0#3#4#255#14'AQ'#255#0#4#5#250#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#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#2#2#252#4#136#170#255#3#176#230#255#1#162#226#255#0#149
- +#222#255#1#160#225#255#2#142#188#255#0#13#16#255#4'|'#148#255#2';C'#255#0#4#4
- +#254#0#0#0'h'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#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
- +'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
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#0#2#4#142#1#24#29#248#4#177#223#255#3#171#228#255#1#158#224#255#0#152
- +#223#255#2#165#227#255#4#178#231#255#6#191#235#255#4#136#159#255#0#5#6#254#0
- +#8#9#227#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#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
- +#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
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#12#0#4#5#246#3
- +'Q_'#255#3'^s'#255#1' )'#255#0#1#1#255#0'+?'#255#0#135#193#255#3#170#228#255
- +#4#183#232#255#4#131#158#255#0#3#3#252#0#0#0'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#255#255#255#0#255#255
- +#255#0#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#21#0#3#3#248#1'(0'#247#2'a{'#255#2#139#186#255#1#131#186
- +#255#0'3K'#255#0#7#10#255#2'm'#141#255#4#127#156#255#0#3#3#252#0#0#0'b'#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#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#24#24#24#178#10
- +#10#10#241#0#5#7#251#0#1#1#255#0'#5'#254#1#156#217#255#2'u'#153#255#0#3#4#255
- +#0#1#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#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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'7eee'#224#239#239#239#255''''''''#255#0#0#0#255#0#0#0#255#0#4#6#255#1
- +'%2'#255#4#174#221#255#3'Uf'#255#0#6#7#230#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#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'&bbb'#246#250#250#250#255'NNN'#255#0#0#0#255#0
- +#0#0#255#0#0#0#255#0#0#0#255#0#5#7#255#1'!('#254#1#27' '#250#0#8#9#192#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#16#16#16'm'#230#230#230
- +#255#129#129#129#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0
- +#243#0#3#3#157#0#0#0'~'#0#0#0#13#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0'~~~'#197#254#254#254#255#30#30#30#255#0#0#0#255#0#0#0#255#0#0
- +#0#255#0#0#0#255#0#0#0#255#0#0#0#145#255#255#255#0#255#255#255#0#255#255#255
- +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#155#155#155#235#192
- +#192#192#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#247#0#0#0#143#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#255#255#255#0
- +#255#255#255#0#0#0#0#7#174#174#174#251'ccc'#255#0#0#0#255#0#0#0#255#0#0#0#239
- +#0#0#0#162#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#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
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#11#11#11#150#134#134#134#255#0#0#0#255
- +#0#0#0#191#0#0#0#19#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#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
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#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'L'#16#16#16#213#5#5#5
- +#189#0#0#0'Q'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#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#11#0#0#0'$'#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#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#0#0#0#26#4#6#11#136#6#10#21#207#2#4#11#241
- +#1#6#20#202#0#2#10#127#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#12#5#5'i'#18#8#7#221#24#14#13#242'#'
- +#10#8#238#12#2#1#240#20#3#0#191#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#0#0#0'5'#7#9#15#235'r|'#161#253
- +#148#162#212#255'Pp'#220#255'&G'#176#255#7'"u'#252#0#3#14#236#0#0#0'8'#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#18#7#5#154'H,+'#242#231
- +#181#180#255#242#158#156#255#232'`X'#255#221'?2'#255#156#24#10#255#16#2#0#241
- +#4#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#0#0#0#0#1#3#6#14#229
- +'k'#128#199#255#161#179#243#255#139#160#240#255'l'#136#235#255'Hl'#230#255'#'
- +'Q'#225#255#0'+'#177#255#0#3#12#236#0#0#0#1#255#255#255#0#255#255#255#0#0#0#0
- +'*'#29#7#6#240#235#131'|'#255#238#132#129#255#238#131#130#255#235'nh'#255#230
- +'PE'#255#225'2!'#255#179#18#0#255#16#2#0#224#255#255#255#0#255#255#255#0#255
- +#255#255#0#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'L'#4#19'@'#240'1['#227#255'Nq'#231#255'a'#127#234
- +#255'^}'#234#255'Hm'#231#255'*U'#224#255#7'2'#182#255#0#10')'#239#0#0#0'1'
- +#255#255#255#0#255#255#255#0#17#2#0#168#139#21#8#253#227'<-'#255#230'SH'#255
- +#233'aX'#255#232'^U'#255#229'MA'#255#206'0!'#255#155#18#2#255#24#2#0#240#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#255#255#255#0#255#255#255#0#0#3#15#149#0#16'='#245#8'6'#196
- +#255'"P'#225#255'4]'#228#255':b'#229#255'2Y'#222#255#23':'#169#255#3'%'#138
- +#255#0#7#28#242#0#0#0'Q'#255#255#255#0#255#255#255#0#18#2#0#166'+'#4#0#240
- +#148#16#2#255#179'$'#22#255#207'6'''#255#208':,'#255#171'+'#31#255'}'#23#13
- +#255'O'#8#0#242#12#1#0#231#0#0#0#24#255#255#255#0#255#255#255#0#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#2#7'q'#0#3#15#227#0#2#9#243#1#5#19#240#2#9#27#237#1#3#12#243#0#3#13#235
- +#0#4#18#199#0#0#0'A'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#0#0#0'H'#19#2#0#161#22#3#0#194#19#2#0#220#17#2#0#222#21#3#0#195#16#2#0#161#3
- +#0#0'c'#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#13#0#0#0#23#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#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- ,#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#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'n'#0#0#0#255#8#30'5'#255'P'#146
- +#214#255#6'g'#202#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#255#255#255#0#255#255#255
- +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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'G'#0#0#0#253#1#12#24#254'D'#134#202#255#9'i'#202#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'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#0#0#0'('#0#0#1#242#0#4#9#254'4u'#184
- +#255#12'k'#203#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'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#0#0#0
- +#18#0#0#1#220#0#0#1#255'!]'#155#255#16'm'#204#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'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#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#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#190#0#0#0#255#17'Cv'#255#17'n'#204#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'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
- +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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#152
- +#0#0#0#255#6'*O'#255#13'k'#203#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'd'#201#255
- +#0'd'#201#255#0'd'#201#255#0'd'#201#255#0'['#184#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'm'#0#0#0#255#0#23'/'#255#4'c'#196#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'd'#201#255#0'd'#201#255#0'd'#201#255#0'd'#201#255#0
- +'b'#197#255#0#25'2'#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'F'#0#0#0#253#0#12
- +#24#254#0'['#184#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'd'#201#255#0'd'#201#255#0
- +'d'#201#255#0'd'#201#255#0'd'#201#255#0'+W'#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';'#0#0#1#253#0#0#0#255#0#5#11#255#0#9#19#255#0#18'%'#255#0#30'<'#255#0
- +'.]'#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#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
- +#5#254#0#0#1#229#0#0#0#22#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#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#1#1#1#243'#%,'#255#179#188#215#255#187
- +#195#220#255#195#202#224#255#194#201#223#255#183#190#214#255't|'#147#255'!$+'
- +#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
- +#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
- +'`'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#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#173#0#1#1#255#177#183#205#255#206
- +#211#229#255#206#211#229#255#206#211#229#255#193#200#223#255#170#179#210#255
- +#159#170#205#255#157#168#204#255#156#167#203#255'6:G'#255#0#0#0#255#0'C'#134
- +#255#0'd'#201#255#0'+W'#255#0#0#0#255#0#0#0#147#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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#14#1#1#1#249'(+3'#255#203#209#228#255#206#211#229#255#205#210
- +#229#255#174#183#213#255#157#168#204#255#157#168#204#255#157#168#204#255#157
- +#168#204#255#157#168#204#255#143#153#186#255#2#2#3#255#0#19'('#255#0'?'#127
- +#255#0#0#0#255#0#0#0#193#0#0#0#4#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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'v{'#140#255#206#211#229#255#204#209#228#255#170#180#211#255#157#168
- +#204#255#157#168#204#255#157#168#204#255#157#168#204#255#157#168#204#255#157
- +#168#204#255#157#168#204#255'-0:'#255#0#0#0#255#0#1#3#255#0#0#1#228#0#0#0#22
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#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#184#2#2#3#254#180#186
- +#209#255#203#208#228#255#168#177#209#255#157#168#204#255#157#168#204#255#157
- +#168#204#255#157#168#204#255#157#168#204#255#157#168#204#255#157#168#204#255
- +#157#168#204#255'JO`'#255#0#0#0#255#0#0#0#253#0#0#0'4'#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#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#21#0#1#1#252'/2<'#255#203#209#228#255#170#180
- +#211#255#157#168#204#255#157#168#204#255#157#168#204#255#157#168#204#255#157
- +#168#204#255#157#168#204#255#157#168#204#255#148#159#193#255'EJZ'#255#1#1#2
- +#254#0#0#0#255#0#0#0#155#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#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'j'#0#0#0#255'z'#128#147#255#185#193#218#255#157#168#204#255
- +#157#168#204#255#157#168#204#255#157#168#204#255#157#168#204#255#157#168#204
- +#255#156#167#203#255'cj'#129#255#13#14#17#253#0#0#0#255#0#0#0#203#0#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
- +#0#0#0#195#4#4#5#254#174#181#207#255#158#169#205#255#157#168#204#255#157#168
- +#204#255#157#168#204#255#157#168#204#255#157#168#204#255#128#137#166#255'$'''
- +'/'#255#0#0#0#255#1#1#1#238#0#0#0'e'#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#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#30#0#0#0#254'58C'#255#167
- +#177#209#255#157#168#204#255#157#168#204#255#157#168#204#255#157#168#204#255
- +#147#157#191#255'BGV'#255#1#2#2#254#0#0#0#253#0#0#0#151#0#0#0#18#255#255#255
- +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#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
- +#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#0#0#0#212#21
- +#21#21#255'8'#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
- +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#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#20#0#1#2#228#10#16#23#253'q'#162#212
- +#255#128#177#228#255'D'#141#215#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#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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#0#0#0#188#1#1#2#254']'#139#186#255#128#177#228#255'`'#158#221#255#2
- +'e'#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'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#0#0#0#164#0#0#0#255'Ca'
- +#128#255#128#172#217#255't'#169#223#255#12'k'#203#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'`'#194#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#149#0#0#0#255''''''''#255#127#127#127#255'~~~'#255
- +' "$'#255#0'!C'#255#0'G'#144#255#0'c'#199#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'#G'#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#0#0#0'R'#0#1#1#255#18',8'#255'y'
- +#185#205#255#129#187#199#255'?'#144#154#255#4'PS'#255#0#6#7#255#0#0#0#255#0
- +#22'-'#255#0'U'#171#255#0'd'#201#255#0'd'#201#255#0'd'#201#255#0'd'#201#255#0
- +'6m'#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#29#0
- +#1#2#250#3#11#15#255'f'#190#220#255#130#224#245#255'^'#228#246#255#12#238#249
- +#255#14#249#253#255#10#213#231#255#4'l'#127#255#0#5#7#255#0#4#8#255#0'T'#169
- +#255#0'd'#201#255#0'd'#201#255#0'H'#145#255#0#0#1#254#0#0#0#196#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#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#0#0#0#243#0#0#0#255'Dm|'#255#128#183#196#255'q'
- +#194#205#255#18#203#215#255#14#252#254#255#11#230#247#255#8#208#240#255#5#185
- +#233#255#2#132#183#255#0#3#5#255#0#19'&'#255#0'a'#196#255#0'U'#171#255#0#5#11
- +#253#0#0#1#228#0#0#0#22#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255
- +#0#255#255#255#0#255#255#255#0#255#255#255#0#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#219#0#0#0#255'!&'
- +''''#255#127#127#127#255'|||'#255#26#26#26#255#0#1#1#255#4'X^'#255#7#189#216
- +#255#5#188#234#255#2#166#227#255#0#153#223#255#2'a~'#255#0#0#0#255#0':v'#255
- +#0#15#31#253#0#0#1#248#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#255#255#255#0#255#255#255#0#0#0#0#157#0#0
- +#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
- +#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
- +#0#0#0#255#1'Vu'#255#6#191#235#255#9#213#241#255#2'14'#255#0#1#1#255#0#0#0
- +#136#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#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#1#245#0#0#0#255'59:'#255
- +#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#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
- +#201#255#0#0#0#255#3'RX'#255#0#1#1#255#0#1#1#245#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#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#0#0#0'I'#0#0#0#255'O9X'#255#238#198#253#255#238#199#253#255
- +#228#163#252#255#203#142#226#255'M6U'#255#0#0#0#255#1'4B'#255#1#152#214#255#1
- +#159#225#255#4#182#232#255#7#204#239#255#1#22#24#255#0#4#4#255#0#2#2#254#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#0#0#0#22#2#2#2#234#25#17#28#253#222
- +#173#240#255#239#200#253#255#228#163#252#255#227#159#252#255#227#159#252#255
- +#226#158#251#255'pN|'#255#0#0#0#255#0#26'&'#255#4#170#220#255#7#201#238#255
- +#10#218#239#255#1#22#22#255#0#0#0#255#0#0#0'r'#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#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#176#1#1#1#254#173'y'#192#255#228#165#252#255#227
- +#161#252#255#227#159#252#255#227#159#252#255#227#159#252#255#227#159#252#255
- +#227#159#252#255#137'`'#153#255#0#0#0#255#3'k'#128#255#10#220#244#255#5'be'
- +#255#0#0#0#255#0#0#0#179#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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'aDl'#255#227#159#252#255#227#159#252#255#227#159#252#255#227
- +#159#252#255#227#159#252#255#227#159#252#255#227#159#252#255#227#159#252#255
- +#227#159#252#255'('#29'.'#255#2#21#24#255#7#143#150#255#0#0#0#255#0#0#0#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#154#2#1
- +#2#254#199#139#220#255#227#159#252#255#227#159#252#255#227#159#252#255#227
- +#159#252#255#227#159#252#255#227#159#252#255#227#159#252#255#227#159#252#255
- +#227#159#252#255#146'f'#163#255#0#0#0#255#0#0#0#255#0#2#2#251#0#0#0#31#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#1#1#2#216'3#8'#255
- +#227#159#252#255#227#159#252#255#227#159#252#255#227#159#252#255#227#159#252
- +#255#227#159#252#255#227#159#252#255#227#159#252#255#227#159#252#255#227#159
- +#252#255#211#147#234#255#3#4#6#255#0#2#2#255#0#0#0'P'#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#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#1#1#1#251'V<`'#255#227#159#252
- +#255#227#159#252#255#227#159#252#255#227#159#252#255#227#159#252#255#227#159
- +#252#255#227#159#252#255#227#159#252#255#227#159#252#255#226#158#251#255'D0L'
- +#255#0#0#0#255#0#0#0'q'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255
- +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#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#2#1#2#240'D/K'#255#227#159#252#255#227#159#252
- +#255#227#159#252#255#227#159#252#255#227#159#252#255#227#159#252#255#227#159
- +#252#255#225#157#250#255#203#142#226#255'iIv'#255#0#0#0#255#0#0#0#133#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#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
- +#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
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#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#1#1#252'4$:'#254#186#131#207#255#190#133#211#255#179'}'
- +#199#255#171'x'#190#255#171'x'#190#255#166't'#183#255'>,E'#254#0#0#0#255#0#0
- +#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
- +'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
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#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#170#0#0#0#253#0#0#0#255#0#0
- +#0#255#1#1#1#250#0#0#0#162#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#0#0#0#24#0#0#0'%'#0#0#0'"'#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#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- ,#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#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#128#128#128#255#0#0#0#255
- +#0#0#0#255#0#0#0#255#128#128#128#255#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#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#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#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#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#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#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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#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#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#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#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#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
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#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#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- ,#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#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#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#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
@@ -2325,7 +2305,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#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#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#0#255#255#255#0#255#255
@@ -2369,57 +2349,77 @@ 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#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#0#255#255#255#0#255#255
- +#255#0#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#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#0#255#255#255#0#255#255#255#0#255#255#255#0#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
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#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#128#128#128#255#0#0#0#255#0#0#0#255#0#0#0#255
- +#128#128#128#255#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#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#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#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#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#0#255#255#255#0#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
+ +#255#0#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#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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#255#255#255#0#255#255
+ ,#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#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#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#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
+ +#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#0#255#255#255#0
+#255#255#255#0#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#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#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#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#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#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#128#128#128#255#0#0#0#255#0#0#0#255#0#0
+ +#0#255#128#128#128#255#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#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#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#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#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#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
@@ -2440,11 +2440,19 @@ 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#0#0#0'$'#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#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#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#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#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#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#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
@@ -2489,7 +2497,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#215'q'#242#255#210'f'#240#255#205'Y'#238#255#200'L'#236#255#194'?'#235
+#255#188'1'#233#255#182'#'#231#255#176#21#229#255'}'#4#166#255#16#0#23#248#7
+#0#9#176#255#255#255#0#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#14#4#247'N'#237'O'#255'U'#238'V'
+ ,#0#255#255#255#0#255#255#255#0#0#0#0'@'#4#14#4#247'N'#237'O'#255'U'#238'V'
+#255'Y'#238'Y'#255'Y'#238'Y'#255'4'#146'5'#255#14#12#15#255#200'p'#222#255
+#224#135#245#255#228#144#246#255#229#147#247#255#227#143#246#255#223#133#245
+#255#218'y'#243#255#213'l'#241#255#207'^'#239#255#201'P'#237#255#195'B'#235
@@ -2497,7 +2505,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
@@ -2553,7 +2561,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#187'-'#232#255#185'*'#232#255#184'&'#231#255#181' '#230#255#178#25#229#255
+#175#17#228#255#171#8#227#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#21#0#28#244#0#0#0'S'#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#10#0
+ ,#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#10#0
+#0#0'('#0#0#0'('#0#0#0'('#0#0#0'('#0#0#0'R'#3#0#4#252#175#26#225#255#180#29
+#230#255#181#31#230#255#181#31#230#255#180#30#230#255#179#27#229#255#177#23
+#229#255#175#17#228#255#172#11#227#255#169#3#226#255#168#0#226#255#168#0#226
@@ -2561,7 +2569,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
@@ -2617,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#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#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#0#0#0#18#0#0#0#22#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#255
@@ -2625,7 +2633,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
@@ -2681,7 +2689,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#226#255#0#154#226#255#0#154#226#255#0#154#226#255#0#17#27#249#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#138#8'$2'#247'2'#175#233#255'>'#180#234#255'H'#184#236#255'Q'
- +#187#237#255'W'#190#238#255'['#192#239#255'\'#192#239#255'Y'#191#238#255'T'
+ ,#187#237#255'W'#190#238#255'['#192#239#255'\'#192#239#255'Y'#191#238#255'T'
+#189#238#255'L'#185#236#255'B'#181#235#255'7'#177#233#255'+'#172#232#255#30
+#166#230#255#16#161#228#255#2#155#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`'#255#0#5#7#192#255
@@ -2689,7 +2697,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'
@@ -2745,7 +2753,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#154#226#255#0#154#226#255#0'm'#160#255#0#0#0#254#0#0#0'C'#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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#1#2
- +#253#0'T{'#255#0#153#224#255#0#154#226#255#0#154#226#255#0#154#226#255#0#154
+ ,#253#0'T{'#255#0#153#224#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#154#226#255#0#154#226#255#0#154#226#255#0'j'#156#255#0#9
+#13#250#0#2#3#153#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
@@ -2753,7 +2761,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
@@ -2809,7 +2817,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#0#0#0#8#3#2#2#151#5#2#2#164
+ ,#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#8#3#2#2#151#5#2#2#164
+#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#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
@@ -2817,7 +2825,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(&'
@@ -2873,7 +2881,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+'K>'#255#228'C6'#255#227'<-'#255#225'4$'#255#224'-'#27#255#223'%'#18#255#222
+#29#9#255#221#22#0#255#221#22#0#255#142#14#0#255#8#1#0#232#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'
- +#21#18#246#232'`X'#255#233'e]'#255#234'hb'#255#234'ke'#255#234'lf'#255#234'l'
+ ,#21#18#246#232'`X'#255#233'e]'#255#234'hb'#255#234'ke'#255#234'lf'#255#234'l'
+'f'#255#234'jd'#255#234'g`'#255#233'c['#255#232'^V'#255#231'YO'#255#230'SH'
+#255#229'L@'#255#228'E8'#255#227'>0'#255#226'7'''#255#225'0'#31#255#224'('#22
+#255#222'!'#13#255#221#25#4#255#221#22#0#255#221#22#0#255'B'#6#0#249#2#0#0
@@ -2881,7 +2889,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
@@ -2937,7 +2945,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#221#22#0#255#221#22#0#255#221#22#0#255#221#22#0#255#221#22#0#255#221#22#0
+#255#221#22#0#255#221#22#0#255#221#22#0#255#221#22#0#255#221#22#0#255#166#17
+#0#255#4#0#0#248#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#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#3#0#0#151'!'#3#0#251
+'P'#8#0#252'O'#8#0#251'N'#8#0#251'M'#8#0#251'M'#7#0#250'J'#7#0#250'I'#7#0#250
+'I'#7#0#250'J'#7#0#250'K'#7#0#250'L'#7#0#251'M'#8#0#251'N'#8#0#251'P'#8#0#252
@@ -2945,7 +2953,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
@@ -3001,7 +3009,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#0#0#0'+'#0#0#0#186#0#0#0#255#0#0#0#255
+#13#19#19#255'Gfg'#255'y'#173#174#255'Rtv'#255'+=>'#255'4IJ'#255'c'#138#140
- +#255#150#208#212#255#167#231#236#255#167#231#236#255#167#231#236#255#167#231
+ ,#255#150#208#212#255#167#231#236#255#167#231#236#255#167#231#236#255#167#231
+#236#255#166#230#235#255'i'#145#148#255#10#13#14#255#0#0#0#255'III'#255#0#0#0
+#255#0#0#0#193#255#255#255#0#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#23#0#0#0#160#0#0#0#252#0#0#0#255
@@ -3009,7 +3017,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
@@ -3065,7 +3073,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#213#190#137#255#210#187#134#255#209#186#133#255#207#184#131#255#204#181#128
+#255#187#166'u'#255'olg'#255#180#180#180#255#176#176#176#255#172#172#172#255
+#167#167#167#255#210'jk'#255#226#158#159#255#212'op'#255#200'GI'#255#200'GI'
- +#255#200'GI'#255#200'GI'#255#200'GI'#255#200'GI'#255#200'GI'#255#174'>?'#255
+ ,#255#200'GI'#255#200'GI'#255#200'GI'#255#200'GI'#255#200'GI'#255#174'>?'#255
+'w*+'#255'w*+'#255')'#15#15#255'60#'#255#225#202#149#255#223#200#147#255#221
+#198#145#255#218#195#142#255#217#194#141#255#215#192#139#255#212#189#136#255
+#210#187#134#255#209#186#133#255#206#183#130#255#204#181#128#255#202#179'~'
@@ -3073,7 +3081,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'
@@ -3129,7 +3137,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#0#236#192#192#255#203'SU'#255#200'GI'#255#200'GI'#255#200'GI'#255#200'G'
+'I'#255#200'GI'#255#200'GI'#255#230#173#174#255#240#207#207#255#240#207#207
+#255#217#130#131#255#200'GI'#255#200'GI'#255'w*+'#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#238#0#0#0#185#0#0#0#132#0#0#0'N'#0
+ ,#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#238#0#0#0#185#0#0#0#132#0#0#0'N'#0
+#0#0#24#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#207#207#255#236#192#192#255#209'fg'#255#200'GI'#255#200'G'
+'I'#255#200'GI'#255#200'GI'#255#200'GI'#255#204'VW'#255#238#198#199#255#240
@@ -3137,7 +3145,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
@@ -3193,7 +3201,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#2#2#2'|'#3#3#3#252'ddd'#252#213#213#213#255#240#240#240#255#241
+#241#241#255#242#242#242#255#160#160#160#255#6#6#6#255'eee'#255#195#195#195
- +#255'AAA'#251#5#5#5#213#0#0#0#3#255#255#255#0#255#255#255#0#255#255#255#0#255
+ ,#255'AAA'#251#5#5#5#213#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#0#0#0#3#5#5#5#155#10#10#10#250#184#184#184#255
@@ -3201,7 +3209,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
@@ -3257,7 +3265,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#0#0#0#0#13#2#2#2#251'uuu'#255#145#145#145#255'jjj'#255'BDD'#255#8#11#11
+#255#12#24#24#255'5'#128#131#255'V'#214#218#255'U'#219#223#255'P'#216#220#255
+'K'#213#216#255'E'#210#213#255'@'#206#209#255':'#203#205#255'4'#200#202#255
- +'.'#196#198#255#27#134#135#255#234#230#144#255#234#230#144#255#234#230#144
+ ,'.'#196#198#255#27#134#135#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#175#172'k'#255#0#0#0#254#0#0#0'4'#255#255#255#0#255
+#255#255#0#4#6#6#248#0#0#0#255#4#6#6#255#22'+,'#255')X['#255'A'#143#146#255
@@ -3265,7 +3273,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
@@ -3321,7 +3329,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#144#255#234#230#144#255'KJ.'#251#6#5#3#204#255#255#255#0#255#255#255#0#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#157#1#3#3#254#26'IJ'#255'#^`'#255'/~'#129#255'?'#165#168#255'L'
- +#202#206#255'Q'#217#221#255'O'#215#219#255'L'#214#218#255'I'#212#215#255'E'
+ ,#202#206#255'Q'#217#221#255'O'#215#219#255'L'#214#218#255'I'#212#215#255'E'
+#210#213#255'A'#207#210#255'='#205#207#255'8'#202#204#255'3'#199#201#255'-'
+#196#197#255'('#193#194#255#234#230#144#255#234#230#144#255#234#230#144#255
+#184#181'q'#255#0#0#0#255#0#0#0'='#255#255#255#0#255#255#255#0#255#255#255#0
@@ -3329,7 +3337,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
@@ -3385,7 +3393,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#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#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#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
+#28#17#17#17#244#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
@@ -3393,7 +3401,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
@@ -3449,7 +3457,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255'k8'#13#255#8#4#0#185#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'|'#0#0#0'|R9'
+ ,'v6'#255#193'p.'#255#188'j&'#255#183'd'#31#255'< '#7#254#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'
@@ -3457,7 +3465,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
@@ -3513,7 +3521,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#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#222
- +'i'#0#0#255#157#137#193#255#128#128#221#255#128#128#221#255#128#128#221#255
+ ,'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#221'i'#0
@@ -3521,7 +3529,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
@@ -3577,7 +3585,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#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#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#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#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#0#0#0#14#2#3#12#221#23#24'!'#250
@@ -3585,7 +3593,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'
@@ -3641,7 +3649,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#184'F'#255'D|='#255'4:4'#158#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
+ ,#184'F'#255'I'#149'@'#255'5<4'#208#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
@@ -3649,7 +3657,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
@@ -3705,7 +3713,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#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'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'
+ ,#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'#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'59'
@@ -3713,7 +3721,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'
@@ -3769,7 +3777,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#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#0#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#255
@@ -3777,7 +3785,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
@@ -3833,7 +3841,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#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#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
@@ -3841,7 +3849,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
@@ -3897,7 +3905,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#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#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#255#0#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
+#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
@@ -3905,7 +3913,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
@@ -3961,7 +3969,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#13#229#24#25'R'#250'JJ'#203#255'ZZ'#229#255'``'#231#255'gg'#232#255'mm'#234
+#255'rr'#236#255'ss'#232#255'uu'#235#255'ss'#236#255'oo'#235#255'ii'#233#255
+'cc'#231#255'\\'#230#255'PP'#216#255#20#21'E'#251#1#2#14#228#0#0#0#14#255#255
- +#255#0#0#0#0#23#1#2#13#232#25#26'P'#250'MM'#206#255']]'#230#255'bb'#231#255
+ ,#255#0#0#0#0#23#1#2#13#232#25#26'P'#250'MM'#206#255']]'#230#255'bb'#231#255
+'gg'#233#255'll'#234#255'nn'#234#255'nn'#235#255'mm'#234#255'ii'#233#255'dd'
+#232#255'__'#230#255'TT'#219#255#22#23'G'#251#2#2#14#231#0#0#0#21#255#255#255
+#0#255#255#255#0#255#255#255#0#0#0#0#24#1#2#13#233#26#27'T'#250'RR'#213#255
@@ -3969,7 +3977,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
@@ -4025,7 +4033,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#236#238#238#255#236#238#238#255#236#238#238#255#231#227#223#255#177'yK'#250
+#233#227#221#168'TWU'#236#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'SWU'#185#199#198#196#158#206#163'{'
- +#205#192#139'^'#253#189#138']'#253#235#235#234#255#236#238#238#255#181#127'S'
+ ,#205#192#139'^'#253#189#138']'#253#235#235#234#255#236#238#238#255#181#127'S'
+#252#173'rC'#254#186#135'_'#187#199#195#189#173'UXU'#188#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'SWUbp'
+'sr'#208#244#234#224#161#207#164'y'#128#181'|N'#253#229#223#218#255#230#225
@@ -4033,7 +4041,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
@@ -4089,7 +4097,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#173'rC'#254#186#135'_'#187#199#195#189#173'UXU'#188#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'SWUbpsr'
+#208#244#234#224#161#207#164'y'#128#204#156'ls'#204#155'lh'#203#153'n^'#202
- +#154'lT'#208#164#127'Q'#245#236#228#156'sur'#214'SWUb'#255#255#255#0#255#255
+ ,#154'lT'#208#164#127'Q'#245#236#228#156'sur'#214'SWUb'#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'#189#154#157#155#170#243#232#222#166#225#196#168#133#214#175#136
+'h'#214#175#138'`'#229#203#179'o'#244#235#226#161#159#157#152#184'TWU'#190
@@ -4097,7 +4105,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
@@ -4153,7 +4161,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+'egory'#6#4'File'#7'Caption'#6#5'&Save'#4'Hint'#6#4'Save'#10'ImageIndex'#2#2
+#9'OnExecute'#7#15'FileSaveExecute'#8'ShortCut'#3'S@'#0#0#7'TAction'#10'File'
+'SaveAs'#8'Category'#6#4'File'#7'Caption'#6#11'Save &As...'#4'Hint'#6#7'Save'
- +' As'#9'OnExecute'#7#17'FileSaveAsExecute'#0#0#7'TAction'#9'FileClose'#8'Cat'
+ ,' As'#9'OnExecute'#7#17'FileSaveAsExecute'#0#0#7'TAction'#9'FileClose'#8'Cat'
+'egory'#6#4'File'#7'Caption'#6#6'&Close'#4'Hint'#6#5'Close'#10'ImageIndex'#2
+#3#9'OnExecute'#7#16'FileCloseExecute'#8'ShortCut'#3's@'#0#0#9'TEditUndo'#8
+'EditUndo'#8'Category'#6#4'Edit'#7'Caption'#6#5'&Undo'#7'Checked'#9#7'Enable'
@@ -4161,7 +4169,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'
diff --git a/applications/lazimageeditor/main.pas b/applications/lazimageeditor/main.pas
index 698834fe4..04880cb1f 100644
--- a/applications/lazimageeditor/main.pas
+++ b/applications/lazimageeditor/main.pas
@@ -42,6 +42,8 @@ type
TMainForm = class(TForm)
ActionList: TActionList;
checkFuzzy: TCheckBox;
+ BtnFromColor: TColorButton;
+ BtnToColor: TColorButton;
ColorsDisable: TAction;
ColorsGrayscale: TAction;
ColorsInvert: TAction;
@@ -61,10 +63,12 @@ type
FileSaveAs: TAction;
FlipHorizontally: TAction;
FlipVertically: TAction;
+ Label1: TLabel;
LabelTolerance1: TLabel;
LabelTolerance2: TLabel;
MaskInvert: TAction;
MaskRemove: TAction;
+ MenuItem5: TMenuItem;
Palette: TColorPalette;
MenuItemShowGrid: TMenuItem;
Panel1: TPanel;
@@ -215,6 +219,7 @@ type
ViewShowGrid: TAction;
ViewShowMask: TAction;
procedure checkFuzzyChange(Sender: TObject);
+ procedure BtnToColorClick(Sender: TObject);
procedure ColorsDisableExecute(Sender: TObject);
procedure ColorsGrayscaleExecute(Sender: TObject);
procedure ColorsInvertExecute(Sender: TObject);
@@ -245,6 +250,7 @@ type
procedure FormShow(Sender: TObject);
procedure MaskInvertExecute(Sender: TObject);
procedure MaskRemoveExecute(Sender: TObject);
+ procedure MenuItem5Click(Sender: TObject);
procedure MenuItemAboutClick(Sender: TObject);
procedure MenuItemClipPaperToMaskClick(Sender: TObject);
procedure MenuItemExitClick(Sender: TObject);
@@ -1099,6 +1105,13 @@ begin
ActivePictureEdit.RemoveMask;
end;
+procedure TMainForm.MenuItem5Click(Sender: TObject);
+begin
+ if not Pictures.CanEdit then
+ Exit;
+ ActivePictureEdit.ColorReplace(BtnFromColor.ButtonColor, BtnToColor.ButtonColor);
+end;
+
procedure TMainForm.MenuItemAboutClick(Sender: TObject);
begin
AboutDialogForm := TAboutDialogForm.Create(Self);
@@ -1328,6 +1341,11 @@ begin
ActivePictureEdit.Fuzzy := checkFuzzy.Checked;
end;
+procedure TMainForm.BtnToColorClick(Sender: TObject);
+begin
+
+end;
+
procedure TMainForm.EditSizeChange(Sender: TObject);
begin
if not Pictures.CanEdit then
diff --git a/applications/lazimageeditor/picturectrls.pas b/applications/lazimageeditor/picturectrls.pas
index 462a16626..1fb19cc11 100644
--- a/applications/lazimageeditor/picturectrls.pas
+++ b/applications/lazimageeditor/picturectrls.pas
@@ -185,6 +185,7 @@ type
procedure Rotate90Clockwise;
procedure Rotate180Clockwise;
procedure Rotate270Clockwise;
+ procedure ColorReplace(ColorFrom, ColorTo: TColor);
procedure StretchTruncate(AWidth, AHeight: integer);
procedure StretchSmooth(AWidth, AHeight: integer; Method: TSmoothMethod);
@@ -1172,6 +1173,19 @@ begin
UpdatePicture;
end;
+procedure TCustomPictureEdit.ColorReplace(ColorFrom, ColorTo: TColor);
+begin
+ if Picture = nil then
+ Exit;
+ BeginDraw;
+ try
+ Picture.ColorReplace(ColorFrom, ColorTo);
+ finally
+ EndDraw;
+ end;
+ UpdatePicture;
+end;
+
procedure TCustomPictureEdit.StretchTruncate(AWidth, AHeight: integer);
begin
if Picture = nil then