File: frmmain.lfm

package info (click to toggle)
lazarus 2.2.6%2Bdfsg2-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 219,980 kB
  • sloc: pascal: 1,944,919; xml: 357,634; makefile: 270,608; cpp: 57,115; sh: 3,249; java: 609; perl: 297; sql: 222; ansic: 137
file content (755 lines) | stat: -rw-r--r-- 41,965 bytes parent folder | download
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
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
object MainForm: TMainForm
  Left = 515
  Height = 456
  Top = 285
  Width = 755
  ActiveControl = fraEditor.fraConn.TVConnections
  Caption = 'REST Schema designer'
  ClientHeight = 433
  ClientWidth = 755
  Menu = MMain
  OnCloseQuery = FormCloseQuery
  OnCreate = FormCreate
  Position = poDesktopCenter
  SessionProperties = 'Height;Left;Top;Width;MRUSchema.Recent'
  LCLVersion = '2.1.0.0'
  inline fraEditor: TSchemaEditorFrame
    Height = 433
    Width = 755
    Align = alClient
    ClientHeight = 433
    ClientWidth = 755
    DesignLeft = 546
    DesignTop = 298
    inherited fraConn: TfraConnections
      Height = 433
      Width = 203
      Align = alLeft
      ClientHeight = 433
      ClientWidth = 203
      inherited TVConnections: TTreeView
        Height = 376
        Width = 203
      end
      inherited ToolBar1: TToolBar
        Width = 203
        inherited TBSep1: TToolButton
          Height = 30
        end
        inherited ToolButton1: TToolButton
          Height = 30
        end
      end
      inherited Label1: TLabel
        Width = 203
      end
    end
    inherited splConnection: TSplitter
      Height = 433
    end
    inherited fraSchema: TSQLDBRestSchemaEditorFrame
      Left = 208
      Height = 433
      Width = 547
      Align = alClient
      ClientHeight = 433
      ClientWidth = 547
      TabOrder = 2
      inherited PResources: TPanel
        Height = 433
        Width = 170
        ClientHeight = 433
        ClientWidth = 170
        inherited TBResources: TToolBar
          Width = 170
          EdgeInner = esRaised
          EdgeOuter = esLowered
          inherited ToolButton1: TToolButton
            Height = 30
          end
          inherited ToolButton2: TToolButton
            Height = 30
          end
          inherited ToolButton4: TToolButton
            Left = 1
            Top = 30
          end
          inherited ToolButton5: TToolButton
            Left = 31
            Top = 30
          end
        end
        inherited TVResources: TTreeView
          Height = 376
          Width = 170
        end
        inherited LResources: TLabel
          Width = 170
        end
      end
      inherited Splitter1: TSplitter
        Left = 170
        Height = 433
      end
      inherited PDock: TPanel
        Left = 175
        Height = 433
        Width = 372
        ClientHeight = 433
        ClientWidth = 372
        inherited LFrame: TLabel
          Width = 372
        end
      end
    end
  end
  object alMain: TActionList
    Images = ILMain
    left = 10
    top = 10
    object AFileReadConnections: TAction
      Category = 'Connections'
      Caption = 'Read connections'
      ImageIndex = 2
      OnExecute = AFileReadConnectionsExecute
    end
    object AFileWriteConnections: TAction
      Category = 'Connections'
      Caption = 'Write Connections'
      ImageIndex = 3
      OnExecute = AFileWriteConnectionsExecute
    end
    object ALoadSchema: TAction
      Category = 'Schema'
      Caption = 'Load schema'
      ImageIndex = 1
      OnExecute = ALoadSchemaExecute
      ShortCut = 16463
    end
    object ASaveSchema: TAction
      Category = 'Schema'
      Caption = 'Save schema'
      ImageIndex = 0
      OnExecute = ASaveSchemaExecute
      ShortCut = 16467
    end
    object ASaveSchemaAs: TAction
      Category = 'Schema'
      Caption = 'Save schema as'
      ImageIndex = 4
      OnExecute = ASaveSchemaAsExecute
    end
    object ASchemaNew: TAction
      Category = 'Schema'
      Caption = 'New schema'
      ImageIndex = 5
      OnExecute = ASchemaNewExecute
      ShortCut = 16462
    end
    object aQuit: TAction
      Category = 'File'
      Caption = 'Quit'
      ImageIndex = 6
      OnExecute = aQuitExecute
      ShortCut = 16465
    end
  end
  object MMain: TMainMenu
    Images = ILMain
    left = 39
    top = 10
    object MFile: TMenuItem
      Caption = 'File'
      object MIReadConnections: TMenuItem
        Action = AFileReadConnections
      end
      object MWriteConnections: TMenuItem
        Action = AFileWriteConnections
      end
      object N1: TMenuItem
        Caption = '-'
      end
      object MISchemaNew: TMenuItem
        Action = ASchemaNew
      end
      object MISchemaLoad: TMenuItem
        Action = ALoadSchema
      end
      object MISchemaSave: TMenuItem
        Action = ASaveSchema
      end
      object MISaveSchemaAs: TMenuItem
        Action = ASaveSchemaAs
      end
      object MIRecent: TMenuItem
        Caption = 'Recent schemas'
      end
      object MISep2: TMenuItem
        Caption = '-'
      end
      object MIQuit: TMenuItem
        Action = aQuit
      end
    end
  end
  object odConnection: TOpenDialog
    Title = 'Read existing connections file'
    DefaultExt = '.ini'
    Filter = 'INI Files|*.ini|JSON files|*.json'
    Options = [ofFileMustExist, ofEnableSizing]
    left = 120
    top = 352
  end
  object sdConnection: TSaveDialog
    Title = 'Save connection definitions as'
    DefaultExt = '.ini'
    Filter = 'INI Files|*.ini|JSON files|*.json'
    Options = [ofOverwritePrompt, ofPathMustExist, ofEnableSizing]
    left = 120
    top = 296
  end
  object IPSMain: TIniPropStorage
    StoredValues = <>
    Active = False
    OnSaveProperties = IPSMainSaveProperties
    OnRestoreProperties = IPSMainRestoreProperties
    left = 432
    top = 139
  end
  object ILMain: TImageList
    Height = 24
    Width = 24
    left = 423
    top = 63
    Bitmap = {
      4C69070000001800000018000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB98337700000000000000000000
      0000000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB973480000000000000
      0000000000000000000000000000000000000000000000000000DB9834FFDB98
      34FF000000000000000000000000000000000000000000000000000000000000
      00000000000000000000DB9834FFDB9834FFDB9834FFDB9834FFDB9833770000
      0000000000000000000000000000000000000000000000000000DB9834FFDB98
      34FF000000000000000000000000000000000000000000000000000000000000
      00000000000000000000DB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB97
      3480000000000000000000000000000000000000000000000000DB9834FFDB98
      34FF000000000000000000000000000000000000000000000000000000000000
      00000000000000000000DB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FF000000000000000000000000000000000000000000000000000000000000
      00000000000000000000DB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834F9DB983377DE94311FDE94
      311FDB993378DB9834FADB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB98337700000000000000000000
      000000000000DB983579DB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDF95351800000000000000000000
      000000000000D6993319DB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDF95351800000000000000000000
      000000000000D893311ADB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB98337700000000000000000000
      000000000000DB983579DB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834F9DB983377DB9E3115DB9E
      3115DB993378DB9834FADB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      000000000000000000000000000000000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB98337700000000000000000000000000000000000000000000
      000000000000000000000000000000000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834D7DB9834FFDB983377000000000000000000000000000000000000
      000000000000000000000000000000000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9E3115DB9834D3DB9834FFDB9734800000000000000000000000000000
      000000000000000000000000000000000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF00000000DC972E16DB9833D5DB9834FFDB97348000000000000000000000
      000000000000000000000000000000000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF0000000000000000DE9B3717DB9934D6DB9834FFDB973480000000000000
      000000000000000000000000000000000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000DB9B371CDB9834DCDB9834FFDB9734800000
      000000000000000000000000000000000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF00000000000000000000000000000000DB993323DB9834E3DB9834FF0000
      000000000000000000000000000000000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FF0000
      000000000000000000000000000000000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FF0000
      000000000000000000000000000000000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FF0000
      000000000000000000000000000000000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834E3DB99347ADD9A3535E1962D11E1962D110000
      000000000000000000000000000000000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834ABDB92370E000000000000000000000000000000000000
      000000000000000000000000000000000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9833A4FF80000200000000DA983552DB9834C1DB9835EEDB9835EEDB98
      34C1DC973651000000000000000000000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDC98
      34E6D5952B0C00000000DB99347FDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB98357E0000000000000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB99
      347A00000000DA99334BDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDD98344A00000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDD99
      332D00000000DB9734C0DB9834FFDB9834FFDB9834FFDB983588DB983588DB98
      34FFDB9834FFDB9834FFDB9834BF00000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFE699
      330A00000000DB9834F3DB9834FFDB9834FFDB9734800000000000000000DB97
      3480DB9834FFDB9834FFDB9834F200000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDF9F
      400800000000DB9834F3DB9834FFDB9835880000000000000000000000000000
      0000DB983588DB9834FFDB9834F200000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDE96
      322E00000000DB9734C0DB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834BF00000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB99
      347A00000000DA99334BDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDD98344A000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      00000000000000000000DB99347FDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB98357E00000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000DA983552DB9834C1DB9834F7DB9834F7DB98
      34C1DC9736510000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      000000000000000000000000000000000000E1962D11DB9934A2000000000000
      0000000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000DB98354DDC9834E6DB9834FF000000000000
      0000000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000DC98345EDB9835EEDB9834FF000000000000
      0000000000000000000000000000000000000000000000000000DB9834FFDB98
      34FF0000000000000000DB9834FFDB9834FF0000000000000000000000000000
      000000000000000000000000000000000000D893311ADB9833B3000000000000
      0000000000000000000000000000000000000000000000000000DB9834FFDB98
      34FF0000000000000000DB9834FFDB9834FF0000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FF0000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FF0000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FF0000000000000000DB9834FFDB9834FF0000000000000000DB9834FFDB98
      34FF0000000000000000DB9834FFDB9834FF0000000000000000DB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FF0000000000000000DB9834FFDB9834FF0000000000000000DB9834FFDB98
      34FF0000000000000000DB9834FFDB9834FF0000000000000000DB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FF0000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FF0000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9934ACCC9933050000000000000000DB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FF0000000000000000DB9834FFDB9834FF0000000000000000DB9834FFDB98
      34FF0000000000000000DB9834A8BF804004000000000000000000000000DB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FF0000000000000000DB9834FFDB9834FF0000000000000000DB9834FFDB98
      34FF0000000000000000FFAA550300000000DB9833770000000000000000DB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FF0000000000000000DB9834FFDB98
      34FFDB9934ACCC99330500000000DB973480DB9834FF0000000000000000DC96
      3233000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FF0000000000000000DB9834FFDC98
      339FFFAA550300000000DB973480DB9834FFDB9834FF00000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000DB9834FFFFAA
      550300000000DB983377DB9834FFDB9834FFDB9834FFDB9834FFDC9834E6DB98
      34BEDC99335FFFFF000100000000000000000000000000000000000000000000
      0000DB9834A1E1962D1100000000000000000000000000000000DB9834FFFFAA
      550300000000DB983588DB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDA9735A0FFFF0001000000000000000000000000000000000000
      0000DB9834FFDB9734EADB993355000000000000000000000000DB9834FFDC98
      34ADCC99330500000000DB983588DB9834FFDB9834FF00000000D6993319DC97
      3565DB9834F2DB9834FFDA983561000000000000000000000000000000000000
      0000DB9834FFDB9835EEDB97345D000000000000000000000000DB9834FFDB98
      34FFDB9934A2FF80000200000000DB983588DB9834FF00000000000000000000
      0000DC98345EDB9834FFDB9834C8000000000000000000000000000000000000
      0000DB9835AADB9E311500000000000000000000000000000000000000000000
      000000000000000000000000000000000000DB98358800000000000000000000
      0000DF9F3010DB9834FFDB9834F0000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      000000000000DB9834FFDB9834FF000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      000000000000DB9834FFDB9834FF000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      000000000000000000000000000000000000E1962D11DB9934A2000000000000
      0000000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000DB98354DDC9834E6DB9834FF000000000000
      0000000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000DC98345EDB9835EEDB9834FF000000000000
      0000000000000000000000000000000000000000000000000000DB9834FFDB98
      34FF0000000000000000DB9834FFDB9834FF0000000000000000000000000000
      000000000000000000000000000000000000D893311ADB9833B3000000000000
      0000000000000000000000000000000000000000000000000000DB9834FFDB98
      34FF0000000000000000DB9834FFDB9834FF0000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FF0000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FF0000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FF0000000000000000DB9834FFDB9834FF0000000000000000DB9834FFDB98
      34FF0000000000000000DB9834FFDB9834FF0000000000000000DB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FF0000000000000000DB9834FFDB9834FF0000000000000000DB9834FFDB98
      34FF0000000000000000DB9834FFDB9834FF0000000000000000DB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FF0000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FF0000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834E3DC993373DD99332DE1962D11D893311ADD99
      333C000000000000000000000000000000000000000000000000DB9834FFDB98
      34FF0000000000000000DB9834FFDB9834FF0000000000000000DB9834FFDB98
      34FF0000000000000000D1A22E0B000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000DB9834FFDB98
      34FF0000000000000000DB9834FFDB9834FF0000000000000000DB9834FFDB98
      34FF000000000000000000000000DA973453DC9835C2DB9835EEDB9835EEDB98
      34C1DA9835520000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FF0000000000000000DB9834FFDB98
      34E7DF9F301000000000DB98348FDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDA98338B00000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FF0000000000000000DB9834FFDA98
      337C00000000DA973453DB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34F2DB9734EADB9834FFDC993350000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000DB9834FFDE96
      322E00000000DC9835C2DB9834FFDB9835E9DB9834F2DB9834FFDB9834F1DC9A
      353ADC97342CDB9835E9DB9834BF000000000000000000000000000000000000
      0000DB9834A1E1962D1100000000000000000000000000000000DB9834FFE38E
      390900000000DB9834F3DB9835E9DB9A352BDC97343BDB9834E3DB9836390000
      0000D89B3621DB9834E1DB9834F1000000000000000000000000000000000000
      0000DB9834FFDB9734E5DA97324C000000000000000000000000DB9834FFE196
      2D1100000000DB9834F4DB9834E1D797382000000000DB92240700000000DE94
      311FDB9934E0DB9834FFDB9834F2000000000000000000000000000000000000
      0000DB9834FFDB9835EEDB97345D000000000000000000000000DB9834FFD997
      343600000000DC9835C2DB9834FFDC9833DFDD99331E00000000DD99331EDB98
      34DEDB9834FFDB9834FFDB9834BF000000000000000000000000000000000000
      0000DB9835AADB9E311500000000000000000000000000000000000000000000
      000000000000DB98354DDB9834FFDB9834FFDB9834DCDB983639DB9834DCDB98
      34FFDB9834FFDB9834FFDD98344A000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      00000000000000000000DB983381DB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB98357E00000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000DA973453DC9835C2DB9834F7DB9834F7DB98
      34C1DC9736510000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB98337700000000000000000000
      0000000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB973480000000000000
      0000000000000000000000000000000000000000000000000000DB9834FFDB98
      34FF000000000000000000000000000000000000000000000000000000000000
      00000000000000000000DB9834FFDB9834FFDB9834FFDB9834FFDB9833770000
      0000000000000000000000000000000000000000000000000000DB9834FFDB98
      34FF000000000000000000000000000000000000000000000000000000000000
      00000000000000000000DB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB97
      3480000000000000000000000000000000000000000000000000DB9834FFDB98
      34FF000000000000000000000000000000000000000000000000000000000000
      00000000000000000000DB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FF000000000000000000000000000000000000000000000000000000000000
      00000000000000000000DB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834F9DB99347ADB9933230000
      000000000000000000000000000000000000DA963522DB9934ACDB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDA97347600000000000000000000
      00000000000000000000000000000000000000000000FFAA5503DB9735A5DB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDF9F301000000000000000000000
      00000000000000000000DB9834FFDB9834FFDB98337700000000FFAA5503DC98
      34A6000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFE1962D1100000000000000000000
      00000000000000000000DB9834FFDB9834FFDB9834FFDB98337700000000FFAA
      5503000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDA99347500000000000000000000
      00000000000000000000DB983588DB9834FFDB9834FFDB9834FFDB9933780000
      0000000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834F9DB983377DF953518D997
      391BDB97355BFFAA550300000000DB983588DB9834FFDB9834FFDB9834FFDB99
      3378000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDC9834ADCC99330500000000DB983377DB9834FFDB9834FFDB98
      34FFDC9934890000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834A1FF80000200000000DB973587DB9834FFDB98
      34FFDC9835C2D5952B0C00000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000DA973476DC97
      34BBD997391BDB9834CDDB973485000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      000000000000000000000000000000000000000000000000000000000000D89D
      3B0DDA9834C3DB9834FFDB983588000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000DB99347ADB97348000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      000000000000000000000000000000000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB98337700000000000000000000000000000000000000000000
      000000000000000000000000000000000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9934E0DB9834FFDB983377000000000000000000000000000000000000
      000000000000000000000000000000000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9B371CDB9934DBDB9834FFDB9734800000000000000000000000000000
      000000000000000000000000000000000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF00000000DB9B371CDB9834DCDB9834FFDB97348000000000000000000000
      000000000000000000000000000000000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF0000000000000000DC95351DDB9834DCDB9834FFDB973480000000000000
      000000000000000000000000000000000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000DC95351DDB9834DDDB9834FFDB9734800000
      000000000000000000000000000000000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF00000000000000000000000000000000DC953224DB9834E3DB9834FF0000
      000000000000000000000000000000000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FF0000
      000000000000000000000000000000000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FF0000
      000000000000000000000000000000000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FF0000
      000000000000000000000000000000000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FF0000
      000000000000000000000000000000000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FF0000
      000000000000000000000000000000000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FF0000
      000000000000000000000000000000000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FF0000
      000000000000000000000000000000000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FF0000
      000000000000000000000000000000000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FF0000
      000000000000000000000000000000000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FF0000
      000000000000000000000000000000000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FF0000
      000000000000000000000000000000000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FF0000
      000000000000000000000000000000000000000000000000000000000000DB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FF0000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDC983497DB9734EADB9834FFDB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB98349400000000DC97342CDB9835E9DB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834EFDC96323300000000DD983725DB9833E4DB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834EBDD99332D00000000DD983725DB98
      33E4000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FF0000000000000000000000000000
      000000000000000000000000000000000000000000000000000000000000DA95
      3229000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FF0000000000000000000000000000
      000000000000000000000000000000000000000000000000000000000000DA95
      3229000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834EBDA9A353000000000DB98372ADB98
      34E8000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9734E5D896342700000000DD983634DB9834EFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB98339500000000DC97342CDB9835E9DB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDC983497DB9734EADB9834FFDB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000000000000000000000000000DB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB9834FFDB98
      34FF000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000
    }
  end
  object SDSchema: TSaveDialog
    Title = 'Save schema to file'
    DefaultExt = '.srs'
    Filter = 'SQLDB Rest Schema files|*.srs|All files|*.*'
    Options = [ofOverwritePrompt, ofPathMustExist, ofEnableSizing]
    left = 43
    top = 293
  end
  object ODSchema: TOpenDialog
    Title = 'Open existing schema file'
    DefaultExt = '.srs'
    Filter = 'SQLDB Rest Schema files|*.srs|All files|*.*'
    Options = [ofFileMustExist, ofEnableSizing]
    left = 40
    top = 352
  end
  object MRUSchema: TMRUMenuManager
    MenuItem = MIRecent
    MenuCaptionMask = '%0:d.  %1:s'
    OnRecentFile = MRUSchemaRecentFile
    left = 541
    top = 88
  end
end