-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathProxyFormUnit.fmx
2052 lines (2052 loc) · 125 KB
/
ProxyFormUnit.fmx
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
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
object MainForm: TMainForm
Left = 0
Top = 0
Caption = 'Ceton HDHomeRun Proxy'
ClientHeight = 537
ClientWidth = 400
Fill.Kind = Solid
Position = ScreenCenter
StyleBook = StyleBook1
FormFactor.Width = 320
FormFactor.Height = 480
FormFactor.Devices = [Desktop, iPhone, iPad]
OnCreate = FormCreate
OnDestroy = FormDestroy
OnMouseWheel = FormMouseWheel
OnShow = FormShow
DesignerMasterStyle = 0
object VertScrollBox1: TVertScrollBox
Align = Client
Size.Width = 400.000000000000000000
Size.Height = 537.000000000000000000
Size.PlatformDefault = False
TabOrder = 3
Viewport.Width = 400.000000000000000000
Viewport.Height = 537.000000000000000000
object OuterPanelContainer: TLayout
Align = Top
Size.Width = 400.000000000000000000
Size.Height = 529.000000000000000000
Size.PlatformDefault = False
TabOrder = 0
object PanelContainer: TLayout
Align = Top
Size.Width = 400.000000000000000000
Size.Height = 1000.000000000000000000
Size.PlatformDefault = False
TabOrder = 0
object pnlAdvancedSettings: TExpander
Align = Top
IsExpanded = False
Margins.Left = 3.000000000000000000
Margins.Top = 3.000000000000000000
Margins.Right = 3.000000000000000000
Margins.Bottom = 3.000000000000000000
Position.X = 3.000000000000000000
Position.Y = 68.000000000000000000
ShowCheck = False
Size.Width = 394.000000000000000000
Size.Height = 20.000000000000000000
Size.PlatformDefault = False
Text = 'Advanced Settings'
TabOrder = 1
OnMouseDown = PanelMouseDown
OnResized = PanelResizing
ContentSize = '156'
object Label7: TLabel
Position.X = 15.000000000000000000
Position.Y = 130.000000000000000000
Size.Width = 196.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
Text = 'External HTTP port as HDHomeRun:'
ParentShowHint = False
ShowHint = True
TabOrder = 7
TabStop = False
end
object Label6: TLabel
Position.X = 15.000000000000000000
Position.Y = 103.000000000000000000
Size.Width = 196.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
Text = 'External address as HDHomeRun:'
ParentShowHint = False
ShowHint = True
TabOrder = 8
TabStop = False
end
object Label3: TLabel
Position.X = 15.000000000000000000
Position.Y = 72.000000000000000000
Size.Width = 196.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
Text = 'Listen HTTP port as HDHomeRun:'
ParentShowHint = False
ShowHint = True
TabOrder = 6
TabStop = False
end
object Label4: TLabel
Position.X = 15.000000000000000000
Position.Y = 43.000000000000000000
Size.Width = 196.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
Text = 'Listen IP as HDHomeRun:'
ParentShowHint = False
ShowHint = True
TabOrder = 9
TabStop = False
end
object Label2: TLabel
Position.X = 15.000000000000000000
Position.Y = 12.000000000000000000
Size.Width = 196.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
Text = 'Listen IP for Ceton:'
ParentShowHint = False
ShowHint = True
TabOrder = 5
TabStop = False
end
object ceCetonListenIP: TComboEdit
Touch.InteractiveGestures = [LongTap, DoubleTap]
TabOrder = 0
ItemHeight = 19.000000000000000000
ItemWidth = 300.000000000000000000
ItemIndex = -1
Position.X = 210.000000000000000000
Position.Y = 9.000000000000000000
Hint =
'The local IP address that will be listened on for video data fro' +
'm the Ceton device. Leave blank to auto-detect.'
Size.Width = 150.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
OnChangeTracking = ceCetonListenIPChangeTracking
OnMouseEnter = EditMouseEnter
OnMouseLeave = EditMouseLeave
end
object ceHDHRListenIP: TComboEdit
Touch.InteractiveGestures = [LongTap, DoubleTap]
TabOrder = 1
ItemHeight = 19.000000000000000000
ItemWidth = 300.000000000000000000
ItemIndex = -1
Position.X = 210.000000000000000000
Position.Y = 40.000000000000000000
Hint =
'The local IP address that will be listened on for all HDHomeRun ' +
'requests. Leave blank to auto-detect.'
Size.Width = 150.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
OnChangeTracking = ceHDHRListenIPChangeTracking
OnMouseEnter = EditMouseEnter
OnMouseLeave = EditMouseLeave
end
object eHDHRListenHTTPPort: TEdit
Touch.InteractiveGestures = [LongTap, DoubleTap]
TabOrder = 2
Position.X = 210.000000000000000000
Position.Y = 67.000000000000000000
Hint =
'The port that will be listened on for HDHomeRun video, lineup, a' +
'nd discovery HTTP requests.'
Size.Width = 71.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
OnChangeTracking = eHDHRListenHTTPPortChangeTracking
OnMouseEnter = EditMouseEnter
OnMouseLeave = EditMouseLeave
end
object eHDHRExternalAddress: TEdit
Touch.InteractiveGestures = [LongTap, DoubleTap]
TabOrder = 3
Position.X = 210.000000000000000000
Position.Y = 98.000000000000000000
Hint =
'The address that will be given to DVR software to use for HDHome' +
'Run HTTP video and lineup requests. Leave blank to auto-detect ' +
'based on each request received.'
Size.Width = 150.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
OnChangeTracking = eHDHRExternalAddressChangeTracking
OnMouseEnter = EditMouseEnter
OnMouseLeave = EditMouseLeave
end
object eHDHRExternalHTTPPort: TEdit
Touch.InteractiveGestures = [LongTap, DoubleTap]
TabOrder = 4
Position.X = 210.000000000000000000
Position.Y = 125.000000000000000000
Hint =
'The port that will be given to DVR software to use for HDHomeRun' +
' HTTP video and lineup requests.'
Size.Width = 71.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
OnChangeTracking = eHDHRExternalHTTPPortChangeTracking
OnMouseEnter = EditMouseEnter
OnMouseLeave = EditMouseLeave
end
end
object pnlSettings: TExpander
Align = Top
Margins.Left = 3.000000000000000000
Margins.Top = 3.000000000000000000
Margins.Right = 3.000000000000000000
Margins.Bottom = 3.000000000000000000
Position.X = 3.000000000000000000
Position.Y = 3.000000000000000000
ShowCheck = False
Size.Width = 394.000000000000000000
Size.Height = 59.000000000000000000
Size.PlatformDefault = False
Text = 'Settings'
TabOrder = 0
OnMouseDown = PanelMouseDown
OnResized = PanelResizing
ContentSize = '39'
object Label1: TLabel
Position.X = 15.000000000000000000
Position.Y = 12.000000000000000000
Text = 'Ceton tuner address:'
TabOrder = 1
end
object eCetonTunerAddress: TComboEdit
Touch.InteractiveGestures = [LongTap, DoubleTap]
TabOrder = 0
ItemHeight = 19.000000000000000000
ItemWidth = 300.000000000000000000
ItemIndex = -1
Position.X = 210.000000000000000000
Position.Y = 9.000000000000000000
Hint =
'The local IP address that will be listened on for video data fro' +
'm the Ceton device. Leave blank to auto-detect.'
Size.Width = 150.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
OnChangeTracking = eCetonTunerAddressChangeTracking
end
end
object pnlStatistics: TExpander
Align = Top
Margins.Left = 3.000000000000000000
Margins.Right = 3.000000000000000000
Position.X = 3.000000000000000000
Position.Y = 146.000000000000000000
ShowCheck = False
Size.Width = 394.000000000000000000
Size.Height = 354.000000000000000000
Size.PlatformDefault = False
Text = 'Tuners'
TabOrder = 4
OnMouseDown = PanelMouseDown
OnResized = PanelResizing
ContentSize = '334'
object Layout2: TLayout
Align = Bottom
Position.Y = 300.000000000000000000
Size.Width = 394.000000000000000000
Size.Height = 34.000000000000000000
Size.PlatformDefault = False
TabOrder = 0
object btnShowConfigFolder: TButton
Position.X = 10.000000000000000000
Position.Y = 4.000000000000000000
Size.Width = 121.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
TabOrder = 0
Text = 'Show config folder'
OnClick = btnShowConfigFolderClick
end
end
object lbTuners: TListBox
Align = Client
EnableDragHighlight = False
Margins.Left = 10.000000000000000000
Margins.Top = 9.000000000000000000
Margins.Right = 10.000000000000000000
Size.Width = 374.000000000000000000
Size.Height = 291.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'lbTunersStyle1'
TabOrder = 1
DisableMouseWheel = True
AlternatingRowBackground = True
CanFocus = False
DisableFocusEffect = True
DefaultItemStyles.ItemStyle = ''
DefaultItemStyles.GroupHeaderStyle = ''
DefaultItemStyles.GroupFooterStyle = ''
ShowCheckboxes = True
OnChangeCheck = lbTunersChangeCheck
Viewport.Width = 370.000000000000000000
Viewport.Height = 287.000000000000000000
end
end
object pnlChannels: TExpander
Align = Top
IsExpanded = False
Margins.Left = 3.000000000000000000
Margins.Top = 3.000000000000000000
Margins.Right = 3.000000000000000000
Position.X = 3.000000000000000000
Position.Y = 120.000000000000000000
ShowCheck = False
Size.Width = 394.000000000000000000
Size.Height = 20.000000000000000000
Size.PlatformDefault = False
Text = 'Channels'
TabOrder = 3
OnMouseDown = PanelMouseDown
OnResized = PanelResizing
OnExpandedChanged = pnlChannelsExpandedChanged
ContentSize = '200'
object Layout1: TLayout
Align = Bottom
Position.Y = 166.000000000000000000
Size.Width = 394.000000000000000000
Size.Height = 34.000000000000000000
Size.PlatformDefault = False
TabOrder = 0
object btnRefreshChannels: TButton
Align = Left
Margins.Left = 10.000000000000000000
Margins.Top = 5.000000000000000000
Margins.Bottom = 7.000000000000000000
Position.X = 10.000000000000000000
Position.Y = 5.000000000000000000
Size.Width = 179.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
TabOrder = 0
Text = 'Update channels from Ceton'
OnClick = btnRefreshChannelsClick
end
object lblSelectedChannels: TLabel
Align = Right
Margins.Right = 10.000000000000000000
Position.X = 224.000000000000000000
Size.Width = 160.000000000000000000
Size.Height = 34.000000000000000000
Size.PlatformDefault = False
TextSettings.HorzAlign = Trailing
TabOrder = 1
end
end
object lbChannels: TListBox
Align = Client
Margins.Left = 10.000000000000000000
Margins.Top = 9.000000000000000000
Margins.Right = 10.000000000000000000
Size.Width = 374.000000000000000000
Size.Height = 157.000000000000000000
Size.PlatformDefault = False
TabOrder = 1
DisableFocusEffect = True
DefaultItemStyles.ItemStyle = ''
DefaultItemStyles.GroupHeaderStyle = ''
DefaultItemStyles.GroupFooterStyle = ''
ShowCheckboxes = True
OnChangeCheck = lbChannelsChangeCheck
Viewport.Width = 370.000000000000000000
Viewport.Height = 153.000000000000000000
end
end
object Splitter1: TSplitter
Align = Top
Cursor = crVSplit
MinSize = 20.000000000000000000
Position.Y = 140.000000000000000000
ShowGrip = False
Size.Width = 400.000000000000000000
Size.Height = 6.000000000000000000
Size.PlatformDefault = False
end
object Splitter2: TSplitter
Align = Top
Cursor = crVSplit
MinSize = 20.000000000000000000
Position.Y = 500.000000000000000000
ShowGrip = False
Size.Width = 400.000000000000000000
Size.Height = 6.000000000000000000
Size.PlatformDefault = False
end
object pnlEmailSettings: TExpander
Align = Top
IsExpanded = False
Margins.Left = 3.000000000000000000
Margins.Top = 3.000000000000000000
Margins.Right = 3.000000000000000000
Margins.Bottom = 3.000000000000000000
Position.X = 3.000000000000000000
Position.Y = 94.000000000000000000
ShowCheck = False
Size.Width = 394.000000000000000000
Size.Height = 20.000000000000000000
Size.PlatformDefault = False
Text = 'Email Settings'
TabOrder = 2
OnMouseDown = PanelMouseDown
OnResized = PanelResizing
ContentSize = '291'
object Label11: TLabel
Position.X = 15.000000000000000000
Position.Y = 12.000000000000000000
Size.Width = 196.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
Text = 'Server address (SMTP):'
ParentShowHint = False
ShowHint = True
TabOrder = 10
TabStop = False
end
object eEmailServerAddress: TEdit
Touch.InteractiveGestures = [LongTap, DoubleTap]
TabOrder = 0
Position.X = 210.000000000000000000
Position.Y = 9.000000000000000000
Size.Width = 150.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
OnChangeTracking = eEmailServerAddressChangeTracking
end
object eEmailServerPort: TEdit
Touch.InteractiveGestures = [LongTap, DoubleTap]
TabOrder = 1
Position.X = 210.000000000000000000
Position.Y = 36.000000000000000000
Size.Width = 150.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
OnChangeTracking = eEmailServerPortChangeTracking
end
object Label5: TLabel
Position.X = 15.000000000000000000
Position.Y = 39.000000000000000000
Size.Width = 196.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
Text = 'Server port:'
ParentShowHint = False
ShowHint = True
TabOrder = 8
TabStop = False
end
object Label8: TLabel
Position.X = 15.000000000000000000
Position.Y = 66.000000000000000000
Size.Width = 196.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
Text = 'Security:'
ParentShowHint = False
ShowHint = True
TabOrder = 6
TabStop = False
end
object cbEmailServerSecurity: TComboBox
Items.Strings = (
'Plain'
'TLS'
'SSL')
Position.X = 210.000000000000000000
Position.Y = 63.000000000000000000
Size.Width = 150.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
TabOrder = 2
OnChange = cbEmailServerSecurityChange
end
object Label9: TLabel
Position.X = 15.000000000000000000
Position.Y = 93.000000000000000000
Size.Width = 196.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
Text = 'Username:'
ParentShowHint = False
ShowHint = True
TabOrder = 9
TabStop = False
end
object eEmailServerUsername: TEdit
Touch.InteractiveGestures = [LongTap, DoubleTap]
TabOrder = 3
Position.X = 210.000000000000000000
Position.Y = 90.000000000000000000
Size.Width = 150.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
OnChangeTracking = eEmailServerUsernameChangeTracking
end
object eEmailServerPassword: TEdit
Touch.InteractiveGestures = [LongTap, DoubleTap]
TabOrder = 4
Position.X = 210.000000000000000000
Position.Y = 117.000000000000000000
Size.Width = 150.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
OnChangeTracking = eEmailServerPasswordChangeTracking
end
object Label10: TLabel
Position.X = 15.000000000000000000
Position.Y = 120.000000000000000000
Size.Width = 196.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
Text = 'Password:'
ParentShowHint = False
ShowHint = True
TabOrder = 7
TabStop = False
end
object GroupBox1: TGroupBox
Align = Top
Margins.Left = 10.000000000000000000
Margins.Top = 142.000000000000000000
Margins.Right = 10.000000000000000000
Position.X = 10.000000000000000000
Position.Y = 142.000000000000000000
Size.Width = 374.000000000000000000
Size.Height = 141.000000000000000000
Size.PlatformDefault = False
Text = 'Error Notifications'
TabOrder = 5
object sbErrorEmailFrequency: TSpinBox
Touch.InteractiveGestures = [LongTap, DoubleTap]
TabOrder = 0
Cursor = crIBeam
Max = 1000000.000000000000000000
Value = 30.000000000000000000
Position.X = 144.000000000000000000
Position.Y = 24.000000000000000000
OnChangeTracking = sbErrorEmailFrequencyChangeTracking
end
object Label12: TLabel
Position.X = 15.000000000000000000
Position.Y = 27.000000000000000000
Size.Width = 122.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
Text = 'Frequency:'
ParentShowHint = False
ShowHint = True
TabOrder = 7
TabStop = False
end
object Label13: TLabel
Position.X = 15.000000000000000000
Position.Y = 54.000000000000000000
Size.Width = 114.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
Text = 'Sender:'
ParentShowHint = False
ShowHint = True
TabOrder = 6
TabStop = False
end
object eErrorEmailSender: TEdit
Touch.InteractiveGestures = [LongTap, DoubleTap]
TabOrder = 1
Position.X = 144.000000000000000000
Position.Y = 51.000000000000000000
Size.Width = 206.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
OnChangeTracking = eErrorEmailSenderChangeTracking
end
object Label14: TLabel
Position.X = 15.000000000000000000
Position.Y = 81.000000000000000000
Size.Width = 122.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
Text = 'Recipients:'
ParentShowHint = False
ShowHint = True
TabOrder = 5
TabStop = False
end
object eErrorEmailRecipients: TEdit
Touch.InteractiveGestures = [LongTap, DoubleTap]
TabOrder = 2
Position.X = 144.000000000000000000
Position.Y = 78.000000000000000000
Size.Width = 206.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
OnChangeTracking = eErrorEmailRecipientsChangeTracking
end
object eErrorEmailSubject: TEdit
Touch.InteractiveGestures = [LongTap, DoubleTap]
TabOrder = 3
Position.X = 144.000000000000000000
Position.Y = 105.000000000000000000
Size.Width = 206.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
OnChangeTracking = eErrorEmailSubjectChangeTracking
end
object Label15: TLabel
Position.X = 15.000000000000000000
Position.Y = 108.000000000000000000
Size.Width = 122.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
Text = 'Subject:'
ParentShowHint = False
ShowHint = True
TabOrder = 4
TabStop = False
end
object Label16: TLabel
Position.X = 248.000000000000000000
Position.Y = 27.000000000000000000
Size.Width = 57.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
Text = 'seconds'
TabOrder = 8
end
end
end
end
end
end
object StyleBook1: TStyleBook
Styles = <
item
end
item
Platform = 'Windows 10 Desktop'
ResourcesBin = {
464D585F5354594C4520322E3501060D457870616E6465727374796C6503FE04
0621457870616E6465727374796C65457870616E646572427574746F6E537479
6C6531038A0F061B457870616E6465727374796C65436865636B426F78537479
6C653103DC0B060E6C6254756E6572735374796C653103F909061D6C6254756E
6572735374796C65315363726F6C6C4261725374796C653103AF04061E767363
726F6C6C6261727363726F6C6C6261726C656674627574746F6E31038412061F
767363726F6C6C6261727363726F6C6C6261727269676874627574746F6E3103
8512061D767363726F6C6C6261727363726F6C6C626172746F70627574746F6E
310375120620767363726F6C6C6261727363726F6C6C626172626F74746F6D62
7574746F6E31037812061F767363726F6C6C6261727363726F6C6C6261726874
7261636B7374796C653103F103061268747261636B687468756D627374796C65
3103B70B061F767363726F6C6C6261727363726F6C6C62617276747261636B73
74796C653103F103061276747261636B767468756D627374796C653103B70B06
226C6254756E6572735374796C6531536D616C6C5363726F6C6C426172537479
6C6531030002062476736D616C6C7363726F6C6C6261727363726F6C6C626172
68747261636B7374796C653103F603062476736D616C6C7363726F6C6C626172
7363726F6C6C62617276747261636B7374796C653103F603005450463007544C
61796F757400095374796C654E616D65060D457870616E6465727374796C6505
416C69676E070643656E7465720A53697A652E57696474680500000000000080
BC07400B53697A652E4865696768740500000000000000B106401453697A652E
506C6174666F726D44656661756C74080756697369626C6508085461624F7264
65720200000A5452656374616E676C650005416C69676E0708436F6E74656E74
730C436C69704368696C6472656E090946696C6C2E4B696E6407044E6F6E6507
48697454657374080A53697A652E57696474680500000000000080BC07400B53
697A652E4865696768740500000000000000B106401453697A652E506C617466
6F726D44656661756C74080C5374726F6B652E436F6C6F720709784646434343
4343430007544C61796F757400095374796C654E616D65060668656164657205
416C69676E0703546F700A53697A652E57696474680500000000000080BC0740
0B53697A652E4865696768740500000000000000A003401453697A652E506C61
74666F726D44656661756C74080005545465787400095374796C654E616D6506
047465787405416C69676E0706436C69656E74064C6F636B6564090748697454
657374080C4D617267696E732E4C65667405000000000000008000400D4D6172
67696E732E526967687405000000000000008000400A53697A652E5769647468
0500000000000080A107400B53697A652E4865696768740500000000000000A0
03401453697A652E506C6174666F726D44656661756C74080454657874060454
657874165465787453657474696E67732E466F6E74436F6C6F720707636C614E
617679155465787453657474696E67732E576F7264577261700800000F544578
70616E646572427574746F6E00095374796C654E616D650606627574746F6E05
416C69676E07084D6F73744C656674064C6F636B6564090A53697A652E576964
74680500000000000000C803400B53697A652E48656967687405000000000000
00A003401453697A652E506C6174666F726D44656661756C74080B5374796C65
4C6F6F6B75700621457870616E6465727374796C65457870616E646572427574
746F6E5374796C653100000954436865636B426F7800095374796C654E616D65
0608636865636B626F7805416C69676E07094D6F737452696768740843616E46
6F63757308064C6F636B6564090A506F736974696F6E2E580500000000000000
B007400A53697A652E57696474680500000000000000C803400B53697A652E48
65696768740500000000000000A003401453697A652E506C6174666F726D4465
6661756C74080B5374796C654C6F6F6B7570061B457870616E6465727374796C
65436865636B426F785374796C6531000005544C696E6500095374796C654E61
6D65060A4C696E65315374796C6507416E63686F72730B06616B4C6566740561
6B546F7007616B526967687400084C696E65547970650703546F70074F706163
6974790500000000000000C0FE3F0A506F736974696F6E2E5805000000000000
008000400A506F736974696F6E2E590500000000000000A803400A53697A652E
57696474680500000000000080BA07400B53697A652E48656967687405000000
00000050F002401453697A652E506C6174666F726D44656661756C74080C5374
726F6B652E436F6C6F72070A636C6144696D67726179105374726F6B652E5468
69636B6E6573730500000000000000C0FF3F00000000005450463007544C6179
6F757400095374796C654E616D650621457870616E6465727374796C65457870
616E646572427574746F6E5374796C653105416C69676E070643656E7465720A
53697A652E57696474680500000000000080BC07400B53697A652E4865696768
740500000000000000B106401453697A652E506C6174666F726D44656661756C
74080756697369626C6508085461624F726465720201001254427574746F6E53
74796C654F626A65637400095374796C654E616D65060A6261636B67726F756E
6405416C69676E070643656E746572074F706163697479050000000000000000
00000C536F757263654C6F6F6B7570061B57696E646F7773203130204465736B
746F707374796C652E706E670A53697A652E57696474680500000000000000D0
02400B53697A652E4865696768740500000000000000D002401453697A652E50
6C6174666F726D44656661756C740808577261704D6F6465070643656E746572
07486F744C696E6B0E010F536F75726365526563742E4C656674050000000000
0000FA05400E536F75726365526563742E546F7005000000000000009E074010
536F75726365526563742E526967687405000000000000008A064011536F7572
6365526563742E426F74746F6D0500000000000080A407400001055363616C65
0500000000000000C0FF3F0F536F75726365526563742E4C6566740500000000
000000BC06400E536F75726365526563742E546F700500000000000000ED0740
10536F75726365526563742E52696768740500000000000000D0064011536F75
726365526563742E426F74746F6D0500000000000000F707400001055363616C
6505000000000000008000400F536F75726365526563742E4C65667405000000
00000000FA06400E536F75726365526563742E546F7005000000000000009E08
4010536F75726365526563742E526967687405000000000000008A074011536F
75726365526563742E426F74746F6D0500000000000080A4084000000B466F63
757365644C696E6B0E010F536F75726365526563742E4C656674050000000000
0000DC05400E536F75726365526563742E546F7005000000000000009E074010
536F75726365526563742E52696768740500000000000000F6054011536F7572
6365526563742E426F74746F6D0500000000000080A407400001055363616C65
0500000000000000C0FF3F0F536F75726365526563742E4C6566740500000000
000000A506400E536F75726365526563742E546F700500000000000000ED0740
10536F75726365526563742E52696768740500000000000000B9064011536F75
726365526563742E426F74746F6D0500000000000000F707400001055363616C
6505000000000000008000400F536F75726365526563742E4C65667405000000
00000000DC06400E536F75726365526563742E546F7005000000000000009E08
4010536F75726365526563742E52696768740500000000000000F6064011536F
75726365526563742E426F74746F6D0500000000000080A4084000000A4E6F72
6D616C4C696E6B0E010F536F75726365526563742E4C65667405000000000000
00DC05400E536F75726365526563742E546F7005000000000000009E07401053
6F75726365526563742E52696768740500000000000000F6054011536F757263
65526563742E426F74746F6D0500000000000080A407400001055363616C6505
00000000000000C0FF3F0F536F75726365526563742E4C656674050000000000
0000A506400E536F75726365526563742E546F700500000000000000ED074010
536F75726365526563742E52696768740500000000000000B9064011536F7572
6365526563742E426F74746F6D0500000000000000F707400001055363616C65
05000000000000008000400F536F75726365526563742E4C6566740500000000
000000DC06400E536F75726365526563742E546F7005000000000000009E0840
10536F75726365526563742E52696768740500000000000000F6064011536F75
726365526563742E426F74746F6D0500000000000080A4084000000B50726573
7365644C696E6B0E010F536F75726365526563742E4C65667405000000000000
00FA05400E536F75726365526563742E546F7005000000000000009E07401053
6F75726365526563742E526967687405000000000000008A064011536F757263
65526563742E426F74746F6D0500000000000080A407400001055363616C6505
00000000000000C0FF3F0F536F75726365526563742E4C656674050000000000
0000BC06400E536F75726365526563742E546F700500000000000000ED074010
536F75726365526563742E52696768740500000000000000D0064011536F7572
6365526563742E426F74746F6D0500000000000000F707400001055363616C65
05000000000000008000400F536F75726365526563742E4C6566740500000000
000000FA06400E536F75726365526563742E546F7005000000000000009E0840
10536F75726365526563742E526967687405000000000000008A074011536F75
726365526563742E426F74746F6D0500000000000080A40840000013546F7563
68416E696D6174696F6E2E4C696E6B0E00000F54466C6F6174416E696D617469
6F6E00084475726174696F6E05000000000017B7D1F13F0C50726F7065727479
4E616D6506074F7061636974790A537461727456616C75650500000000000000
0000000953746F7056616C7565050000000000000080FF3F0754726967676572
06104973457870616E6465643D66616C73650E54726967676572496E76657273
65060F4973457870616E6465643D747275650000001254427574746F6E537479
6C654F626A65637400095374796C654E616D65060A6261636B67726F756E6405
416C69676E070643656E7465720C536F757263654C6F6F6B7570061B57696E64
6F7773203130204465736B746F707374796C652E706E670A53697A652E576964
74680500000000000000D002400B53697A652E48656967687405000000000000
00D002401453697A652E506C6174666F726D44656661756C740808577261704D
6F6465070643656E74657207486F744C696E6B0E010F536F7572636552656374
2E4C6566740500000000000000FA05400E536F75726365526563742E546F7005
0000000000000095074010536F75726365526563742E52696768740500000000
0000008A064011536F75726365526563742E426F74746F6D0500000000000080
9B07400001055363616C650500000000000000C0FF3F0F536F75726365526563
742E4C6566740500000000000000BC06400E536F75726365526563742E546F70
0500000000000080DF074010536F75726365526563742E526967687405000000
00000000D0064011536F75726365526563742E426F74746F6D05000000000000
80E907400001055363616C6505000000000000008000400F536F757263655265
63742E4C6566740500000000000000FA06400E536F75726365526563742E546F
70050000000000000095084010536F75726365526563742E5269676874050000
00000000008A074011536F75726365526563742E426F74746F6D050000000000
00809B084000000B466F63757365644C696E6B0E010F536F7572636552656374
2E4C6566740500000000000000DC05400E536F75726365526563742E546F7005
0000000000000095074010536F75726365526563742E52696768740500000000
000000F6054011536F75726365526563742E426F74746F6D0500000000000080
9B07400001055363616C650500000000000000C0FF3F0F536F75726365526563
742E4C6566740500000000000000A506400E536F75726365526563742E546F70
0500000000000080DF074010536F75726365526563742E526967687405000000
00000000B9064011536F75726365526563742E426F74746F6D05000000000000
80E907400001055363616C6505000000000000008000400F536F757263655265
63742E4C6566740500000000000000DC06400E536F75726365526563742E546F
70050000000000000095084010536F75726365526563742E5269676874050000
0000000000F6064011536F75726365526563742E426F74746F6D050000000000
00809B084000000A4E6F726D616C4C696E6B0E010F536F75726365526563742E
4C6566740500000000000000DC05400E536F75726365526563742E546F700500
00000000000095074010536F75726365526563742E5269676874050000000000
0000F6054011536F75726365526563742E426F74746F6D05000000000000809B
07400001055363616C650500000000000000C0FF3F0F536F7572636552656374
2E4C6566740500000000000000A506400E536F75726365526563742E546F7005
00000000000080DF074010536F75726365526563742E52696768740500000000
000000B9064011536F75726365526563742E426F74746F6D0500000000000080
E907400001055363616C6505000000000000008000400F536F75726365526563
742E4C6566740500000000000000DC06400E536F75726365526563742E546F70
050000000000000095084010536F75726365526563742E526967687405000000
00000000F6064011536F75726365526563742E426F74746F6D05000000000000
809B084000000B507265737365644C696E6B0E010F536F75726365526563742E
4C6566740500000000000000FA05400E536F75726365526563742E546F700500
00000000000095074010536F75726365526563742E5269676874050000000000
00008A064011536F75726365526563742E426F74746F6D05000000000000809B
07400001055363616C650500000000000000C0FF3F0F536F7572636552656374
2E4C6566740500000000000000BC06400E536F75726365526563742E546F7005
00000000000080DF074010536F75726365526563742E52696768740500000000
000000D0064011536F75726365526563742E426F74746F6D0500000000000080
E907400001055363616C6505000000000000008000400F536F75726365526563
742E4C6566740500000000000000FA06400E536F75726365526563742E546F70
050000000000000095084010536F75726365526563742E526967687405000000
000000008A074011536F75726365526563742E426F74746F6D05000000000000
809B0840000013546F756368416E696D6174696F6E2E4C696E6B0E00000F5446
6C6F6174416E696D6174696F6E00084475726174696F6E05000000000017B7D1
F13F0C50726F70657274794E616D6506074F7061636974790A53746172745661
6C756505000000000000000000000953746F7056616C75650500000000000000
80FF3F0754726967676572060F4973457870616E6465643D747275650E547269
67676572496E766572736506104973457870616E6465643D66616C7365000000
005450463007544C61796F757400095374796C654E616D65061B457870616E64
65727374796C65436865636B426F785374796C653105416C69676E070643656E
7465720A53697A652E57696474680500000000000080BC07400B53697A652E48
65696768740500000000000000B106401453697A652E506C6174666F726D4465
6661756C74080756697369626C6508085461624F7264657202020007544C6179
6F75740005416C69676E07044C6566740A53697A652E57696474680500000000
0000009003400B53697A652E4865696768740500000000000000B10640145369
7A652E506C6174666F726D44656661756C7408001154436865636B5374796C65
4F626A65637400095374796C654E616D65060A6261636B67726F756E6405416C
69676E070643656E746572074361704D6F6465070454696C65064C6F636B6564
090C536F757263654C6F6F6B7570061B57696E646F7773203130204465736B74
6F707374796C652E706E670A53697A652E57696474680500000000000000D002
400B53697A652E4865696768740500000000000000D002401453697A652E506C
6174666F726D44656661756C740808577261704D6F6465070643656E7465720D
416374697665547269676765720707436865636B65640A4163746976654C696E
6B0E010F536F75726365526563742E4C6566740500000000000000F803400E53
6F75726365526563742E546F70050000000000000092064010536F7572636552
6563742E52696768740500000000000000B0044011536F75726365526563742E
426F74746F6D05000000000000009F06400001055363616C6505000000000000
00C0FF3F0F536F75726365526563742E4C6566740500000000000000B804400E
536F75726365526563742E546F700500000000000000DB064010536F75726365
526563742E5269676874050000000000000082054011536F7572636552656374
2E426F74746F6D0500000000000000EE06400001055363616C65050000000000
00008000400F536F75726365526563742E4C6566740500000000000000F80440
0E536F75726365526563742E546F70050000000000000092074010536F757263
65526563742E52696768740500000000000000B0054011536F75726365526563
742E426F74746F6D05000000000000009F074000000A536F757263654C696E6B
0E010F536F75726365526563742E4C6566740500000000000000C000400E536F
75726365526563742E546F70050000000000000092064010536F757263655265
63742E5269676874050000000000000080034011536F75726365526563742E42
6F74746F6D05000000000000009F06400001055363616C650500000000000000
C0FF3F0F536F75726365526563742E4C65667405000000000000008001400E53
6F75726365526563742E546F700500000000000000DB064010536F7572636552
6563742E52696768740500000000000000B8034011536F75726365526563742E
426F74746F6D0500000000000000EE06400001055363616C6505000000000000
008000400F536F75726365526563742E4C6566740500000000000000C001400E
536F75726365526563742E546F70050000000000000092074010536F75726365
526563742E5269676874050000000000000080044011536F7572636552656374
2E426F74746F6D05000000000000009F0740000007486F744C696E6B0E010F53
6F75726365526563742E4C65667405000000000000008803400E536F75726365
526563742E546F70050000000000000092064010536F75726365526563742E52
696768740500000000000000F0034011536F75726365526563742E426F74746F
6D05000000000000009F06400001055363616C650500000000000000C0FF3F0F
536F75726365526563742E4C6566740500000000000000C803400E536F757263
65526563742E546F700500000000000000DB064010536F75726365526563742E
52696768740500000000000000B0044011536F75726365526563742E426F7474
6F6D0500000000000000EE06400001055363616C650500000000000000800040
0F536F75726365526563742E4C65667405000000000000008804400E536F7572
6365526563742E546F70050000000000000092074010536F7572636552656374
2E52696768740500000000000000F0044011536F75726365526563742E426F74
746F6D05000000000000009F074000000D416374697665486F744C696E6B0E01
0F536F75726365526563742E4C6566740500000000000000B404400E536F7572
6365526563742E546F70050000000000000092064010536F7572636552656374
2E52696768740500000000000000E8044011536F75726365526563742E426F74
746F6D05000000000000009F06400001055363616C650500000000000000C0FF
3F0F536F75726365526563742E4C65667405000000000000008605400E536F75
726365526563742E546F700500000000000000DB064010536F75726365526563
742E52696768740500000000000000AC054011536F75726365526563742E426F
74746F6D0500000000000000EE06400001055363616C65050000000000000080
00400F536F75726365526563742E4C6566740500000000000000B405400E536F
75726365526563742E546F70050000000000000092074010536F757263655265
63742E52696768740500000000000000E8054011536F75726365526563742E42
6F74746F6D05000000000000009F074000000B466F63757365644C696E6B0E01
0F536F75726365526563742E4C65667405000000000000008803400E536F7572
6365526563742E546F70050000000000000092064010536F7572636552656374
2E52696768740500000000000000F0034011536F75726365526563742E426F74
746F6D05000000000000009F06400001055363616C650500000000000000C0FF
3F0F536F75726365526563742E4C6566740500000000000000C803400E536F75
726365526563742E546F700500000000000000DB064010536F75726365526563
742E52696768740500000000000000B0044011536F75726365526563742E426F
74746F6D0500000000000000EE06400001055363616C65050000000000000080
00400F536F75726365526563742E4C65667405000000000000008804400E536F
75726365526563742E546F70050000000000000092074010536F757263655265
63742E52696768740500000000000000F0044011536F75726365526563742E42
6F74746F6D05000000000000009F0740000011416374697665466F6375736564
4C696E6B0E010F536F75726365526563742E4C6566740500000000000000B404
400E536F75726365526563742E546F70050000000000000092064010536F7572
6365526563742E52696768740500000000000000E8044011536F757263655265
63742E426F74746F6D05000000000000009F06400001055363616C6505000000
00000000C0FF3F0F536F75726365526563742E4C656674050000000000000086
05400E536F75726365526563742E546F700500000000000000DB064010536F75
726365526563742E52696768740500000000000000AC054011536F7572636552
6563742E426F74746F6D0500000000000000EE06400001055363616C65050000
00000000008000400F536F75726365526563742E4C6566740500000000000000
B405400E536F75726365526563742E546F70050000000000000092074010536F
75726365526563742E52696768740500000000000000E8054011536F75726365
526563742E426F74746F6D05000000000000009F074000000000001654427574
746F6E5374796C65546578744F626A65637400095374796C654E616D65060474
65787405416C69676E0706436C69656E74064C6F636B6564090C4D617267696E
732E4C6566740500000000000000C000400A53697A652E576964746805000000
00000000B207400B53697A652E4865696768740500000000000000B106401453
697A652E506C6174666F726D44656661756C74080D536861646F775669736962
6C650808486F74436F6C6F720708636C61426C61636B0C466F6375736564436F
6C6F720708636C61426C61636B0B4E6F726D616C436F6C6F720708636C61426C
61636B0C50726573736564436F6C6F720708636C61426C61636B000000545046
3007544C61796F757400095374796C654E616D65060E6C6254756E6572735374
796C653105416C69676E070643656E7465720A53697A652E5769647468050000
0000000000BB07400B53697A652E486569676874050000000000008091074014
53697A652E506C6174666F726D44656661756C74080756697369626C65080854
61624F726465720203000C5442727573684F626A65637400095374796C654E61
6D650618416C7465726E6174696E67526F774261636B67726F756E640B427275
73682E436F6C6F72070978464645454545454500000C545374796C654F626A65
637400095374796C654E616D65060A6261636B67726F756E6405416C69676E07
08436F6E74656E74730C50616464696E672E4C65667405000000000000008000
400B50616464696E672E546F7005000000000000008000400D50616464696E67
2E526967687405000000000000008000400E50616464696E672E426F74746F6D
05000000000000008000400C536F757263654C6F6F6B7570061B57696E646F77
73203130204465736B746F707374796C652E706E670A53697A652E5769647468
0500000000000000BB07400B53697A652E486569676874050000000000008091
07401453697A652E506C6174666F726D44656661756C74080A536F757263654C
696E6B0E010E436170496E736574732E4C6566740500000000000000A002400D
436170496E736574732E546F700500000000000000A002400F436170496E7365
74732E52696768740500000000000000A0024010436170496E736574732E426F
74746F6D0500000000000000A002400F536F75726365526563742E4C65667405
00000000000080A107400E536F75726365526563742E546F7005000000000000
0080014010536F75726365526563742E52696768740500000000000000C50740
11536F75726365526563742E426F74746F6D050000000000000094054000010E
436170496E736574732E4C6566740500000000000000F002400D436170496E73
6574732E546F700500000000000000F002400F436170496E736574732E526967
68740500000000000000F0024010436170496E736574732E426F74746F6D0500
000000000000F00240055363616C650500000000000000C0FF3F0F536F757263
65526563742E4C6566740500000000000000F207400E536F7572636552656374
2E546F700500000000000000C0014010536F75726365526563742E5269676874
050000000000008093084011536F75726365526563742E426F74746F6D050000
0000000000DE054000010E436170496E736574732E4C65667405000000000000
00A003400D436170496E736574732E546F700500000000000000A003400F4361
70496E736574732E52696768740500000000000000A0034010436170496E7365
74732E426F74746F6D0500000000000000A00340055363616C65050000000000
00008000400F536F75726365526563742E4C6566740500000000000080A10840
0E536F75726365526563742E546F70050000000000000080024010536F757263
65526563742E52696768740500000000000000C5084011536F75726365526563
742E426F74746F6D05000000000000009406400000064F706171756509000754
4C61796F757400095374796C654E616D650607636F6E74656E7405416C69676E
0706436C69656E740C436C69704368696C6472656E090A53697A652E57696474
680500000000000000B107400B53697A652E4865696768740500000000000080
8707401453697A652E506C6174666F726D44656661756C740800000A54536372
6F6C6C42617200095374796C654E616D65060A767363726F6C6C62617205416C
69676E070552696768740B536D616C6C4368616E676505000000000000000000
000B4F7269656E746174696F6E0708566572746963616C0A506F736974696F6E
2E580500000000000000B207400A506F736974696F6E2E590500000000000000
8000400A53697A652E576964746805000000000000008003400B53697A652E48
656967687405000000000000808707401453697A652E506C6174666F726D4465
6661756C74080B5374796C654C6F6F6B7570061D6C6254756E6572735374796C
65315363726F6C6C4261725374796C653100000A545363726F6C6C4261720009
5374796C654E616D65060A687363726F6C6C62617205416C69676E0706426F74
746F6D0B536D616C6C4368616E676505000000000000000000000B4F7269656E
746174696F6E070A486F72697A6F6E74616C0A506F736974696F6E2E58050000
00000000008000400A506F736974696F6E2E5905000000000000808807400A53
697A652E57696474680500000000000000B907400B53697A652E486569676874
05000000000000008003401453697A652E506C6174666F726D44656661756C74
08000007544C61796F75740005416C69676E0706436C69656E740A53697A652E
57696474680500000000000000B107400B53697A652E48656967687405000000
000000808707401453697A652E506C6174666F726D44656661756C7408000F54
536D616C6C5363726F6C6C42617200095374796C654E616D65060F76736D616C
6C7363726F6C6C62617205416C69676E070552696768740B536D616C6C436861
6E676505000000000000000000000B4F7269656E746174696F6E070856657274
6963616C0C4D617267696E732E4C65667405000000000000008000400A53697A
652E576964746805000000000000008002400B53697A652E4865696768740500
0000000000008002401453697A652E506C6174666F726D44656661756C74080B
5374796C654C6F6F6B757006226C6254756E6572735374796C6531536D616C6C
5363726F6C6C4261725374796C65310756697369626C650800000F54536D616C
6C5363726F6C6C42617200095374796C654E616D65060F68736D616C6C736372
6F6C6C62617205416C69676E0706426F74746F6D0B536D616C6C4368616E6765
05000000000000000000000B4F7269656E746174696F6E070A486F72697A6F6E
74616C0B4D617267696E732E546F7005000000000000008000400A53697A652E
576964746805000000000000009606400B53697A652E48656967687405000000
000000008002401453697A652E506C6174666F726D44656661756C7408075669
7369626C650800000007544C61796F757400095374796C654E616D6506066865
6164657205416C69676E0703546F700A53697A652E5769647468050000000000
0000C804400B53697A652E4865696768740500000000000000C804401453697A
652E506C6174666F726D44656661756C74080756697369626C6508000007544C
61796F757400095374796C654E616D650606666F6F74657205416C69676E0706
426F74746F6D0A53697A652E57696474680500000000000000C804400B53697A
652E4865696768740500000000000000C804401453697A652E506C6174666F72
6D44656661756C74080756697369626C6508000000005450463007544C61796F
757400095374796C654E616D65061D6C6254756E6572735374796C6531536372
6F6C6C4261725374796C65310A53697A652E57696474680500000000000000BB
07400B53697A652E48656967687405000000000000809107401453697A652E50
6C6174666F726D44656661756C74080756697369626C6508085461624F726465
720204000754427574746F6E00095374796C654E616D65060A6C656674627574
746F6E05416C69676E07044C656674064C6F636B6564090A506F736974696F6E
2E5905000000000000008003400A53697A652E57696474680500000000000000
8003400B53697A652E48656967687405000000000000808107401453697A652E