File: h2pasdlg.lfm

package info (click to toggle)
lazarus 2.0.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 214,460 kB
  • sloc: pascal: 1,862,622; xml: 265,709; cpp: 56,595; sh: 3,008; java: 609; makefile: 535; perl: 297; sql: 222; ansic: 137
file content (578 lines) | stat: -rw-r--r-- 19,704 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
object H2PasDialog: TH2PasDialog
  Left = 245
  Height = 549
  Top = 205
  Width = 785
  ActiveControl = MainPageControl
  Caption = 'H2PasDialog'
  ClientHeight = 549
  ClientWidth = 785
  KeyPreview = True
  OnCloseQuery = FormCloseQuery
  OnCreate = FormCreate
  OnDestroy = FormDestroy
  OnKeyDown = FormKeyDown
  Position = poScreenCenter
  LCLVersion = '0.9.27'
  object MainPageControl: TPageControl
    AnchorSideBottom.Control = OpenSettingsButton
    Left = 0
    Height = 502
    Top = 0
    Width = 785
    ActivePage = FilesTabSheet
    Align = alTop
    Anchors = [akTop, akLeft, akRight, akBottom]
    TabIndex = 0
    TabOrder = 4
    object FilesTabSheet: TTabSheet
      Caption = 'FilesTabSheet'
      ClientHeight = 475
      ClientWidth = 783
      object CHeaderFilesCheckTreeView: TTreeView
        Left = 0
        Height = 475
        Top = 0
        Width = 255
        Align = alLeft
        DefaultItemHeight = 19
        ReadOnly = True
        StateImages = FileStateImageList
        TabOrder = 0
        OnDblClick = CHeaderFilesCheckTreeViewDblClick
        OnMouseDown = CHeaderFilesCheckTreeViewMouseDown
        OnSelectionChanged = CHeaderFilesCheckTreeViewSelectionChanged
        Options = [tvoAllowMultiselect, tvoAutoItemHeight, tvoHideSelection, tvoKeepCollapsedNodes, tvoReadOnly, tvoShowButtons, tvoShowLines, tvoShowRoot, tvoToolTips]
      end
      object AddCHeadersButton: TButton
        AnchorSideLeft.Control = CHeaderFilesSplitter1
        AnchorSideLeft.Side = asrBottom
        Left = 266
        Height = 25
        Top = 12
        Width = 185
        BorderSpacing.Left = 6
        BorderSpacing.InnerBorder = 4
        Caption = 'AddCHeadersButton'
        OnClick = AddCHeadersButtonClick
        TabOrder = 1
      end
      object DeleteCHeadersButton: TButton
        AnchorSideLeft.Control = CHeaderFilesSplitter1
        AnchorSideLeft.Side = asrBottom
        Left = 266
        Height = 25
        Top = 40
        Width = 185
        BorderSpacing.Left = 6
        BorderSpacing.InnerBorder = 4
        Caption = 'DeleteCHeadersButton'
        OnClick = DeleteCHeadersButtonClick
        TabOrder = 2
      end
      object EnableAllCHeadersButton: TButton
        AnchorSideLeft.Control = CHeaderFilesSplitter1
        AnchorSideLeft.Side = asrBottom
        Left = 266
        Height = 25
        Top = 72
        Width = 185
        BorderSpacing.Left = 6
        BorderSpacing.InnerBorder = 4
        Caption = 'EnableAllCHeadersButton'
        OnClick = EnableAllCHeadersButtonClick
        TabOrder = 3
      end
      object DisableAllCHeadersButton: TButton
        AnchorSideLeft.Control = CHeaderFilesSplitter1
        AnchorSideLeft.Side = asrBottom
        Left = 266
        Height = 25
        Top = 104
        Width = 185
        BorderSpacing.Left = 6
        BorderSpacing.InnerBorder = 4
        Caption = 'DisableAllCHeadersButton'
        OnClick = DisableAllCHeadersButtonClick
        TabOrder = 4
      end
      object CHeaderFilesSplitter1: TSplitter
        Left = 255
        Height = 475
        Top = 0
        Width = 5
        Beveled = True
      end
      object FileInfoGroupBox: TGroupBox
        AnchorSideLeft.Control = CHeaderFilesSplitter1
        AnchorSideLeft.Side = asrBottom
        AnchorSideRight.Control = FilesTabSheet
        AnchorSideRight.Side = asrBottom
        AnchorSideBottom.Control = FilesTabSheet
        AnchorSideBottom.Side = asrBottom
        Left = 260
        Height = 267
        Top = 208
        Width = 523
        Anchors = [akTop, akLeft, akRight, akBottom]
        Caption = 'FileInfoGroupBox'
        ClientHeight = 248
        ClientWidth = 519
        TabOrder = 5
        object AddIncludedCHeaderFilesButton: TButton
          AnchorSideBottom.Control = FileInfoGroupBox
          AnchorSideBottom.Side = asrBottom
          Left = 8
          Height = 37
          Top = 205
          Width = 224
          Anchors = [akLeft, akBottom]
          AutoSize = True
          BorderSpacing.Around = 6
          BorderSpacing.InnerBorder = 4
          Caption = 'AddIncludedCHeaderFilesButton'
          OnClick = AddIncludedCHeaderFilesButtonClick
          TabOrder = 0
        end
        object FileInfoMemo: TMemo
          AnchorSideLeft.Control = FileInfoGroupBox
          AnchorSideTop.Control = MergeFileCheckBox
          AnchorSideTop.Side = asrBottom
          AnchorSideRight.Control = FileInfoGroupBox
          AnchorSideRight.Side = asrBottom
          AnchorSideBottom.Control = AddIncludedCHeaderFilesButton
          Left = 0
          Height = 180
          Top = 19
          Width = 519
          Anchors = [akTop, akLeft, akRight, akBottom]
          Color = clNone
          ReadOnly = True
          TabOrder = 1
        end
        object MergeFileCheckBox: TCheckBox
          Left = 8
          Height = 22
          Top = -3
          Width = 147
          Caption = 'MergeFileCheckBox'
          OnEditingDone = MergeFileCheckBoxEditingDone
          TabOrder = 2
        end
      end
      object MoveFileUpButton: TButton
        AnchorSideLeft.Control = AddCHeadersButton
        AnchorSideTop.Control = DisableAllCHeadersButton
        AnchorSideTop.Side = asrBottom
        AnchorSideRight.Control = AddCHeadersButton
        AnchorSideRight.Side = asrBottom
        Left = 266
        Height = 25
        Top = 135
        Width = 185
        Anchors = [akTop, akLeft, akRight]
        BorderSpacing.Top = 6
        BorderSpacing.InnerBorder = 4
        Caption = 'MoveFileUpButton'
        OnClick = MoveFileUpButtonClick
        TabOrder = 6
      end
      object MoveFileDownButton: TButton
        AnchorSideLeft.Control = AddCHeadersButton
        AnchorSideTop.Control = MoveFileUpButton
        AnchorSideTop.Side = asrBottom
        AnchorSideRight.Control = AddCHeadersButton
        AnchorSideRight.Side = asrBottom
        Left = 266
        Height = 25
        Top = 166
        Width = 185
        Anchors = [akTop, akLeft, akRight]
        BorderSpacing.Top = 6
        BorderSpacing.InnerBorder = 4
        Caption = 'MoveFileDownButton'
        OnClick = MoveFileDownButtonClick
        TabOrder = 7
      end
      object MergeAllCHeadersExceptCurrentButton: TButton
        Left = 486
        Height = 25
        Top = 12
        Width = 184
        BorderSpacing.InnerBorder = 4
        Caption = 'MergeAllCHeadersExceptCurrentButton'
        OnClick = MergeAllCHeadersExceptCurrentButtonClick
        TabOrder = 8
      end
    end
    object PreH2PasTabSheet: TTabSheet
      Caption = 'PreH2PasTabSheet'
      ClientHeight = 475
      ClientWidth = 783
      object PreH2PasGroupBox: TGroupBox
        Left = 0
        Height = 475
        Top = 0
        Width = 783
        Align = alClient
        Caption = 'PreH2PasGroupBox'
        TabOrder = 0
      end
    end
    object h2pasOptionsTabSheet: TTabSheet
      Caption = 'h2pasOptionsTabSheet'
      ClientHeight = 475
      ClientWidth = 783
      object LibNameLabel: TLabel
        AnchorSideTop.Control = LibnameEdit
        AnchorSideTop.Side = asrCenter
        Left = 6
        Height = 18
        Top = 278
        Width = 92
        BorderSpacing.Top = 10
        Caption = 'LibNameLabel'
        ParentColor = False
      end
      object OutputExtLabel: TLabel
        AnchorSideTop.Control = OutputExtEdit
        AnchorSideTop.Side = asrCenter
        Left = 6
        Height = 18
        Top = 310
        Width = 99
        Caption = 'OutputExtLabel'
        ParentColor = False
      end
      object OutputDirLabel: TLabel
        AnchorSideTop.Control = OutputDirEdit
        AnchorSideTop.Side = asrCenter
        Left = 6
        Height = 18
        Top = 339
        Width = 97
        Caption = 'OutputDirLabel'
        ParentColor = False
      end
      object LibnameEdit: TEdit
        AnchorSideLeft.Control = LibNameLabel
        AnchorSideLeft.Side = asrBottom
        AnchorSideTop.Side = asrBottom
        Left = 104
        Height = 23
        Top = 276
        Width = 113
        BorderSpacing.Left = 6
        BorderSpacing.Top = 6
        OnEditingDone = LibnameEditEditingDone
        TabOrder = 0
        Text = 'LibnameEdit'
      end
      object OutputExtEdit: TEdit
        AnchorSideLeft.Control = OutputExtLabel
        AnchorSideLeft.Side = asrBottom
        AnchorSideTop.Side = asrBottom
        Left = 111
        Height = 23
        Top = 308
        Width = 80
        BorderSpacing.Left = 6
        BorderSpacing.Top = 6
        OnEditingDone = OutputExtEditEditingDone
        TabOrder = 1
        Text = 'OutputExtEdit'
      end
      object OutputDirEdit: TEdit
        AnchorSideLeft.Control = OutputDirLabel
        AnchorSideLeft.Side = asrBottom
        AnchorSideTop.Control = OutputExtEdit
        AnchorSideTop.Side = asrBottom
        Left = 109
        Height = 23
        Top = 337
        Width = 397
        BorderSpacing.Left = 6
        BorderSpacing.Top = 6
        OnEditingDone = OutputDirEditEditingDone
        TabOrder = 2
        Text = 'OutputDirEdit'
      end
      object OutputDirBrowseButton: TButton
        AnchorSideLeft.Control = OutputDirEdit
        AnchorSideLeft.Side = asrBottom
        AnchorSideTop.Control = OutputDirEdit
        AnchorSideBottom.Control = OutputDirEdit
        AnchorSideBottom.Side = asrBottom
        Left = 506
        Height = 23
        Top = 337
        Width = 32
        Anchors = [akTop, akLeft, akBottom]
        BorderSpacing.InnerBorder = 4
        Caption = '...'
        OnClick = OutputDirBrowseButtonClick
        TabOrder = 3
      end
      object h2pasOptionsCheckGroup: TCheckGroup
        Left = 6
        Height = 264
        Top = 4
        Width = 768
        AutoFill = True
        Caption = 'h2pasOptionsCheckGroup'
        ChildSizing.LeftRightSpacing = 6
        ChildSizing.TopBottomSpacing = 6
        ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
        ChildSizing.EnlargeVertical = crsHomogenousChildResize
        ChildSizing.ShrinkHorizontal = crsScaleChilds
        ChildSizing.ShrinkVertical = crsScaleChilds
        ChildSizing.Layout = cclLeftToRightThenTopToBottom
        ChildSizing.ControlsPerLine = 2
        Columns = 2
        OnItemClick = h2pasOptionsCheckGroupItemClick
        TabOrder = 4
      end
    end
    object PostH2PasTabSheet: TTabSheet
      Caption = 'PostH2PasTabSheet'
      ClientHeight = 475
      ClientWidth = 783
      object PostH2PasGroupBox: TGroupBox
        Left = 0
        Height = 475
        Top = 0
        Width = 783
        Align = alClient
        Caption = 'PostH2PasGroupBox'
        TabOrder = 0
      end
    end
    object SettingsTabSheet: TTabSheet
      Caption = 'SettingsTabSheet'
      ClientHeight = 475
      ClientWidth = 783
      object H2PasFilenameLabel: TLabel
        AnchorSideTop.Control = H2PasFilenameEdit
        AnchorSideTop.Side = asrCenter
        Left = 6
        Height = 18
        Top = 6
        Width = 132
        Caption = 'H2PasFilenameLabel'
        ParentColor = False
      end
      object OpenLastProjectOnStartCheckBox: TCheckBox
        Left = 6
        Height = 22
        Top = 42
        Width = 242
        Caption = 'OpenLastProjectOnStartCheckBox'
        OnChange = OpenLastProjectOnStartCheckBoxChange
        TabOrder = 0
      end
      object SaveSettingsAsButton: TButton
        Left = 6
        Height = 37
        Top = 82
        Width = 164
        AutoSize = True
        BorderSpacing.InnerBorder = 4
        Caption = 'SaveSettingsAsButton'
        OnClick = SaveSettingsAsButtonClick
        TabOrder = 1
      end
      object H2PasFilenameEdit: TEdit
        AnchorSideLeft.Control = H2PasFilenameLabel
        AnchorSideLeft.Side = asrBottom
        Left = 144
        Height = 23
        Top = 4
        Width = 352
        BorderSpacing.Left = 6
        BorderSpacing.Top = 6
        OnEditingDone = H2PasFilenameEditEditingDone
        TabOrder = 2
        Text = 'H2PasFilenameEdit'
      end
      object h2pasFilenameBrowseButton: TButton
        AnchorSideLeft.Control = H2PasFilenameEdit
        AnchorSideLeft.Side = asrBottom
        AnchorSideTop.Control = H2PasFilenameEdit
        AnchorSideBottom.Control = H2PasFilenameEdit
        AnchorSideBottom.Side = asrBottom
        Left = 496
        Height = 23
        Top = 4
        Width = 35
        Anchors = [akTop, akLeft, akBottom]
        BorderSpacing.InnerBorder = 4
        Caption = '...'
        OnClick = h2pasFilenameBrowseButtonClick
        TabOrder = 3
      end
      object NewSettingsButton: TButton
        Left = 6
        Height = 37
        Top = 124
        Width = 143
        AutoSize = True
        BorderSpacing.InnerBorder = 4
        Caption = 'NewSettingsButton'
        OnClick = NewSettingsButtonClick
        TabOrder = 4
      end
    end
  end
  object OpenSettingsButton: TButton
    AnchorSideLeft.Control = Owner
    AnchorSideBottom.Control = Owner
    AnchorSideBottom.Side = asrBottom
    Left = 5
    Height = 37
    Top = 507
    Width = 150
    Anchors = [akLeft, akBottom]
    AutoSize = True
    BorderSpacing.Around = 5
    BorderSpacing.InnerBorder = 4
    Caption = 'OpenSettingsButton'
    OnClick = OpenSettingsButtonClick
    TabOrder = 1
  end
  object SaveSettingsButton: TButton
    AnchorSideLeft.Control = OpenSettingsButton
    AnchorSideLeft.Side = asrBottom
    AnchorSideBottom.Control = Owner
    AnchorSideBottom.Side = asrBottom
    Left = 160
    Height = 37
    Top = 507
    Width = 148
    Anchors = [akLeft, akBottom]
    AutoSize = True
    BorderSpacing.Around = 5
    BorderSpacing.InnerBorder = 4
    Caption = 'SaveSettingsButton'
    OnClick = SaveSettingsButtonClick
    TabOrder = 2
  end
  object ConvertButton: TButton
    AnchorSideLeft.Control = SaveSettingsButton
    AnchorSideLeft.Side = asrBottom
    AnchorSideTop.Control = OpenSettingsButton
    Left = 323
    Height = 37
    Top = 507
    Width = 113
    AutoSize = True
    BorderSpacing.Left = 15
    BorderSpacing.InnerBorder = 4
    Caption = 'ConvertButton'
    OnClick = ConvertButtonClick
    TabOrder = 0
  end
  object CloseButton: TButton
    AnchorSideRight.Control = Owner
    AnchorSideRight.Side = asrBottom
    AnchorSideBottom.Control = Owner
    AnchorSideBottom.Side = asrBottom
    Left = 682
    Height = 37
    Top = 507
    Width = 98
    Anchors = [akRight, akBottom]
    AutoSize = True
    BorderSpacing.Around = 5
    BorderSpacing.InnerBorder = 4
    Caption = 'CloseButton'
    OnClick = CloseButtonClick
    TabOrder = 3
  end
  object ConvertAndBuildButton: TButton
    AnchorSideLeft.Control = ConvertButton
    AnchorSideLeft.Side = asrBottom
    AnchorSideTop.Control = OpenSettingsButton
    Left = 442
    Height = 37
    Top = 507
    Width = 169
    AutoSize = True
    BorderSpacing.Left = 6
    BorderSpacing.InnerBorder = 4
    Caption = 'ConvertAndBuildButton'
    OnClick = ConvertAndBuildButtonClick
    TabOrder = 5
  end
  object FileStateImageList: TImageList
    Masked = False
    left = 136
    top = 94
    Bitmap = {
      4C690200000010000000100000000000000000000000440000FF440000FF5500
      00FF550000FF440000FF440000FF440000FF440000FF00000000000000000000
      00000000000000000000000000000000000000000000440000FF1414FFFF1414
      FFFF840000FF840000FF840000FF840000FF440000FF000000001414FFFF1414
      FFFF0000000000000000000000000000000000000000330000FFFFFFFFFF1414
      FFFF1414FFFFFFFFFFFFFFFFFFFFEFD5D5FF440000FF1414FFFF1414FFFF0000
      00000000000000000000000000000000000000000000330000FFCBCBCBFFFFFF
      FFFF1414FFFF1414FFFF440000FF440000FF1414FFFF1414FFFF440000FF4400
      00FF0000000000000000000000000000000000000000000000FFFFFFFFFFFFFF
      FFFF440000FF1414FFFF1414FFFF1414FFFF1414FFFF440000FF440000FF4400
      00FF000000000000000000000000440000FF440000FF440000FF550000FF5500
      00FF330000FFFFFFFFFF1414FFFF1414FFFFFFFFFFFFFFFFFFFFEFD5D5FF0000
      00FFFFFFFFFF0000000000000000440000FF440000FF440000FF440000FF4400
      00FF330000FF1414FFFF1414FFFF1414FFFF1414FFFFEFD5D5FFEFD5D5FF0000
      00FFFFFFFFFF0000000000000000440000FFFFFFFFFFCBCBCBFFFFFFFFFFFFFF
      FFFF1414FFFF1414FFFFFFFFFFFFFFFFFFFF1414FFFF1414FFFFEFD5D5FF0000
      00FFFFFFFFFF0000000000000000440000FFCBCBCBFFFFFFFFFFFFFFFFFF1414
      FFFF1414FFFFFFFFFFFFEFD5D5FFEFD5D5FFEFD5D5FF1414FFFF1414FFFF0000
      00FFFFFFFFFF0000000000000000440000FFFFFFFFFFFFFFFFFF1414FFFF1414
      FFFF000000FF000000FF000000FF000000FF000000FF000000FF1414FFFF1414
      FFFFFFFFFFFF0000000000000000440000FFFFFFFFFF1414FFFF1414FFFFEFD5
      D5FFEFD5D5FFEFD5D5FF000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1414
      FFFFFFFFFFFF0000000000000000440000FF1414FFFF1414FFFF000000FF0000
      00FF000000FF000000FF000000FFFFFFFFFF0000000000000000000000000000
      000000000000000000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFF
      FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      00000000000000000000000000000000000000000000440000FF440000FF5500
      00FF550000FF440000FF440000FF440000FF440000FF00000000000000000000
      00000000000000000000000000000000000000000000440000FF840000FF8400
      00FF840000FF840000FF840000FF840000FF440000FF00000000000000000000
      00000000000000000000000000000000000000000000330000FFFFFFFFFFCBCB
      CBFFFFFFFFFFFFFFFFFFFFFFFFFFEFD5D5FF440000FFFFFFFFFF000000000000
      00000000000000000000000000000000000000000000330000FFCBCBCBFFFFFF
      FFFF440000FF440000FF440000FF440000FF440000FF440000FF440000FF4400
      00FF0000000000000000000000000000000000000000000000FFFFFFFFFFFFFF
      FFFF440000FF440000FF440000FF440000FF440000FF440000FF440000FF4400
      00FF000000000000000000000000440000FF440000FF440000FF550000FF5500
      00FF330000FFFFFFFFFFCBCBCBFFFFFFFFFFFFFFFFFFFFFFFFFFEFD5D5FF0000
      00FFFFFFFFFF0000000000000000440000FF440000FF440000FF440000FF4400
      00FF330000FFCBCBCBFFFFFFFFFFFFFFFFFFFFFFFFFFEFD5D5FFEFD5D5FF0000
      00FFFFFFFFFF0000000000000000440000FFFFFFFFFFCBCBCBFFFFFFFFFFFFFF
      FFFF000000FFFFFFFFFFFFFFFFFFFFFFFFFFEFD5D5FFFFFFFFFFEFD5D5FF0000
      00FFFFFFFFFF0000000000000000440000FFCBCBCBFFFFFFFFFFFFFFFFFFFFFF
      FFFF000000FFFFFFFFFFEFD5D5FFEFD5D5FFEFD5D5FFEFD5D5FFEFD5D5FF0000
      00FFFFFFFFFF0000000000000000440000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
      FFFF000000FF000000FF000000FF000000FF000000FF000000FF000000FF0000
      00FFFFFFFFFF0000000000000000440000FFFFFFFFFFEFD5D5FFEFD5D5FFEFD5
      D5FFEFD5D5FFEFD5D5FF000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
      FFFFFFFFFFFF0000000000000000440000FF000000FF000000FF000000FF0000
      00FF000000FF000000FF000000FFFFFFFFFF0000000000000000000000000000
      000000000000000000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFF
      FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000
    }
  end
end