diff --git a/applications/lazimageeditor/bmprgbgraph.pas b/applications/lazimageeditor/bmprgbgraph.pas index a325e47f8..3c4d53b51 100644 --- a/applications/lazimageeditor/bmprgbgraph.pas +++ b/applications/lazimageeditor/bmprgbgraph.pas @@ -121,9 +121,9 @@ type procedure Grayscale; override; procedure Disable; virtual; - procedure CutToClipboard; virtual; - procedure CopyToClipboard; virtual; - procedure Delete; virtual; + procedure CutToClipboard; override; + procedure CopyToClipboard; override; + procedure Delete; override; procedure FlipHorz; override; procedure FlipVert; override; @@ -339,7 +339,7 @@ begin end; procedure TRGB32Bitmap.CopyToClipboard; -var +{var PixmapStream, BitmapStream: TMemoryStream; PixmapWriter, BitmapWriter: TFPCustomImageWriter; Image: TLazIntfImage; @@ -371,10 +371,15 @@ begin BitmapWriter.Free; end; end; +} +begin + inherited; +end; procedure TRGB32Bitmap.Delete; begin - Fill(PaperColor); + //Fill(PaperColor); + inherited; end; procedure TRGB32Bitmap.FlipHorz; diff --git a/applications/lazimageeditor/lazimageeditor.lpi b/applications/lazimageeditor/lazimageeditor.lpi index a7881b938..8e27157ed 100644 --- a/applications/lazimageeditor/lazimageeditor.lpi +++ b/applications/lazimageeditor/lazimageeditor.lpi @@ -41,15 +41,15 @@ - + - - - + + + @@ -60,20 +60,21 @@ - - - + + + + - - - + + + @@ -105,9 +106,9 @@ - - - + + + @@ -178,9 +179,9 @@ - - - + + + @@ -242,12 +243,10 @@ - - + - - + @@ -275,11 +274,11 @@ - + - + - + @@ -301,21 +300,21 @@ - + - - - + + + - + - - - + + + @@ -328,136 +327,147 @@ + + + - - - + + + + + + + + + + + - - + + - + - + - + - + - - + + - - + + - - + + - - + + - - + + - + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - + - + - - + + - - + + - - + + - - + + diff --git a/applications/lazimageeditor/lazimageeditor.pas b/applications/lazimageeditor/lazimageeditor.pas index 8567ecb83..8c225d77a 100644 --- a/applications/lazimageeditor/lazimageeditor.pas +++ b/applications/lazimageeditor/lazimageeditor.pas @@ -22,7 +22,9 @@ begin // show new picture dialog MainForm.Show; - MainForm.FileNewExecute(nil); + //MainForm.FileNewExecute(nil); + MainForm.FileNewOnStart; + Application.Run; end. diff --git a/applications/lazimageeditor/main.lfm b/applications/lazimageeditor/main.lfm index 8731d0b76..086a97720 100644 --- a/applications/lazimageeditor/main.lfm +++ b/applications/lazimageeditor/main.lfm @@ -252,29 +252,41 @@ end object ToolClose: TToolButton Left = 109 + Hint = 'Close' Top = 0 - Action = FileClose + Caption = '&Close' + ImageIndex = 3 + OnClick = FileCloseExecute ParentShowHint = False ShowHint = True end object ToolSave: TToolButton Left = 73 + Hint = 'Save' Top = 0 - Action = FileSave + Caption = '&Save' + ImageIndex = 2 + OnClick = FileSaveExecute ParentShowHint = False ShowHint = True end object ToolOpen: TToolButton Left = 37 + Hint = 'Open' Top = 0 - Action = FileOpen + Caption = '&Open...' + ImageIndex = 1 + OnClick = FileOpenExecute ParentShowHint = False ShowHint = True end object ToolNew: TToolButton Left = 1 + Hint = 'New' Top = 0 - Action = FileNew + Caption = '&New...' + ImageIndex = 0 + OnClick = FileNewExecute ParentShowHint = False ShowHint = True end @@ -287,22 +299,34 @@ end object ToolCut: TToolButton Left = 233 + Hint = 'Cut' Top = 0 - Action = EditCut + Caption = 'Cu&t' + Enabled = False + ImageIndex = 6 + OnClick = EditCutExecute ParentShowHint = False ShowHint = True end object ToolButton8: TToolButton Left = 269 + Hint = 'Copy' Top = 0 - Action = EditCopy + Caption = '&Copy' + Enabled = False + ImageIndex = 7 + OnClick = EditCopyExecute ParentShowHint = False ShowHint = True end object ToolButton9: TToolButton Left = 305 + Hint = 'Paste' Top = 0 - Action = EditPaste + Caption = '&Paste' + Enabled = False + ImageIndex = 8 + OnClick = EditPasteExecute ParentShowHint = False ShowHint = True end @@ -315,15 +339,22 @@ end object ToolButton11: TToolButton Left = 341 + Hint = 'Delete' Top = 0 - Action = EditDelete + Caption = '&Delete' + Enabled = False + ImageIndex = 9 + OnClick = EditDeleteExecute ParentShowHint = False ShowHint = True end object ToolUndo: TToolButton Left = 153 + Hint = 'Undo' Top = 0 - Action = EditUndo + Caption = '&Undo' + Enabled = False + ImageIndex = 4 ParentShowHint = False ShowHint = True end @@ -336,8 +367,11 @@ end object ToolRedo: TToolButton Left = 189 + Hint = 'Redo' Top = 0 - Action = EditRedo + Caption = '&Redo' + Enabled = False + ImageIndex = 5 ParentShowHint = False ShowHint = True end @@ -1247,9 +1281,9 @@ TabOrder = 5 object checkFuzzy: TCheckBox Left = 4 - Height = 19 + Height = 23 Top = 9 - Width = 20 + Width = 24 OnChange = checkFuzzyChange TabOrder = 0 end @@ -1272,7 +1306,7 @@ object MenuItemFile: TMenuItem Caption = '&File' object MenuItemNew: TMenuItem - Action = FileNew + Caption = '&New...' Bitmap.Data = { 76060000424D7606000000000000360000002800000014000000140000000100 2000000000004006000064000000640000000000000000000000FFFFFF00FFFF @@ -1327,10 +1361,13 @@ 09F4080808F5070707F6070707F7060606F8050505F9040404FA050505FC0505 058CFFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00 } + Hint = 'New' + ImageIndex = 0 + ShortCut = 16462 OnClick = FileNewExecute end object MenuItemOpen: TMenuItem - Action = FileOpen + Caption = '&Open...' Bitmap.Data = { 76060000424D7606000000000000360000002800000014000000140000000100 2000000000004006000064000000640000000000000000000000FFFFFF00FFFF @@ -1385,10 +1422,13 @@ FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00 } + Hint = 'Open' + ImageIndex = 1 + ShortCut = 16463 OnClick = FileOpenExecute end object MenuItemSave: TMenuItem - Action = FileSave + Caption = '&Save' Bitmap.Data = { 76060000424D7606000000000000360000002800000014000000140000000100 20000000000040060000640000006400000000000000000000000700009F0A00 @@ -1443,18 +1483,22 @@ 26E62C2626E62C2626E62C2625E62B2625E62B2524E62B2524E62A2423E62923 23E5292322E5221C1BE4090000D9080000CA0000001DFFFFFF00 } + Hint = 'Save' + ImageIndex = 2 + ShortCut = 16467 OnClick = FileSaveExecute end object MenuItemSaveAs: TMenuItem - Action = FileSaveAs + Caption = 'Save &As...' + Hint = 'Save As' OnClick = FileSaveAsExecute end object MenuItemExportAsLRS: TMenuItem - Action = FileExportAsLRS + Caption = '&Export As *.lrs...' OnClick = FileExportAsLRSExecute end object MenuItemClose: TMenuItem - Action = FileClose + Caption = '&Close' Bitmap.Data = { 76060000424D7606000000000000360000002800000014000000140000000100 2000000000004006000064000000640000000000000000000000FFFFFF00FFFF @@ -1509,6 +1553,9 @@ 0E7800000005FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF000000 000500020F8D0204139D0000002BFFFFFF00FFFFFF00FFFFFF00 } + Hint = 'Close' + ImageIndex = 3 + ShortCut = 16499 OnClick = FileCloseExecute end object MenuItem2: TMenuItem @@ -1523,7 +1570,8 @@ object MenuItemEdit: TMenuItem Caption = '&Edit' object MenuItemUndo: TMenuItem - Action = EditUndo + Caption = '&Undo' + Enabled = False Bitmap.Data = { 76060000424D7606000000000000360000002800000014000000140000000100 2000000000004006000064000000640000000000000000000000FFFFFF00FFFF @@ -1578,9 +1626,13 @@ 332D353935BA3333330FFFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00 } + Hint = 'Undo' + ImageIndex = 4 + ShortCut = 16474 end object MenuItemRedo: TMenuItem - Action = EditRedo + Caption = '&Redo' + Enabled = False Bitmap.Data = { 76060000424D7606000000000000360000002800000014000000140000000100 2000000000004006000064000000640000000000000000000000FFFFFF00FFFF @@ -1635,12 +1687,15 @@ FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00333333143439 33BA33333328FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00 } + Hint = 'Redo' + ImageIndex = 5 + ShortCut = 24666 end object MenuItem1: TMenuItem Caption = '-' end object MenuItemCut: TMenuItem - Action = EditCut + Caption = 'Cu&t' Bitmap.Data = { 76060000424D7606000000000000360000002800000014000000140000000100 2000000000004006000064000000640000000000000000000000FFFFFF00FFFF @@ -1695,10 +1750,13 @@ 00FFFFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF FF00000000FF000000FF000000FFFFFFFF00FFFFFF00FFFFFF00 } + Hint = 'Cut' + ImageIndex = 6 + ShortCut = 16472 OnClick = EditCutExecute end object MenuItemCopy: TMenuItem - Action = EditCopy + Caption = '&Copy' Bitmap.Data = { 76060000424D7606000000000000360000002800000014000000140000000100 2000000000004006000064000000640000000000000000000000FFFFFF00FFFF @@ -1753,10 +1811,13 @@ 00FF000000FF000000FF000000FF000000FF000000FF000000FF000000FF0000 00FF000000FF000000FF000000FF000000FFFFFFFF00FFFFFF00 } + Hint = 'Copy' + ImageIndex = 7 + ShortCut = 16451 OnClick = EditCopyExecute end object MenuItemPaste: TMenuItem - Action = EditPaste + Caption = '&Paste' Bitmap.Data = { 76060000424D7606000000000000360000002800000014000000140000000100 2000000000004006000064000000640000000000000000000000FFFFFF00FFFF @@ -1811,10 +1872,13 @@ FF00000000FF000000FF000000FF000000FF3B3B3BFF373737FF252525FFFFFF FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00 } + Hint = 'Paste' + ImageIndex = 8 + ShortCut = 16470 OnClick = EditPasteExecute end object MenuItemDelete: TMenuItem - Action = EditDelete + Caption = '&Delete' Bitmap.Data = { 76060000424D7606000000000000360000002800000014000000140000000100 2000000000004006000064000000640000000000000000000000FFFFFF00FFFF @@ -1869,25 +1933,30 @@ 137800000005FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF000000 00050002108D0203169D0000002BFFFFFF00FFFFFF00FFFFFF00 } + Hint = 'Delete' + ImageIndex = 9 + ShortCut = 46 OnClick = EditDeleteExecute end object MenuItemSelectAll: TMenuItem - Action = EditSelectAll + Caption = 'Select &All' + Hint = 'Select All' + ShortCut = 16449 OnClick = EditSelectAllExecute end end object MenuItemPicture: TMenuItem Caption = '&Picture' object MenuItemResize: TMenuItem - Action = PictureResize + Caption = 'Resize...' OnClick = MenuItemResizeClick end object MenuItemResizePaper: TMenuItem - Action = PictureResizePaper + Caption = 'Resize Paper...' OnClick = MenuItemResizePaperClick end object MenuItemClipPaperToMask: TMenuItem - Action = PictureClipPaperToMask + Caption = 'Clip Paper To Mask' end object MenuItem7: TMenuItem Caption = '-' @@ -1895,30 +1964,31 @@ object MenuItemFlip: TMenuItem Caption = 'Flip' object MenuItemHorizontally: TMenuItem - Action = FlipHorizontally + Caption = 'Horizontally' OnClick = FlipHorizontallyExecute end object MenuItemVertically: TMenuItem - Action = FlipVertically + Caption = 'Vertically' OnClick = FlipVerticallyExecute end end object MenuItemRotate: TMenuItem Caption = 'Rotate' object MenuItem90: TMenuItem - Action = Rotate90 + Caption = '90Clockwise' OnClick = Rotate90Execute end object MenuItem180: TMenuItem - Action = Rotate180 + Caption = '180Clockwise' OnClick = Rotate180Execute end object MenuItem270: TMenuItem - Action = Rotate270 + Caption = '270Clockwise' OnClick = Rotate270Execute end object MenuItemCustom: TMenuItem - Action = RotateCustom + Caption = 'Custom...' + Enabled = False end end object MenuItem4: TMenuItem @@ -1927,15 +1997,15 @@ object MenuItemColors: TMenuItem Caption = 'Colors' object MenuItemInvert: TMenuItem - Action = ColorsInvert + Caption = 'Invert' OnClick = ColorsInvertExecute end object MenuItemGrayscale: TMenuItem - Action = ColorsGrayscale + Caption = 'Grayscale' OnClick = ColorsGrayscaleExecute end object MenuItemDisable: TMenuItem - Action = ColorsDisable + Caption = 'Disable' OnClick = ColorsDisableExecute end end @@ -1943,31 +2013,27 @@ object MenuItemMask: TMenuItem Caption = 'Mask' object MenuItemMaskInvert: TMenuItem - Action = MaskInvert + Caption = 'Invert' OnClick = MaskInvertExecute end object MenuItemMaskRemove: TMenuItem - Action = MaskRemove + Caption = 'Remove' OnClick = MaskRemoveExecute end end object MenuItemView: TMenuItem Caption = 'View' object MenuItemShowGrid: TMenuItem - Action = ViewShowGrid AutoCheck = True + Caption = 'Show Grid' + Checked = True OnClick = ViewShowGridExecute end object MenuItemShowMask: TMenuItem - Action = ViewShowMask AutoCheck = True - OnClick = ViewShowMaskExecute - end - object MenuItemShowPreview: TMenuItem - AutoCheck = True - Caption = 'Show Preview' + Caption = 'Show Mask' Checked = True - OnClick = ViewShowPreviewExecute + OnClick = ViewShowMaskExecute end end object MenuItemHelp: TMenuItem @@ -1984,195 +2050,6 @@ end end end - object ActionList: TActionList - Images = ImageListActions - left = 114 - top = 90 - object FileNew: TAction - Category = 'File' - Caption = '&New...' - Hint = 'New' - ImageIndex = 0 - OnExecute = FileNewExecute - ShortCut = 16462 - end - object FileOpen: TAction - Category = 'File' - Caption = '&Open...' - Hint = 'Open' - ImageIndex = 1 - OnExecute = FileOpenExecute - ShortCut = 16463 - end - object FileSave: TAction - Category = 'File' - Caption = '&Save' - Hint = 'Save' - ImageIndex = 2 - OnExecute = FileSaveExecute - ShortCut = 16467 - end - object FileSaveAs: TAction - Category = 'File' - Caption = 'Save &As...' - Hint = 'Save As' - OnExecute = FileSaveAsExecute - end - object FileClose: TAction - Category = 'File' - Caption = '&Close' - Hint = 'Close' - ImageIndex = 3 - OnExecute = FileCloseExecute - ShortCut = 16499 - end - object EditUndo: TEditUndo - Category = 'Edit' - Caption = '&Undo' - Enabled = False - Hint = 'Undo' - ImageIndex = 4 - ShortCut = 16474 - end - object EditRedo: TAction - Category = 'Edit' - Caption = '&Redo' - Enabled = False - Hint = 'Redo' - ImageIndex = 5 - ShortCut = 24666 - end - object EditCut: TEditCut - Category = 'Edit' - Caption = 'Cu&t' - Enabled = False - Hint = 'Cut' - ImageIndex = 6 - OnExecute = EditCutExecute - ShortCut = 16472 - end - object EditCopy: TEditCopy - Category = 'Edit' - Caption = '&Copy' - Enabled = False - Hint = 'Copy' - ImageIndex = 7 - OnExecute = EditCopyExecute - ShortCut = 16451 - end - object EditPaste: TEditPaste - Category = 'Edit' - Caption = '&Paste' - Enabled = False - Hint = 'Paste' - ImageIndex = 8 - OnExecute = EditPasteExecute - ShortCut = 16470 - end - object EditDelete: TEditDelete - Category = 'Edit' - Caption = '&Delete' - Enabled = False - Hint = 'Delete' - ImageIndex = 9 - OnExecute = EditDeleteExecute - ShortCut = 46 - end - object EditSelectAll: TEditSelectAll - Category = 'Edit' - Caption = 'Select &All' - Enabled = False - Hint = 'Select All' - OnExecute = EditSelectAllExecute - ShortCut = 16449 - end - object PictureResize: TAction - Category = 'Picture' - Caption = 'Resize...' - end - object PictureResizePaper: TAction - Category = 'Picture' - Caption = 'Resize Paper...' - end - object FlipHorizontally: TAction - Category = 'PictureFlip' - Caption = 'Horizontally' - OnExecute = FlipHorizontallyExecute - end - object FlipVertically: TAction - Category = 'PictureFlip' - Caption = 'Vertically' - OnExecute = FlipVerticallyExecute - end - object Rotate90: TAction - Category = 'PictureRotate' - Caption = '90Clockwise' - OnExecute = Rotate90Execute - end - object Rotate180: TAction - Category = 'PictureRotate' - Caption = '180Clockwise' - OnExecute = Rotate180Execute - end - object Rotate270: TAction - Category = 'PictureRotate' - Caption = '270Clockwise' - OnExecute = Rotate270Execute - end - object RotateCustom: TAction - Category = 'PictureRotate' - Caption = 'Custom...' - Enabled = False - end - object ColorsInvert: TAction - Category = 'PictureColors' - Caption = 'Invert' - OnExecute = ColorsInvertExecute - end - object ColorsGrayscale: TAction - Category = 'PictureColors' - Caption = 'Grayscale' - OnExecute = ColorsGrayscaleExecute - end - object ColorsDisable: TAction - Category = 'PictureColors' - Caption = 'Disable' - OnExecute = ColorsDisableExecute - end - object FileExportAsLRS: TAction - Category = 'File' - Caption = '&Export As *.lrs...' - OnExecute = FileExportAsLRSExecute - end - object MaskRemove: TAction - Category = 'Mask' - Caption = 'Remove' - OnExecute = MaskRemoveExecute - end - object MaskInvert: TAction - Category = 'Mask' - Caption = 'Invert' - OnExecute = MaskInvertExecute - end - object PictureClipPaperToMask: TAction - Category = 'Picture' - Caption = 'Clip Paper To Mask' - end - object ViewShowGrid: TAction - Category = 'View' - AutoCheck = True - Caption = 'Show Grid' - Checked = True - OnExecute = ViewShowGridExecute - end - object ViewShowMask: TAction - Category = 'View' - AutoCheck = True - Caption = 'Show Mask' - Checked = True - OnExecute = ViewShowMaskExecute - end - end object ImageListTools: TImageList Height = 32 Width = 32 @@ -4023,4 +3900,190 @@ left = 186 top = 126 end + object ActionList: TActionList + Images = ImageListActions + left = 112 + top = 88 + object FileNew: TAction + Category = 'File' + Caption = '&New...' + Hint = 'New' + ImageIndex = 0 + OnExecute = FileNewExecute + ShortCut = 16462 + end + object FileOpen: TAction + Category = 'File' + Caption = '&Open...' + Hint = 'Open' + ImageIndex = 1 + OnExecute = FileOpenExecute + ShortCut = 16463 + end + object FileSave: TAction + Category = 'File' + Caption = '&Save' + Hint = 'Save' + ImageIndex = 2 + OnExecute = FileSaveExecute + ShortCut = 16467 + end + object FileSaveAs: TAction + Category = 'File' + Caption = 'Save &As...' + Hint = 'Save As' + OnExecute = FileSaveAsExecute + end + object FileClose: TAction + Category = 'File' + Caption = '&Close' + Hint = 'Close' + ImageIndex = 3 + OnExecute = FileCloseExecute + ShortCut = 16499 + end + object EditUndo: TEditUndo + Category = 'Edit' + Caption = '&Undo' + Checked = True + Enabled = False + Hint = 'Undo' + ImageIndex = 4 + ShortCut = 16474 + end + object EditRedo: TAction + Category = 'Edit' + Caption = '&Redo' + Checked = True + Enabled = False + Hint = 'Redo' + ImageIndex = 5 + ShortCut = 24666 + end + object EditCut: TEditCut + Category = 'Edit' + Caption = 'Cu&t' + Hint = 'Cut' + ImageIndex = 6 + OnExecute = EditCutExecute + ShortCut = 16472 + end + object EditCopy: TEditCopy + Category = 'Edit' + Caption = '&Copy' + Hint = 'Copy' + ImageIndex = 7 + OnExecute = EditCopyExecute + ShortCut = 16451 + end + object EditPaste: TEditPaste + Category = 'Edit' + Caption = '&Paste' + Hint = 'Paste' + ImageIndex = 8 + OnExecute = EditPasteExecute + ShortCut = 16470 + end + object EditDelete: TEditDelete + Category = 'Edit' + Caption = '&Delete' + Hint = 'Delete' + ImageIndex = 9 + OnExecute = EditDeleteExecute + ShortCut = 46 + end + object EditSelectAll: TEditSelectAll + Category = 'Edit' + Caption = 'Select &All' + Hint = 'Select All' + OnExecute = EditSelectAllExecute + ShortCut = 16449 + end + object PictureResize: TAction + Category = 'Picture' + Caption = 'Resize...' + end + object PictureResizePaper: TAction + Category = 'Picture' + Caption = 'Resize Paper...' + end + object FlipHorizontally: TAction + Category = 'PictureFlip' + Caption = 'Horizontally' + OnExecute = FlipHorizontallyExecute + end + object FlipVertically: TAction + Category = 'PictureFlip' + Caption = 'Vertically' + OnExecute = FlipVerticallyExecute + end + object Rotate90: TAction + Category = 'PictureRotate' + Caption = '90Clockwise' + OnExecute = Rotate90Execute + end + object Rotate180: TAction + Category = 'PictureRotate' + Caption = '180Clockwise' + OnExecute = Rotate180Execute + end + object Rotate270: TAction + Category = 'PictureRotate' + Caption = '270Clockwise' + OnExecute = Rotate270Execute + end + object RotateCustom: TAction + Category = 'PictureRotate' + Caption = 'Custom...' + Enabled = False + end + object ColorsInvert: TAction + Category = 'PictureColors' + Caption = 'Invert' + OnExecute = ColorsInvertExecute + end + object ColorsGrayscale: TAction + Category = 'PictureColors' + Caption = 'Grayscale' + OnExecute = ColorsGrayscaleExecute + end + object ColorsDisable: TAction + Category = 'PictureColors' + Caption = 'Disable' + OnExecute = ColorsDisableExecute + end + object FileExportAsLRS: TAction + Category = 'File' + Caption = '&Export As *.lrs...' + OnExecute = FileExportAsLRSExecute + end + object MaskRemove: TAction + Category = 'Mask' + Caption = 'Remove' + OnExecute = MaskRemoveExecute + end + object MaskInvert: TAction + Category = 'Mask' + Caption = 'Invert' + OnExecute = MaskInvertExecute + end + object PictureClipPaperToMask: TAction + Category = 'Picture' + Caption = 'Clip Paper To Mask' + end + object ViewShowGrid: TAction + Category = 'View' + AutoCheck = True + Caption = 'Show Grid' + Checked = True + OnExecute = ViewShowGridExecute + end + object ViewShowMask: TAction + Category = 'View' + AutoCheck = True + Caption = 'Show Mask' + Checked = True + OnExecute = ViewShowMaskExecute + end + end end diff --git a/applications/lazimageeditor/main.lrs b/applications/lazimageeditor/main.lrs index 9915fd0b6..b57de906f 100644 --- a/applications/lazimageeditor/main.lrs +++ b/applications/lazimageeditor/main.lrs @@ -62,77 +62,92 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +'or'#8#8'TabOrder'#2#0#0#6'TLabel'#9'LabelZoom'#4'Left'#3#129#1#6'Height'#2 +' '#3'Top'#2#0#5'Width'#2'('#7'Caption'#6#5'Zoom:'#21'Constraints.MinHeight' +#2' '#6'Layout'#7#8'tlCenter'#11'ParentColor'#8#0#0#11'TToolButton'#9'ToolCl' - +'ose'#4'Left'#2'm'#3'Top'#2#0#6'Action'#7#9'FileClose'#14'ParentShowHint'#8#8 - +'ShowHint'#9#0#0#11'TToolButton'#8'ToolSave'#4'Left'#2'I'#3'Top'#2#0#6'Actio' - +'n'#7#8'FileSave'#14'ParentShowHint'#8#8'ShowHint'#9#0#0#11'TToolButton'#8'T' - ,'oolOpen'#4'Left'#2'%'#3'Top'#2#0#6'Action'#7#8'FileOpen'#14'ParentShowHint' - +#8#8'ShowHint'#9#0#0#11'TToolButton'#7'ToolNew'#4'Left'#2#1#3'Top'#2#0#6'Act' - +'ion'#7#7'FileNew'#14'ParentShowHint'#8#8'ShowHint'#9#0#0#11'TToolButton'#11 - +'ToolButton6'#4'Left'#3#145#0#3'Top'#2#0#5'Width'#2#8#7'Caption'#6#11'ToolBu' - +'tton6'#5'Style'#7#12'tbsSeparator'#0#0#11'TToolButton'#7'ToolCut'#4'Left'#3 - +#233#0#3'Top'#2#0#6'Action'#7#7'EditCut'#14'ParentShowHint'#8#8'ShowHint'#9#0 - +#0#11'TToolButton'#11'ToolButton8'#4'Left'#3#13#1#3'Top'#2#0#6'Action'#7#8'E' - +'ditCopy'#14'ParentShowHint'#8#8'ShowHint'#9#0#0#11'TToolButton'#11'ToolButt' - +'on9'#4'Left'#3'1'#1#3'Top'#2#0#6'Action'#7#9'EditPaste'#14'ParentShowHint'#8 - +#8'ShowHint'#9#0#0#11'TToolButton'#12'ToolButton10'#4'Left'#3'y'#1#3'Top'#2#0 - +#5'Width'#2#8#7'Caption'#6#12'ToolButton10'#5'Style'#7#12'tbsSeparator'#0#0 - +#11'TToolButton'#12'ToolButton11'#4'Left'#3'U'#1#3'Top'#2#0#6'Action'#7#10'E' - +'ditDelete'#14'ParentShowHint'#8#8'ShowHint'#9#0#0#11'TToolButton'#8'ToolUnd' - +'o'#4'Left'#3#153#0#3'Top'#2#0#6'Action'#7#8'EditUndo'#14'ParentShowHint'#8#8 - +'ShowHint'#9#0#0#11'TToolButton'#11'ToolButton2'#4'Left'#3#225#0#3'Top'#2#0#5 - +'Width'#2#8#7'Caption'#6#11'ToolButton2'#5'Style'#7#12'tbsSeparator'#0#0#11 - +'TToolButton'#8'ToolRedo'#4'Left'#3#189#0#3'Top'#2#0#6'Action'#7#8'EditRedo' - +#14'ParentShowHint'#8#8'ShowHint'#9#0#0#6'TPanel'#9'PanelZoom'#4'Left'#3#169 - +#1#6'Height'#2' '#3'Top'#2#0#5'Width'#2'M'#10'BevelOuter'#7#6'bvNone'#12'Cli' - +'entHeight'#2' '#11'ClientWidth'#2'M'#8'TabOrder'#2#0#0#9'TComboBox'#12'Comb' - +'oBoxZoom'#4'Left'#2#4#6'Height'#2#27#3'Top'#2#2#5'Width'#2'F'#7'Anchors'#11 - +#6'akLeft'#0#10'ItemHeight'#2#19#9'ItemIndex'#2#2#13'Items.Strings'#1#6#4'25' - +' %'#6#4'50 %'#6#5'100 %'#6#5'200 %'#6#5'400 %'#6#5'800 %'#6#6'1000 %'#0#8'O' - +'nChange'#7#18'ComboBoxZoomChange'#13'OnEditingDone'#7#23'ComboBoxZoomEditin' - +'gDone'#14'ParentShowHint'#8#8'TabOrder'#2#0#4'Text'#6#5'100 %'#0#0#0#0#6'TP' - +'anel'#12'PanelOptions'#4'Left'#2#0#6'Height'#2'"'#3'Top'#2'#'#5'Width'#3#137 - +#3#5'Align'#7#5'alTop'#25'BorderSpacing.InnerBorder'#2#4#31'BorderSpacing.Ce' - +'llAlignVertical'#7#9'ccaCenter'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight' - +#2'"'#11'ClientWidth'#3#137#3#8'TabOrder'#2#1#0#6'TLabel'#16'LabelFillOutlin' - +'e'#4'Left'#2'g'#6'Height'#2'"'#3'Top'#2#0#5'Width'#2'H'#5'Align'#7#6'alLeft' - +#7'Caption'#6#14'Fill, Outline:'#21'Constraints.MinHeight'#2' '#6'Layout'#7#8 - +'tlCenter'#11'ParentColor'#8#0#0#6'TLabel'#10'LabelShape'#4'Left'#2#0#6'Heig' - +'ht'#2'"'#3'Top'#2#0#5'Width'#2'*'#5'Align'#7#6'alLeft'#7'Caption'#6#6'Shape' - +':'#21'Constraints.MinHeight'#2' '#6'Layout'#7#8'tlCenter'#11'ParentColor'#8 - +#0#0#6'TLabel'#13'LabelMaskTool'#4'Left'#3#2#1#6'Height'#2'"'#3'Top'#2#0#5'W' - +'idth'#2'C'#5'Align'#7#6'alLeft'#7'Caption'#6#10'Mask Tool:'#21'Constraints.' - +'MinHeight'#2' '#6'Layout'#7#8'tlCenter'#11'ParentColor'#8#0#0#6'TPanel'#11 - +'PanelColors'#4'Left'#3#181#2#6'Height'#2'"'#3'Top'#2#0#5'Width'#3#212#0#5'A' - +'lign'#7#7'alRight'#8'AutoSize'#9#25'BorderSpacing.InnerBorder'#2#4'!BorderS' - +'pacing.CellAlignHorizontal'#7#10'ccaLeftTop'#31'BorderSpacing.CellAlignVert' - +'ical'#7#9'ccaCenter'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2'"'#11'Cl' - +'ientWidth'#3#212#0#8'TabOrder'#2#0#0#6'TLabel'#12'LabelOutline'#4'Left'#2#8 - +#6'Height'#2'"'#3'Top'#2#0#5'Width'#2'1'#5'Align'#7#7'alRight'#7'Caption'#6#8 - +'Outline:'#6'Layout'#7#8'tlCenter'#11'ParentColor'#8#0#0#6'TLabel'#9'LabelFi' - +'ll'#4'Left'#2'Y'#6'Height'#2'"'#3'Top'#2#0#5'Width'#2#20#5'Align'#7#7'alRig' - +'ht'#7'Caption'#6#5'Fill:'#6'Layout'#7#8'tlCenter'#11'ParentColor'#8#0#0#6'T' - +'Label'#10'LabelPaper'#4'Left'#3#141#0#6'Height'#2'"'#3'Top'#2#0#5'Width'#2 - +''''#5'Align'#7#7'alRight'#7'Caption'#6#6'Paper:'#6'Layout'#7#8'tlCenter'#11 - +'ParentColor'#8#0#0#6'TPanel'#12'PanelOutline'#4'Left'#2'?'#6'Height'#2#22#3 - +'Top'#2#6#5'Width'#2#20#5'Align'#7#7'alRight'#20'BorderSpacing.Around'#2#6#10 - +'BevelInner'#7#9'bvLowered'#5'Color'#7#7'clWhite'#11'ParentColor'#8#8'TabOrd' - +'er'#2#0#10'OnDblClick'#7#20'PanelOutlineDblClick'#0#0#6'TPanel'#9'PanelFill' - +#4'Left'#2's'#6'Height'#2#22#3'Top'#2#6#5'Width'#2#20#5'Align'#7#7'alRight' - +#20'BorderSpacing.Around'#2#6#10'BevelInner'#7#9'bvLowered'#5'Color'#7#7'clW' - +'hite'#11'ParentColor'#8#8'TabOrder'#2#1#10'OnDblClick'#7#17'PanelFillDblCli' - +'ck'#0#0#6'TPanel'#10'PanelPaper'#4'Left'#3#186#0#6'Height'#2#22#3'Top'#2#6#5 - +'Width'#2#20#5'Align'#7#7'alRight'#20'BorderSpacing.Around'#2#6#10'BevelInne' - +'r'#7#9'bvLowered'#5'Color'#7#7'clWhite'#11'ParentColor'#8#8'TabOrder'#2#2#10 - +'OnDblClick'#7#18'PanelPaperDblClick'#0#0#0#6'TPanel'#16'PanelFillOutline'#4 - +'Left'#3#175#0#6'Height'#2'"'#3'Top'#2#0#5'Width'#2'S'#5'Align'#7#6'alLeft' - +#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2'"'#11'ClientWidth'#2'S'#8'Tab' - +'Order'#2#1#0#12'TSpeedButton'#15'ToolFillOutline'#4'Left'#2#4#6'Height'#2#24 - +#3'Top'#2#5#5'Width'#2#25#7'Anchors'#11#6'akLeft'#0#4'Down'#9#10'Glyph.Data' - +#10#234#4#0#0#230#4#0#0'BM'#230#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0 - ,#0#0#1#0#24#0#0#0#0#0#176#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +'ose'#4'Left'#2'm'#4'Hint'#6#5'Close'#3'Top'#2#0#7'Caption'#6#6'&Close'#10'I' + +'mageIndex'#2#3#7'OnClick'#7#16'FileCloseExecute'#14'ParentShowHint'#8#8'Sho' + +'wHint'#9#0#0#11'TToolButton'#8'ToolSave'#4'Left'#2'I'#4'Hint'#6#4'Save'#3'T' + ,'op'#2#0#7'Caption'#6#5'&Save'#10'ImageIndex'#2#2#7'OnClick'#7#15'FileSaveEx' + +'ecute'#14'ParentShowHint'#8#8'ShowHint'#9#0#0#11'TToolButton'#8'ToolOpen'#4 + +'Left'#2'%'#4'Hint'#6#4'Open'#3'Top'#2#0#7'Caption'#6#8'&Open...'#10'ImageIn' + +'dex'#2#1#7'OnClick'#7#15'FileOpenExecute'#14'ParentShowHint'#8#8'ShowHint'#9 + +#0#0#11'TToolButton'#7'ToolNew'#4'Left'#2#1#4'Hint'#6#3'New'#3'Top'#2#0#7'Ca' + +'ption'#6#7'&New...'#10'ImageIndex'#2#0#7'OnClick'#7#14'FileNewExecute'#14'P' + +'arentShowHint'#8#8'ShowHint'#9#0#0#11'TToolButton'#11'ToolButton6'#4'Left'#3 + +#145#0#3'Top'#2#0#5'Width'#2#8#7'Caption'#6#11'ToolButton6'#5'Style'#7#12'tb' + +'sSeparator'#0#0#11'TToolButton'#7'ToolCut'#4'Left'#3#233#0#4'Hint'#6#3'Cut' + +#3'Top'#2#0#7'Caption'#6#4'Cu&t'#7'Enabled'#8#10'ImageIndex'#2#6#7'OnClick'#7 + +#14'EditCutExecute'#14'ParentShowHint'#8#8'ShowHint'#9#0#0#11'TToolButton'#11 + +'ToolButton8'#4'Left'#3#13#1#4'Hint'#6#4'Copy'#3'Top'#2#0#7'Caption'#6#5'&Co' + +'py'#7'Enabled'#8#10'ImageIndex'#2#7#7'OnClick'#7#15'EditCopyExecute'#14'Par' + +'entShowHint'#8#8'ShowHint'#9#0#0#11'TToolButton'#11'ToolButton9'#4'Left'#3 + +'1'#1#4'Hint'#6#5'Paste'#3'Top'#2#0#7'Caption'#6#6'&Paste'#7'Enabled'#8#10'I' + +'mageIndex'#2#8#7'OnClick'#7#16'EditPasteExecute'#14'ParentShowHint'#8#8'Sho' + +'wHint'#9#0#0#11'TToolButton'#12'ToolButton10'#4'Left'#3'y'#1#3'Top'#2#0#5'W' + +'idth'#2#8#7'Caption'#6#12'ToolButton10'#5'Style'#7#12'tbsSeparator'#0#0#11 + +'TToolButton'#12'ToolButton11'#4'Left'#3'U'#1#4'Hint'#6#6'Delete'#3'Top'#2#0 + +#7'Caption'#6#7'&Delete'#7'Enabled'#8#10'ImageIndex'#2#9#7'OnClick'#7#17'Edi' + +'tDeleteExecute'#14'ParentShowHint'#8#8'ShowHint'#9#0#0#11'TToolButton'#8'To' + +'olUndo'#4'Left'#3#153#0#4'Hint'#6#4'Undo'#3'Top'#2#0#7'Caption'#6#5'&Undo'#7 + +'Enabled'#8#10'ImageIndex'#2#4#14'ParentShowHint'#8#8'ShowHint'#9#0#0#11'TTo' + +'olButton'#11'ToolButton2'#4'Left'#3#225#0#3'Top'#2#0#5'Width'#2#8#7'Caption' + +#6#11'ToolButton2'#5'Style'#7#12'tbsSeparator'#0#0#11'TToolButton'#8'ToolRed' + +'o'#4'Left'#3#189#0#4'Hint'#6#4'Redo'#3'Top'#2#0#7'Caption'#6#5'&Redo'#7'Ena' + +'bled'#8#10'ImageIndex'#2#5#14'ParentShowHint'#8#8'ShowHint'#9#0#0#6'TPanel' + +#9'PanelZoom'#4'Left'#3#169#1#6'Height'#2' '#3'Top'#2#0#5'Width'#2'M'#10'Bev' + +'elOuter'#7#6'bvNone'#12'ClientHeight'#2' '#11'ClientWidth'#2'M'#8'TabOrder' + +#2#0#0#9'TComboBox'#12'ComboBoxZoom'#4'Left'#2#4#6'Height'#2#27#3'Top'#2#2#5 + +'Width'#2'F'#7'Anchors'#11#6'akLeft'#0#10'ItemHeight'#2#19#9'ItemIndex'#2#2 + +#13'Items.Strings'#1#6#4'25 %'#6#4'50 %'#6#5'100 %'#6#5'200 %'#6#5'400 %'#6#5 + +'800 %'#6#6'1000 %'#0#8'OnChange'#7#18'ComboBoxZoomChange'#13'OnEditingDone' + +#7#23'ComboBoxZoomEditingDone'#14'ParentShowHint'#8#8'TabOrder'#2#0#4'Text'#6 + +#5'100 %'#0#0#0#0#6'TPanel'#12'PanelOptions'#4'Left'#2#0#6'Height'#2'"'#3'To' + +'p'#2'#'#5'Width'#3#137#3#5'Align'#7#5'alTop'#25'BorderSpacing.InnerBorder'#2 + +#4#31'BorderSpacing.CellAlignVertical'#7#9'ccaCenter'#10'BevelOuter'#7#6'bvN' + +'one'#12'ClientHeight'#2'"'#11'ClientWidth'#3#137#3#8'TabOrder'#2#1#0#6'TLab' + +'el'#16'LabelFillOutline'#4'Left'#2'g'#6'Height'#2'"'#3'Top'#2#0#5'Width'#2 + +'H'#5'Align'#7#6'alLeft'#7'Caption'#6#14'Fill, Outline:'#21'Constraints.MinH' + +'eight'#2' '#6'Layout'#7#8'tlCenter'#11'ParentColor'#8#0#0#6'TLabel'#10'Labe' + +'lShape'#4'Left'#2#0#6'Height'#2'"'#3'Top'#2#0#5'Width'#2'*'#5'Align'#7#6'al' + +'Left'#7'Caption'#6#6'Shape:'#21'Constraints.MinHeight'#2' '#6'Layout'#7#8't' + +'lCenter'#11'ParentColor'#8#0#0#6'TLabel'#13'LabelMaskTool'#4'Left'#3#2#1#6 + +'Height'#2'"'#3'Top'#2#0#5'Width'#2'C'#5'Align'#7#6'alLeft'#7'Caption'#6#10 + +'Mask Tool:'#21'Constraints.MinHeight'#2' '#6'Layout'#7#8'tlCenter'#11'Paren' + +'tColor'#8#0#0#6'TPanel'#11'PanelColors'#4'Left'#3#181#2#6'Height'#2'"'#3'To' + +'p'#2#0#5'Width'#3#212#0#5'Align'#7#7'alRight'#8'AutoSize'#9#25'BorderSpacin' + +'g.InnerBorder'#2#4'!BorderSpacing.CellAlignHorizontal'#7#10'ccaLeftTop'#31 + +'BorderSpacing.CellAlignVertical'#7#9'ccaCenter'#10'BevelOuter'#7#6'bvNone' + +#12'ClientHeight'#2'"'#11'ClientWidth'#3#212#0#8'TabOrder'#2#0#0#6'TLabel'#12 + +'LabelOutline'#4'Left'#2#8#6'Height'#2'"'#3'Top'#2#0#5'Width'#2'1'#5'Align'#7 + +#7'alRight'#7'Caption'#6#8'Outline:'#6'Layout'#7#8'tlCenter'#11'ParentColor' + +#8#0#0#6'TLabel'#9'LabelFill'#4'Left'#2'Y'#6'Height'#2'"'#3'Top'#2#0#5'Width' + +#2#20#5'Align'#7#7'alRight'#7'Caption'#6#5'Fill:'#6'Layout'#7#8'tlCenter'#11 + +'ParentColor'#8#0#0#6'TLabel'#10'LabelPaper'#4'Left'#3#141#0#6'Height'#2'"'#3 + +'Top'#2#0#5'Width'#2''''#5'Align'#7#7'alRight'#7'Caption'#6#6'Paper:'#6'Layo' + +'ut'#7#8'tlCenter'#11'ParentColor'#8#0#0#6'TPanel'#12'PanelOutline'#4'Left'#2 + +'?'#6'Height'#2#22#3'Top'#2#6#5'Width'#2#20#5'Align'#7#7'alRight'#20'BorderS' + +'pacing.Around'#2#6#10'BevelInner'#7#9'bvLowered'#5'Color'#7#7'clWhite'#11'P' + +'arentColor'#8#8'TabOrder'#2#0#10'OnDblClick'#7#20'PanelOutlineDblClick'#0#0 + +#6'TPanel'#9'PanelFill'#4'Left'#2's'#6'Height'#2#22#3'Top'#2#6#5'Width'#2#20 + +#5'Align'#7#7'alRight'#20'BorderSpacing.Around'#2#6#10'BevelInner'#7#9'bvLow' + +'ered'#5'Color'#7#7'clWhite'#11'ParentColor'#8#8'TabOrder'#2#1#10'OnDblClick' + ,#7#17'PanelFillDblClick'#0#0#6'TPanel'#10'PanelPaper'#4'Left'#3#186#0#6'Heig' + +'ht'#2#22#3'Top'#2#6#5'Width'#2#20#5'Align'#7#7'alRight'#20'BorderSpacing.Ar' + +'ound'#2#6#10'BevelInner'#7#9'bvLowered'#5'Color'#7#7'clWhite'#11'ParentColo' + +'r'#8#8'TabOrder'#2#2#10'OnDblClick'#7#18'PanelPaperDblClick'#0#0#0#6'TPanel' + +#16'PanelFillOutline'#4'Left'#3#175#0#6'Height'#2'"'#3'Top'#2#0#5'Width'#2'S' + +#5'Align'#7#6'alLeft'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2'"'#11'Cl' + +'ientWidth'#2'S'#8'TabOrder'#2#1#0#12'TSpeedButton'#15'ToolFillOutline'#4'Le' + +'ft'#2#4#6'Height'#2#24#3'Top'#2#5#5'Width'#2#25#7'Anchors'#11#6'akLeft'#0#4 + +'Down'#9#10'Glyph.Data'#10#234#4#0#0#230#4#0#0'BM'#230#4#0#0#0#0#0#0'6'#0#0#0 + +'('#0#0#0#20#0#0#0#20#0#0#0#1#0#24#0#0#0#0#0#176#4#0#0'd'#0#0#0'd'#0#0#0#0#0 +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128 + +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 + +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 + +#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128 + +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 + +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0 +#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 +#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0 @@ -172,30 +187,28 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0 +#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 - +#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128 - +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 - +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 - +#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128 - +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 - +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 - +#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#10'GroupIndex'#2#1#9'NumGly' - +'phs'#2#0#7'OnClick'#7#20'ToolFillOutlineClick'#0#0#12'TSpeedButton'#11'Tool' - +'Outline'#4'Left'#2#29#6'Height'#2#24#3'Top'#2#5#5'Width'#2#25#7'Anchors'#11 - +#6'akLeft'#0#10'Glyph.Data'#10'z'#6#0#0'v'#6#0#0'BMv'#6#0#0#0#0#0#0'6'#0#0#0 - +'('#0#0#0#20#0#0#0#20#0#0#0#1#0' '#0#0#0#0#0'@'#6#0#0'd'#0#0#0'd'#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#10 + +'GroupIndex'#2#1#9'NumGlyphs'#2#0#7'OnClick'#7#20'ToolFillOutlineClick'#0#0 + +#12'TSpeedButton'#11'ToolOutline'#4'Left'#2#29#6'Height'#2#24#3'Top'#2#5#5'W' + ,'idth'#2#25#7'Anchors'#11#6'akLeft'#0#10'Glyph.Data'#10'z'#6#0#0'v'#6#0#0'BM' + +'v'#6#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0' '#0#0#0#0#0'@'#6#0 + +#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255 + +#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 - +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255 - +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - ,#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 - +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0 - +#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 + +#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 + +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 + +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 + +#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0 + +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 + +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 + +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0 + +#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 +#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255 @@ -244,35 +257,22 @@ 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#0#0#0#255#0#0#0#255#0#0 - +#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 - +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - +#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 - +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 + ,#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255 + +#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 - +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#10'GroupIndex'#2#1 - +#9'NumGlyphs'#2#0#7'OnClick'#7#16'ToolOutlineClick'#0#0#12'TSpeedButton'#8'T' - +'oolFill'#4'Left'#2'6'#6'Height'#2#24#3'Top'#2#5#5'Width'#2#25#7'Anchors'#11 - +#6'akLeft'#0#10'Glyph.Data'#10#234#4#0#0#230#4#0#0'BM'#230#4#0#0#0#0#0#0'6'#0 - +#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0#24#0#0#0#0#0#176#4#0#0'd'#0#0#0'd'#0#0#0 - ,#0#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 + +#0#0#255#0#0#0#255#10'GroupIndex'#2#1#9'NumGlyphs'#2#0#7'OnClick'#7#16'ToolO' + +'utlineClick'#0#0#12'TSpeedButton'#8'ToolFill'#4'Left'#2'6'#6'Height'#2#24#3 + +'Top'#2#5#5'Width'#2#25#7'Anchors'#11#6'akLeft'#0#10'Glyph.Data'#10#234#4#0#0 + +#230#4#0#0'BM'#230#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0#24#0 + +#0#0#0#0#176#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#255#255#255#255#255#255 + +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 - +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#128#128#128 - +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 - +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 - +#128#128#128#128#128#128#128#255#255#255#255#255#255#255#255#255#255#255#255 - +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 - +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 - +#128#128#128#128#128#128#128#128#128#128#255#255#255#255#255#255#255#255#255 - +#255#255#255#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 - +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 - +#128#128#128#128#128#128#128#128#128#128#128#128#128#255#255#255#255#255#255 +#255#255#255#255#255#255#128#128#128#128#128#128#128#128#128#128#128#128#128 +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#255#255#255 @@ -314,32 +314,33 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#255#255#255#255#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#255#255#255#255#255 + +#255#255#255#255#255#255#255#128#128#128#128#128#128#128#128#128#128#128#128 + +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 + +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#255#255 + +#255#255#255#255#255#255#255#255#255#255#128#128#128#128#128#128#128#128#128 + +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 + +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 + +#128#255#255#255#255#255#255#255#255#255#255#255#255#128#128#128#128#128#128 + ,#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 + +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 + +#128#128#128#128#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 - +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 - +#255#255#255#255#255#255#255#10'GroupIndex'#2#1#9'NumGlyphs'#2#0#7'OnClick'#7 - ,#13'ToolFillClick'#0#0#0#6'TPanel'#10'PanelShape'#4'Left'#2'*'#6'Height'#2'"' - +#3'Top'#2#0#5'Width'#2'='#5'Align'#7#6'alLeft'#10'BevelOuter'#7#6'bvNone'#12 - +'ClientHeight'#2'"'#11'ClientWidth'#2'='#8'TabOrder'#2#2#0#12'TSpeedButton' - +#13'ToolRectShape'#4'Left'#2#7#6'Height'#2#24#3'Top'#2#5#5'Width'#2#25#7'Anc' - +'hors'#11#6'akLeft'#0#4'Down'#9#10'Glyph.Data'#10#234#4#0#0#230#4#0#0'BM'#230 - +#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0#24#0#0#0#0#0#176#4#0#0 - +'d'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#10'GroupInd' + +'ex'#2#1#9'NumGlyphs'#2#0#7'OnClick'#7#13'ToolFillClick'#0#0#0#6'TPanel'#10 + +'PanelShape'#4'Left'#2'*'#6'Height'#2'"'#3'Top'#2#0#5'Width'#2'='#5'Align'#7 + +#6'alLeft'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2'"'#11'ClientWidth'#2 + +'='#8'TabOrder'#2#2#0#12'TSpeedButton'#13'ToolRectShape'#4'Left'#2#7#6'Heigh' + +'t'#2#24#3'Top'#2#5#5'Width'#2#25#7'Anchors'#11#6'akLeft'#0#4'Down'#9#10'Gly' + +'ph.Data'#10#234#4#0#0#230#4#0#0'BM'#230#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0 + +#0#0#20#0#0#0#1#0#24#0#0#0#0#0#176#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0 +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128 - +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 - +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 - +#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128 - +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 - +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 - +#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128 - +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 - +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 - +#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128 +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0 +#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 @@ -376,94 +377,108 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128 +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0 + +#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128 + +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 + +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0 + +#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 + +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 + +#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128 + +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 + +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 + ,#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#10'GroupIndex'#2#1#9'NumGlyphs'#2#0#7'OnClick'#7#18'Too' - +'lRectShapeClick'#0#0#12'TSpeedButton'#15'ToolCircleShape'#4'Left'#2#31#6'He' - +'ight'#2#24#3'Top'#2#5#5'Width'#2#25#7'Anchors'#11#6'akLeft'#0#10'Glyph.Data' - +#10'z'#6#0#0'v'#6#0#0'BMv'#6#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0 - +#1#0' '#0#0#0#0#0'@'#6#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0 - +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#216#216#216#0#132 - ,#132#132#0'CCC'#255'((('#255' '#255' '#255'((('#255'CCC'#255#132#132#132 - +#0#216#216#216#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 - +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#133#133 - +#133#0#25#25#25#255#1#1#1#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 - +#255#0#0#0#255#1#1#1#255#25#25#25#255#133#133#133#0#255#255#255#0#255#255#255 - +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#251#251#251#0'PPP' - +#255#1#1#1#255#3#3#3#255'+++'#255'WWW'#255'jjj'#255'ooo'#255'ooo'#255'jjj' - +#255'WWW'#255'+++'#255#3#3#3#255#1#1#1#255'PPP'#255#251#251#251#0#255#255#255 - +#0#255#255#255#0#255#255#255#0#251#251#251#0'PPP'#255#0#0#0#255#9#9#9#255'[[' - +'['#255'}}}'#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127 - +#255#127#127#127#255#127#127#127#255'}}}'#255'[[['#255#9#9#9#255#0#0#0#255'P' - +'PP'#255#251#251#251#0#255#255#255#0#255#255#255#0#133#133#133#0#1#1#1#255#9 - +#9#9#255'hhh'#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127 - +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127 - +#127#255#127#127#127#255'hhh'#255#9#9#9#255#1#1#1#255#133#133#133#0#255#255 - +#255#0#216#216#216#0#25#25#25#255#3#3#3#255'[[['#255#127#127#127#255#127#127 - +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127 - +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255 - +#127#127#127#255'[[['#255#3#3#3#255#25#25#25#255#216#216#216#0#132#132#132#0 - +#1#1#1#255'+++'#255'}}}'#255#127#127#127#255#127#127#127#255#127#127#127#255 - +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127 - +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255'}}}'#255 - +'+++'#255#1#1#1#255#132#132#132#0'CCC'#255#0#0#0#255'WWW'#255#127#127#127#255 - +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127 - +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127 - +#127#255#127#127#127#255#127#127#127#255#127#127#127#255'WWW'#255#0#0#0#255 - +'CCC'#255'((('#255#0#0#0#255'jjj'#255#127#127#127#255#127#127#127#255#127#127 - +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127 - +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255 - +#127#127#127#255#127#127#127#255'jjj'#255#0#0#0#255'((('#255' '#255#0#0#0 - +#255'ooo'#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255 - +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127 - +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127 - +#127#255'ooo'#255#0#0#0#255' '#255' '#255#0#0#0#255'ooo'#255#127#127#127 - +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127 - +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127 - +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255'ooo'#255#0#0#0 - +#255' '#255'((('#255#0#0#0#255'jjj'#255#127#127#127#255#127#127#127#255#127 - +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255 - +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127 - +#255#127#127#127#255#127#127#127#255'jjj'#255#0#0#0#255'((('#255'CCC'#255#0#0 - +#0#255'WWW'#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127 - +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127 - +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127 - +#127#127#255'WWW'#255#0#0#0#255'CCC'#255#132#132#132#0#1#1#1#255'+++'#255'}}' - +'}'#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127 - +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255 - +#127#127#127#255#127#127#127#255#127#127#127#255'}}}'#255'+++'#255#1#1#1#255 - +#132#132#132#0#216#216#216#0#25#25#25#255#3#3#3#255'[[['#255#127#127#127#255 - +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127 - +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127 - +#127#255#127#127#127#255'[[['#255#3#3#3#255#25#25#25#255#216#216#216#0#255 - +#255#255#0#133#133#133#0#1#1#1#255#9#9#9#255'hhh'#255#127#127#127#255#127#127 - +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127 - +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255'hhh'#255#9#9#9 - +#255#1#1#1#255#133#133#133#0#255#255#255#0#255#255#255#0#251#251#251#0'PPP' - +#255#0#0#0#255#9#9#9#255'[[['#255'}}}'#255#127#127#127#255#127#127#127#255 - +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255'}}}'#255'[[' - +'['#255#9#9#9#255#0#0#0#255'PPP'#255#251#251#251#0#255#255#255#0#255#255#255 - +#0#255#255#255#0#251#251#251#0'PPP'#255#1#1#1#255#3#3#3#255'+++'#255'WWW'#255 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#10'GroupIndex'#2 + +#1#9'NumGlyphs'#2#0#7'OnClick'#7#18'ToolRectShapeClick'#0#0#12'TSpeedButton' + +#15'ToolCircleShape'#4'Left'#2#31#6'Height'#2#24#3'Top'#2#5#5'Width'#2#25#7 + +'Anchors'#11#6'akLeft'#0#10'Glyph.Data'#10'z'#6#0#0'v'#6#0#0'BMv'#6#0#0#0#0#0 + +#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0' '#0#0#0#0#0'@'#6#0#0'd'#0#0#0'd' + +#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255 + +#0#255#255#255#0#216#216#216#0#132#132#132#0'CCC'#255'((('#255' '#255' ' + +#255'((('#255'CCC'#255#132#132#132#0#216#216#216#0#255#255#255#0#255#255#255 + +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 + +#255#255#0#255#255#255#0#133#133#133#0#25#25#25#255#1#1#1#255#0#0#0#255#0#0#0 + +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#1#1#1#255#25#25#25#255#133#133 + +#133#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 + +#255#255#255#0#251#251#251#0'PPP'#255#1#1#1#255#3#3#3#255'+++'#255'WWW'#255 +'jjj'#255'ooo'#255'ooo'#255'jjj'#255'WWW'#255'+++'#255#3#3#3#255#1#1#1#255'P' - +'PP'#255#251#251#251#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255 - +#0#255#255#255#0#255#255#255#0#133#133#133#0#25#25#25#255#1#1#1#255#0#0#0#255 - +#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#1#1#1#255#25#25#25#255#133 - ,#133#133#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#216#216#216#0 - +#132#132#132#0'CCC'#255'((('#255' '#255' '#255'((('#255'CCC'#255#132#132 - +#132#0#216#216#216#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - +#255#255#255#0#10'GroupIndex'#2#1#9'NumGlyphs'#2#0#7'OnClick'#7#20'ToolCircl' - +'eShapeClick'#0#0#0#6'TPanel'#13'PanelMaskTool'#4'Left'#3'E'#1#6'Height'#2'"' - +#3'Top'#2#0#5'Width'#2'V'#5'Align'#7#6'alLeft'#10'BevelOuter'#7#6'bvNone'#12 - +'ClientHeight'#2'"'#11'ClientWidth'#2'V'#8'TabOrder'#2#3#0#12'TSpeedButton' - +#17'ToolMaskRectangle'#4'Left'#2#7#6'Height'#2#24#3'Top'#2#5#5'Width'#2#25#7 - +'Anchors'#11#6'akLeft'#0#4'Down'#9#10'Glyph.Data'#10#234#4#0#0#230#4#0#0'BM' - +#230#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0#24#0#0#0#0#0#176#4 - +#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +'PP'#255#251#251#251#0#255#255#255#0#255#255#255#0#255#255#255#0#251#251#251 + +#0'PPP'#255#0#0#0#255#9#9#9#255'[[['#255'}}}'#255#127#127#127#255#127#127#127 + +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255'}}}'#255 + +'[[['#255#9#9#9#255#0#0#0#255'PPP'#255#251#251#251#0#255#255#255#0#255#255 + +#255#0#133#133#133#0#1#1#1#255#9#9#9#255'hhh'#255#127#127#127#255#127#127#127 + +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127 + +#127#255#127#127#127#255#127#127#127#255#127#127#127#255'hhh'#255#9#9#9#255#1 + +#1#1#255#133#133#133#0#255#255#255#0#216#216#216#0#25#25#25#255#3#3#3#255'[[' + +'['#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127 + +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255 + +#127#127#127#255#127#127#127#255#127#127#127#255'[[['#255#3#3#3#255#25#25#25 + +#255#216#216#216#0#132#132#132#0#1#1#1#255'+++'#255'}}}'#255#127#127#127#255 + +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127 + +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127 + +#127#255#127#127#127#255'}}}'#255'+++'#255#1#1#1#255#132#132#132#0'CCC'#255#0 + +#0#0#255'WWW'#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127 + +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127 + +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127 + +#127#127#255'WWW'#255#0#0#0#255'CCC'#255'((('#255#0#0#0#255'jjj'#255#127#127 + +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127 + +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255 + +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255'jjj'#255#0#0 + +#0#255'((('#255' '#255#0#0#0#255'ooo'#255#127#127#127#255#127#127#127#255 + +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127 + +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127 + +#127#255#127#127#127#255#127#127#127#255'ooo'#255#0#0#0#255' '#255' '#255 + +#0#0#0#255'ooo'#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127 + +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127 + +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255 + +#127#127#127#255'ooo'#255#0#0#0#255' '#255'((('#255#0#0#0#255'jjj'#255#127 + +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255 + +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127 + +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255'jjj'#255 + +#0#0#0#255'((('#255'CCC'#255#0#0#0#255'WWW'#255#127#127#127#255#127#127#127 + +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127 + +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127 + +#127#127#255#127#127#127#255#127#127#127#255'WWW'#255#0#0#0#255'CCC'#255#132 + +#132#132#0#1#1#1#255'+++'#255'}}}'#255#127#127#127#255#127#127#127#255#127 + +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255 + +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127 + +#255'}}}'#255'+++'#255#1#1#1#255#132#132#132#0#216#216#216#0#25#25#25#255#3#3 + +#3#255'[[['#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127 + +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127 + +#127#255#127#127#127#255#127#127#127#255#127#127#127#255'[[['#255#3#3#3#255 + +#25#25#25#255#216#216#216#0#255#255#255#0#133#133#133#0#1#1#1#255#9#9#9#255 + +'hhh'#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127 + +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255 + ,#127#127#127#255'hhh'#255#9#9#9#255#1#1#1#255#133#133#133#0#255#255#255#0#255 + +#255#255#0#251#251#251#0'PPP'#255#0#0#0#255#9#9#9#255'[[['#255'}}}'#255#127 + +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255 + +#127#127#127#255'}}}'#255'[[['#255#9#9#9#255#0#0#0#255'PPP'#255#251#251#251#0 + +#255#255#255#0#255#255#255#0#255#255#255#0#251#251#251#0'PPP'#255#1#1#1#255#3 + +#3#3#255'+++'#255'WWW'#255'jjj'#255'ooo'#255'ooo'#255'jjj'#255'WWW'#255'+++' + +#255#3#3#3#255#1#1#1#255'PPP'#255#251#251#251#0#255#255#255#0#255#255#255#0 + +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#133#133#133#0#25#25 + +#25#255#1#1#1#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255 + +#1#1#1#255#25#25#25#255#133#133#133#0#255#255#255#0#255#255#255#0#255#255#255 + +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 + +#255#255#0#216#216#216#0#132#132#132#0'CCC'#255'((('#255' '#255' '#255'(' + +'(('#255'CCC'#255#132#132#132#0#216#216#216#0#255#255#255#0#255#255#255#0#255 + +#255#255#0#255#255#255#0#255#255#255#0#10'GroupIndex'#2#1#9'NumGlyphs'#2#0#7 + +'OnClick'#7#20'ToolCircleShapeClick'#0#0#0#6'TPanel'#13'PanelMaskTool'#4'Lef' + +'t'#3'E'#1#6'Height'#2'"'#3'Top'#2#0#5'Width'#2'V'#5'Align'#7#6'alLeft'#10'B' + +'evelOuter'#7#6'bvNone'#12'ClientHeight'#2'"'#11'ClientWidth'#2'V'#8'TabOrde' + +'r'#2#3#0#12'TSpeedButton'#17'ToolMaskRectangle'#4'Left'#2#7#6'Height'#2#24#3 + +'Top'#2#5#5'Width'#2#25#7'Anchors'#11#6'akLeft'#0#4'Down'#9#10'Glyph.Data'#10 + +#234#4#0#0#230#4#0#0'BM'#230#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0 + +#0#1#0#24#0#0#0#0#0#176#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 + +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 + +#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0 + +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 + +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 + +#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128 +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 +#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128 @@ -498,332 +513,327 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 +#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128 - +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 + ,#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 +#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128 +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 - +#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128 - +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 - +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 - +#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128 - +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 - +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128 + +#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#10'GroupIndex'#2#1#9'NumGlyphs'#2#0#7'OnClick'#7#22 - ,'ToolMaskRectangleClick'#0#0#12'TSpeedButton'#15'ToolMaskEllipse'#4'Left'#2 - +#31#6'Height'#2#24#3'Top'#2#5#5'Width'#2#25#7'Anchors'#11#6'akLeft'#0#10'Gly' - +'ph.Data'#10'z'#6#0#0'v'#6#0#0'BMv'#6#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0 - +#20#0#0#0#1#0' '#0#0#0#0#0'@'#6#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#255#255 - +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#216#216#216#0 - +#132#132#132#0'CCC'#255'((('#255' '#255' '#255'((('#255'CCC'#255#132#132 - +#132#0#216#216#216#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#133 - +#133#133#0#25#25#25#255#1#1#1#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0 - +#0#255#0#0#0#255#1#1#1#255#25#25#25#255#133#133#133#0#255#255#255#0#255#255 - +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#251#251#251#0 - +'PPP'#255#1#1#1#255#3#3#3#255'+++'#255'WWW'#255'jjj'#255'ooo'#255'ooo'#255'j' - +'jj'#255'WWW'#255'+++'#255#3#3#3#255#1#1#1#255'PPP'#255#251#251#251#0#255#255 - +#255#0#255#255#255#0#255#255#255#0#251#251#251#0'PPP'#255#0#0#0#255#9#9#9#255 - +'[[['#255'}}}'#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127 - +#127#255#127#127#127#255#127#127#127#255'}}}'#255'[[['#255#9#9#9#255#0#0#0 - +#255'PPP'#255#251#251#251#0#255#255#255#0#255#255#255#0#133#133#133#0#1#1#1 - +#255#9#9#9#255'hhh'#255#127#127#127#255#127#127#127#255#127#127#127#255#127 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#10'GroupIndex'#2#1#9'NumGly' + +'phs'#2#0#7'OnClick'#7#22'ToolMaskRectangleClick'#0#0#12'TSpeedButton'#15'To' + +'olMaskEllipse'#4'Left'#2#31#6'Height'#2#24#3'Top'#2#5#5'Width'#2#25#7'Ancho' + +'rs'#11#6'akLeft'#0#10'Glyph.Data'#10'z'#6#0#0'v'#6#0#0'BMv'#6#0#0#0#0#0#0'6' + +#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0' '#0#0#0#0#0'@'#6#0#0'd'#0#0#0'd'#0#0#0 + +#0#0#0#0#0#0#0#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 + +#255#255#0#216#216#216#0#132#132#132#0'CCC'#255'((('#255' '#255' '#255'(' + +'(('#255'CCC'#255#132#132#132#0#216#216#216#0#255#255#255#0#255#255#255#0#255 + +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 + +#255#0#255#255#255#0#133#133#133#0#25#25#25#255#1#1#1#255#0#0#0#255#0#0#0#255 + +#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#1#1#1#255#25#25#25#255#133#133#133#0 + +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 + +#255#255#0#251#251#251#0'PPP'#255#1#1#1#255#3#3#3#255'+++'#255'WWW'#255'jjj' + +#255'ooo'#255'ooo'#255'jjj'#255'WWW'#255'+++'#255#3#3#3#255#1#1#1#255'PPP' + +#255#251#251#251#0#255#255#255#0#255#255#255#0#255#255#255#0#251#251#251#0'P' + +'PP'#255#0#0#0#255#9#9#9#255'[[['#255'}}}'#255#127#127#127#255#127#127#127 + +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255'}}}'#255 + +'[[['#255#9#9#9#255#0#0#0#255'PPP'#255#251#251#251#0#255#255#255#0#255#255 + +#255#0#133#133#133#0#1#1#1#255#9#9#9#255'hhh'#255#127#127#127#255#127#127#127 + +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127 + +#127#255#127#127#127#255#127#127#127#255#127#127#127#255'hhh'#255#9#9#9#255#1 + +#1#1#255#133#133#133#0#255#255#255#0#216#216#216#0#25#25#25#255#3#3#3#255'[[' + +'['#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127 +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255 - +#127#127#127#255#127#127#127#255'hhh'#255#9#9#9#255#1#1#1#255#133#133#133#0 - +#255#255#255#0#216#216#216#0#25#25#25#255#3#3#3#255'[[['#255#127#127#127#255 + +#127#127#127#255#127#127#127#255#127#127#127#255'[[['#255#3#3#3#255#25#25#25 + +#255#216#216#216#0#132#132#132#0#1#1#1#255'+++'#255'}}}'#255#127#127#127#255 +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127 +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127 - +#127#255#127#127#127#255'[[['#255#3#3#3#255#25#25#25#255#216#216#216#0#132 + +#127#255#127#127#127#255'}}}'#255'+++'#255#1#1#1#255#132#132#132#0'CCC'#255#0 + +#0#0#255'WWW'#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127 + +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127 + +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127 + +#127#127#255'WWW'#255#0#0#0#255'CCC'#255'((('#255#0#0#0#255'jjj'#255#127#127 + +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127 + +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255 + +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255'jjj'#255#0#0 + +#0#255'((('#255' '#255#0#0#0#255'ooo'#255#127#127#127#255#127#127#127#255 + +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127 + +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127 + +#127#255#127#127#127#255#127#127#127#255'ooo'#255#0#0#0#255' '#255' '#255 + +#0#0#0#255'ooo'#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127 + +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127 + +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255 + +#127#127#127#255'ooo'#255#0#0#0#255' '#255'((('#255#0#0#0#255'jjj'#255#127 + +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255 + +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127 + +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255'jjj'#255 + +#0#0#0#255'((('#255'CCC'#255#0#0#0#255'WWW'#255#127#127#127#255#127#127#127 + +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127 + +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127 + +#127#127#255#127#127#127#255#127#127#127#255'WWW'#255#0#0#0#255'CCC'#255#132 +#132#132#0#1#1#1#255'+++'#255'}}}'#255#127#127#127#255#127#127#127#255#127 +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255 +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127 - +#255'}}}'#255'+++'#255#1#1#1#255#132#132#132#0'CCC'#255#0#0#0#255'WWW'#255 - +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127 - +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127 - +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255'WWW' - +#255#0#0#0#255'CCC'#255'((('#255#0#0#0#255'jjj'#255#127#127#127#255#127#127 - +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127 + +#255'}}}'#255'+++'#255#1#1#1#255#132#132#132#0#216#216#216#0#25#25#25#255#3#3 + +#3#255'[[['#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127 + ,#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127 + +#127#255#127#127#127#255#127#127#127#255#127#127#127#255'[[['#255#3#3#3#255 + +#25#25#25#255#216#216#216#0#255#255#255#0#133#133#133#0#1#1#1#255#9#9#9#255 + +'hhh'#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127 +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255 - +#127#127#127#255#127#127#127#255#127#127#127#255'jjj'#255#0#0#0#255'((('#255 - +' '#255#0#0#0#255'ooo'#255#127#127#127#255#127#127#127#255#127#127#127#255 - +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127 - +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127 - +#127#255#127#127#127#255'ooo'#255#0#0#0#255' '#255' '#255#0#0#0#255'ooo' - +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127 - +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127 + +#127#127#127#255'hhh'#255#9#9#9#255#1#1#1#255#133#133#133#0#255#255#255#0#255 + +#255#255#0#251#251#251#0'PPP'#255#0#0#0#255#9#9#9#255'[[['#255'}}}'#255#127 +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255 - +'ooo'#255#0#0#0#255' '#255'((('#255#0#0#0#255'jjj'#255#127#127#127#255#127 - +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255 - +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127 - +#255#127#127#127#255#127#127#127#255#127#127#127#255'jjj'#255#0#0#0#255'(((' - +#255'CCC'#255#0#0#0#255'WWW'#255#127#127#127#255#127#127#127#255#127#127#127 - +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127 - +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127 - +#127#127#255#127#127#127#255'WWW'#255#0#0#0#255'CCC'#255#132#132#132#0#1#1#1 - +#255'+++'#255'}}}'#255#127#127#127#255#127#127#127#255#127#127#127#255#127 - +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255 - +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255'}}}'#255'++' - +'+'#255#1#1#1#255#132#132#132#0#216#216#216#0#25#25#25#255#3#3#3#255'[[['#255 - +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127 - +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127 - +#127#255#127#127#127#255#127#127#127#255'[[['#255#3#3#3#255#25#25#25#255#216 - +#216#216#0#255#255#255#0#133#133#133#0#1#1#1#255#9#9#9#255'hhh'#255#127#127 - +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127 - +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255 - +'hhh'#255#9#9#9#255#1#1#1#255#133#133#133#0#255#255#255#0#255#255#255#0#251 - +#251#251#0'PPP'#255#0#0#0#255#9#9#9#255'[[['#255'}}}'#255#127#127#127#255#127 - +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255 - +'}}}'#255'[[['#255#9#9#9#255#0#0#0#255'PPP'#255#251#251#251#0#255#255#255#0 - ,#255#255#255#0#255#255#255#0#251#251#251#0'PPP'#255#1#1#1#255#3#3#3#255'+++' - +#255'WWW'#255'jjj'#255'ooo'#255'ooo'#255'jjj'#255'WWW'#255'+++'#255#3#3#3#255 - +#1#1#1#255'PPP'#255#251#251#251#0#255#255#255#0#255#255#255#0#255#255#255#0 - +#255#255#255#0#255#255#255#0#255#255#255#0#133#133#133#0#25#25#25#255#1#1#1 - +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#1#1#1#255#25 - +#25#25#255#133#133#133#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 + +#127#127#127#255'}}}'#255'[[['#255#9#9#9#255#0#0#0#255'PPP'#255#251#251#251#0 + +#255#255#255#0#255#255#255#0#255#255#255#0#251#251#251#0'PPP'#255#1#1#1#255#3 + +#3#3#255'+++'#255'WWW'#255'jjj'#255'ooo'#255'ooo'#255'jjj'#255'WWW'#255'+++' + +#255#3#3#3#255#1#1#1#255'PPP'#255#251#251#251#0#255#255#255#0#255#255#255#0 + +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#133#133#133#0#25#25 + +#25#255#1#1#1#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255 + +#1#1#1#255#25#25#25#255#133#133#133#0#255#255#255#0#255#255#255#0#255#255#255 + +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 + +#255#255#0#216#216#216#0#132#132#132#0'CCC'#255'((('#255' '#255' '#255'(' + +'(('#255'CCC'#255#132#132#132#0#216#216#216#0#255#255#255#0#255#255#255#0#255 + +#255#255#0#255#255#255#0#255#255#255#0#10'GroupIndex'#2#1#9'NumGlyphs'#2#0#7 + +'OnClick'#7#20'ToolMaskEllipseClick'#0#0#12'TSpeedButton'#17'ToolMaskFloodFi' + +'ll'#4'Left'#2'8'#6'Height'#2#24#3'Top'#2#5#5'Width'#2#25#7'Anchors'#11#6'ak' + +'Left'#0#10'Glyph.Data'#10'z'#6#0#0'v'#6#0#0'BMv'#6#0#0#0#0#0#0'6'#0#0#0'('#0 + +#0#0#20#0#0#0#20#0#0#0#1#0' '#0#0#0#0#0'@'#6#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0 + +#0#0#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 + +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 + +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 + +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 + +#255#255#255#0#0#0#0#3#16#10#10#142#15#11#11#217#13#10#10#193#0#0#0#25#0#0#0 + +'8'#17#11#11#160#15#11#11#201#15#9#9'd'#255#255#255#0#255#255#255#0#255#255 + +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 + +#255#255#255#0#255#255#255#0#255#255#255#0#15#10#10#161#140#138#138#249#203 + +#204#204#255'zyy'#254#28#25#25#231'933'#240#127#127#127#255#193#194#194#255 + +#26#23#23#232#0#0#0'"'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255 + +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#14#9 + +#9'sSQQ'#241#233#233#233#255#189#189#189#255#135#135#135#255#135#135#135#255 + +#193#193#193#255#222#222#222#255'f__'#243#12#9#9#212#0#0#0#15#255#255#255#0 + +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 + +#255#255#0#255#255#255#0#0#0#0#31'&$$'#233#230#230#230#255#186#187#187#255'~' + +'~~'#255#129#129#129#255#166#166#166#255#229#229#229#255#134#134#134#255#10 + +#10#10#220#0#0#0'/'#0#0#0#10#255#255#255#0#255#255#255#0#255#255#255#0#255 + +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#15#11#11 + +#170#210#210#210#255#175#175#175#255'}}}'#255#130#130#130#255'}}}'#255#225 + +#225#225#255#194#194#194#255#140#140#140#255#21#21#21#253'222'#236#14#14#14 + +#239#9#9#9#237#13#13#13#211#11#11#11#163#0#0#0'/'#255#255#255#0#255#255#255#0 + +#255#255#255#0#255#255#255#0#17#15#15#211#224#224#224#255'ttt'#255#155#155 + +#155#255#130#130#130#255#162#162#162#255#234#234#234#255#162#162#162#255#135 + +#135#135#255']]]'#255'yyy'#255#230#230#230#255#222#222#222#255#197#197#197 + +#255#136#136#136#254#19#19#19#237#10#10#10#193#0#0#0'5'#255#255#255#0#255#255 + +#255#0#21#18#18#215#205#205#205#255#135#135#135#255#225#225#225#255'{{{'#255 + +#127#127#127#255#152#152#152#255#131#131#131#255#142#142#142#255#134#134#134 + +#255#30#30#30#255#144#144#144#255#133#133#133#255#153#153#153#255#210#210#210 + +#255#207#207#207#255#141#141#141#255#20#20#20#237#9#9#9#155#0#0#0#1#16#12#12 + +#175#133#134#134#255#131#131#131#255#211#211#211#255#231#231#231#255#144#144 + +#144#255#135#135#135#255'zzz'#255'iii'#255')))'#255#128#128#128#255#191#191 + +#191#255#172#172#172#255#166#166#166#255'zzz'#255'rrr'#255#186#186#186#255 + +#185#185#185#255'888'#241#10#10#10#151#4#2#2'NIFF'#242#135#135#135#255'{{{' + +#255#136#136#136#255#130#130#130#255#135#135#135#255'ccc'#255':::'#255'QQQ' + +#255#201#201#201#255#177#177#177#255#173#173#173#255#169#169#169#255#171#171 + +#171#255'rrr'#255#180#180#180#255#173#173#173#255#176#176#176#255#9#9#9#231#0 + +#0#0#3#16#14#14#224#196#197#197#255#171#171#171#255#130#130#130#255#135#135 + +#135#255#140#140#140#255'eee'#255'888'#255#129#129#129#255#202#202#202#255 + +#178#178#178#255#173#173#173#255#169#169#169#255#170#170#170#255'uuu'#255#178 + +#178#178#255#174#174#174#255'ZZZ'#251#10#10#10#139#255#255#255#0#16#10#10#149 + +#174#174#174#255#234#234#234#255#154#154#154#255#130#130#130#255#135#135#135 + ,#255'xxx'#255'WWW'#255#30#30#30#255#182#182#182#255#141#141#141#255#150#150 + +#150#255#175#175#175#255#132#132#132#255#173#173#173#255#179#179#179#255#187 + +#187#187#255#15#15#15#238#0#0#0'!'#255#255#255#0#0#0#0#25#18#16#16#226#208 + +#208#208#255#223#223#223#255'{{{'#255#178#178#178#255#204#204#204#255#135#135 + +#135#255'333'#255'XXX'#255#201#201#201#255#210#210#210#255#141#141#141#255'_' + +'__'#255#189#189#189#255#180#180#180#255#148#148#148#255#9#9#9#207#255#255 + +#255#0#255#255#255#0#255#255#255#0#10#3#4'9'#16#13#13#221#206#206#206#255#222 + +#222#222#255#146#146#146#255#209#209#209#255#201#201#201#255#144#144#144#255 + +#18#18#18#255'WWW'#255#129#129#129#255#157#157#157#255#215#215#215#255#195 + +#195#195#255#196#196#196#255'666'#242#2#2#2'['#255#255#255#0#255#255#255#0 + +#255#255#255#0#255#255#255#0#0#0#0#23#13#12#12#231#130#130#130#255#198#198 + +#198#255#134#134#134#255#142#142#142#255#177#177#177#255'BBB'#255#3#3#3#255 + +#14#14#14#255'KKK'#255'qqq'#255#132#132#132#255#203#203#203#255#9#9#9#239#0#0 + +#0#8#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0 + +#0#0#13#7#4#4#137#9#9#9#236#16#16#16#247'-,,'#255'BBB'#255#135#135#135#255 + +#206#206#206#255#216#216#216#255'ppp'#255#19#19#19#255'LLL'#255'FFF'#254#11 + +#11#11#162#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 + +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0'B'#9#10 + +#10#207#25#26#26#236'ddd'#254'ooo'#255#137#137#137#255#145#145#145#255#193 + +#192#192#255'==='#255#9#9#9#251#0#0#0'2'#255#255#255#0#255#255#255#0#255#255 + +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 + +#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0'9'#9#10#10#140#14#15#15#210 + +#10#10#10#239'.00'#237'RRR'#248'???'#250#9#10#10#241#255#255#255#0#255#255 + +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 + +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 + +#255#255#0#255#255#255#0#255#255#255#0#0#0#0#4#0#0#0'5'#0#0#0'U'#0#0#0'N'#0#0 + +#0#10#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 + +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 + +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - +#216#216#216#0#132#132#132#0'CCC'#255'((('#255' '#255' '#255'((('#255'CC' - +'C'#255#132#132#132#0#216#216#216#0#255#255#255#0#255#255#255#0#255#255#255#0 +#255#255#255#0#255#255#255#0#10'GroupIndex'#2#1#9'NumGlyphs'#2#0#7'OnClick'#7 - +#20'ToolMaskEllipseClick'#0#0#12'TSpeedButton'#17'ToolMaskFloodFill'#4'Left' - +#2'8'#6'Height'#2#24#3'Top'#2#5#5'Width'#2#25#7'Anchors'#11#6'akLeft'#0#10'G' - +'lyph.Data'#10'z'#6#0#0'v'#6#0#0'BMv'#6#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0 - +#0#20#0#0#0#1#0' '#0#0#0#0#0'@'#6#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#255 - +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 - +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#0#0#0#3#16#10#10#142#15#11#11#217#13#10#10#193#0#0#0#25#0#0#0'8'#17#11 - +#11#160#15#11#11#201#15#9#9'd'#255#255#255#0#255#255#255#0#255#255#255#0#255 - +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0#255#255#255#0#15#10#10#161#140#138#138#249#203#204#204 - +#255'zyy'#254#28#25#25#231'933'#240#127#127#127#255#193#194#194#255#26#23#23 - +#232#0#0#0'"'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#14#9#9'sSQQ' - +#241#233#233#233#255#189#189#189#255#135#135#135#255#135#135#135#255#193#193 - +#193#255#222#222#222#255'f__'#243#12#9#9#212#0#0#0#15#255#255#255#0#255#255 - +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - +#255#255#255#0#0#0#0#31'&$$'#233#230#230#230#255#186#187#187#255'~~~'#255#129 - +#129#129#255#166#166#166#255#229#229#229#255#134#134#134#255#10#10#10#220#0#0 - +#0'/'#0#0#0#10#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 - +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#15#11#11#170#210#210#210 - +#255#175#175#175#255'}}}'#255#130#130#130#255'}}}'#255#225#225#225#255#194 - +#194#194#255#140#140#140#255#21#21#21#253'222'#236#14#14#14#239#9#9#9#237#13 - +#13#13#211#11#11#11#163#0#0#0'/'#255#255#255#0#255#255#255#0#255#255#255#0 - +#255#255#255#0#17#15#15#211#224#224#224#255'ttt'#255#155#155#155#255#130#130 - +#130#255#162#162#162#255#234#234#234#255#162#162#162#255#135#135#135#255']]]' - +#255'yyy'#255#230#230#230#255#222#222#222#255#197#197#197#255#136#136#136#254 - +#19#19#19#237#10#10#10#193#0#0#0'5'#255#255#255#0#255#255#255#0#21#18#18#215 - +#205#205#205#255#135#135#135#255#225#225#225#255'{{{'#255#127#127#127#255#152 - +#152#152#255#131#131#131#255#142#142#142#255#134#134#134#255#30#30#30#255#144 - +#144#144#255#133#133#133#255#153#153#153#255#210#210#210#255#207#207#207#255 - +#141#141#141#255#20#20#20#237#9#9#9#155#0#0#0#1#16#12#12#175#133#134#134#255 - +#131#131#131#255#211#211#211#255#231#231#231#255#144#144#144#255#135#135#135 - +#255'zzz'#255'iii'#255')))'#255#128#128#128#255#191#191#191#255#172#172#172 - +#255#166#166#166#255'zzz'#255'rrr'#255#186#186#186#255#185#185#185#255'888' - +#241#10#10#10#151#4#2#2'NIFF'#242#135#135#135#255'{{{'#255#136#136#136#255 - +#130#130#130#255#135#135#135#255'ccc'#255':::'#255'QQQ'#255#201#201#201#255 - +#177#177#177#255#173#173#173#255#169#169#169#255#171#171#171#255'rrr'#255#180 - +#180#180#255#173#173#173#255#176#176#176#255#9#9#9#231#0#0#0#3#16#14#14#224 - +#196#197#197#255#171#171#171#255#130#130#130#255#135#135#135#255#140#140#140 - +#255'eee'#255'888'#255#129#129#129#255#202#202#202#255#178#178#178#255#173 - +#173#173#255#169#169#169#255#170#170#170#255'uuu'#255#178#178#178#255#174#174 - +#174#255'ZZZ'#251#10#10#10#139#255#255#255#0#16#10#10#149#174#174#174#255#234 - +#234#234#255#154#154#154#255#130#130#130#255#135#135#135#255'xxx'#255'WWW' - +#255#30#30#30#255#182#182#182#255#141#141#141#255#150#150#150#255#175#175#175 - +#255#132#132#132#255#173#173#173#255#179#179#179#255#187#187#187#255#15#15#15 - +#238#0#0#0'!'#255#255#255#0#0#0#0#25#18#16#16#226#208#208#208#255#223#223#223 - +#255'{{{'#255#178#178#178#255#204#204#204#255#135#135#135#255'333'#255'XXX' - +#255#201#201#201#255#210#210#210#255#141#141#141#255'___'#255#189#189#189#255 - +#180#180#180#255#148#148#148#255#9#9#9#207#255#255#255#0#255#255#255#0#255 - +#255#255#0#10#3#4'9'#16#13#13#221#206#206#206#255#222#222#222#255#146#146#146 - +#255#209#209#209#255#201#201#201#255#144#144#144#255#18#18#18#255'WWW'#255 - +#129#129#129#255#157#157#157#255#215#215#215#255#195#195#195#255#196#196#196 - ,#255'666'#242#2#2#2'['#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255 - +#0#0#0#0#23#13#12#12#231#130#130#130#255#198#198#198#255#134#134#134#255#142 - +#142#142#255#177#177#177#255'BBB'#255#3#3#3#255#14#14#14#255'KKK'#255'qqq' - +#255#132#132#132#255#203#203#203#255#9#9#9#239#0#0#0#8#255#255#255#0#255#255 - +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#13#7#4#4#137#9#9#9#236 - +#16#16#16#247'-,,'#255'BBB'#255#135#135#135#255#206#206#206#255#216#216#216 - +#255'ppp'#255#19#19#19#255'LLL'#255'FFF'#254#11#11#11#162#255#255#255#0#255 - +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0#255#255#255#0#0#0#0'B'#9#10#10#207#25#26#26#236'ddd'#254 - +'ooo'#255#137#137#137#255#145#145#145#255#193#192#192#255'==='#255#9#9#9#251 - +#0#0#0'2'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255 - +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 - +#255#255#0#0#0#0'9'#9#10#10#140#14#15#15#210#10#10#10#239'.00'#237'RRR'#248 - +'???'#250#9#10#10#241#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 - +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#0#0#0#4#0#0#0'5'#0#0#0'U'#0#0#0'N'#0#0#0#10#255#255#255#0#255#255#255 + +#22'ToolMaskFloodFillClick'#0#0#0#0#6'TPanel'#16'PanelToolOptions'#4'Left'#2 + +#0#6'Height'#2'"'#3'Top'#2'G'#5'Width'#3#137#3#5'Align'#7#5'alTop'#10'BevelO' + +'uter'#7#6'bvNone'#12'ClientHeight'#2'"'#11'ClientWidth'#3#137#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#5#5'Width'#2 + +'3'#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#23 + +#3'Top'#2#9#5'Width'#2#24#8'OnChange'#7#16'checkFuzzyChange'#8'TabOrder'#2#0 + +#0#0#0#0#0#6'TPanel'#13'PanelPictures'#4'Left'#2'('#6'Height'#3#5#2#3'Top'#2 + +'i'#5'Width'#3#22#3#5'Align'#7#8'alClient'#10'BevelOuter'#7#9'bvLowered'#8'T' + +'abOrder'#2#3#0#0#9'TMainMenu'#8'MainMenu'#6'Images'#7#16'ImageListActions'#4 + +'left'#2'r'#3'top'#2'~'#0#9'TMenuItem'#12'MenuItemFile'#7'Caption'#6#5'&File' + +#0#9'TMenuItem'#11'MenuItemNew'#7'Caption'#6#7'&New...'#11'Bitmap.Data'#10'z' + +#6#0#0'v'#6#0#0'BMv'#6#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0' ' + +#0#0#0#0#0'@'#6#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#255#255 + +#255#0#0#0#0#31#0#0#0#254#4#4#4#251#6#6#6#249#7#7#7#249#9#9#9#247#15#15#13 + +#246#25#25#20#246#26#26#21#245#26#26#22#244#25#25#22#243#25#25#23#242#25#25 + +#24#242#25#25#25#241#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255 + +#255#255#0#255#255#255#0#0#0#0#31#20#20#20#243#255#255#255#255#255#255#255 + +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#253#255#255#255 + +#247#255#255#255#240#255#255#255#228#255#255#255#228#255#255#255#228#255#255 + +#255#231#255#0#0#0#255#0#0#0#2#255#255#255#0#255#255#255#0#255#255#255#0#255 + +#255#255#0#0#0#0#30#19#19#19#244#255#255#255#255#255#255#255#255#255#255#255 + +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 + +#255#255#255#255#252#255#255#255#236#255#255#255#228#255#255#255#231#255#2#2 + +#2#253#0#0#0#5#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0 + +#29#18#18#18#244#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 + +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 + +#255#255#255#255#254#255#255#255#233#255#255#255#230#255#3#3#3#252#0#0#0#8 + +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#28#17#17#17 + +#244#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 + +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 + +#255#255#255#255#255#250#255#255#255#229#255#4#4#4#251#0#0#0#10#255#255#255#0 + +#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#27#17#17#17#244#255#255#255 + +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 + +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 + +#255#255#255#255#255#234#255#6#6#6#250#0#0#0#13#255#255#255#0#255#255#255#0 + +#255#255#255#0#255#255#255#0#0#0#0#26#17#17#17#244#255#255#255#255#255#255 + +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 + +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 + +#255#255#241#255#8#8#8#248#0#0#0#15#255#255#255#0#255#255#255#0#255#255#255#0 + +#255#255#255#0#0#0#0#26#16#16#16#245#255#255#255#255#255#255#255#255#255#255 + +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 + +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#245#255 + +#11#11#11#248#0#0#0#18#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255 + +#0#0#0#0#25#15#15#15#245#255#255#255#255#255#255#255#255#255#255#255#255#255 + +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 + ,#255#255#255#255#255#255#255#255#255#255#255#255#255#255#248#255#13#13#13#247 + +#0#0#0#20#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#24#14 + +#14#14#245#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 + +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 + +#255#255#255#255#255#255#255#255#255#255#255#250#255#15#15#15#246#0#0#0#23 + +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#23#14#14#14 + +#246#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 + +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 + +#255#255#255#255#255#255#255#255#255#251#255#17#17#16#245#0#0#0#25#255#255 + +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#22#13#13#13#246#255 + +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 + +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 + +#255#255#255#255#255#255#255#252#255#19#19#18#244#0#0#0#28#255#255#255#0#255 + +#255#255#0#255#255#255#0#255#255#255#0#0#0#0#21#12#12#12#246#255#255#255#255 + +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 + +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 + +#255#255#255#255#254#255#22#22#21#243#0#0#0#31#255#255#255#0#255#255#255#0 + +#255#255#255#0#255#255#255#0#0#0#0#21#12#12#12#247#255#255#255#255#255#255 + +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 + +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 + +#255#255#255#255#22#22#22#243#0#0#0'!'#255#255#255#0#255#255#255#0#255#255 + +#255#0#255#255#255#0#0#0#0#20#11#11#11#247#255#255#255#255#255#255#255#255 + +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 + +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 + +#255#255#24#24#24#242#0#0#0'$'#255#255#255#0#255#255#255#0#255#255#255#0#255 + +#255#255#0#0#0#0#19#11#11#11#247#255#255#255#255#255#255#255#255#255#255#255 + +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 + +#255#255'...'#255#14#14#14#255#14#14#14#255#14#14#14#255#17#17#17#250#0#0#0 + +'&'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#18#10#10#10 + +#247#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 + +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#3#3#3#255#209#209 + +#209#255#167#167#167#255#11#11#11#255#8#8#8#221#0#0#0#12#255#255#255#0#255 + +#255#255#0#255#255#255#0#255#255#255#0#0#0#0#17#9#9#9#248#255#255#255#255#255 + +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 + +#255#255#255#255#255#255#255#255#7#7#7#255#163#163#163#255#14#14#14#255#8#8#8 + +#206#0#0#0#9#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 + +#255#0#0#0#0#16#8#8#8#248#240#240#240#255#241#241#241#255#242#242#242#255#243 + +#243#243#255#244#244#244#255#245#245#245#255#246#246#246#255#247#247#247#255 + +#10#10#10#255#9#9#9#254#7#7#7#180#0#0#0#2#255#255#255#0#255#255#255#0#255#255 + +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#12#6#6#6#238#10#10#10 + +#243#9#9#9#244#8#8#8#245#7#7#7#246#7#7#7#247#6#6#6#248#5#5#5#249#4#4#4#250#5 + +#5#5#252#5#5#5#140#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 + +#255#255#255#0#255#255#255#0#4'Hint'#6#3'New'#10'ImageIndex'#2#0#8'ShortCut' + +#3'N@'#7'OnClick'#7#14'FileNewExecute'#0#0#9'TMenuItem'#12'MenuItemOpen'#7'C' + +'aption'#6#8'&Open...'#11'Bitmap.Data'#10'z'#6#0#0'v'#6#0#0'BMv'#6#0#0#0#0#0 + +#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0' '#0#0#0#0#0'@'#6#0#0'd'#0#0#0'd' + +#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255 +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#10'Gr' - +'oupIndex'#2#1#9'NumGlyphs'#2#0#7'OnClick'#7#22'ToolMaskFloodFillClick'#0#0#0 - +#0#6'TPanel'#16'PanelToolOptions'#4'Left'#2#0#6'Height'#2'"'#3'Top'#2'G'#5'W' - +'idth'#3#137#3#5'Align'#7#5'alTop'#10'BevelOuter'#7#6'bvNone'#12'ClientHeigh' - +'t'#2'"'#11'ClientWidth'#3#137#3#8'TabOrder'#2#2#0#6'TLabel'#9'LabelSize'#4 - +'Left'#2#0#6'Height'#2'"'#3'Top'#2#0#5'Width'#2#28#5'Align'#7#6'alLeft'#7'Ca' - +'ption'#6#5'Size:'#21'Constraints.MinHeight'#2' '#6'Layout'#7#8'tlCenter'#11 - +'ParentColor'#8#0#0#6'TLabel'#12'LabelDensity'#4'Left'#3#234#0#6'Height'#2'"' - +#3'Top'#2#0#5'Width'#2'2'#5'Align'#7#6'alLeft'#7'Caption'#6#8'Density:'#21'C' - +'onstraints.MinHeight'#2' '#6'Layout'#7#8'tlCenter'#11'ParentColor'#8#0#0#6 - +'TLabel'#14'LabelRoundness'#4'Left'#2'_'#6'Height'#2'"'#3'Top'#2#0#5'Width'#2 - +'G'#5'Align'#7#6'alLeft'#7'Caption'#6#10'Roundness:'#21'Constraints.MinHeigh' - +'t'#2' '#6'Layout'#7#8'tlCenter'#11'ParentColor'#8#0#0#6'TLabel'#14'LabelTol' - +'erance'#4'Left'#3'a'#1#6'Height'#2'"'#3'Top'#2#0#5'Width'#2'?'#5'Align'#7#6 - +'alLeft'#7'Caption'#6#10'Tolerance:'#21'Constraints.MinHeight'#2' '#6'Layout' - +#7#8'tlCenter'#11'ParentColor'#8#0#0#6'TPanel'#9'PanelSize'#4'Left'#2#28#6'H' - +'eight'#2'"'#3'Top'#2#0#5'Width'#2'C'#5'Align'#7#6'alLeft'#10'BevelOuter'#7#6 - +'bvNone'#12'ClientHeight'#2'"'#11'ClientWidth'#2'C'#8'TabOrder'#2#0#0#5'TEdi' - +'t'#8'EditSize'#4'Left'#2#3#6'Height'#2#27#3'Top'#2#3#5'Width'#2'+'#7'Anchor' - +'s'#11#6'akLeft'#0#8'OnChange'#7#14'EditSizeChange'#8'TabOrder'#2#0#4'Text'#6 - +#2'10'#0#0#7'TUpDown'#10'UpDownSize'#4'Left'#2'.'#6'Height'#2#27#3'Top'#2#3#5 - +'Width'#2#17#9'Associate'#7#8'EditSize'#3'Min'#2#1#3'Max'#3#200#0#8'Position' - +#2#10#8'TabOrder'#2#1#9'Thousands'#8#4'Wrap'#8#0#0#0#6'TPanel'#12'PanelDensi' - +'ty'#4'Left'#3#28#1#6'Height'#2'"'#3'Top'#2#0#5'Width'#2'E'#5'Align'#7#6'alL' - +'eft'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2'"'#11'ClientWidth'#2'E'#8 - +'TabOrder'#2#1#0#5'TEdit'#11'EditDensity'#4'Left'#2#3#6'Height'#2#27#3'Top'#2 - +#3#5'Width'#2'*'#7'Anchors'#11#6'akLeft'#0#8'OnChange'#7#17'EditDensityChang' - +'e'#8'TabOrder'#2#0#4'Text'#6#3'100'#0#0#7'TUpDown'#13'UpDownDensity'#4'Left' - +#2'-'#6'Height'#2#27#3'Top'#2#3#5'Width'#2#17#9'Associate'#7#11'EditDensity' - +#3'Min'#2#0#8'Position'#2'd'#8'TabOrder'#2#1#9'Thousands'#8#4'Wrap'#8#0#0#0#6 - +'TPanel'#14'PanelRoundness'#4'Left'#3#166#0#6'Height'#2'"'#3'Top'#2#0#5'Widt' - +'h'#2'D'#5'Align'#7#6'alLeft'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2 - +'"'#11'ClientWidth'#2'D'#8'TabOrder'#2#2#0#5'TEdit'#13'EditRoundness'#4'Left' - +#2#4#6'Height'#2#27#3'Top'#2#3#5'Width'#2'*'#7'Anchors'#11#6'akLeft'#0#8'OnC' - +'hange'#7#19'EditRoundnessChange'#8'TabOrder'#2#0#4'Text'#6#1'0'#0#0#7'TUpDo' - +'wn'#15'UpDownRoundness'#4'Left'#2'.'#6'Height'#2#27#3'Top'#2#3#5'Width'#2#17 - +#9'Associate'#7#13'EditRoundness'#3'Min'#2#0#3'Max'#3#0#16#8'Position'#2#0#8 - +'TabOrder'#2#1#9'Thousands'#8#4'Wrap'#8#0#0#0#6'TPanel'#14'PanelTolerance'#4 - +'Left'#3#160#1#6'Height'#2'"'#3'Top'#2#0#5'Width'#2'D'#5'Align'#7#6'alLeft' - +#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2'"'#11'ClientWidth'#2'D'#8'Tab' - +'Order'#2#3#0#5'TEdit'#13'EditTolerance'#4'Left'#2#2#6'Height'#2#27#3'Top'#2 - +#3#5'Width'#2'*'#7'Anchors'#11#6'akLeft'#0#8'OnChange'#7#19'EditToleranceCha' - +'nge'#8'TabOrder'#2#0#4'Text'#6#1'0'#0#0#7'TUpDown'#15'UpDownTolerance'#4'Le' - +'ft'#2','#6'Height'#2#27#3'Top'#2#3#5'Width'#2#17#9'Associate'#7#13'EditTole' - ,'rance'#3'Min'#2#0#8'Position'#2#0#8'TabOrder'#2#1#9'Thousands'#8#4'Wrap'#8#0 - +#0#0#6'TLabel'#15'LabelTolerance1'#4'Left'#3#228#1#6'Height'#2'"'#3'Top'#2#0 - +#5'Width'#2';'#5'Align'#7#6'alLeft'#7'Caption'#6#11'Fill Alpha:'#21'Constrai' - +'nts.MinHeight'#2' '#6'Layout'#7#8'tlCenter'#11'ParentColor'#8#0#0#6'TPanel' - +#15'PanelTolerance1'#4'Left'#3#31#2#6'Height'#2'"'#3'Top'#2#0#5'Width'#2'D'#5 - +'Align'#7#6'alLeft'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2'"'#11'Clie' - +'ntWidth'#2'D'#8'TabOrder'#2#4#0#9'TSpinEdit'#13'spinFillAlpha'#4'Left'#2#10 - +#6'Height'#2#27#3'Top'#2#5#5'Width'#2'3'#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#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#5#2#3'Top'#2'i'#5'Width'#3#22#3#5'Align'#7#8'alCli' - +'ent'#10'BevelOuter'#7#9'bvLowered'#8'TabOrder'#2#3#0#0#9'TMainMenu'#8'MainM' - +'enu'#6'Images'#7#16'ImageListActions'#4'left'#2'r'#3'top'#2'~'#0#9'TMenuIte' - +'m'#12'MenuItemFile'#7'Caption'#6#5'&File'#0#9'TMenuItem'#11'MenuItemNew'#6 - +'Action'#7#7'FileNew'#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#7'O' - +'nClick'#7#14'FileNewExecute'#0#0#9'TMenuItem'#12'MenuItemOpen'#6'Action'#7#8 - +'FileOpen'#11'Bitmap.Data'#10'z'#6#0#0'v'#6#0#0'BMv'#6#0#0#0#0#0#0'6'#0#0#0 - +'('#0#0#0#20#0#0#0#20#0#0#0#1#0' '#0#0#0#0#0'@'#6#0#0'd'#0#0#0'd'#0#0#0#0#0#0 - +#0#0#0#0#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 - +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0#255#255#255#0#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#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 @@ -833,7 +843,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#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 + +#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 @@ -877,91 +887,93 @@ 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#7'OnClick'#7#15'FileOpenExecute'#0#0#9'TMenuItem'#12 - +'MenuItemSave'#6'Action'#7#8'FileSave'#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 + +#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'W'#0#0#255#9#0#0#187#9#0#0#220'i'#0#0 + +#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'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#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#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 + +#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#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 + +#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#152#143#210#255'Z'#0#0#255#10#0#0#192#8#0#0#223'j'#0#0#255'{'#0#0#255'{' + +#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'['#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#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#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#7'OnClick'#7#15'FileSaveExecute'#0#0#9 - +'TMenuItem'#14'MenuItemSaveAs'#6'Action'#7#10'FileSaveAs'#7'OnClick'#7#17'Fi' - +'leSaveAsExecute'#0#0#9'TMenuItem'#19'MenuItemExportAsLRS'#6'Action'#7#15'Fi' - +'leExportAsLRS'#7'OnClick'#7#22'FileExportAsLRSExecute'#0#0#9'TMenuItem'#13 - +'MenuItemClose'#6'Action'#7#9'FileClose'#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 + +#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 + +#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 @@ -1011,219 +1023,222 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#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#7'OnClick'#7#16'FileCloseExecute'#0#0#9'TMenuItem'#9'Me' - +'nuItem2'#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'T' - +'MenuItem'#12'MenuItemEdit'#7'Caption'#6#5'&Edit'#0#9'TMenuItem'#12'MenuItem' - +'Undo'#6'Action'#7#8'EditUndo'#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#0#255#255#255#0#4'Hint'#6#5'Close'#10'ImageIndex'#2#3#8'ShortCut'#3's@' + +#7'OnClick'#7#16'FileCloseExecute'#0#0#9'TMenuItem'#9'MenuItem2'#7'Caption'#6 + ,#1'-'#0#0#9'TMenuItem'#12'MenuItemExit'#7'Caption'#6#4'Exit'#8'ShortCut'#4's' + +#128#0#0#7'OnClick'#7#17'MenuItemExitClick'#0#0#0#9'TMenuItem'#12'MenuItemEd' + +'it'#7'Caption'#6#5'&Edit'#0#9'TMenuItem'#12'MenuItemUndo'#7'Caption'#6#5'&U' + +'ndo'#7'Enabled'#8#11'Bitmap.Data'#10'z'#6#0#0'v'#6#0#0'BMv'#6#0#0#0#0#0#0'6' + +#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0' '#0#0#0#0#0'@'#6#0#0'd'#0#0#0'd'#0#0#0 + +#0#0#0#0#0#0#0#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0'373q353'#248'5;4'#221'5<4'#181'333T'#255#255#255#0#255 + +#255#0'373q353'#248'5;4'#221'5<4'#181'333T'#255#255#255#0#255#255#255#0#255 +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - +#255#255#255#0#255#255#255#0#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#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#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#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#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'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'5;4'#180'Dz='#252'L'#170'@'#255';s4'#255'4:4'#213#255#255#255#0#255 + ,#255#0#255#255#255#0'333-585'#240'353'#253'333 '#255#255#255#0#255#255#255#0 + +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 + +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 + +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'333-595'#186 + +'333'#15#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255 + +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 + +#255#255#0#255#255#255#0#4'Hint'#6#4'Undo'#10'ImageIndex'#2#4#8'ShortCut'#3 + +'Z@'#0#0#9'TMenuItem'#12'MenuItemRedo'#7'Caption'#6#5'&Redo'#7'Enabled'#8#11 + +'Bitmap.Data'#10'z'#6#0#0'v'#6#0#0'BMv'#6#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0 + +#0#0#20#0#0#0#1#0' '#0#0#0#0#0'@'#6#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#255 + +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'333'#1'333X5<4'#183'5;4' + +#222'343'#249'363i'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 + +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 + +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'333B5:4'#217':M8'#242'H' + +'}@'#255'5=4'#251'5:4'#185'333'#11#255#255#255#0#255#255#255#0#255#255#255#0 + +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 + +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'333R5;5'#245'R'#145'J' + +#255'X'#164'N'#255'7@6'#245'594'#136'333'#1#255#255#255#0#255#255#255#0#255 + +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 + +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'333=594'#245 + +']'#164'T'#255'e'#186'['#255'6<5'#246'353W'#255#255#255#0#255#255#255#0#255 +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - +#255#255#255#0#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'5' - +'64t>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+6' - +'85'#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'33' - +'3-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#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'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#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 + +#255#255#0#255#255#255#0#255#255#255#0'333?;E9'#243'v'#198'k'#255'q'#187'g' + +#255'695'#246'333!'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 + +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 + +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'6;6'#161 + +'['#134'U'#254'}'#201's'#255'g'#155'`'#255'8=7'#202#255#255#255#0#255#255#255 + +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'333' + +#12'594'#185'333$'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 + +#255#255#255#0'8>7'#195'j'#159'c'#255#132#204'z'#255'u'#174'm'#255'8<7'#222 + +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 + +#255#255#0#255#255#255#0'333'#24'333'#255'594'#225'333'#15#255#255#255#0#255 + +#255#255#0#255#255#255#0#255#255#255#0'8=7'#215'v'#172'n'#255#138#207#129#255 + +#135#197'~'#255'575'#248'3333'#255#255#255#0#255#255#255#0#255#255#255#0#255 + +#255#255#0#255#255#255#0#255#255#255#0'333'#24'6:5'#246'GlC'#248'5:4'#195'33' + +'3'#3#255#255#255#0#255#255#255#0#255#255#255#0'8=7'#168'u'#153'q'#255#147 + +#210#138#255#148#211#139#255'x'#164'r'#255'7:7'#244'333n3330333'#7#255#255 + +#255#0#255#255#255#0#255#255#255#0'333'#24'6;5'#246'g'#189'\'#255'>S;'#245'4' + +'94'#154#255#255#255#0#255#255#255#0#255#255#255#0'333\SeQ'#244#172#220#165 + +#255#152#212#144#255#157#215#149#255#136#185#130#255'TiQ'#243'@I>'#240'464' + +#250'8<7'#228'8>8'#184'7<6'#164'6;6'#177'6<6'#246'i'#193']'#255'_'#180'T'#255 + +'7B6'#245'353k'#255#255#255#0#255#255#255#0'333'#16'696'#237#147#185#141#255 + +#164#217#156#255#154#213#145#255#153#213#144#255#148#211#139#255#143#209#134 + +#255#136#203'~'#255'v'#178'o'#255'e'#150'^'#255']'#140'W'#255'['#140'T'#255 + +'`'#162'X'#255'i'#193']'#255'c'#190'W'#255'W'#167'L'#255'494'#247'333D'#255 + +#255#255#0#255#255#255#0'333D;?:'#246#152#191#146#255#168#219#161#255#148#210 + +#139#255#143#209#134#255#139#207#130#255#135#205'}'#255#130#203'x'#255'}'#201 + +'r'#255'x'#199'm'#255'r'#197'g'#255'm'#194'a'#255'g'#192'\'#255'b'#190'V'#255 + +'\'#188'P'#255'M'#148'C'#255'473'#243'333&'#255#255#255#0#255#255#255#0'343U' + +'696'#238'^vZ'#246#144#189#139#255#140#206#132#255#134#205'|'#255#130#203'x' + +#255'~'#201't'#255'y'#200'o'#255't'#198'j'#255'o'#196'd'#255'j'#193'_'#255'e' + +#191'Y'#255'`'#189'T'#255'['#187'N'#255'U'#185'H'#255'>b9'#252'483'#174#255 + +#255#255#0#255#255#255#0#255#255#255#0'333'#14'685'#139'7<7'#224'585'#248'FX' + +'C'#240'QrM'#248'X'#129'R'#255'['#140'T'#255'W'#138'Q'#255'T'#133'M'#255'Z' + +#157'Q'#255'b'#190'V'#255']'#188'Q'#255'X'#186'K'#255'F'#132'>'#253'473'#238 + +'333('#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 + +#255#255#255#0'333'#18'333N333q464'#140'6<6'#167'6<5'#163'584'#170'8B7'#242 + +'^'#188'R'#255'Y'#186'M'#255'G'#132'?'#253'473'#238'333('#255#255#255#0#255 + +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'333-5' - +'85'#240'd'#147']'#253'8?8'#243'333 '#255#255#255#0#255#255#255#0#255#255#255 + ,#255#255#255#0'333(7A6'#242'Z'#187'M'#255'G'#133'?'#253'473'#238'333('#255 + +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 + +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 + +#255#255#255#0#255#255#255#0#255#255#255#0'333(7A5'#242'G'#132'?'#253'473' + +#238'333('#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 + +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 + +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'333(3' + +'53'#252'473'#238'333('#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255 +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0#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#0#255#255#255#0'333'#20'493'#186'333('#255#255#255#0#255#255#255#0#255 + +#255#255#0#255#255#255#0#255#255#255#0#4'Hint'#6#4'Redo'#10'ImageIndex'#2#5#8 + +'ShortCut'#3'Z`'#0#0#9'TMenuItem'#9'MenuItem1'#7'Caption'#6#1'-'#0#0#9'TMenu' + +'Item'#11'MenuItemCut'#7'Caption'#6#4'Cu&t'#11'Bitmap.Data'#10'z'#6#0#0'v'#6 + +#0#0'BMv'#6#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0' '#0#0#0#0#0 + +'@'#6#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#255#255#255#0#255 + +#255#255#0#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255 +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0#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#0#0#9'TMenuItem'#12'MenuItemRedo'#6'A' - +'ction'#7#8'EditRedo'#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#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#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - ,'333B5:4'#217':M8'#242'H}@'#255'5=4'#251'5:4'#185'333'#11#255#255#255#0#255 - +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - +'333R5;5'#245'R'#145'J'#255'X'#164'N'#255'7@6'#245'594'#136'333'#1#255#255 - +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 + +#255#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'333=594'#245']'#164'T'#255'e'#186'['#255'6<5'#246'353W'#255#255 - +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 - +#255#255#0#255#255#255#0#255#255#255#0'6:5'#221'\'#151'T'#255'p'#196'd'#255 - +'Q{L'#251'6;6'#170#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 - +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'333?;E9' - +#243'v'#198'k'#255'q'#187'g'#255'695'#246'333!'#255#255#255#0#255#255#255#0 - +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 - +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0'6;6'#161'['#134'U'#254'}'#201's'#255'g'#155'`'#255'8=7' - +#202#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - +#255#255#255#0#255#255#255#0'333'#12'594'#185'333$'#255#255#255#0#255#255#255 - +#0#255#255#255#0#255#255#255#0#255#255#255#0'8>7'#195'j'#159'c'#255#132#204 - +'z'#255'u'#174'm'#255'8<7'#222#255#255#255#0#255#255#255#0#255#255#255#0#255 - +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'333'#24'333'#255'594' - +#225'333'#15#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'8=7'#215 - +'v'#172'n'#255#138#207#129#255#135#197'~'#255'575'#248'3333'#255#255#255#0 - +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'333' - +#24'6:5'#246'GlC'#248'5:4'#195'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'473'#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'333N333q464'#140'6<6' - +#167'6<5'#163'584'#170'8B7'#242'^'#188'R'#255'Y'#186'M'#255'G'#132'?'#253'47' - +'3'#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 + +#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255 + +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0 + +#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0 + +#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255 +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 - +#255#255#0#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#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'333(353'#252'473'#238'333('#255#255#255#0#255#255#255#0 + +#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 + +#0#0#255#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255 + +#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 + +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0 + +#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0 + +#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 + +#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#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'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#0#0#9'TMe' - +'nuItem'#9'MenuItem1'#7'Caption'#6#1'-'#0#0#9'TMenuItem'#11'MenuItemCut'#6'A' - +'ction'#7#7'EditCut'#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#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#255#255#255#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#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#255#255#255#0#255#255#255#0#255 + +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 + +#255#255#0#0#0#0#255#0#0#0#255#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#255#255#255#0#255#255#255#0#255#255 - +#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0 - +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255 - +#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - +#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 - +#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0 - +#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0 - +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255 - +#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - +#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - +#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255 - +#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255 - +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - +#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255 - +#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0 - +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#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#7'OnClick'#7#14'EditCutExecute'#0#0#9'TMenuItem'#12'MenuItemCopy' - +#6'Action'#7#8'EditCopy'#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#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 @@ -1266,7 +1281,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 +#255#255#255#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#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 @@ -1281,7 +1296,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#255#255#255#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#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 @@ -1294,237 +1309,184 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#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 - +#7'OnClick'#7#15'EditCopyExecute'#0#0#9'TMenuItem'#13'MenuItemPaste'#6'Actio' - +'n'#7#9'EditPaste'#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#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 + +#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#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#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 + +#255#255#0#255#255#255#0#255#255#255#0' '#255#128#128#128#255#0#0#0#255#255 + +#255#255#0#0#0#0#255#128#128#128#255#0#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#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 + +' !'#255#128#128#128#255#0#0#0#255#255#255#255#0#0#0#0#255#128#128#128#255#0 + +#0#0#255#128#128#128#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0 + +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 + +#255#255#0#0#0#0#255'(()'#255#0#0#0#255#128#128#128#255#0#0#0#255#255#255#255 + +#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#0#255#255#255#255#0#0#0#0#255#128#128#128#255#0#0#0#255 +#128#128#128#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255 +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - +#255#255#255#0#255#255#255#0' !'#255#128#128#128#255#0#0#0#255#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 + ,#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#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#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#0#255#255#255#0 - +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0' '#255#128#128#128 - +#255#0#0#0#255#255#255#255#0#0#0#0#255#128#128#128#255#0#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 + +#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#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#0#255#0#0#0#255#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#128#128#128#255#0#0#0#255#255#255#255#0#0#0#0 - +#255#128#128#128#255#0#0#0#255#128#128#128#255#0#0#0#255#255#255#255#0#255 - +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0#255#255#255#0#0#0#0#255'(()'#255#0#0#0#255#128#128#128 - +#255#0#0#0#255#255#255#255#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#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#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#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#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#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#0#255#0#0#0#255#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',,,'#255#128#128#128#255#128#128#128#255#128#128#128 - +#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#0#0#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#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#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#0#255#255#255#0#255#255#255#0#0#0#0#255#128#128#128#255#0#0#0#255',,,' + +#255#128#128#128#255#128#128#128#255#128#128#128#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#0#0 + +#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 +#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#0#0#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#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#0#0#0#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#255#255#0#0#0#0#255#0#0 - +#0#255#0#0#0#255#0#0#0#255';;;'#255'777'#255'%%%'#255#255#255#255#0#255#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#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#0#0#0#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 - +#7'OnClick'#7#16'EditPasteExecute'#0#0#9'TMenuItem'#14'MenuItemDelete'#6'Act' - +'ion'#7#10'EditDelete'#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#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#233#13#14'O'#250'&&'#199 - +#255'**'#216#255#27#27#145#255#0#1#7#250#0#0#6'C'#255#255#255#0#0#0#0'0'#1#1 - +#10#246' '#171#255'**'#216#255'**'#216#255'**'#216#255''''''#206#255#10#11 - +'A'#252#1#1#13#232#0#0#0#23#0#0#0#24#1#1#13#233#12#13'K'#251'&&'#196#255'**' - +#216#255'**'#216#255'**'#216#255#29#29#151#255#0#1#9#249#0#0#6':'#1#3#23#194 - +#17#18'X'#254'**'#216#255'**'#216#255'**'#216#255',,'#216#255'//'#217#255'--' - +#209#255#13#14'D'#251#1#1#12#232#1#2#14#234#13#14'D'#251',,'#200#255'//'#217 - +#255'--'#216#255'**'#216#255'**'#216#255'**'#216#255#20#21'h'#252#1#3#26#172 - +#0#2#20#156#8#9','#251'=='#215#255',,'#216#255'//'#217#255'33'#218#255'66' - +#219#255'88'#219#255'66'#214#255#19#20'S'#250#25#25'i'#251'55'#204#255'88' - +#220#255'66'#219#255'44'#218#255'11'#218#255'--'#217#255'55'#215#255#11#12'6' - +#249#0#1#16#141#0#0#0#8#1#2#17#218#15#16'A'#250'II'#218#255'66'#219#255'99' - +#220#255'=='#221#255'??'#221#255'AA'#222#255'AA'#221#255'AA'#221#255'AA'#222 - +#255'@@'#222#255'>>'#221#255';;'#220#255'77'#219#255'AA'#217#255#19#20'D'#249 - +#1#2#18#215#0#0#0#4#255#255#255#0#0#0#0#14#1#2#17#221#19#20'D'#250'QQ'#221 - +#255'@@'#222#255'CC'#223#255'FF'#223#255'HH'#224#255'II'#224#255'II'#224#255 - +'HH'#224#255'GG'#224#255'EE'#223#255'AA'#222#255'II'#220#255#22#23'D'#249#1#2 - +#17#217#0#0#0#12#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#13#2#3#17 - +#219#21#22'E'#249'NN'#222#255'JJ'#225#255'MM'#225#255'OO'#226#255'PP'#226#255 - +'QQ'#226#255'PP'#226#255'NN'#226#255'KK'#225#255'JJ'#220#255#21#22'C'#249#2#2 - +#17#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#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#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#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#255#0#255#255#255#0#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 - +']]'#230#255'aa'#231#255'ee'#232#255'gg'#232#255'gg'#233#255'ff'#232#255'cc' - +#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#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#0#0#0#21#1#2#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#2#3#23#177#17#18'C'#248'GG'#208#255'UU'#227 - +#255'\\'#229#255'cc'#231#255'jj'#233#255'qq'#235#255'{{'#233#255#30#31'D'#249 - +'#$K'#249'}}'#235#255'tt'#236#255'mm'#234#255'ff'#232#255'__'#230#255'WW'#228 - +#255'LL'#217#255#14#14'5'#247#1#3#20#156#1#3#23#197'!"f'#254'WW'#227#255'VV' - +#228#255']]'#230#255'dd'#232#255'll'#234#255'~~'#234#255' !D'#248#3#4#17#216 - +#4#5#18#218'#$H'#250#128#128#234#255'oo'#235#255'gg'#233#255'``'#231#255'XX' - +#228#255'YY'#227#255#30#31'\'#253#1#3#22#183#0#0#2'+'#1#2#10#248';;'#139#255 - +'``'#229#255']]'#230#255'dd'#232#255'||'#232#255' !D'#248#3#4#17#216#0#0#0#12 - +#0#0#0#13#4#5#17#219'"#F'#249'~~'#234#255'gg'#233#255'``'#230#255'cc'#229#255 - +'=>'#142#254#2#3#13#241#0#0#0#28#255#255#255#0#0#0#2'1'#1#1#7#250'>?'#139#255 - +'aa'#230#255'pp'#230#255#29#30'D'#248#3#4#16#218#0#0#0#12#255#255#255#0#255 - +#255#255#0#0#0#0#13#3#4#16#220'!"J'#249'ss'#232#255'dd'#230#255'AA'#141#255#1 - +#2#9#248#0#0#0'*'#255#255#255#0#255#255#255#0#255#255#255#0#0#0#5'B'#0#1#4 - +#251'#$_'#254#17#18'2'#247#2#2#13#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#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#0#255#255#255#0#7'OnClick'#7#17'E' - +'ditDeleteExecute'#0#0#9'TMenuItem'#17'MenuItemSelectAll'#6'Action'#7#13'Edi' - +'tSelectAll'#7'OnClick'#7#20'EditSelectAllExecute'#0#0#0#9'TMenuItem'#15'Men' - +'uItemPicture'#7'Caption'#6#8'&Picture'#0#9'TMenuItem'#14'MenuItemResize'#6 - +'Action'#7#13'PictureResize'#7'OnClick'#7#19'MenuItemResizeClick'#0#0#9'TMen' - +'uItem'#19'MenuItemResizePaper'#6'Action'#7#18'PictureResizePaper'#7'OnClick' - +#7#24'MenuItemResizePaperClick'#0#0#9'TMenuItem'#23'MenuItemClipPaperToMask' - +#6'Action'#7#22'PictureClipPaperToMask'#0#0#9'TMenuItem'#9'MenuItem7'#7'Capt' - +'ion'#6#1'-'#0#0#9'TMenuItem'#12'MenuItemFlip'#7'Caption'#6#4'Flip'#0#9'TMen' - +'uItem'#20'MenuItemHorizontally'#6'Action'#7#16'FlipHorizontally'#7'OnClick' - +#7#23'FlipHorizontallyExecute'#0#0#9'TMenuItem'#18'MenuItemVertically'#6'Act' - +'ion'#7#14'FlipVertically'#7'OnClick'#7#21'FlipVerticallyExecute'#0#0#0#9'TM' - +'enuItem'#14'MenuItemRotate'#7'Caption'#6#6'Rotate'#0#9'TMenuItem'#10'MenuIt' - +'em90'#6'Action'#7#8'Rotate90'#7'OnClick'#7#15'Rotate90Execute'#0#0#9'TMenuI' - +'tem'#11'MenuItem180'#6'Action'#7#9'Rotate180'#7'OnClick'#7#16'Rotate180Exec' - +'ute'#0#0#9'TMenuItem'#11'MenuItem270'#6'Action'#7#9'Rotate270'#7'OnClick'#7 - +#16'Rotate270Execute'#0#0#9'TMenuItem'#14'MenuItemCustom'#6'Action'#7#12'Rot' - +'ateCustom'#0#0#0#9'TMenuItem'#9'MenuItem4'#7'Caption'#6#1'-'#0#0#9'TMenuIte' - +'m'#14'MenuItemColors'#7'Caption'#6#6'Colors'#0#9'TMenuItem'#14'MenuItemInve' - +'rt'#6'Action'#7#12'ColorsInvert'#7'OnClick'#7#19'ColorsInvertExecute'#0#0#9 - +'TMenuItem'#17'MenuItemGrayscale'#6'Action'#7#15'ColorsGrayscale'#7'OnClick' - +#7#22'ColorsGrayscaleExecute'#0#0#9'TMenuItem'#15'MenuItemDisable'#6'Action' - +#7#13'ColorsDisable'#7'OnClick'#7#20'ColorsDisableExecute'#0#0#0#0#9'TMenuIt' - +'em'#12'MenuItemMask'#7'Caption'#6#4'Mask'#0#9'TMenuItem'#18'MenuItemMaskInv' - +'ert'#6'Action'#7#10'MaskInvert'#7'OnClick'#7#17'MaskInvertExecute'#0#0#9'TM' - +'enuItem'#18'MenuItemMaskRemove'#6'Action'#7#10'MaskRemove'#7'OnClick'#7#17 - +'MaskRemoveExecute'#0#0#0#9'TMenuItem'#12'MenuItemView'#7'Caption'#6#4'View' - +#0#9'TMenuItem'#16'MenuItemShowGrid'#6'Action'#7#12'ViewShowGrid'#9'AutoChec' - +'k'#9#7'OnClick'#7#19'ViewShowGridExecute'#0#0#9'TMenuItem'#16'MenuItemShowM' - +'ask'#6'Action'#7#12'ViewShowMask'#9'AutoCheck'#9#7'OnClick'#7#19'ViewShowMa' - +'skExecute'#0#0#9'TMenuItem'#19'MenuItemShowPreview'#9'AutoCheck'#9#7'Captio' - +'n'#6#12'Show Preview'#7'Checked'#9#7'OnClick'#7#22'ViewShowPreviewExecute'#0 + +#255#255#255#0#255#255#255#0#0#0#0#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#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255';;;'#255 + +'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 + +'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 + +#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 + +#233#13#14'O'#250'&&'#199#255'**'#216#255#27#27#145#255#0#1#7#250#0#0#6'C' + +#255#255#255#0#0#0#0'0'#1#1#10#246' '#171#255'**'#216#255'**'#216#255'**' + +#216#255''''''#206#255#10#11'A'#252#1#1#13#232#0#0#0#23#0#0#0#24#1#1#13#233 + +#12#13'K'#251'&&'#196#255'**'#216#255'**'#216#255'**'#216#255#29#29#151#255#0 + +#1#9#249#0#0#6':'#1#3#23#194#17#18'X'#254'**'#216#255'**'#216#255'**'#216#255 + +',,'#216#255'//'#217#255'--'#209#255#13#14'D'#251#1#1#12#232#1#2#14#234#13#14 + +'D'#251',,'#200#255'//'#217#255'--'#216#255'**'#216#255'**'#216#255'**'#216 + +#255#20#21'h'#252#1#3#26#172#0#2#20#156#8#9','#251'=='#215#255',,'#216#255'/' + +'/'#217#255'33'#218#255'66'#219#255'88'#219#255'66'#214#255#19#20'S'#250#25 + +#25'i'#251'55'#204#255'88'#220#255'66'#219#255'44'#218#255'11'#218#255'--' + +#217#255'55'#215#255#11#12'6'#249#0#1#16#141#0#0#0#8#1#2#17#218#15#16'A'#250 + +'II'#218#255'66'#219#255'99'#220#255'=='#221#255'??'#221#255'AA'#222#255'AA' + +#221#255'AA'#221#255'AA'#222#255'@@'#222#255'>>'#221#255';;'#220#255'77'#219 + +#255'AA'#217#255#19#20'D'#249#1#2#18#215#0#0#0#4#255#255#255#0#0#0#0#14#1#2 + ,#17#221#19#20'D'#250'QQ'#221#255'@@'#222#255'CC'#223#255'FF'#223#255'HH'#224 + +#255'II'#224#255'II'#224#255'HH'#224#255'GG'#224#255'EE'#223#255'AA'#222#255 + +'II'#220#255#22#23'D'#249#1#2#17#217#0#0#0#12#255#255#255#0#255#255#255#0#255 + +#255#255#0#0#0#0#13#2#3#17#219#21#22'E'#249'NN'#222#255'JJ'#225#255'MM'#225 + +#255'OO'#226#255'PP'#226#255'QQ'#226#255'PP'#226#255'NN'#226#255'KK'#225#255 + +'JJ'#220#255#21#22'C'#249#2#2#17#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#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#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#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#255 + +#0#255#255#255#0#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']]'#230#255'aa'#231#255'ee'#232#255'gg'#232#255 + +'gg'#233#255'ff'#232#255'cc'#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#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#0#0#0#21#1#2#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#2#3#23#177#17 + +#18'C'#248'GG'#208#255'UU'#227#255'\\'#229#255'cc'#231#255'jj'#233#255'qq' + +#235#255'{{'#233#255#30#31'D'#249'#$K'#249'}}'#235#255'tt'#236#255'mm'#234 + +#255'ff'#232#255'__'#230#255'WW'#228#255'LL'#217#255#14#14'5'#247#1#3#20#156 + +#1#3#23#197'!"f'#254'WW'#227#255'VV'#228#255']]'#230#255'dd'#232#255'll'#234 + +#255'~~'#234#255' !D'#248#3#4#17#216#4#5#18#218'#$H'#250#128#128#234#255'oo' + +#235#255'gg'#233#255'``'#231#255'XX'#228#255'YY'#227#255#30#31'\'#253#1#3#22 + +#183#0#0#2'+'#1#2#10#248';;'#139#255'``'#229#255']]'#230#255'dd'#232#255'||' + +#232#255' !D'#248#3#4#17#216#0#0#0#12#0#0#0#13#4#5#17#219'"#F'#249'~~'#234 + +#255'gg'#233#255'``'#230#255'cc'#229#255'=>'#142#254#2#3#13#241#0#0#0#28#255 + +#255#255#0#0#0#2'1'#1#1#7#250'>?'#139#255'aa'#230#255'pp'#230#255#29#30'D' + +#248#3#4#16#218#0#0#0#12#255#255#255#0#255#255#255#0#0#0#0#13#3#4#16#220'!"J' + +#249'ss'#232#255'dd'#230#255'AA'#141#255#1#2#9#248#0#0#0'*'#255#255#255#0#255 + +#255#255#0#255#255#255#0#0#0#5'B'#0#1#4#251'#$_'#254#17#18'2'#247#2#2#13#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#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#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' + +'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' + +'ontally'#7'Caption'#6#12'Horizontally'#7'OnClick'#7#23'FlipHorizontallyExec' + +'ute'#0#0#9'TMenuItem'#18'MenuItemVertically'#7'Caption'#6#10'Vertically'#7 + +'OnClick'#7#21'FlipVerticallyExecute'#0#0#0#9'TMenuItem'#14'MenuItemRotate'#7 + +'Caption'#6#6'Rotate'#0#9'TMenuItem'#10'MenuItem90'#7'Caption'#6#11'90Clockw' + +'ise'#7'OnClick'#7#15'Rotate90Execute'#0#0#9'TMenuItem'#11'MenuItem180'#7'Ca' + +'ption'#6#12'180Clockwise'#7'OnClick'#7#16'Rotate180Execute'#0#0#9'TMenuItem' + +#11'MenuItem270'#7'Caption'#6#12'270Clockwise'#7'OnClick'#7#16'Rotate270Exec' + +'ute'#0#0#9'TMenuItem'#14'MenuItemCustom'#7'Caption'#6#9'Custom...'#7'Enable' + +'d'#8#0#0#0#9'TMenuItem'#9'MenuItem4'#7'Caption'#6#1'-'#0#0#9'TMenuItem'#14 + +'MenuItemColors'#7'Caption'#6#6'Colors'#0#9'TMenuItem'#14'MenuItemInvert'#7 + +'Caption'#6#6'Invert'#7'OnClick'#7#19'ColorsInvertExecute'#0#0#9'TMenuItem' + +#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#11 - +'TActionList'#10'ActionList'#6'Images'#7#16'ImageListActions'#4'left'#2'r'#3 - +'top'#2'Z'#0#7'TAction'#7'FileNew'#8'Category'#6#4'File'#7'Caption'#6#7'&New' - +'...'#4'Hint'#6#3'New'#10'ImageIndex'#2#0#9'OnExecute'#7#14'FileNewExecute'#8 - +'ShortCut'#3'N@'#0#0#7'TAction'#8'FileOpen'#8'Category'#6#4'File'#7'Caption' - +#6#8'&Open...'#4'Hint'#6#4'Open'#10'ImageIndex'#2#1#9'OnExecute'#7#15'FileOp' - ,'enExecute'#8'ShortCut'#3'O@'#0#0#7'TAction'#8'FileSave'#8'Category'#6#4'Fil' - +'e'#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'FileSaveAs'#8'Categ' - +'ory'#6#4'File'#7'Caption'#6#11'Save &As...'#4'Hint'#6#7'Save As'#9'OnExecut' - +'e'#7#17'FileSaveAsExecute'#0#0#7'TAction'#9'FileClose'#8'Category'#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'Categ' - +'ory'#6#4'Edit'#7'Caption'#6#5'&Undo'#7'Enabled'#8#4'Hint'#6#4'Undo'#10'Imag' - +'eIndex'#2#4#8'ShortCut'#3'Z@'#0#0#7'TAction'#8'EditRedo'#8'Category'#6#4'Ed' - +'it'#7'Caption'#6#5'&Redo'#7'Enabled'#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'Captio' - +'n'#6#4'Cu&t'#7'Enabled'#8#4'Hint'#6#3'Cut'#10'ImageIndex'#2#6#9'OnExecute'#7 - +#14'EditCutExecute'#8'ShortCut'#3'X@'#0#0#9'TEditCopy'#8'EditCopy'#8'Categor' - +'y'#6#4'Edit'#7'Caption'#6#5'&Copy'#7'Enabled'#8#4'Hint'#6#4'Copy'#10'ImageI' - +'ndex'#2#7#9'OnExecute'#7#15'EditCopyExecute'#8'ShortCut'#3'C@'#0#0#10'TEdit' - +'Paste'#9'EditPaste'#8'Category'#6#4'Edit'#7'Caption'#6#6'&Paste'#7'Enabled' - +#8#4'Hint'#6#5'Paste'#10'ImageIndex'#2#8#9'OnExecute'#7#16'EditPasteExecute' - +#8'ShortCut'#3'V@'#0#0#11'TEditDelete'#10'EditDelete'#8'Category'#6#4'Edit'#7 - +'Caption'#6#7'&Delete'#7'Enabled'#8#4'Hint'#6#6'Delete'#10'ImageIndex'#2#9#9 - +'OnExecute'#7#17'EditDeleteExecute'#8'ShortCut'#2'.'#0#0#14'TEditSelectAll' - +#13'EditSelectAll'#8'Category'#6#4'Edit'#7'Caption'#6#11'Select &All'#7'Enab' - +'led'#8#4'Hint'#6#10'Select All'#9'OnExecute'#7#20'EditSelectAllExecute'#8'S' - +'hortCut'#3'A@'#0#0#7'TAction'#13'PictureResize'#8'Category'#6#7'Picture'#7 - +'Caption'#6#9'Resize...'#0#0#7'TAction'#18'PictureResizePaper'#8'Category'#6 - +#7'Picture'#7'Caption'#6#15'Resize Paper...'#0#0#7'TAction'#16'FlipHorizonta' - +'lly'#8'Category'#6#11'PictureFlip'#7'Caption'#6#12'Horizontally'#9'OnExecut' - +'e'#7#23'FlipHorizontallyExecute'#0#0#7'TAction'#14'FlipVertically'#8'Catego' - +'ry'#6#11'PictureFlip'#7'Caption'#6#10'Vertically'#9'OnExecute'#7#21'FlipVer' - +'ticallyExecute'#0#0#7'TAction'#8'Rotate90'#8'Category'#6#13'PictureRotate'#7 - +'Caption'#6#11'90Clockwise'#9'OnExecute'#7#15'Rotate90Execute'#0#0#7'TAction' - +#9'Rotate180'#8'Category'#6#13'PictureRotate'#7'Caption'#6#12'180Clockwise'#9 - +'OnExecute'#7#16'Rotate180Execute'#0#0#7'TAction'#9'Rotate270'#8'Category'#6 - +#13'PictureRotate'#7'Caption'#6#12'270Clockwise'#9'OnExecute'#7#16'Rotate270' - +'Execute'#0#0#7'TAction'#12'RotateCustom'#8'Category'#6#13'PictureRotate'#7 - +'Caption'#6#9'Custom...'#7'Enabled'#8#0#0#7'TAction'#12'ColorsInvert'#8'Cate' - +'gory'#6#13'PictureColors'#7'Caption'#6#6'Invert'#9'OnExecute'#7#19'ColorsIn' - +'vertExecute'#0#0#7'TAction'#15'ColorsGrayscale'#8'Category'#6#13'PictureCol' - +'ors'#7'Caption'#6#9'Grayscale'#9'OnExecute'#7#22'ColorsGrayscaleExecute'#0#0 - +#7'TAction'#13'ColorsDisable'#8'Category'#6#13'PictureColors'#7'Caption'#6#7 - +'Disable'#9'OnExecute'#7#20'ColorsDisableExecute'#0#0#7'TAction'#15'FileExpo' - +'rtAsLRS'#8'Category'#6#4'File'#7'Caption'#6#19'&Export As *.lrs...'#9'OnExe' - +'cute'#7#22'FileExportAsLRSExecute'#0#0#7'TAction'#10'MaskRemove'#8'Category' - +#6#4'Mask'#7'Caption'#6#6'Remove'#9'OnExecute'#7#17'MaskRemoveExecute'#0#0#7 - +'TAction'#10'MaskInvert'#8'Category'#6#4'Mask'#7'Caption'#6#6'Invert'#9'OnEx' - +'ecute'#7#17'MaskInvertExecute'#0#0#7'TAction'#22'PictureClipPaperToMask'#8 - +'Category'#6#7'Picture'#7'Caption'#6#18'Clip Paper To Mask'#0#0#7'TAction'#12 - +'ViewShowGrid'#8'Category'#6#4'View'#9'AutoCheck'#9#7'Caption'#6#9'Show Grid' - +#7'Checked'#9#9'OnExecute'#7#19'ViewShowGridExecute'#0#0#7'TAction'#12'ViewS' - +'howMask'#8'Category'#6#4'View'#9'AutoCheck'#9#7'Caption'#6#9'Show Mask'#7'C' - +'hecked'#9#9'OnExecute'#7#19'ViewShowMaskExecute'#0#0#0#10'TImageList'#14'Im' - +'ageListTools'#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 + +'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 @@ -1536,77 +1498,17 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 - +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 - ,#255#0#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#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#255#255#255#0#255#255#255#0#255 - +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 - +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 - +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 - +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0#255#255#255#0#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#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#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 @@ -1618,88 +1520,113 @@ 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#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#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 + +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 +#255#255#0#255#255#255#0#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#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#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#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#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#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 + +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 + +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 + +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 + +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 + +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 + +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 + +#255#255#255#0#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#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 - +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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#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#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 + +#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#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#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 + +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 + +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 + +#255#255#255#0#255#255#255#0#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 @@ -1712,152 +1639,186 @@ 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#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#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 + +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 + +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 + +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 + +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 + +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 + +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 + +#255#0#255#255#255#0#255#255#255#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#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#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#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 + +#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 - +#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#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 - +#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#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#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#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#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#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#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#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#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#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#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#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#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 + +#255#255#0#255#255#255#0#255#255#255#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#255#0#255#255#255#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 @@ -1896,7 +1857,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 +#255#255#0#255#255#255#0#255#255#255#0#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 + ,'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 @@ -1921,7 +1882,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#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 + +#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 @@ -1960,7 +1921,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +'`'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 +#255#0#255#255#255#0#255#255#255#0#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 + ,#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 @@ -1985,7 +1946,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#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 + +#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 @@ -2024,7 +1985,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#128'CCC'#255'rrr'#255 +#0#0#0#255#2#2#2#255#0#0#0#255#0#0#0#196#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#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 +#255#255#0#0#0#0#225'\\\'#255#0#1#1#255#0#0#0#255#0#0#0#235#0#0#0'^'#0#0#0#1 @@ -2049,7 +2010,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - ,#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 + +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 @@ -2088,7 +2049,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#255#255#255#0#255#255#255#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 + ,#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 @@ -2113,7 +2074,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#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#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#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 @@ -2152,7 +2113,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#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 + ,#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 @@ -2177,7 +2138,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#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 + +#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 @@ -2216,7 +2177,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 +#255#0#255#255#255#0#255#255#255#0#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 + ,#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 @@ -2241,7 +2202,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 - ,#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 + +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 @@ -2280,7 +2241,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 +#255#0#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#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 +#255#255#0#255#255#255#0#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 @@ -2305,7 +2266,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#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#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#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 @@ -2344,7 +2305,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 + ,#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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 @@ -2369,7 +2330,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 +#255#0#255#255#255#0#255#255#255#0#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 + +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 @@ -2408,7 +2369,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 @@ -2433,7 +2394,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#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#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 @@ -2472,7 +2433,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#252#0'2'#1#253#0#11#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#255#255#255#0#255#255#255#0 +#0#0#0'@'#6#14#6#247'u'#242't'#255#129#244#128#255#137#245#136#255#138#245 - +#136#255#131#244#130#255'w'#242'v'#255'h'#240'h'#255'X'#238'Y'#255'H'#236'I' + ,#136#255#131#244#130#255'w'#242'v'#255'h'#240'h'#255'X'#238'Y'#255'H'#236'I' +#255'6'#233'8'#255'%'#231'('#255#20#228#23#255#2#226#6#255#0#226#4#255#0#226 +#4#255#0#226#4#255#0#226#4#255#0#226#4#255#0#226#4#255#0#127#2#255#0#11#0#193 +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 @@ -2497,7 +2458,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#14#6#247'y'#243'x'#255#134#244#133#255#143#246#141#255#143#246#141#255#135 +#244#133#255'y'#243'y'#255'j'#240'j'#255'N'#206'N'#255','#143'-'#255#23']'#25 +#255#16'D'#18#255#12'C'#13#255#7'B'#9#255#6'B'#8#255#6'B'#8#255#6'A'#8#255#6 - ,'A'#8#255#5'A'#7#255#1'['#3#255#0'N'#1#255#0#9#0#201#255#255#255#0#255#255 + +'A'#8#255#5'A'#7#255#1'['#3#255#0'N'#1#255#0#9#0#201#255#255#255#0#255#255 +#255#0#255#255#255#0#255#255#255#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#14#6#247'l'#241'l'#255'w'#242'v'#255 +'}'#243'|'#255'}'#243'|'#255'w'#242'w'#255'k'#237'k'#255'1y2'#255#3#4#4#255 @@ -2536,7 +2497,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#255#13#0#19#246#0#0#0'I'#255#255#255#0#255#255#255#0#255#255#255#0#255#255 +#255#0#255#255#255#0#0#0#0'@'#0#13#1#247#11#227#14#255#15#228#18#255#17#228 +#20#255#10#142#12#255#31#24'#'#255#215'q'#242#255#220'|'#243#255#223#134#245 - +#255#226#139#245#255#226#139#245#255#223#133#245#255#219'{'#243#255#214'p' + ,#255#226#139#245#255#226#139#245#255#223#133#245#255#219'{'#243#255#214'p' +#242#255#209'c'#240#255#203'U'#238#255#198'H'#236#255#192':'#234#255#186'+' +#232#255#180#29#230#255#174#14#228#255#168#0#226#255#168#0#226#255#168#0#226 +#255#24#0'!'#243#0#0#0'X'#255#255#255#0#255#255#255#0#255#255#255#0#255#255 @@ -2561,7 +2522,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#255#0#226#4#255#0#226#4#255#0#141#2#255#28#18'"'#255#196'D'#235#255#198'I' +#236#255#200'L'#237#255#200'N'#237#255#200'M'#237#255#198'I'#236#255#196'D' +#235#255#193'='#234#255#190'5'#233#255#186'+'#232#255#181'!'#230#255#177#21 - ,#229#255#172#10#227#255#168#0#226#255#168#0#226#255#168#0#226#255#168#0#226 + +#229#255#172#10#227#255#168#0#226#255#168#0#226#255#168#0#226#255#168#0#226 +#255#168#0#226#255#24#0'!'#243#0#0#0'X'#255#255#255#0#255#255#255#0#255#255 +#255#0#255#255#255#0#255#255#255#0#0#0#0'@'#0#13#0#247#0#226#4#255#0#226#4 +#255#0#226#4#255#0#141#2#255#27#16'"'#255#190'6'#233#255#192';'#234#255#193 @@ -2600,7 +2561,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#0#0#0 +'+'#6#0#8#215#20#0#26#248'Z'#0'y'#255'}'#0#168#255#147#0#198#255#147#0#198 - +#255#147#0#198#255#147#0#198#255#147#0#198#255#147#0#198#255#147#0#198#255 + ,#255#147#0#198#255#147#0#198#255#147#0#198#255#147#0#198#255#147#0#198#255 +#147#0#198#255'|'#0#167#255'Z'#0'y'#255#16#0#23#248#6#0#8#211#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 @@ -2625,7 +2586,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 - ,#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 + +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 @@ -2664,7 +2625,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#220#248#255#159#220#248#255#147#215#247#255#132#209#244#255't'#202#242#255 +'d'#196#240#255'T'#189#238#255'D'#182#235#255'4'#175#233#255'$'#169#231#255 +#20#162#228#255#2'c'#144#255#0#7#10#251#0#4#6#212#0#0#0#30#255#255#255#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 +#0#0#2#139#6#12#14#250'^'#160#192#255#136#210#245#255#152#217#247#255#168#224 +#250#255#165#223#249#255#149#216#247#255#132#209#244#255't'#202#242#255'd' @@ -2689,7 +2650,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +'E'#183#235#255'6'#176#233#255''''#170#231#255#23#163#229#255#8#157#227#255#0 +#154#226#255#0#154#226#255#0#154#226#255#0#153#225#255#0'$4'#250#0#4#6#197 +#255#255#255#0#255#255#255#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#1#3#3#246'''p'#146#255'M'#186#237#255'Z'#191 + +#255#255#0#255#255#255#0#0#0#0#7#1#3#3#246'''p'#146#255'M'#186#237#255'Z'#191 +#238#255'f'#196#240#255'o'#200#241#255'u'#203#242#255'w'#204#243#255'u'#202 +#242#255'n'#200#241#255'd'#196#240#255'X'#191#238#255'K'#185#236#255'>'#179 +#234#255'/'#173#232#255' '#167#230#255#17#161#228#255#2#154#226#255#0#154#226 @@ -2728,7 +2689,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#255#0#0#0#0#159#1'3J'#252#13#159#227#255#21#162#229#255#27#165#229#255' ' +#167#230#255'#'#168#231#255'%'#169#231#255'$'#169#231#255'"'#168#230#255#30 +#166#230#255#24#164#229#255#17#161#228#255#8#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 + ,#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'Pv'#255#0#6#9#216#255#255 +#255#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#24'#'#247#2#154#226#255#9#157#227#255#15#160#228#255#19#162#228 @@ -2753,7 +2714,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#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#145#213#255#0#14#20#250#0#2#3#153#255#255#255#0#255#255#255#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#4#6#184#0#26'%'#250#0#151#222#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 @@ -2792,7 +2753,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#150#0#3#4#188#0#5#7#217#0#5#7#221#0#4#5#194#0#0#0#160#0#0#0'\'#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#255#255#255#0#255#255#255#0#255#255#255#0#255 + ,#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 @@ -2817,7 +2778,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 - ,#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 + +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 @@ -2856,7 +2817,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +'r'#255#235'pj'#255#234'ib'#255#233'aY'#255#231'YP'#255#205'I?'#255'3'#16#14 +#248#7#2#1#232#0#0#0'>'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255 +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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#1#2#2#0'v'#2#1#1#252'i>='#252#233#136#136#255#239 +#135#134#255#238#129'~'#255#237'zv'#255#235'rm'#255#234'jd'#255#233'bZ'#255 +#232'ZQ'#255#230'RH'#255#226'I='#255's!'#26#253#3#1#0#252#2#0#0#134#0#0#0#4 @@ -2881,7 +2842,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#0' '#8#4#2#218#30#13#12#248#189'WR'#255#236'so'#255#237'zw'#255#238#128'}' +#255#238#132#130#255#238#133#131#255#238#131#129#255#237'~{'#255#236'xt'#255 +#235'ql'#255#234'jd'#255#233'c['#255#232'[R'#255#230'SI'#255#229'L?'#255#228 - ,'D6'#255#227'<-'#255#225'4#'#255#224','#26#255#223'$'#16#255#221#28#7#255#190 + +'D6'#255#227'<-'#255#225'4#'#255#224','#26#255#223'$'#16#255#221#28#7#255#190 +#19#0#255'('#4#0#247#7#1#0#225#0#0#0'('#255#255#255#0#255#255#255#0#255#255 +#255#0#255#255#255#0#0#0#0'%'#0#0#0#255#201'UO'#255#234'ic'#255#235'pj'#255 +#236'uq'#255#237'zv'#255#237'|y'#255#237'}y'#255#237'{w'#255#236'ws'#255#235 @@ -2920,7 +2881,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +'<-'#255#226'7'''#255#225'2!'#255#224','#27#255#223''''#20#255#222' '#12#255 +#221#26#5#255#221#22#0#255#221#22#0#255#221#22#0#255#213#21#0#255#6#1#0#251#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#9#2#2#221#134'&'#30 + ,#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#9#2#2#221#134'&'#30 +#255#228'C5'#255#228'C6'#255#228'C6'#255#228'C5'#255#228'A3'#255#227'?0'#255 +#227'<-'#255#226'8)'#255#225'4$'#255#225'0'#31#255#224'+'#25#255#223'&'#18 +#255#222' '#12#255#221#26#5#255#221#22#0#255#221#22#0#255#221#22#0#255#221#22 @@ -2945,7 +2906,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#2#0#0 +#140'@'#10#4#248#223'#'#15#255#223'#'#15#255#222'"'#14#255#222' '#12#255#222 +#30#10#255#221#28#7#255#221#25#3#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 + +#221#22#0#255#221#22#0#255#221#22#0#255#221#22#0#255#221#22#0#255#221#22#0 +#255'V'#8#0#252#6#0#0#168#255#255#255#0#255#255#255#0#255#255#255#0#255#255 +#255#0#255#255#255#0#255#255#255#0#255#255#255#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'#4#0#0#252#210#26#6#255 @@ -2984,7 +2945,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 + ,#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 @@ -3009,7 +2970,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#255#255#255#0#0#0#0#1#0#0#0'5'#0#0#0'~'#0#0#0#200#0#0#0#253#0#0#0#255#0#0#0 +#255#0#0#0#255#10#13#13#255'$23'#255'7LN'#255'4HJ'#255'0CD'#255#12#17#17#254 +#0#0#0#255#0#0#0#220#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#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#0#0#0#18#0 +#0#0'u'#0#0#0#222#0#0#0#255#0#0#0#255#0#0#0#255' ,-'#255'Rqt'#255'z'#169#173 +#255#130#179#183#255't'#161#164#255'Wy|'#255';RT'#255'0CD'#255'3GI'#255'''67' @@ -3048,7 +3009,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#0#0#0#0'"'#0#0#0#152#0#0#0#254'u89'#255#230#173#174#255#240#207#207#255#239 +#202#202#255#222#146#147#255#203'RT'#255#206']_'#255#231#177#177#255#240#207 +#207#255#234#185#186#255#210'jk'#255#200'GI'#255#178'?A'#255#13#4#4#255#1#0#0 - +#255#10#10#11#255'^^^'#255#174#174#174#255#128#128#128#255'555'#255'UUU'#255 + ,#255#10#10#11#255'^^^'#255#174#174#174#255#128#128#128#255'555'#255'UUU'#255 +#174#174#174#255#192#192#192#255#187#187#187#255#183#183#183#255#179#179#179 +#255#174#174#174#255#127#127#127#255#0#0#0'K'#2#0#0#246#7#2#2#253'r?@'#255 +#235#194#195#255#240#207#207#255#236#191#192#255#206'\^'#255#200'GI'#255#207 @@ -3073,7 +3034,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#255#162'9;'#255#165':<'#255't)*'#255#0#0#0#255#181#181#181#255#229#229#229 +#255#223#223#223#255#161#160#157#255'oj_'#255'ukU'#255#180#160's'#255#209#186 +#133#255#207#184#131#255#205#182#129#255'b]R'#255#186#186#186#255#181#181#181 - ,#255#177#177#177#255#173#173#173#255#168#168#168#255#215#138#139#255#240#207 + +#255#177#177#177#255#173#173#173#255#168#168#168#255#215#138#139#255#240#207 +#207#255#240#207#207#255#239#203#204#255#207'ac'#255#200'GI'#255#200'GI'#255 +#200'GI'#255#200'GI'#255#200'GI'#255#200'GI'#255#149'46'#255'w*+'#255#137'01' +#255#19#8#8#255'210'#255#131#127'y'#255'zvk'#255'vnZ'#255#171#153'p'#255#215 @@ -3112,7 +3073,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#207#255#240#207#207#255#240#207#207#255#213'su'#255#200'GI'#255#200'GI'#255 +#200'GI'#255#200'GI'#255#181'@B'#255#138'12'#255#129'-/'#255#189'CD'#255'>' +#22#23#255#3#2#1#255#169#151'n'#255#218#195#142#255#216#193#140#255#214#191 - +#138#255#212#189#136#255#210#187#134#255#208#185#132#255#206#183#130#255#203 + ,#138#255#212#189#136#255#210#187#134#255#208#185#132#255#206#183#130#255#203 +#180#127#255#170#150'j'#255'aZJ'#255'xvr'#255#173#173#173#255#170#170#170#255 +#165#165#165#255#200'GI'#255#222#147#148#255#240#207#207#255#239#203#203#255 +#226#159#160#255#211'ln'#255#200'GI'#255#200'GI'#255#200'GI'#255#200'GI'#255 @@ -3137,7 +3098,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#0#255'}}}'#255#220#220#220#255#216#216#216#255#211#211#211#255#207#207#207 +#255#203#203#203#255#198#198#198#255#194#194#194#255#190#190#190#255#148#148 +#148#255'888'#255#0#0#0#255#0#0#0#255#0#0#0#216#0#0#0'^'#200'GI'#255#200'GI' - ,#255#200'GI'#255#200'GI'#255#200'GI'#255#200'GI'#255#200'GI'#255#224#152#153 + +#255#200'GI'#255#200'GI'#255#200'GI'#255#200'GI'#255#200'GI'#255#224#152#153 +#255#240#207#207#255#240#207#207#255#240#206#207#255#205'XZ'#255#200'GI'#255 +#200'GI'#255#200'GI'#255'B'#24#24#255#20#18#18#255#216#216#216#255#219#219 +#219#255#215#215#215#255#211#211#211#255#206#206#206#255#173#173#173#255#128 @@ -3176,7 +3137,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 - +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 + ,#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 @@ -3201,7 +3162,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#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 +#255#0#255#255#255#0#255#255#255#0#255#255#255#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'#6#6#6#200#3#3#3#252'KKK' + +#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0'D'#6#6#6#200#3#3#3#252'KKK' +#251'yyy'#255#160#160#160#255#142#142#142#255#0#0#0#255#2#2#2#171#255#255#255 +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 @@ -3240,7 +3201,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#195#195#255#138#138#138#255#0#0#0#254#0#0#0'Y'#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#137#14#14#14#250'OOO'#255#173#173#173#255#240#240#240#255 + ,#255#255#0#0#0#0#137#14#14#14#250'OOO'#255#173#173#173#255#240#240#240#255 +#235#235#235#255#229#229#229#255#222#222#222#255#216#216#216#255#210#210#210 +#255#203#203#203#255#197#197#197#255#195#195#195#255#195#195#195#255#195#195 +#195#255#195#195#195#255'UUU'#253#0#0#0#255#0#2#2#236#0#0#0'_'#0#0#0#3#255 @@ -3265,7 +3226,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#255#234#230#144#255#234#230#144#255#234#230#144#255'UT4'#252#2#2#1#237#0#0#0 +#255#7#7#7#255#194#194#194#255#223#223#223#255#218#218#218#255#212#212#212 +#255#206#206#206#255#200#200#200#255#184#184#184#255'eee'#255#11#14#14#255#11 - ,#27#28#255'6'#175#177#255';'#204#206#255'6'#201#203#255'0'#198#199#255'+'#195 + +#27#28#255'6'#175#177#255';'#204#206#255'6'#201#203#255'0'#198#199#255'+'#195 +#196#255#27#142#143#255#20'vv'#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#234#230#144#255#192#189'v'#255#1#1#0#254#0#0#0 @@ -3304,7 +3265,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#236#243#255'l'#232#238#255'f'#228#234#255'_'#225#230#255'Y'#221#225#255'R' +#217#221#255'L'#213#217#255'E'#209#213#255'>'#206#208#255','#161#162#255#6#26 +#26#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#136#134'T'#255#3#3#2#246#0#0#0 + ,#230#144#255#234#230#144#255#234#230#144#255#136#134'T'#255#3#3#2#246#0#0#0 +#21#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#3#6#6#237'v'#175 +#178#255#210#249#251#255#136#242#248#255#129#244#251#255#127#243#251#255'z' +#240#247#255't'#236#243#255'm'#233#239#255'g'#229#234#255'`'#225#230#255'Y' @@ -3329,7 +3290,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#255'3'#150#153#255'B'#208#211#255'<'#204#207#255'6'#201#203#255'0'#197#199 +#255#234#230#144#255#234#230#144#255#234#230#144#255#234#230#144#255#234#230 +#144#255'`^;'#253#5#5#3#223#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#3#8#8#222'3'#127#130#255'i'#226 + +#255#255#255#0#255#255#255#0#255#255#255#0#3#8#8#222'3'#127#130#255'i'#226 +#230#255'`'#225#230#255'b'#226#231#255'^'#217#222#255'I'#171#174#255'(ac'#255 +#9#23#24#255#0#0#0#255#26'CE'#255'>'#167#170#255'J'#213#216#255'E'#209#213 +#255'?'#206#209#255':'#203#205#255'4'#200#201#255'.'#196#198#255#234#230#144 @@ -3368,7 +3329,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#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#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 + ,#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#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 @@ -3393,7 +3354,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 +#255#255#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#25#15#15#15#245#255#255#255#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 @@ -3432,7 +3393,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 + ,#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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 @@ -3457,7 +3418,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#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#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 + +'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#239 +#230#190#154#255#248#180#131#255#250#181#131#255#248#178#128#255#243#173'y' @@ -3496,7 +3457,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 - +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 + ,#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#6#0#0 +#177#9#0#0#217#9#0#0#217#9#0#0#217#9#0#0#218',''&'#230',&&'#230',&&'#230',&%' @@ -3521,7 +3482,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#0#0#255'^'#0#0#255#10#0#0#198#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#8#0#0#225'j'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0 + +#255']'#0#0#255#10#0#0#197#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#224'j'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0 @@ -3560,7 +3521,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#255#218#184#184#255'V'#0#0#255#9#0#0#185#9#0#0#218'h'#0#0#255#201#152#152 +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 - +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 + ,#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 +#218#184#184#255'U'#0#0#255#9#0#0#183#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 @@ -3585,7 +3546,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#255'"#,'#253#2#3#18#183#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#0#0#0 - ,#21#2#3#9#229#28#29'$'#250'SSS'#255'aaa'#255'fff'#255'jjj'#255'nnn'#255'rrr' + +#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#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 @@ -3624,7 +3585,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#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#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'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 +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'333-585'#240'353' @@ -3649,7 +3610,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +'d?'#245'494'#235'333N'#255#255#255#0#255#255#255#0'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'm'#194'a'#255'g'#192'['#255'a'#190'U'#255'R'#154'H'#255'5:4'#245'333=' +#255#255#255#0#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 @@ -3688,7 +3649,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 +#255#255#0#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#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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 @@ -3713,7 +3674,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#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'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 + +#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&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' @@ -3752,7 +3713,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +'3'#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'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 + ,#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#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 @@ -3777,7 +3738,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#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#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 @@ -3816,7 +3777,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#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 + ,#255#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#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 @@ -3841,7 +3802,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#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#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 @@ -3880,7 +3841,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 +#0#0#255#0#0#0#255#0#0#0#255#255#255#255#255#0#0#0#255#255#255#255#255#0#0#0 +#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#21#21#21#255#255 - +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 + ,#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255 +#255#255#255#255#255#255#255#255#255#255#255#255#255#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 @@ -3905,7 +3866,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#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#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#255#255#255#0#0 + +#255#255#0#255#255#255#0#0#0#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#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#0#0#0#255#128#128 @@ -3944,7 +3905,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#255#255#255#0#0#0#0#255#128#128#128#255#0#0#0#255#128#128#128#255#0#0#0#255 +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 - +#255#0' '#255#128#128#128#255#0#0#0#255#255#255#255#0#0#0#0#255#0#0#0#255#0 + ,#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 +#255#255#0#255#255#255#0#255#255#255#0'!!!'#255#128#128#128#255#0#0#0#255#255 @@ -3969,7 +3930,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#250'"#\'#252#2#2#10#246#0#0#0'0'#255#255#255#0#255#255#255#0#255#255#255#0#0 +#0#2'1'#1#1#7#250'>?'#139#255'aa'#230#255'pp'#230#255#29#30'D'#248#3#4#16#218 +#0#0#0#12#255#255#255#0#255#255#255#0#0#0#0#13#3#4#16#220'!"J'#249'ss'#232 - ,#255'dd'#230#255'AA'#141#255#1#2#9#248#0#0#0'*'#255#255#255#0#0#0#2'+'#1#2#10 + +#255'dd'#230#255'AA'#141#255#1#2#9#248#0#0#0'*'#255#255#255#0#0#0#2'+'#1#2#10 +#248';;'#139#255'``'#229#255']]'#230#255'dd'#232#255'||'#232#255' !D'#248#3#4 +#17#216#0#0#0#12#0#0#0#13#4#5#17#219'"#F'#249'~~'#234#255'gg'#233#255'``'#230 +#255'cc'#229#255'=>'#142#254#2#3#13#241#0#0#0#28#1#3#23#197'!"f'#254'WW'#227 @@ -4008,7 +3969,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +'6'#219#255'88'#219#255'66'#214#255#19#20'S'#250#25#25'i'#251'55'#204#255'88' +#220#255'66'#219#255'44'#218#255'11'#218#255'--'#217#255'55'#215#255#11#12'6' +#249#0#1#16#141#1#3#23#194#17#18'X'#254'**'#216#255'**'#216#255'**'#216#255 - +',,'#216#255'//'#217#255'--'#209#255#13#14'D'#251#1#1#12#232#1#2#14#234#13#14 + ,',,'#216#255'//'#217#255'--'#209#255#13#14'D'#251#1#1#12#232#1#2#14#234#13#14 +'D'#251',,'#200#255'//'#217#255'--'#216#255'**'#216#255'**'#216#255'**'#216 +#255#20#21'h'#252#1#3#26#172#0#0#0'0'#1#1#10#246' '#171#255'**'#216#255'**' +#216#255'**'#216#255''''''#206#255#10#11'A'#252#1#1#13#232#0#0#0#23#0#0#0#24 @@ -4033,7 +3994,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +'ngs'#1#6#13'ColorA=000000'#6#13'ColorB=000080'#6#13'ColorC=008000'#6#13'Col' +'orD=008080'#6#13'ColorE=800000'#6#13'ColorF=800080'#6#13'ColorG=808000'#6#13 +'ColorH=808080'#6#13'ColorI=C0C0C0'#6#13'ColorJ=0000FF'#6#13'ColorK=00FF00'#6 - ,#13'ColorL=00FFFF'#6#13'ColorM=FF0000'#6#13'ColorN=FF00FF'#6#13'ColorO=FFFF0' + +#13'ColorL=00FFFF'#6#13'ColorM=FF0000'#6#13'ColorN=FF00FF'#6#13'ColorO=FFFF0' +'0'#6#13'ColorP=FFFFFF'#6#13'ColorQ=C0DCC0'#6#13'ColorR=F0CAA6'#6#13'ColorS=' +'F0FBFF'#6#13'ColorT=A4A0A0'#0#4'left'#3#186#0#3'top'#2'Z'#0#0#18'TSavePictu' +'reDialog'#17'SavePictureDialog'#5'Title'#6#12'Save file as'#10'DefaultExt'#6 @@ -4044,5 +4005,60 @@ LazarusResources.Add('TMainForm','FORMDATA',[ +#11'TSaveDialog'#20'ExportResourceDialog'#5'Title'#6#26'Export as lazarus re' +'source'#10'DefaultExt'#6#4'.lrs'#6'Filter'#6'3Lazarus resource (*.lrs)|*.lr' +'s|Alll files (*.*)|*.*'#11'FilterIndex'#2#0#7'Options'#11#17'ofOverwritePro' - +'mpt'#14'ofEnableSizing'#12'ofViewDetail'#0#4'left'#3#186#0#3'top'#2'~'#0#0#0 + +'mpt'#14'ofEnableSizing'#12'ofViewDetail'#0#4'left'#3#186#0#3'top'#2'~'#0#0 + +#11'TActionList'#10'ActionList'#6'Images'#7#16'ImageListActions'#4'left'#2'p' + +#3'top'#2'X'#0#7'TAction'#7'FileNew'#8'Category'#6#4'File'#7'Caption'#6#7'&N' + +'ew...'#4'Hint'#6#3'New'#10'ImageIndex'#2#0#9'OnExecute'#7#14'FileNewExecute' + +#8'ShortCut'#3'N@'#0#0#7'TAction'#8'FileOpen'#8'Category'#6#4'File'#7'Captio' + +'n'#6#8'&Open...'#4'Hint'#6#4'Open'#10'ImageIndex'#2#1#9'OnExecute'#7#15'Fil' + +'eOpenExecute'#8'ShortCut'#3'O@'#0#0#7'TAction'#8'FileSave'#8'Category'#6#4 + +'File'#7'Caption'#6#5'&Save'#4'Hint'#6#4'Save'#10'ImageIndex'#2#2#9'OnExecut' + +'e'#7#15'FileSaveExecute'#8'ShortCut'#3'S@'#0#0#7'TAction'#10'FileSaveAs'#8 + +'Category'#6#4'File'#7'Caption'#6#11'Save &As...'#4'Hint'#6#7'Save As'#9'OnE' + +'xecute'#7#17'FileSaveAsExecute'#0#0#7'TAction'#9'FileClose'#8'Category'#6#4 + +'File'#7'Caption'#6#6'&Close'#4'Hint'#6#5'Close'#10'ImageIndex'#2#3#9'OnExec' + +'ute'#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'Enabled'#8#4'Hint' + +#6#4'Undo'#10'ImageIndex'#2#4#8'ShortCut'#3'Z@'#0#0#7'TAction'#8'EditRedo'#8 + +'Category'#6#4'Edit'#7'Caption'#6#5'&Redo'#7'Checked'#9#7'Enabled'#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'ImageIndex'#2#6 + +#9'OnExecute'#7#14'EditCutExecute'#8'ShortCut'#3'X@'#0#0#9'TEditCopy'#8'Edit' + +'Copy'#8'Category'#6#4'Edit'#7'Caption'#6#5'&Copy'#4'Hint'#6#4'Copy'#10'Imag' + +'eIndex'#2#7#9'OnExecute'#7#15'EditCopyExecute'#8'ShortCut'#3'C@'#0#0#10'TEd' + +'itPaste'#9'EditPaste'#8'Category'#6#4'Edit'#7'Caption'#6#6'&Paste'#4'Hint'#6 + +#5'Paste'#10'ImageIndex'#2#8#9'OnExecute'#7#16'EditPasteExecute'#8'ShortCut' + +#3'V@'#0#0#11'TEditDelete'#10'EditDelete'#8'Category'#6#4'Edit'#7'Caption'#6 + +#7'&Delete'#4'Hint'#6#6'Delete'#10'ImageIndex'#2#9#9'OnExecute'#7#17'EditDel' + +'eteExecute'#8'ShortCut'#2'.'#0#0#14'TEditSelectAll'#13'EditSelectAll'#8'Cat' + +'egory'#6#4'Edit'#7'Caption'#6#11'Select &All'#4'Hint'#6#10'Select All'#9'On' + +'Execute'#7#20'EditSelectAllExecute'#8'ShortCut'#3'A@'#0#0#7'TAction'#13'Pic' + ,'tureResize'#8'Category'#6#7'Picture'#7'Caption'#6#9'Resize...'#0#0#7'TActio' + +'n'#18'PictureResizePaper'#8'Category'#6#7'Picture'#7'Caption'#6#15'Resize P' + +'aper...'#0#0#7'TAction'#16'FlipHorizontally'#8'Category'#6#11'PictureFlip'#7 + +'Caption'#6#12'Horizontally'#9'OnExecute'#7#23'FlipHorizontallyExecute'#0#0#7 + +'TAction'#14'FlipVertically'#8'Category'#6#11'PictureFlip'#7'Caption'#6#10'V' + +'ertically'#9'OnExecute'#7#21'FlipVerticallyExecute'#0#0#7'TAction'#8'Rotate' + +'90'#8'Category'#6#13'PictureRotate'#7'Caption'#6#11'90Clockwise'#9'OnExecut' + +'e'#7#15'Rotate90Execute'#0#0#7'TAction'#9'Rotate180'#8'Category'#6#13'Pictu' + +'reRotate'#7'Caption'#6#12'180Clockwise'#9'OnExecute'#7#16'Rotate180Execute' + +#0#0#7'TAction'#9'Rotate270'#8'Category'#6#13'PictureRotate'#7'Caption'#6#12 + +'270Clockwise'#9'OnExecute'#7#16'Rotate270Execute'#0#0#7'TAction'#12'RotateC' + +'ustom'#8'Category'#6#13'PictureRotate'#7'Caption'#6#9'Custom...'#7'Enabled' + +#8#0#0#7'TAction'#12'ColorsInvert'#8'Category'#6#13'PictureColors'#7'Caption' + +#6#6'Invert'#9'OnExecute'#7#19'ColorsInvertExecute'#0#0#7'TAction'#15'Colors' + +'Grayscale'#8'Category'#6#13'PictureColors'#7'Caption'#6#9'Grayscale'#9'OnEx' + +'ecute'#7#22'ColorsGrayscaleExecute'#0#0#7'TAction'#13'ColorsDisable'#8'Cate' + +'gory'#6#13'PictureColors'#7'Caption'#6#7'Disable'#9'OnExecute'#7#20'ColorsD' + +'isableExecute'#0#0#7'TAction'#15'FileExportAsLRS'#8'Category'#6#4'File'#7'C' + +'aption'#6#19'&Export As *.lrs...'#9'OnExecute'#7#22'FileExportAsLRSExecute' + +#0#0#7'TAction'#10'MaskRemove'#8'Category'#6#4'Mask'#7'Caption'#6#6'Remove'#9 + +'OnExecute'#7#17'MaskRemoveExecute'#0#0#7'TAction'#10'MaskInvert'#8'Category' + +#6#4'Mask'#7'Caption'#6#6'Invert'#9'OnExecute'#7#17'MaskInvertExecute'#0#0#7 + +'TAction'#22'PictureClipPaperToMask'#8'Category'#6#7'Picture'#7'Caption'#6#18 + +'Clip Paper To Mask'#0#0#7'TAction'#12'ViewShowGrid'#8'Category'#6#4'View'#9 + +'AutoCheck'#9#7'Caption'#6#9'Show Grid'#7'Checked'#9#9'OnExecute'#7#19'ViewS' + +'howGridExecute'#0#0#7'TAction'#12'ViewShowMask'#8'Category'#6#4'View'#9'Aut' + +'oCheck'#9#7'Caption'#6#9'Show Mask'#7'Checked'#9#9'OnExecute'#7#19'ViewShow' + +'MaskExecute'#0#0#0#0 ]); diff --git a/applications/lazimageeditor/main.pas b/applications/lazimageeditor/main.pas index 5ff3b8980..d6b742e00 100644 --- a/applications/lazimageeditor/main.pas +++ b/applications/lazimageeditor/main.pas @@ -40,21 +40,45 @@ type { TMainForm } TMainForm = class(TForm) + ActionList: TActionList; checkFuzzy: TCheckBox; + ColorsDisable: TAction; + ColorsGrayscale: TAction; + ColorsInvert: TAction; + EditCopy: TEditCopy; + EditCut: TEditCut; + EditDelete: TEditDelete; + EditPaste: TEditPaste; + EditRedo: TAction; + EditSelectAll: TEditSelectAll; + EditUndo: TEditUndo; + FileClose: TAction; + FileExportAsLRS: TAction; + FileNew: TAction; + FileOpen: TAction; + FileSave: TAction; + FileSaveAs: TAction; + FlipHorizontally: TAction; + FlipVertically: TAction; LabelTolerance1: TLabel; LabelTolerance2: TLabel; + MaskInvert: TAction; + MaskRemove: TAction; Palette: TColorPalette; MenuItemShowGrid: TMenuItem; - MenuItemShowPreview: TMenuItem; PanelTolerance1: TPanel; PanelTolerance2: TPanel; + PictureClipPaperToMask: TAction; + PictureResize: TAction; + PictureResizePaper: TAction; + Rotate180: TAction; + Rotate270: TAction; + Rotate90: TAction; + RotateCustom: TAction; spinFillAlpha: TSpinEdit; - ViewShowMask: TAction; - ViewShowGrid: TAction; MenuItemShowMask: TMenuItem; MenuItemView: TMenuItem; MenuItemClipPaperToMask: TMenuItem; - PictureClipPaperToMask: TAction; Bevel2: TBevel; EditDensity: TEdit; EditRoundness: TEdit; @@ -66,15 +90,9 @@ type LabelMaskTool: TLabel; LabelSize: TLabel; LabelTolerance: TLabel; - MaskInvert: TAction; - MaskRemove: TAction; Bevel1: TBevel; EditSize1: TEdit; - FileExportAsLRS: TAction; - ColorsDisable: TAction; ColorDialog: TColorDialog; - ColorsGrayscale: TAction; - ColorsInvert: TAction; ImageListActions: TImageList; LabelFillOutline: TLabel; LabelZoom: TLabel; @@ -115,28 +133,7 @@ type PanelPaper: TPanel; PanelColors: TPanel; PanelFillOutline: TPanel; - RotateCustom: TAction; - Rotate180: TAction; - Rotate90: TAction; - Rotate270: TAction; - FlipVertically: TAction; - FlipHorizontally: TAction; - PictureResizePaper: TAction; - PictureResize: TAction; ComboBoxZoom: TComboBox; - EditCopy: TEditCopy; - EditCut: TEditCut; - EditDelete: TEditDelete; - EditPaste: TEditPaste; - EditRedo: TAction; - EditSelectAll: TEditSelectAll; - EditUndo: TEditUndo; - FileClose: TAction; - FileSave: TAction; - FileNew: TAction; - ActionList: TActionList; - FileOpen: TAction; - FileSaveAs: TAction; MainMenu: TMainMenu; MenuItem1: TMenuItem; MenuItem3: TMenuItem; @@ -208,6 +205,8 @@ type UpDownSize: TUpDown; UpDownSize1: TUpDown; UpDownTolerance: TUpDown; + ViewShowGrid: TAction; + ViewShowMask: TAction; procedure checkFuzzyChange(Sender: TObject); procedure ColorsDisableExecute(Sender: TObject); procedure ColorsGrayscaleExecute(Sender: TObject); @@ -292,6 +291,7 @@ type procedure UpdatePictureToolsEnabled; procedure UpdateAll; public + procedure FileNewOnStart; property ActivePicture: TPictureBitmap read GetActivePicture; property ActivePicturePage: TPicturePage read GetActivePicturePage; property ActivePictureEdit: TPictureEdit read GetActivePictureEdit; @@ -1021,6 +1021,11 @@ begin end; end; +procedure TMainForm.FileNewOnStart; +begin + Pictures.New(640, 480, clTeal); +end; + procedure TMainForm.FileOpenExecute(Sender: TObject); var I: integer; @@ -1105,8 +1110,8 @@ end; procedure TMainForm.EditCopyExecute(Sender: TObject); begin - if not Pictures.CanEdit then - Exit; + //if not Pictures.CanEdit then + // Exit; ActivePictureEdit.Copy; end; @@ -1148,6 +1153,12 @@ begin if not Pictures.CanEdit then Exit; ActivePictureEdit.SelectAll; + MenuItemCopy.Enabled:=True; + MenuItemPaste.Enabled:=True; + MenuItemDelete.Enabled:=True; + MenuItemCopy.OnClick := @EditCopyExecute; + MenuItemPaste.OnClick := @EditPasteExecute; + MenuItemDelete.OnClick := @EditDeleteExecute; end; procedure TMainForm.ColorsInvertExecute(Sender: TObject); diff --git a/applications/lazimageeditor/newdialog.pas b/applications/lazimageeditor/newdialog.pas index 0205a48eb..3ab679bf3 100644 --- a/applications/lazimageeditor/newdialog.pas +++ b/applications/lazimageeditor/newdialog.pas @@ -58,6 +58,7 @@ var NewDialogForm: TNewDialogForm; implementation + uses IconStrConsts; { TNewDialogForm } diff --git a/applications/lazimageeditor/picturectrls.pas b/applications/lazimageeditor/picturectrls.pas index bba2ae53f..1c9e2f4c9 100644 --- a/applications/lazimageeditor/picturectrls.pas +++ b/applications/lazimageeditor/picturectrls.pas @@ -1099,7 +1099,8 @@ begin if Picture = nil then Exit; BeginDraw; try - Assert(True, 'Implement Paste'); + //Assert(True, 'Implement Paste'); + Picture.PasteFromClipboard; finally EndDraw; end; diff --git a/applications/lazimageeditor/picturemanager.pas b/applications/lazimageeditor/picturemanager.pas index 32ab0ee87..be07a3f54 100644 --- a/applications/lazimageeditor/picturemanager.pas +++ b/applications/lazimageeditor/picturemanager.pas @@ -320,7 +320,8 @@ end; procedure TPictureManager.Paste; begin - if CanEdit then ActivePicturePage.PictureEdit.Paste; + //if CanEdit then + ActivePicturePage.PictureEdit.Paste; end; function TPictureManager.CanEdit: Boolean; diff --git a/applications/lazimageeditor/rgbdrawutils.pas b/applications/lazimageeditor/rgbdrawutils.pas index 0518cbdbd..7fc2970ba 100644 --- a/applications/lazimageeditor/rgbdrawutils.pas +++ b/applications/lazimageeditor/rgbdrawutils.pas @@ -6,7 +6,7 @@ interface uses Classes, SysUtils, LCLType, LCLIntf, LMessages, LCLProc, Controls, Graphics, - Forms, Types, IntfGraphics, FPImage, Math, FPImgCanv, FPCanvas; + Forms, Types, IntfGraphics, FPImage, Math, FPImgCanv, FPCanvas, ClipBrd; type PRGBTripleArray = ^TRGBTripleArray; @@ -45,6 +45,10 @@ type procedure Rotate270; virtual; property ScanLine[Row: integer]: Pointer read GetScanLine; procedure FillEllipse(X1, Y1, X2, Y2: integer); virtual; + procedure CutToClipboard; virtual; + procedure CopyToClipboard; virtual; + procedure PasteFromClipboard; virtual; + procedure Delete; virtual; property FillColor: TColor read GetFillColor write SetFillColor; property OutlineColor: TColor read GetOutlineColor write SetOutlineColor; property PaperColor: TColor read GetPaperColor write SetPaperColor; @@ -425,7 +429,8 @@ begin P := Bitmap.ScanLine[Y]; for X := 0 to (Bitmap.Width - 1) do begin - Gray := Round(0.30 * P^[X].rgbtBlue + 0.59 * P^[X].rgbtGreen + 0.11 * P^[X].rgbtRed); + Gray := Round(0.30 * P^[X].rgbtBlue + 0.59 * P^[X].rgbtGreen + + 0.11 * P^[X].rgbtRed); P^[X].rgbtRed := Gray; P^[X].rgbtGreen := Gray; P^[X].rgbtBlue := Gray; @@ -475,6 +480,39 @@ begin FIntfImgA.Free; end; +procedure TCustomRGBBitmapCore.CutToClipboard; +begin + CopyToClipboard; + Delete; +end; + +procedure TCustomRGBBitmapCore.CopyToClipboard; +begin + ClipBoard.Assign(Self); +end; + +procedure TCustomRGBBitmapCore.PasteFromClipboard; +var + oBmp: TBitmap; +begin + oBmp := TBitmap.Create; + try + oBmp.LoadFromClipboardFormat(PredefinedClipboardFormat(pcfDelphiBitmap)); + //Width := oBmp.Width; + //Height := oBmp.Height; + Canvas.Draw(0, 0, oBmp); + finally + oBmp.Free; + end; +end; + +procedure TCustomRGBBitmapCore.Delete; +begin + Canvas.Brush.Style := bsSolid; + Canvas.Brush.Color := PaperColor; + Canvas.FillRect(0, 0, Width, Height); +end; + procedure TCustomRGBBitmapCore.Assign(Source: TPersistent); begin inherited;