- Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathMainForm.Designer.cs
1265 lines (1258 loc) · 77.6 KB
/
MainForm.Designer.cs
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
namespaceACMEForms
{
partialclassMainForm
{
/// <summary>
/// Required designer variable.
/// </summary>
privateSystem.ComponentModel.IContainercomponents=null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protectedoverridevoidDispose(booldisposing)
{
if(disposing&&(components!=null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
privatevoidInitializeComponent()
{
this.tabControl1=newSystem.Windows.Forms.TabControl();
this.accountTabPage=newSystem.Windows.Forms.TabPage();
this.accountPanel=newSystem.Windows.Forms.Panel();
this.tableLayoutPanel1=newSystem.Windows.Forms.TableLayoutPanel();
this.accountDetailsTabControl=newSystem.Windows.Forms.TabControl();
this.accountDetailsTabPage=newSystem.Windows.Forms.TabPage();
this.accountPropertyGrid=newSystem.Windows.Forms.PropertyGrid();
this.contactEmailsLabel=newSystem.Windows.Forms.Label();
this.contactEmailsTextBox=newSystem.Windows.Forms.TextBox();
this.agreeTosTableLayout=newSystem.Windows.Forms.TableLayoutPanel();
this.agreeTosLinkLabel=newSystem.Windows.Forms.LinkLabel();
this.agreeTosLabel=newSystem.Windows.Forms.Label();
this.agreeTosCheckbox=newSystem.Windows.Forms.CheckBox();
this.caServerLabel=newSystem.Windows.Forms.Label();
this.caServerComboBox=newSystem.Windows.Forms.ComboBox();
this.accountButtonsFlowLayoutPanel=newSystem.Windows.Forms.FlowLayoutPanel();
this.createAccountButton=newSystem.Windows.Forms.Button();
this.refreshAccountButton=newSystem.Windows.Forms.Button();
this.updateAccountButton=newSystem.Windows.Forms.Button();
this.caServerTextBox=newSystem.Windows.Forms.TextBox();
this.ordersTabPage=newSystem.Windows.Forms.TabPage();
this.orderTableLayoutPanel=newSystem.Windows.Forms.TableLayoutPanel();
this.orderDetailsTabControl=newSystem.Windows.Forms.TabControl();
this.orderDetailsTabPage=newSystem.Windows.Forms.TabPage();
this.orderPropertyGrid=newSystem.Windows.Forms.PropertyGrid();
this.authorizationsTabPage=newSystem.Windows.Forms.TabPage();
this.tableLayoutPanel4=newSystem.Windows.Forms.TableLayoutPanel();
this.authorizationsListBox=newSystem.Windows.Forms.ListBox();
this.authorizationsTabControl=newSystem.Windows.Forms.TabControl();
this.authorizationDetailsTabPage=newSystem.Windows.Forms.TabPage();
this.tableLayoutPanel2=newSystem.Windows.Forms.TableLayoutPanel();
this.authorizationPropertyGrid=newSystem.Windows.Forms.PropertyGrid();
this.challengesTabControl=newSystem.Windows.Forms.TabControl();
this.dnsChallengeTabPage=newSystem.Windows.Forms.TabPage();
this.tableLayoutPanel7=newSystem.Windows.Forms.TableLayoutPanel();
this.dnsRecordValueTextBox=newSystem.Windows.Forms.TextBox();
this.dnsRecordNameTextBox=newSystem.Windows.Forms.TextBox();
this.dnsRecordValueLabel=newSystem.Windows.Forms.Label();
this.dnsRecordTypeTextBox=newSystem.Windows.Forms.TextBox();
this.dnsRecordTypeLabel=newSystem.Windows.Forms.Label();
this.dnsRecordNameLabel=newSystem.Windows.Forms.Label();
this.flowLayoutPanel2=newSystem.Windows.Forms.FlowLayoutPanel();
this.submitDnsAnswerButton=newSystem.Windows.Forms.Button();
this.testDnsAnswerButton=newSystem.Windows.Forms.Button();
this.httpChallengeTabPage=newSystem.Windows.Forms.TabPage();
this.tableLayoutPanel5=newSystem.Windows.Forms.TableLayoutPanel();
this.httpResourceValueLabel=newSystem.Windows.Forms.Label();
this.httpResourceValueTextBox=newSystem.Windows.Forms.TextBox();
this.httpResourceContentTypeLabel=newSystem.Windows.Forms.Label();
this.httpResourceUrlTextBox=newSystem.Windows.Forms.TextBox();
this.httpResourcePathLabel=newSystem.Windows.Forms.Label();
this.httpResourcePathTextBox=newSystem.Windows.Forms.TextBox();
this.httpResourceUrlLabel=newSystem.Windows.Forms.Label();
this.httpResourceContentTypeTextBox=newSystem.Windows.Forms.TextBox();
this.flowLayoutPanel1=newSystem.Windows.Forms.FlowLayoutPanel();
this.submitHttpAnswerButton=newSystem.Windows.Forms.Button();
this.testHttpAnswerButton=newSystem.Windows.Forms.Button();
this.challengesTabPage=newSystem.Windows.Forms.TabPage();
this.challengesTableLayoutPanel=newSystem.Windows.Forms.TableLayoutPanel();
this.miscChallengeTypesListBox=newSystem.Windows.Forms.ListBox();
this.challengeDetailsTabControl=newSystem.Windows.Forms.TabControl();
this.challengeDetailsTabPage=newSystem.Windows.Forms.TabPage();
this.challengePopertyGrid=newSystem.Windows.Forms.PropertyGrid();
this.challengeErrorTabPage=newSystem.Windows.Forms.TabPage();
this.challengeErrorTextBox=newSystem.Windows.Forms.TextBox();
this.validationRecordsTabPage=newSystem.Windows.Forms.TabPage();
this.validationRecordsTextBox=newSystem.Windows.Forms.TextBox();
this.tableLayoutPanel3=newSystem.Windows.Forms.TableLayoutPanel();
this.notAfterDateTimePicker=newSystem.Windows.Forms.DateTimePicker();
this.notAfterLabel=newSystem.Windows.Forms.Label();
this.notBeforeDateTimePicker=newSystem.Windows.Forms.DateTimePicker();
this.notBeforeLabel=newSystem.Windows.Forms.Label();
this.orderButtonsFlowLayoutPanel=newSystem.Windows.Forms.FlowLayoutPanel();
this.createOrderButton=newSystem.Windows.Forms.Button();
this.refreshOrderButton=newSystem.Windows.Forms.Button();
this.clearOrderButton=newSystem.Windows.Forms.Button();
this.dnsIdentifiersLabel=newSystem.Windows.Forms.Label();
this.dnsIdentifiersTextBox=newSystem.Windows.Forms.TextBox();
this.mainStatusStrip=newSystem.Windows.Forms.StatusStrip();
this.mainStatusLabel=newSystem.Windows.Forms.ToolStripStatusLabel();
this.tabControl1.SuspendLayout();
this.accountTabPage.SuspendLayout();
this.accountPanel.SuspendLayout();
this.tableLayoutPanel1.SuspendLayout();
this.accountDetailsTabControl.SuspendLayout();
this.accountDetailsTabPage.SuspendLayout();
this.agreeTosTableLayout.SuspendLayout();
this.accountButtonsFlowLayoutPanel.SuspendLayout();
this.ordersTabPage.SuspendLayout();
this.orderTableLayoutPanel.SuspendLayout();
this.orderDetailsTabControl.SuspendLayout();
this.orderDetailsTabPage.SuspendLayout();
this.authorizationsTabPage.SuspendLayout();
this.tableLayoutPanel4.SuspendLayout();
this.authorizationsTabControl.SuspendLayout();
this.authorizationDetailsTabPage.SuspendLayout();
this.tableLayoutPanel2.SuspendLayout();
this.challengesTabControl.SuspendLayout();
this.dnsChallengeTabPage.SuspendLayout();
this.tableLayoutPanel7.SuspendLayout();
this.flowLayoutPanel2.SuspendLayout();
this.httpChallengeTabPage.SuspendLayout();
this.tableLayoutPanel5.SuspendLayout();
this.flowLayoutPanel1.SuspendLayout();
this.challengesTabPage.SuspendLayout();
this.challengesTableLayoutPanel.SuspendLayout();
this.challengeDetailsTabControl.SuspendLayout();
this.challengeDetailsTabPage.SuspendLayout();
this.challengeErrorTabPage.SuspendLayout();
this.validationRecordsTabPage.SuspendLayout();
this.tableLayoutPanel3.SuspendLayout();
this.orderButtonsFlowLayoutPanel.SuspendLayout();
this.mainStatusStrip.SuspendLayout();
this.SuspendLayout();
//
// tabControl1
//
this.tabControl1.Controls.Add(this.accountTabPage);
this.tabControl1.Controls.Add(this.ordersTabPage);
this.tabControl1.Dock=System.Windows.Forms.DockStyle.Fill;
this.tabControl1.Location=newSystem.Drawing.Point(0,0);
this.tabControl1.Name="tabControl1";
this.tabControl1.SelectedIndex=0;
this.tabControl1.Size=newSystem.Drawing.Size(1344,1521);
this.tabControl1.TabIndex=0;
//
// accountTabPage
//
this.accountTabPage.Controls.Add(this.accountPanel);
this.accountTabPage.Location=newSystem.Drawing.Point(8,39);
this.accountTabPage.Name="accountTabPage";
this.accountTabPage.Padding=newSystem.Windows.Forms.Padding(3);
this.accountTabPage.Size=newSystem.Drawing.Size(1328,1474);
this.accountTabPage.TabIndex=0;
this.accountTabPage.Text="Account";
this.accountTabPage.UseVisualStyleBackColor=true;
//
// accountPanel
//
this.accountPanel.Controls.Add(this.tableLayoutPanel1);
this.accountPanel.Controls.Add(this.caServerTextBox);
this.accountPanel.Dock=System.Windows.Forms.DockStyle.Fill;
this.accountPanel.Location=newSystem.Drawing.Point(3,3);
this.accountPanel.Name="accountPanel";
this.accountPanel.Size=newSystem.Drawing.Size(1322,1468);
this.accountPanel.TabIndex=2;
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount=2;
this.tableLayoutPanel1.ColumnStyles.Add(newSystem.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute,24F));
this.tableLayoutPanel1.ColumnStyles.Add(newSystem.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent,50F));
this.tableLayoutPanel1.Controls.Add(this.accountDetailsTabControl,1,6);
this.tableLayoutPanel1.Controls.Add(this.contactEmailsLabel,1,2);
this.tableLayoutPanel1.Controls.Add(this.contactEmailsTextBox,1,3);
this.tableLayoutPanel1.Controls.Add(this.agreeTosTableLayout,1,4);
this.tableLayoutPanel1.Controls.Add(this.caServerLabel,1,0);
this.tableLayoutPanel1.Controls.Add(this.caServerComboBox,1,1);
this.tableLayoutPanel1.Controls.Add(this.accountButtonsFlowLayoutPanel,1,5);
this.tableLayoutPanel1.Dock=System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location=newSystem.Drawing.Point(0,0);
this.tableLayoutPanel1.Name="tableLayoutPanel1";
this.tableLayoutPanel1.RowCount=7;
this.tableLayoutPanel1.RowStyles.Add(newSystem.Windows.Forms.RowStyle());
this.tableLayoutPanel1.RowStyles.Add(newSystem.Windows.Forms.RowStyle());
this.tableLayoutPanel1.RowStyles.Add(newSystem.Windows.Forms.RowStyle());
this.tableLayoutPanel1.RowStyles.Add(newSystem.Windows.Forms.RowStyle());
this.tableLayoutPanel1.RowStyles.Add(newSystem.Windows.Forms.RowStyle());
this.tableLayoutPanel1.RowStyles.Add(newSystem.Windows.Forms.RowStyle());
this.tableLayoutPanel1.RowStyles.Add(newSystem.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent,50F));
this.tableLayoutPanel1.Size=newSystem.Drawing.Size(1322,1468);
this.tableLayoutPanel1.TabIndex=16;
//
// accountDetailsTabControl
//
this.accountDetailsTabControl.Anchor=((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top|System.Windows.Forms.AnchorStyles.Bottom)
|System.Windows.Forms.AnchorStyles.Left)
|System.Windows.Forms.AnchorStyles.Right)));
this.accountDetailsTabControl.Controls.Add(this.accountDetailsTabPage);
this.accountDetailsTabControl.Location=newSystem.Drawing.Point(27,378);
this.accountDetailsTabControl.Name="accountDetailsTabControl";
this.accountDetailsTabControl.SelectedIndex=0;
this.accountDetailsTabControl.Size=newSystem.Drawing.Size(1292,1087);
this.accountDetailsTabControl.TabIndex=15;
//
// accountDetailsTabPage
//
this.accountDetailsTabPage.Controls.Add(this.accountPropertyGrid);
this.accountDetailsTabPage.Location=newSystem.Drawing.Point(8,39);
this.accountDetailsTabPage.Name="accountDetailsTabPage";
this.accountDetailsTabPage.Padding=newSystem.Windows.Forms.Padding(3);
this.accountDetailsTabPage.Size=newSystem.Drawing.Size(1276,1040);
this.accountDetailsTabPage.TabIndex=0;
this.accountDetailsTabPage.Text="Account Details";
this.accountDetailsTabPage.UseVisualStyleBackColor=true;
//
// accountPropertyGrid
//
this.accountPropertyGrid.Dock=System.Windows.Forms.DockStyle.Fill;
this.accountPropertyGrid.Location=newSystem.Drawing.Point(3,3);
this.accountPropertyGrid.Name="accountPropertyGrid";
this.accountPropertyGrid.PropertySort=System.Windows.Forms.PropertySort.NoSort;
this.accountPropertyGrid.Size=newSystem.Drawing.Size(1270,1034);
this.accountPropertyGrid.TabIndex=14;
this.accountPropertyGrid.ToolbarVisible=false;
//
// contactEmailsLabel
//
this.contactEmailsLabel.AutoSize=true;
this.contactEmailsLabel.Location=newSystem.Drawing.Point(27,64);
this.contactEmailsLabel.Name="contactEmailsLabel";
this.contactEmailsLabel.Size=newSystem.Drawing.Size(162,25);
this.contactEmailsLabel.TabIndex=0;
this.contactEmailsLabel.Text="Contact Emails:";
this.contactEmailsLabel.TextAlign=System.Drawing.ContentAlignment.TopRight;
//
// contactEmailsTextBox
//
this.contactEmailsTextBox.Anchor=((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top|System.Windows.Forms.AnchorStyles.Left)
|System.Windows.Forms.AnchorStyles.Right)));
this.contactEmailsTextBox.Location=newSystem.Drawing.Point(27,92);
this.contactEmailsTextBox.Multiline=true;
this.contactEmailsTextBox.Name="contactEmailsTextBox";
this.contactEmailsTextBox.ScrollBars=System.Windows.Forms.ScrollBars.Both;
this.contactEmailsTextBox.Size=newSystem.Drawing.Size(1292,142);
this.contactEmailsTextBox.TabIndex=1;
//
// agreeTosTableLayout
//
this.agreeTosTableLayout.ColumnCount=3;
this.agreeTosTableLayout.ColumnStyles.Add(newSystem.Windows.Forms.ColumnStyle());
this.agreeTosTableLayout.ColumnStyles.Add(newSystem.Windows.Forms.ColumnStyle());
this.agreeTosTableLayout.ColumnStyles.Add(newSystem.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent,100F));
this.agreeTosTableLayout.Controls.Add(this.agreeTosLinkLabel,2,0);
this.agreeTosTableLayout.Controls.Add(this.agreeTosLabel,0,0);
this.agreeTosTableLayout.Controls.Add(this.agreeTosCheckbox,0,0);
this.agreeTosTableLayout.Location=newSystem.Drawing.Point(24,237);
this.agreeTosTableLayout.Margin=newSystem.Windows.Forms.Padding(0);
this.agreeTosTableLayout.Name="agreeTosTableLayout";
this.agreeTosTableLayout.RowCount=1;
this.agreeTosTableLayout.RowStyles.Add(newSystem.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent,100F));
this.agreeTosTableLayout.Size=newSystem.Drawing.Size(913,36);
this.agreeTosTableLayout.TabIndex=10;
//
// agreeTosLinkLabel
//
this.agreeTosLinkLabel.AutoSize=true;
this.agreeTosLinkLabel.Dock=System.Windows.Forms.DockStyle.Fill;
this.agreeTosLinkLabel.Location=newSystem.Drawing.Point(127,0);
this.agreeTosLinkLabel.Margin=newSystem.Windows.Forms.Padding(0);
this.agreeTosLinkLabel.Name="agreeTosLinkLabel";
this.agreeTosLinkLabel.Size=newSystem.Drawing.Size(786,36);
this.agreeTosLinkLabel.TabIndex=4;
this.agreeTosLinkLabel.TabStop=true;
this.agreeTosLinkLabel.Text="Terms of Service";
this.agreeTosLinkLabel.TextAlign=System.Drawing.ContentAlignment.MiddleLeft;
this.agreeTosLinkLabel.LinkClicked+=newSystem.Windows.Forms.LinkLabelLinkClickedEventHandler(this.agreeTosLinkLabel_LinkClicked);
//
// agreeTosLabel
//
this.agreeTosLabel.AutoSize=true;
this.agreeTosLabel.Dock=System.Windows.Forms.DockStyle.Fill;
this.agreeTosLabel.Location=newSystem.Drawing.Point(34,0);
this.agreeTosLabel.Margin=newSystem.Windows.Forms.Padding(0);
this.agreeTosLabel.Name="agreeTosLabel";
this.agreeTosLabel.Size=newSystem.Drawing.Size(93,36);
this.agreeTosLabel.TabIndex=11;
this.agreeTosLabel.Text="Agree to";
this.agreeTosLabel.TextAlign=System.Drawing.ContentAlignment.MiddleLeft;
//
// agreeTosCheckbox
//
this.agreeTosCheckbox.AutoSize=true;
this.agreeTosCheckbox.Dock=System.Windows.Forms.DockStyle.Fill;
this.agreeTosCheckbox.Location=newSystem.Drawing.Point(3,3);
this.agreeTosCheckbox.Name="agreeTosCheckbox";
this.agreeTosCheckbox.Size=newSystem.Drawing.Size(28,30);
this.agreeTosCheckbox.TabIndex=2;
this.agreeTosCheckbox.UseVisualStyleBackColor=true;
//
// caServerLabel
//
this.caServerLabel.AutoSize=true;
this.caServerLabel.Location=newSystem.Drawing.Point(27,0);
this.caServerLabel.Name="caServerLabel";
this.caServerLabel.Size=newSystem.Drawing.Size(116,25);
this.caServerLabel.TabIndex=6;
this.caServerLabel.Text="CA Server:";
this.caServerLabel.TextAlign=System.Drawing.ContentAlignment.TopRight;
//
// caServerComboBox
//
this.caServerComboBox.DisplayMember="Value";
this.caServerComboBox.DropDownStyle=System.Windows.Forms.ComboBoxStyle.DropDownList;
this.caServerComboBox.FormattingEnabled=true;
this.caServerComboBox.Location=newSystem.Drawing.Point(27,28);
this.caServerComboBox.Name="caServerComboBox";
this.caServerComboBox.Size=newSystem.Drawing.Size(646,33);
this.caServerComboBox.TabIndex=3;
this.caServerComboBox.ValueMember="Key";
this.caServerComboBox.SelectedIndexChanged+=newSystem.EventHandler(this.caServerComboBox_SelectedIndexChanged);
//
// accountButtonsFlowLayoutPanel
//
this.accountButtonsFlowLayoutPanel.Anchor=((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top|System.Windows.Forms.AnchorStyles.Left)
|System.Windows.Forms.AnchorStyles.Right)));
this.accountButtonsFlowLayoutPanel.Controls.Add(this.createAccountButton);
this.accountButtonsFlowLayoutPanel.Controls.Add(this.refreshAccountButton);
this.accountButtonsFlowLayoutPanel.Controls.Add(this.updateAccountButton);
this.accountButtonsFlowLayoutPanel.Location=newSystem.Drawing.Point(27,276);
this.accountButtonsFlowLayoutPanel.Name="accountButtonsFlowLayoutPanel";
this.accountButtonsFlowLayoutPanel.Padding=newSystem.Windows.Forms.Padding(10);
this.accountButtonsFlowLayoutPanel.Size=newSystem.Drawing.Size(1292,96);
this.accountButtonsFlowLayoutPanel.TabIndex=14;
//
// createAccountButton
//
this.createAccountButton.AutoSize=true;
this.createAccountButton.AutoSizeMode=System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.createAccountButton.Location=newSystem.Drawing.Point(20,20);
this.createAccountButton.Margin=newSystem.Windows.Forms.Padding(10);
this.createAccountButton.Name="createAccountButton";
this.createAccountButton.Padding=newSystem.Windows.Forms.Padding(10);
this.createAccountButton.Size=newSystem.Drawing.Size(190,55);
this.createAccountButton.TabIndex=5;
this.createAccountButton.Text="Create Account";
this.createAccountButton.UseVisualStyleBackColor=true;
this.createAccountButton.Click+=newSystem.EventHandler(this.createAccountButton_Click);
//
// refreshAccountButton
//
this.refreshAccountButton.AutoSize=true;
this.refreshAccountButton.AutoSizeMode=System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.refreshAccountButton.Enabled=false;
this.refreshAccountButton.Location=newSystem.Drawing.Point(230,20);
this.refreshAccountButton.Margin=newSystem.Windows.Forms.Padding(10);
this.refreshAccountButton.Name="refreshAccountButton";
this.refreshAccountButton.Padding=newSystem.Windows.Forms.Padding(10);
this.refreshAccountButton.Size=newSystem.Drawing.Size(201,55);
this.refreshAccountButton.TabIndex=6;
this.refreshAccountButton.Text="Refresh Account";
this.refreshAccountButton.UseVisualStyleBackColor=true;
this.refreshAccountButton.Click+=newSystem.EventHandler(this.refreshAccountButton_Click);
//
// updateAccountButton
//
this.updateAccountButton.AutoSize=true;
this.updateAccountButton.AutoSizeMode=System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.updateAccountButton.Location=newSystem.Drawing.Point(451,20);
this.updateAccountButton.Margin=newSystem.Windows.Forms.Padding(10);
this.updateAccountButton.Name="updateAccountButton";
this.updateAccountButton.Padding=newSystem.Windows.Forms.Padding(10);
this.updateAccountButton.Size=newSystem.Drawing.Size(195,55);
this.updateAccountButton.TabIndex=6;
this.updateAccountButton.Text="Update Account";
this.updateAccountButton.UseVisualStyleBackColor=true;
this.updateAccountButton.Click+=newSystem.EventHandler(this.updateAccountButton_Click);
//
// caServerTextBox
//
this.caServerTextBox.Anchor=((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top|System.Windows.Forms.AnchorStyles.Left)
|System.Windows.Forms.AnchorStyles.Right)));
this.caServerTextBox.Location=newSystem.Drawing.Point(627,5);
this.caServerTextBox.Name="caServerTextBox";
this.caServerTextBox.Size=newSystem.Drawing.Size(230,31);
this.caServerTextBox.TabIndex=7;
this.caServerTextBox.Visible=false;
//
// ordersTabPage
//
this.ordersTabPage.Controls.Add(this.orderTableLayoutPanel);
this.ordersTabPage.Location=newSystem.Drawing.Point(8,39);
this.ordersTabPage.Name="ordersTabPage";
this.ordersTabPage.Padding=newSystem.Windows.Forms.Padding(3);
this.ordersTabPage.Size=newSystem.Drawing.Size(1328,1474);
this.ordersTabPage.TabIndex=1;
this.ordersTabPage.Text="Orders";
this.ordersTabPage.UseVisualStyleBackColor=true;
//
// orderTableLayoutPanel
//
this.orderTableLayoutPanel.ColumnCount=2;
this.orderTableLayoutPanel.ColumnStyles.Add(newSystem.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute,31F));
this.orderTableLayoutPanel.ColumnStyles.Add(newSystem.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent,84.2803F));
this.orderTableLayoutPanel.Controls.Add(this.orderDetailsTabControl,1,4);
this.orderTableLayoutPanel.Controls.Add(this.tableLayoutPanel3,1,2);
this.orderTableLayoutPanel.Controls.Add(this.orderButtonsFlowLayoutPanel,1,3);
this.orderTableLayoutPanel.Controls.Add(this.dnsIdentifiersLabel,1,0);
this.orderTableLayoutPanel.Controls.Add(this.dnsIdentifiersTextBox,1,1);
this.orderTableLayoutPanel.Dock=System.Windows.Forms.DockStyle.Fill;
this.orderTableLayoutPanel.Location=newSystem.Drawing.Point(3,3);
this.orderTableLayoutPanel.Name="orderTableLayoutPanel";
this.orderTableLayoutPanel.RowCount=6;
this.orderTableLayoutPanel.RowStyles.Add(newSystem.Windows.Forms.RowStyle());
this.orderTableLayoutPanel.RowStyles.Add(newSystem.Windows.Forms.RowStyle());
this.orderTableLayoutPanel.RowStyles.Add(newSystem.Windows.Forms.RowStyle());
this.orderTableLayoutPanel.RowStyles.Add(newSystem.Windows.Forms.RowStyle());
this.orderTableLayoutPanel.RowStyles.Add(newSystem.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent,50F));
this.orderTableLayoutPanel.RowStyles.Add(newSystem.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute,20F));
this.orderTableLayoutPanel.Size=newSystem.Drawing.Size(1322,1468);
this.orderTableLayoutPanel.TabIndex=1;
//
// orderDetailsTabControl
//
this.orderDetailsTabControl.Anchor=((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top|System.Windows.Forms.AnchorStyles.Bottom)
|System.Windows.Forms.AnchorStyles.Left)
|System.Windows.Forms.AnchorStyles.Right)));
this.orderDetailsTabControl.Controls.Add(this.orderDetailsTabPage);
this.orderDetailsTabControl.Controls.Add(this.authorizationsTabPage);
this.orderDetailsTabControl.Location=newSystem.Drawing.Point(34,300);
this.orderDetailsTabControl.Name="orderDetailsTabControl";
this.orderDetailsTabControl.SelectedIndex=0;
this.orderDetailsTabControl.Size=newSystem.Drawing.Size(1285,1145);
this.orderDetailsTabControl.TabIndex=15;
//
// orderDetailsTabPage
//
this.orderDetailsTabPage.Controls.Add(this.orderPropertyGrid);
this.orderDetailsTabPage.Location=newSystem.Drawing.Point(8,39);
this.orderDetailsTabPage.Name="orderDetailsTabPage";
this.orderDetailsTabPage.Padding=newSystem.Windows.Forms.Padding(3);
this.orderDetailsTabPage.Size=newSystem.Drawing.Size(1269,1098);
this.orderDetailsTabPage.TabIndex=0;
this.orderDetailsTabPage.Text="Order Details";
this.orderDetailsTabPage.UseVisualStyleBackColor=true;
//
// orderPropertyGrid
//
this.orderPropertyGrid.Dock=System.Windows.Forms.DockStyle.Fill;
this.orderPropertyGrid.Location=newSystem.Drawing.Point(3,3);
this.orderPropertyGrid.Name="orderPropertyGrid";
this.orderPropertyGrid.PropertySort=System.Windows.Forms.PropertySort.Categorized;
this.orderPropertyGrid.Size=newSystem.Drawing.Size(1263,1092);
this.orderPropertyGrid.TabIndex=23;
this.orderPropertyGrid.ToolbarVisible=false;
//
// authorizationsTabPage
//
this.authorizationsTabPage.Controls.Add(this.tableLayoutPanel4);
this.authorizationsTabPage.Location=newSystem.Drawing.Point(8,39);
this.authorizationsTabPage.Name="authorizationsTabPage";
this.authorizationsTabPage.Padding=newSystem.Windows.Forms.Padding(3);
this.authorizationsTabPage.Size=newSystem.Drawing.Size(1269,1098);
this.authorizationsTabPage.TabIndex=1;
this.authorizationsTabPage.Text="Authorizations";
this.authorizationsTabPage.UseVisualStyleBackColor=true;
//
// tableLayoutPanel4
//
this.tableLayoutPanel4.ColumnCount=2;
this.tableLayoutPanel4.ColumnStyles.Add(newSystem.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute,19F));
this.tableLayoutPanel4.ColumnStyles.Add(newSystem.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent,100F));
this.tableLayoutPanel4.Controls.Add(this.authorizationsListBox,1,0);
this.tableLayoutPanel4.Controls.Add(this.authorizationsTabControl,1,1);
this.tableLayoutPanel4.Dock=System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel4.Location=newSystem.Drawing.Point(3,3);
this.tableLayoutPanel4.Name="tableLayoutPanel4";
this.tableLayoutPanel4.RowCount=2;
this.tableLayoutPanel4.RowStyles.Add(newSystem.Windows.Forms.RowStyle());
this.tableLayoutPanel4.RowStyles.Add(newSystem.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent,100F));
this.tableLayoutPanel4.RowStyles.Add(newSystem.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute,20F));
this.tableLayoutPanel4.Size=newSystem.Drawing.Size(1263,1092);
this.tableLayoutPanel4.TabIndex=0;
//
// authorizationsListBox
//
this.authorizationsListBox.Dock=System.Windows.Forms.DockStyle.Top;
this.authorizationsListBox.FormattingEnabled=true;
this.authorizationsListBox.ItemHeight=25;
this.authorizationsListBox.Location=newSystem.Drawing.Point(22,3);
this.authorizationsListBox.Name="authorizationsListBox";
this.authorizationsListBox.Size=newSystem.Drawing.Size(1238,104);
this.authorizationsListBox.TabIndex=17;
this.authorizationsListBox.SelectedIndexChanged+=newSystem.EventHandler(this.authorizationsListBox_SelectedIndexChanged);
//
// authorizationsTabControl
//
this.authorizationsTabControl.Controls.Add(this.authorizationDetailsTabPage);
this.authorizationsTabControl.Controls.Add(this.challengesTabPage);
this.authorizationsTabControl.Dock=System.Windows.Forms.DockStyle.Fill;
this.authorizationsTabControl.Location=newSystem.Drawing.Point(22,113);
this.authorizationsTabControl.Name="authorizationsTabControl";
this.authorizationsTabControl.SelectedIndex=0;
this.authorizationsTabControl.Size=newSystem.Drawing.Size(1238,976);
this.authorizationsTabControl.TabIndex=33;
//
// authorizationDetailsTabPage
//
this.authorizationDetailsTabPage.Controls.Add(this.tableLayoutPanel2);
this.authorizationDetailsTabPage.Location=newSystem.Drawing.Point(8,39);
this.authorizationDetailsTabPage.Name="authorizationDetailsTabPage";
this.authorizationDetailsTabPage.Padding=newSystem.Windows.Forms.Padding(3);
this.authorizationDetailsTabPage.Size=newSystem.Drawing.Size(1222,929);
this.authorizationDetailsTabPage.TabIndex=0;
this.authorizationDetailsTabPage.Text="Details";
this.authorizationDetailsTabPage.UseVisualStyleBackColor=true;
//
// tableLayoutPanel2
//
this.tableLayoutPanel2.ColumnCount=2;
this.tableLayoutPanel2.ColumnStyles.Add(newSystem.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute,21F));
this.tableLayoutPanel2.ColumnStyles.Add(newSystem.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent,50F));
this.tableLayoutPanel2.Controls.Add(this.authorizationPropertyGrid,1,0);
this.tableLayoutPanel2.Controls.Add(this.challengesTabControl,1,1);
this.tableLayoutPanel2.Dock=System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel2.Location=newSystem.Drawing.Point(3,3);
this.tableLayoutPanel2.Name="tableLayoutPanel2";
this.tableLayoutPanel2.RowCount=2;
this.tableLayoutPanel2.RowStyles.Add(newSystem.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent,50F));
this.tableLayoutPanel2.RowStyles.Add(newSystem.Windows.Forms.RowStyle());
this.tableLayoutPanel2.Size=newSystem.Drawing.Size(1216,923);
this.tableLayoutPanel2.TabIndex=0;
//
// authorizationPropertyGrid
//
this.authorizationPropertyGrid.Dock=System.Windows.Forms.DockStyle.Fill;
this.authorizationPropertyGrid.HelpVisible=false;
this.authorizationPropertyGrid.Location=newSystem.Drawing.Point(24,3);
this.authorizationPropertyGrid.Name="authorizationPropertyGrid";
this.authorizationPropertyGrid.PropertySort=System.Windows.Forms.PropertySort.NoSort;
this.authorizationPropertyGrid.Size=newSystem.Drawing.Size(1189,498);
this.authorizationPropertyGrid.TabIndex=29;
this.authorizationPropertyGrid.ToolbarVisible=false;
//
// challengesTabControl
//
this.challengesTabControl.Controls.Add(this.dnsChallengeTabPage);
this.challengesTabControl.Controls.Add(this.httpChallengeTabPage);
this.challengesTabControl.Dock=System.Windows.Forms.DockStyle.Bottom;
this.challengesTabControl.Location=newSystem.Drawing.Point(24,507);
this.challengesTabControl.Name="challengesTabControl";
this.challengesTabControl.SelectedIndex=0;
this.challengesTabControl.Size=newSystem.Drawing.Size(1189,413);
this.challengesTabControl.TabIndex=25;
this.challengesTabControl.SelectedIndexChanged+=newSystem.EventHandler(this.challengesTabControl_SelectedIndexChanged);
//
// dnsChallengeTabPage
//
this.dnsChallengeTabPage.Controls.Add(this.tableLayoutPanel7);
this.dnsChallengeTabPage.Location=newSystem.Drawing.Point(8,39);
this.dnsChallengeTabPage.Name="dnsChallengeTabPage";
this.dnsChallengeTabPage.Padding=newSystem.Windows.Forms.Padding(3);
this.dnsChallengeTabPage.Size=newSystem.Drawing.Size(1173,366);
this.dnsChallengeTabPage.TabIndex=0;
this.dnsChallengeTabPage.Text="DNS Challenge";
this.dnsChallengeTabPage.UseVisualStyleBackColor=true;
//
// tableLayoutPanel7
//
this.tableLayoutPanel7.ColumnCount=2;
this.tableLayoutPanel7.ColumnStyles.Add(newSystem.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute,220F));
this.tableLayoutPanel7.ColumnStyles.Add(newSystem.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent,100F));
this.tableLayoutPanel7.Controls.Add(this.dnsRecordValueTextBox,1,2);
this.tableLayoutPanel7.Controls.Add(this.dnsRecordNameTextBox,1,0);
this.tableLayoutPanel7.Controls.Add(this.dnsRecordValueLabel,0,2);
this.tableLayoutPanel7.Controls.Add(this.dnsRecordTypeTextBox,1,1);
this.tableLayoutPanel7.Controls.Add(this.dnsRecordTypeLabel,0,1);
this.tableLayoutPanel7.Controls.Add(this.dnsRecordNameLabel,0,0);
this.tableLayoutPanel7.Controls.Add(this.flowLayoutPanel2,1,3);
this.tableLayoutPanel7.Dock=System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel7.Location=newSystem.Drawing.Point(3,3);
this.tableLayoutPanel7.Name="tableLayoutPanel7";
this.tableLayoutPanel7.RowCount=4;
this.tableLayoutPanel7.RowStyles.Add(newSystem.Windows.Forms.RowStyle());
this.tableLayoutPanel7.RowStyles.Add(newSystem.Windows.Forms.RowStyle());
this.tableLayoutPanel7.RowStyles.Add(newSystem.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent,50F));
this.tableLayoutPanel7.RowStyles.Add(newSystem.Windows.Forms.RowStyle());
this.tableLayoutPanel7.Size=newSystem.Drawing.Size(1167,360);
this.tableLayoutPanel7.TabIndex=0;
//
// dnsRecordValueTextBox
//
this.dnsRecordValueTextBox.Dock=System.Windows.Forms.DockStyle.Fill;
this.dnsRecordValueTextBox.Location=newSystem.Drawing.Point(223,77);
this.dnsRecordValueTextBox.Multiline=true;
this.dnsRecordValueTextBox.Name="dnsRecordValueTextBox";
this.dnsRecordValueTextBox.ReadOnly=true;
this.dnsRecordValueTextBox.ScrollBars=System.Windows.Forms.ScrollBars.Both;
this.dnsRecordValueTextBox.Size=newSystem.Drawing.Size(941,194);
this.dnsRecordValueTextBox.TabIndex=8;
this.dnsRecordValueTextBox.WordWrap=false;
//
// dnsRecordNameTextBox
//
this.dnsRecordNameTextBox.Anchor=((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top|System.Windows.Forms.AnchorStyles.Left)
|System.Windows.Forms.AnchorStyles.Right)));
this.dnsRecordNameTextBox.Location=newSystem.Drawing.Point(223,3);
this.dnsRecordNameTextBox.Name="dnsRecordNameTextBox";
this.dnsRecordNameTextBox.ReadOnly=true;
this.dnsRecordNameTextBox.Size=newSystem.Drawing.Size(941,31);
this.dnsRecordNameTextBox.TabIndex=4;
//
// dnsRecordValueLabel
//
this.dnsRecordValueLabel.AutoSize=true;
this.dnsRecordValueLabel.Location=newSystem.Drawing.Point(3,74);
this.dnsRecordValueLabel.Name="dnsRecordValueLabel";
this.dnsRecordValueLabel.Size=newSystem.Drawing.Size(148,25);
this.dnsRecordValueLabel.TabIndex=9;
this.dnsRecordValueLabel.Text="Record Value:";
//
// dnsRecordTypeTextBox
//
this.dnsRecordTypeTextBox.Anchor=((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top|System.Windows.Forms.AnchorStyles.Left)
|System.Windows.Forms.AnchorStyles.Right)));
this.dnsRecordTypeTextBox.Location=newSystem.Drawing.Point(223,40);
this.dnsRecordTypeTextBox.Name="dnsRecordTypeTextBox";
this.dnsRecordTypeTextBox.ReadOnly=true;
this.dnsRecordTypeTextBox.Size=newSystem.Drawing.Size(941,31);
this.dnsRecordTypeTextBox.TabIndex=6;
//
// dnsRecordTypeLabel
//
this.dnsRecordTypeLabel.AutoSize=true;
this.dnsRecordTypeLabel.Location=newSystem.Drawing.Point(3,37);
this.dnsRecordTypeLabel.Name="dnsRecordTypeLabel";
this.dnsRecordTypeLabel.Size=newSystem.Drawing.Size(141,25);
this.dnsRecordTypeLabel.TabIndex=7;
this.dnsRecordTypeLabel.Text="Record Type:";
//
// dnsRecordNameLabel
//
this.dnsRecordNameLabel.AutoSize=true;
this.dnsRecordNameLabel.Location=newSystem.Drawing.Point(3,0);
this.dnsRecordNameLabel.Name="dnsRecordNameLabel";
this.dnsRecordNameLabel.Size=newSystem.Drawing.Size(149,25);
this.dnsRecordNameLabel.TabIndex=5;
this.dnsRecordNameLabel.Text="Record Name:";
//
// flowLayoutPanel2
//
this.flowLayoutPanel2.Controls.Add(this.submitDnsAnswerButton);
this.flowLayoutPanel2.Controls.Add(this.testDnsAnswerButton);
this.flowLayoutPanel2.Dock=System.Windows.Forms.DockStyle.Bottom;
this.flowLayoutPanel2.Location=newSystem.Drawing.Point(223,277);
this.flowLayoutPanel2.Name="flowLayoutPanel2";
this.flowLayoutPanel2.Size=newSystem.Drawing.Size(941,80);
this.flowLayoutPanel2.TabIndex=10;
//
// submitDnsAnswerButton
//
this.submitDnsAnswerButton.AutoSize=true;
this.submitDnsAnswerButton.AutoSizeMode=System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.submitDnsAnswerButton.Location=newSystem.Drawing.Point(10,10);
this.submitDnsAnswerButton.Margin=newSystem.Windows.Forms.Padding(10);
this.submitDnsAnswerButton.Name="submitDnsAnswerButton";
this.submitDnsAnswerButton.Padding=newSystem.Windows.Forms.Padding(10);
this.submitDnsAnswerButton.Size=newSystem.Drawing.Size(235,55);
this.submitDnsAnswerButton.TabIndex=8;
this.submitDnsAnswerButton.Text="Submit DNS Answer";
this.submitDnsAnswerButton.UseVisualStyleBackColor=true;
this.submitDnsAnswerButton.Click+=newSystem.EventHandler(this.submitDnsAnswerButton_Click);
//
// testDnsAnswerButton
//
this.testDnsAnswerButton.AutoSize=true;
this.testDnsAnswerButton.AutoSizeMode=System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.testDnsAnswerButton.Location=newSystem.Drawing.Point(265,10);
this.testDnsAnswerButton.Margin=newSystem.Windows.Forms.Padding(10);
this.testDnsAnswerButton.Name="testDnsAnswerButton";
this.testDnsAnswerButton.Padding=newSystem.Windows.Forms.Padding(10);
this.testDnsAnswerButton.Size=newSystem.Drawing.Size(211,55);
this.testDnsAnswerButton.TabIndex=9;
this.testDnsAnswerButton.Text="Test DNS Answer";
this.testDnsAnswerButton.UseVisualStyleBackColor=true;
this.testDnsAnswerButton.Click+=newSystem.EventHandler(this.testDnsAnswerButton_Click);
//
// httpChallengeTabPage
//
this.httpChallengeTabPage.Controls.Add(this.tableLayoutPanel5);
this.httpChallengeTabPage.Location=newSystem.Drawing.Point(8,39);
this.httpChallengeTabPage.Name="httpChallengeTabPage";
this.httpChallengeTabPage.Padding=newSystem.Windows.Forms.Padding(3);
this.httpChallengeTabPage.Size=newSystem.Drawing.Size(1173,366);
this.httpChallengeTabPage.TabIndex=1;
this.httpChallengeTabPage.Text="HTTP Challenge";
this.httpChallengeTabPage.UseVisualStyleBackColor=true;
//
// tableLayoutPanel5
//
this.tableLayoutPanel5.ColumnCount=2;
this.tableLayoutPanel5.ColumnStyles.Add(newSystem.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute,220F));
this.tableLayoutPanel5.ColumnStyles.Add(newSystem.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent,100F));
this.tableLayoutPanel5.Controls.Add(this.httpResourceValueLabel,0,3);
this.tableLayoutPanel5.Controls.Add(this.httpResourceValueTextBox,1,3);
this.tableLayoutPanel5.Controls.Add(this.httpResourceContentTypeLabel,0,2);
this.tableLayoutPanel5.Controls.Add(this.httpResourceUrlTextBox,1,0);
this.tableLayoutPanel5.Controls.Add(this.httpResourcePathLabel,0,1);
this.tableLayoutPanel5.Controls.Add(this.httpResourcePathTextBox,1,1);
this.tableLayoutPanel5.Controls.Add(this.httpResourceUrlLabel,0,0);
this.tableLayoutPanel5.Controls.Add(this.httpResourceContentTypeTextBox,1,2);
this.tableLayoutPanel5.Controls.Add(this.flowLayoutPanel1,1,4);
this.tableLayoutPanel5.Dock=System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel5.Location=newSystem.Drawing.Point(3,3);
this.tableLayoutPanel5.Name="tableLayoutPanel5";
this.tableLayoutPanel5.RowCount=5;
this.tableLayoutPanel5.RowStyles.Add(newSystem.Windows.Forms.RowStyle());
this.tableLayoutPanel5.RowStyles.Add(newSystem.Windows.Forms.RowStyle());
this.tableLayoutPanel5.RowStyles.Add(newSystem.Windows.Forms.RowStyle());
this.tableLayoutPanel5.RowStyles.Add(newSystem.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent,50F));
this.tableLayoutPanel5.RowStyles.Add(newSystem.Windows.Forms.RowStyle());
this.tableLayoutPanel5.Size=newSystem.Drawing.Size(1167,360);
this.tableLayoutPanel5.TabIndex=0;
//
// httpResourceValueLabel
//
this.httpResourceValueLabel.AutoSize=true;
this.httpResourceValueLabel.Location=newSystem.Drawing.Point(3,111);
this.httpResourceValueLabel.Name="httpResourceValueLabel";
this.httpResourceValueLabel.Size=newSystem.Drawing.Size(171,25);
this.httpResourceValueLabel.TabIndex=13;
this.httpResourceValueLabel.Text="Resource Value:";
//
// httpResourceValueTextBox
//
this.httpResourceValueTextBox.Dock=System.Windows.Forms.DockStyle.Fill;
this.httpResourceValueTextBox.Location=newSystem.Drawing.Point(223,114);
this.httpResourceValueTextBox.Multiline=true;
this.httpResourceValueTextBox.Name="httpResourceValueTextBox";
this.httpResourceValueTextBox.ReadOnly=true;
this.httpResourceValueTextBox.ScrollBars=System.Windows.Forms.ScrollBars.Both;
this.httpResourceValueTextBox.Size=newSystem.Drawing.Size(941,157);
this.httpResourceValueTextBox.TabIndex=12;
this.httpResourceValueTextBox.WordWrap=false;
//
// httpResourceContentTypeLabel
//
this.httpResourceContentTypeLabel.AutoSize=true;
this.httpResourceContentTypeLabel.Location=newSystem.Drawing.Point(3,74);
this.httpResourceContentTypeLabel.Name="httpResourceContentTypeLabel";
this.httpResourceContentTypeLabel.Size=newSystem.Drawing.Size(185,25);
this.httpResourceContentTypeLabel.TabIndex=11;
this.httpResourceContentTypeLabel.Text="Res Content-type:";
//
// httpResourceUrlTextBox
//
this.httpResourceUrlTextBox.Anchor=((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top|System.Windows.Forms.AnchorStyles.Left)
|System.Windows.Forms.AnchorStyles.Right)));
this.httpResourceUrlTextBox.Location=newSystem.Drawing.Point(223,3);
this.httpResourceUrlTextBox.Name="httpResourceUrlTextBox";
this.httpResourceUrlTextBox.ReadOnly=true;
this.httpResourceUrlTextBox.Size=newSystem.Drawing.Size(941,31);
this.httpResourceUrlTextBox.TabIndex=6;
//
// httpResourcePathLabel
//
this.httpResourcePathLabel.AutoSize=true;
this.httpResourcePathLabel.Location=newSystem.Drawing.Point(3,37);
this.httpResourcePathLabel.Name="httpResourcePathLabel";
this.httpResourcePathLabel.Size=newSystem.Drawing.Size(160,25);
this.httpResourcePathLabel.TabIndex=9;
this.httpResourcePathLabel.Text="Resource Path:";
//
// httpResourcePathTextBox
//
this.httpResourcePathTextBox.Anchor=((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top|System.Windows.Forms.AnchorStyles.Left)
|System.Windows.Forms.AnchorStyles.Right)));
this.httpResourcePathTextBox.Location=newSystem.Drawing.Point(223,40);
this.httpResourcePathTextBox.Name="httpResourcePathTextBox";
this.httpResourcePathTextBox.ReadOnly=true;
this.httpResourcePathTextBox.Size=newSystem.Drawing.Size(941,31);
this.httpResourcePathTextBox.TabIndex=8;
//
// httpResourceUrlLabel
//
this.httpResourceUrlLabel.AutoSize=true;
this.httpResourceUrlLabel.Location=newSystem.Drawing.Point(3,0);
this.httpResourceUrlLabel.Name="httpResourceUrlLabel";
this.httpResourceUrlLabel.Size=newSystem.Drawing.Size(158,25);
this.httpResourceUrlLabel.TabIndex=7;
this.httpResourceUrlLabel.Text="Resource URL:";
//
// httpResourceContentTypeTextBox
//
this.httpResourceContentTypeTextBox.Anchor=((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top|System.Windows.Forms.AnchorStyles.Left)
|System.Windows.Forms.AnchorStyles.Right)));
this.httpResourceContentTypeTextBox.Location=newSystem.Drawing.Point(223,77);
this.httpResourceContentTypeTextBox.Name="httpResourceContentTypeTextBox";
this.httpResourceContentTypeTextBox.ReadOnly=true;
this.httpResourceContentTypeTextBox.Size=newSystem.Drawing.Size(941,31);
this.httpResourceContentTypeTextBox.TabIndex=10;
//
// flowLayoutPanel1
//
this.flowLayoutPanel1.Controls.Add(this.submitHttpAnswerButton);
this.flowLayoutPanel1.Controls.Add(this.testHttpAnswerButton);
this.flowLayoutPanel1.Dock=System.Windows.Forms.DockStyle.Bottom;
this.flowLayoutPanel1.Location=newSystem.Drawing.Point(223,277);
this.flowLayoutPanel1.Name="flowLayoutPanel1";
this.flowLayoutPanel1.Size=newSystem.Drawing.Size(941,80);
this.flowLayoutPanel1.TabIndex=14;
//
// submitHttpAnswerButton
//
this.submitHttpAnswerButton.AutoSize=true;
this.submitHttpAnswerButton.AutoSizeMode=System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.submitHttpAnswerButton.Location=newSystem.Drawing.Point(10,10);
this.submitHttpAnswerButton.Margin=newSystem.Windows.Forms.Padding(10);
this.submitHttpAnswerButton.Name="submitHttpAnswerButton";
this.submitHttpAnswerButton.Padding=newSystem.Windows.Forms.Padding(10);
this.submitHttpAnswerButton.Size=newSystem.Drawing.Size(246,55);
this.submitHttpAnswerButton.TabIndex=7;
this.submitHttpAnswerButton.Text="Submit HTTP Answer";
this.submitHttpAnswerButton.UseVisualStyleBackColor=true;
//
// testHttpAnswerButton
//
this.testHttpAnswerButton.AutoSize=true;
this.testHttpAnswerButton.AutoSizeMode=System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.testHttpAnswerButton.Location=newSystem.Drawing.Point(276,10);
this.testHttpAnswerButton.Margin=newSystem.Windows.Forms.Padding(10);
this.testHttpAnswerButton.Name="testHttpAnswerButton";
this.testHttpAnswerButton.Padding=newSystem.Windows.Forms.Padding(10);
this.testHttpAnswerButton.Size=newSystem.Drawing.Size(222,55);
this.testHttpAnswerButton.TabIndex=8;
this.testHttpAnswerButton.Text="Test HTTP Answer";
this.testHttpAnswerButton.UseVisualStyleBackColor=true;
//
// challengesTabPage
//
this.challengesTabPage.Controls.Add(this.challengesTableLayoutPanel);
this.challengesTabPage.Location=newSystem.Drawing.Point(8,39);
this.challengesTabPage.Name="challengesTabPage";
this.challengesTabPage.Padding=newSystem.Windows.Forms.Padding(3);
this.challengesTabPage.Size=newSystem.Drawing.Size(1222,929);
this.challengesTabPage.TabIndex=1;
this.challengesTabPage.Text="Full Challenge Details";
this.challengesTabPage.UseVisualStyleBackColor=true;
//
// challengesTableLayoutPanel
//
this.challengesTableLayoutPanel.ColumnCount=2;
this.challengesTableLayoutPanel.ColumnStyles.Add(newSystem.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute,21F));
this.challengesTableLayoutPanel.ColumnStyles.Add(newSystem.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent,100F));
this.challengesTableLayoutPanel.Controls.Add(this.miscChallengeTypesListBox,1,0);
this.challengesTableLayoutPanel.Controls.Add(this.challengeDetailsTabControl,1,1);
this.challengesTableLayoutPanel.Dock=System.Windows.Forms.DockStyle.Fill;
this.challengesTableLayoutPanel.Location=newSystem.Drawing.Point(3,3);
this.challengesTableLayoutPanel.Name="challengesTableLayoutPanel";
this.challengesTableLayoutPanel.RowCount=2;
this.challengesTableLayoutPanel.RowStyles.Add(newSystem.Windows.Forms.RowStyle());
this.challengesTableLayoutPanel.RowStyles.Add(newSystem.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent,50F));
this.challengesTableLayoutPanel.Size=newSystem.Drawing.Size(1216,923);
this.challengesTableLayoutPanel.TabIndex=0;
//
// miscChallengeTypesListBox
//
this.miscChallengeTypesListBox.Dock=System.Windows.Forms.DockStyle.Top;
this.miscChallengeTypesListBox.FormattingEnabled=true;
this.miscChallengeTypesListBox.ItemHeight=25;
this.miscChallengeTypesListBox.Location=newSystem.Drawing.Point(24,3);
this.miscChallengeTypesListBox.Name="miscChallengeTypesListBox";
this.miscChallengeTypesListBox.Size=newSystem.Drawing.Size(1189,154);
this.miscChallengeTypesListBox.TabIndex=2;
this.miscChallengeTypesListBox.SelectedIndexChanged+=newSystem.EventHandler(this.miscChallengeTypesListBox_SelectedIndexChanged);
//
// challengeDetailsTabControl
//
this.challengeDetailsTabControl.Controls.Add(this.challengeDetailsTabPage);
this.challengeDetailsTabControl.Controls.Add(this.challengeErrorTabPage);
this.challengeDetailsTabControl.Controls.Add(this.validationRecordsTabPage);
this.challengeDetailsTabControl.Dock=System.Windows.Forms.DockStyle.Fill;
this.challengeDetailsTabControl.Location=newSystem.Drawing.Point(24,163);
this.challengeDetailsTabControl.Name="challengeDetailsTabControl";
this.challengeDetailsTabControl.SelectedIndex=0;
this.challengeDetailsTabControl.Size=newSystem.Drawing.Size(1189,757);
this.challengeDetailsTabControl.TabIndex=32;
//
// challengeDetailsTabPage
//
this.challengeDetailsTabPage.Controls.Add(this.challengePopertyGrid);
this.challengeDetailsTabPage.Location=newSystem.Drawing.Point(8,39);
this.challengeDetailsTabPage.Name="challengeDetailsTabPage";
this.challengeDetailsTabPage.Padding=newSystem.Windows.Forms.Padding(3);
this.challengeDetailsTabPage.Size=newSystem.Drawing.Size(1173,710);
this.challengeDetailsTabPage.TabIndex=0;
this.challengeDetailsTabPage.Text="Challenge Details";
this.challengeDetailsTabPage.UseVisualStyleBackColor=true;
//
// challengePopertyGrid
//
this.challengePopertyGrid.Dock=System.Windows.Forms.DockStyle.Fill;
this.challengePopertyGrid.HelpVisible=false;
this.challengePopertyGrid.Location=newSystem.Drawing.Point(3,3);
this.challengePopertyGrid.Name="challengePopertyGrid";
this.challengePopertyGrid.PropertySort=System.Windows.Forms.PropertySort.NoSort;
this.challengePopertyGrid.Size=newSystem.Drawing.Size(1167,704);
this.challengePopertyGrid.TabIndex=28;
this.challengePopertyGrid.ToolbarVisible=false;
//
// challengeErrorTabPage
//
this.challengeErrorTabPage.Controls.Add(this.challengeErrorTextBox);
this.challengeErrorTabPage.Location=newSystem.Drawing.Point(8,39);
this.challengeErrorTabPage.Name="challengeErrorTabPage";
this.challengeErrorTabPage.Padding=newSystem.Windows.Forms.Padding(3);
this.challengeErrorTabPage.Size=newSystem.Drawing.Size(1173,710);
this.challengeErrorTabPage.TabIndex=1;
this.challengeErrorTabPage.Text="Error";
this.challengeErrorTabPage.UseVisualStyleBackColor=true;
//
// challengeErrorTextBox
//
this.challengeErrorTextBox.Dock=System.Windows.Forms.DockStyle.Fill;
this.challengeErrorTextBox.Location=newSystem.Drawing.Point(3,3);
this.challengeErrorTextBox.Multiline=true;
this.challengeErrorTextBox.Name="challengeErrorTextBox";
this.challengeErrorTextBox.ReadOnly=true;
this.challengeErrorTextBox.Size=newSystem.Drawing.Size(1167,704);
this.challengeErrorTextBox.TabIndex=2;
this.challengeErrorTextBox.WordWrap=false;
//
// validationRecordsTabPage
//
this.validationRecordsTabPage.Controls.Add(this.validationRecordsTextBox);
this.validationRecordsTabPage.Location=newSystem.Drawing.Point(8,39);
this.validationRecordsTabPage.Name="validationRecordsTabPage";
this.validationRecordsTabPage.Padding=newSystem.Windows.Forms.Padding(3);
this.validationRecordsTabPage.Size=newSystem.Drawing.Size(1173,710);
this.validationRecordsTabPage.TabIndex=2;
this.validationRecordsTabPage.Text="Validation Records";
this.validationRecordsTabPage.UseVisualStyleBackColor=true;
//
// validationRecordsTextBox
//
this.validationRecordsTextBox.Dock=System.Windows.Forms.DockStyle.Fill;
this.validationRecordsTextBox.Location=newSystem.Drawing.Point(3,3);
this.validationRecordsTextBox.Multiline=true;
this.validationRecordsTextBox.Name="validationRecordsTextBox";
this.validationRecordsTextBox.ReadOnly=true;
this.validationRecordsTextBox.Size=newSystem.Drawing.Size(1167,704);
this.validationRecordsTextBox.TabIndex=12;
this.validationRecordsTextBox.WordWrap=false;
//
// tableLayoutPanel3
//
this.tableLayoutPanel3.ColumnCount=4;
this.tableLayoutPanel3.ColumnStyles.Add(newSystem.Windows.Forms.ColumnStyle());
this.tableLayoutPanel3.ColumnStyles.Add(newSystem.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent,50F));
this.tableLayoutPanel3.ColumnStyles.Add(newSystem.Windows.Forms.ColumnStyle());
this.tableLayoutPanel3.ColumnStyles.Add(newSystem.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent,50F));
this.tableLayoutPanel3.Controls.Add(this.notAfterDateTimePicker,3,0);
this.tableLayoutPanel3.Controls.Add(this.notAfterLabel,2,0);
this.tableLayoutPanel3.Controls.Add(this.notBeforeDateTimePicker,1,0);
this.tableLayoutPanel3.Controls.Add(this.notBeforeLabel,0,0);
this.tableLayoutPanel3.Dock=System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel3.Location=newSystem.Drawing.Point(34,150);
this.tableLayoutPanel3.Name="tableLayoutPanel3";
this.tableLayoutPanel3.RowCount=1;
this.tableLayoutPanel3.RowStyles.Add(newSystem.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent,100F));
this.tableLayoutPanel3.Size=newSystem.Drawing.Size(1285,44);
this.tableLayoutPanel3.TabIndex=10;
//
// notAfterDateTimePicker
//
this.notAfterDateTimePicker.Checked=false;
this.notAfterDateTimePicker.Dock=System.Windows.Forms.DockStyle.Fill;
this.notAfterDateTimePicker.Location=newSystem.Drawing.Point(762,3);
this.notAfterDateTimePicker.Name="notAfterDateTimePicker";
this.notAfterDateTimePicker.ShowCheckBox=true;
this.notAfterDateTimePicker.Size=newSystem.Drawing.Size(520,31);
this.notAfterDateTimePicker.TabIndex=3;
//
// notAfterLabel
//
this.notAfterLabel.AutoSize=true;
this.notAfterLabel.Dock=System.Windows.Forms.DockStyle.Fill;
this.notAfterLabel.Location=newSystem.Drawing.Point(654,0);
this.notAfterLabel.Name="notAfterLabel";
this.notAfterLabel.Size=newSystem.Drawing.Size(102,44);