From ba4d4cec81351fc6b7ac1a3b032791fd8064d77c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damian=20B=C3=BCchel?= Date: Fri, 28 Feb 2020 15:00:17 +0100 Subject: [PATCH] SEBWIN-367: Implemented mapping for service configuration values and added new options in configuration tool. --- .../ConfigurationData/DataMapper.cs | 1 + .../DataMapping/ServiceDataMapper.cs | 154 ++ .../ConfigurationData/Keys.cs | 16 + .../SafeExamBrowser.Configuration.csproj | 1 + SebWindowsConfig/SEBSettings.cs | 4 + .../SebWindowsConfigForm.Designer.cs | 2186 +++++++++-------- SebWindowsConfig/SebWindowsConfigForm.cs | 13 + SebWindowsConfig/SebWindowsConfigForm.resx | 1782 +++++++------- 8 files changed, 2208 insertions(+), 1949 deletions(-) create mode 100644 SafeExamBrowser.Configuration/ConfigurationData/DataMapping/ServiceDataMapper.cs diff --git a/SafeExamBrowser.Configuration/ConfigurationData/DataMapper.cs b/SafeExamBrowser.Configuration/ConfigurationData/DataMapper.cs index 99797e6f..7083ffd6 100644 --- a/SafeExamBrowser.Configuration/ConfigurationData/DataMapper.cs +++ b/SafeExamBrowser.Configuration/ConfigurationData/DataMapper.cs @@ -23,6 +23,7 @@ namespace SafeExamBrowser.Configuration.ConfigurationData new GeneralDataMapper(), new InputDataMapper(), new SecurityDataMapper(), + new ServiceDataMapper(), new UserInterfaceDataMapper() }; diff --git a/SafeExamBrowser.Configuration/ConfigurationData/DataMapping/ServiceDataMapper.cs b/SafeExamBrowser.Configuration/ConfigurationData/DataMapping/ServiceDataMapper.cs new file mode 100644 index 00000000..67007e25 --- /dev/null +++ b/SafeExamBrowser.Configuration/ConfigurationData/DataMapping/ServiceDataMapper.cs @@ -0,0 +1,154 @@ +/* + * Copyright (c) 2020 ETH Zürich, Educational Development and Technology (LET) + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +using SafeExamBrowser.Settings; + +namespace SafeExamBrowser.Configuration.ConfigurationData.DataMapping +{ + internal class ServiceDataMapper : BaseDataMapper + { + internal override void Map(string key, object value, AppSettings settings) + { + switch (key) + { + case Keys.Service.EnableChromeNotifications: + MapEnableChromeNotifications(settings, value); + break; + case Keys.Service.EnableEaseOfAccessOptions: + MapEnableEaseOfAccessOptions(settings, value); + break; + case Keys.Service.EnableNetworkOptions: + MapEnableNetworkOptions(settings, value); + break; + case Keys.Service.EnablePasswordChange: + MapEnablePasswordChange(settings, value); + break; + case Keys.Service.EnablePowerOptions: + MapEnablePowerOptions(settings, value); + break; + case Keys.Service.EnableRemoteConnections: + MapEnableRemoteConnections(settings, value); + break; + case Keys.Service.EnableSignout: + MapEnableSignout(settings, value); + break; + case Keys.Service.EnableTaskManager: + MapEnableTaskManager(settings, value); + break; + case Keys.Service.EnableUserLock: + MapEnableUserLock(settings, value); + break; + case Keys.Service.EnableUserSwitch: + MapEnableUserSwitch(settings, value); + break; + case Keys.Service.EnableVmWareOverlay: + MapEnableVmWareOverlay(settings, value); + break; + case Keys.Service.EnableWindowsUpdate: + MapEnableWindowsUpdate(settings, value); + break; + } + } + + private void MapEnableChromeNotifications(AppSettings settings, object value) + { + if (value is bool enable) + { + settings.Service.DisableChromeNotifications = !enable; + } + } + + private void MapEnableEaseOfAccessOptions(AppSettings settings, object value) + { + if (value is bool enable) + { + settings.Service.DisableEaseOfAccessOptions = !enable; + } + } + + private void MapEnableNetworkOptions(AppSettings settings, object value) + { + if (value is bool enable) + { + settings.Service.DisableNetworkOptions = !enable; + } + } + + private void MapEnablePasswordChange(AppSettings settings, object value) + { + if (value is bool enable) + { + settings.Service.DisablePasswordChange = !enable; + } + } + + private void MapEnablePowerOptions(AppSettings settings, object value) + { + if (value is bool enable) + { + settings.Service.DisablePowerOptions = !enable; + } + } + + private void MapEnableRemoteConnections(AppSettings settings, object value) + { + if (value is bool enable) + { + settings.Service.DisableRemoteConnections = !enable; + } + } + + private void MapEnableSignout(AppSettings settings, object value) + { + if (value is bool enable) + { + settings.Service.DisableSignout = !enable; + } + } + + private void MapEnableTaskManager(AppSettings settings, object value) + { + if (value is bool enable) + { + settings.Service.DisableTaskManager = !enable; + } + } + + private void MapEnableUserLock(AppSettings settings, object value) + { + if (value is bool enable) + { + settings.Service.DisableUserLock = !enable; + } + } + + private void MapEnableUserSwitch(AppSettings settings, object value) + { + if (value is bool enable) + { + settings.Service.DisableUserSwitch = !enable; + } + } + + private void MapEnableVmWareOverlay(AppSettings settings, object value) + { + if (value is bool enable) + { + settings.Service.DisableVmwareOverlay = !enable; + } + } + + private void MapEnableWindowsUpdate(AppSettings settings, object value) + { + if (value is bool enable) + { + settings.Service.DisableWindowsUpdate = !enable; + } + } + } +} diff --git a/SafeExamBrowser.Configuration/ConfigurationData/Keys.cs b/SafeExamBrowser.Configuration/ConfigurationData/Keys.cs index fdbee652..332c98c5 100644 --- a/SafeExamBrowser.Configuration/ConfigurationData/Keys.cs +++ b/SafeExamBrowser.Configuration/ConfigurationData/Keys.cs @@ -213,6 +213,22 @@ namespace SafeExamBrowser.Configuration.ConfigurationData internal const string ServicePolicy = "sebServicePolicy"; } + internal static class Service + { + internal const string EnableChromeNotifications = "enableChromeNotifications"; + internal const string EnableEaseOfAccessOptions = "insideSebEnableEaseOfAccess"; + internal const string EnableNetworkOptions = "insideSebEnableEnableNetworkConnectionSelector"; + internal const string EnablePasswordChange = "insideSebEnableChangeAPassword"; + internal const string EnablePowerOptions = "insideSebEnableShutDown"; + internal const string EnableRemoteConnections = "allowScreenSharing"; + internal const string EnableSignout = "insideSebEnableLogOff"; + internal const string EnableTaskManager = "insideSebEnableStartTaskManager"; + internal const string EnableUserLock = "insideSebEnableLockThisComputer"; + internal const string EnableUserSwitch = "insideSebEnableSwitchUser"; + internal const string EnableVmWareOverlay = "insideSebEnableVmWareClientShade"; + internal const string EnableWindowsUpdate = "enableWindowsUpdate"; + } + internal static class UserInterface { internal const string ShowAudio = "audioControlEnabled"; diff --git a/SafeExamBrowser.Configuration/SafeExamBrowser.Configuration.csproj b/SafeExamBrowser.Configuration/SafeExamBrowser.Configuration.csproj index 6dca51e4..dde70438 100644 --- a/SafeExamBrowser.Configuration/SafeExamBrowser.Configuration.csproj +++ b/SafeExamBrowser.Configuration/SafeExamBrowser.Configuration.csproj @@ -64,6 +64,7 @@ + diff --git a/SebWindowsConfig/SEBSettings.cs b/SebWindowsConfig/SEBSettings.cs index e4ed4f43..ef25b03b 100644 --- a/SebWindowsConfig/SEBSettings.cs +++ b/SebWindowsConfig/SEBSettings.cs @@ -357,6 +357,8 @@ namespace SebWindowsConfig public const String KeyLogDirectoryWin = "logDirectoryWin"; public const String KeyAllowWLAN = "allowWlan"; public const String KeyLockOnMessageSocketClose = "lockOnMessageSocketClose"; + public const String KeyAllowChromeNotifications = "enableChromeNotifications"; + public const String KeyAllowWindowsUpdate = "enableWindowsUpdate"; // Group "macOS specific settings" public const String KeyMinMacOSVersion = "minMacOSVersion"; public const String KeyEnableAppSwitcherCheck = "enableAppSwitcherCheck"; @@ -901,6 +903,8 @@ namespace SebWindowsConfig SEBSettings.settingsDefault.Add(SEBSettings.KeyAllowDisplayMirroring, false); SEBSettings.settingsDefault.Add(SEBSettings.KeyAllowedDisplaysMaxNumber, 1); SEBSettings.settingsDefault.Add(SEBSettings.KeyAllowedDisplayBuiltin, true); + SEBSettings.settingsDefault.Add(SEBSettings.KeyAllowChromeNotifications, false); + SEBSettings.settingsDefault.Add(SEBSettings.KeyAllowWindowsUpdate, false); // Default selected index and string in combo box for minMacOSVersion SEBSettings.intArrayDefault[SEBSettings.ValMinMacOSVersion] = 4; diff --git a/SebWindowsConfig/SebWindowsConfigForm.Designer.cs b/SebWindowsConfig/SebWindowsConfigForm.Designer.cs index 9d0d0c3e..9c0e83d3 100644 --- a/SebWindowsConfig/SebWindowsConfigForm.Designer.cs +++ b/SebWindowsConfig/SebWindowsConfigForm.Designer.cs @@ -30,8 +30,8 @@ namespace SebWindowsConfig { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SebWindowsConfigForm)); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle(); this.openFileDialogSebConfigFile = new System.Windows.Forms.OpenFileDialog(); this.saveFileDialogSebConfigFile = new System.Windows.Forms.SaveFileDialog(); this.imageListTabIcons = new System.Windows.Forms.ImageList(this.components); @@ -73,6 +73,8 @@ namespace SebWindowsConfig this.checkBoxInsideSebEnableEaseOfAccess = new System.Windows.Forms.CheckBox(); this.checkBoxInsideSebEnableVmWareClientShade = new System.Windows.Forms.CheckBox(); this.tabPageSecurity = new System.Windows.Forms.TabPage(); + this.checkBoxAllowWindowsUpdate = new System.Windows.Forms.CheckBox(); + this.checkBoxAllowChromeNotifications = new System.Windows.Forms.CheckBox(); this.checkBoxShowLogButton = new System.Windows.Forms.CheckBox(); this.checkBoxAllowLogAccess = new System.Windows.Forms.CheckBox(); this.checkBoxEnablePrivateClipboard = new System.Windows.Forms.CheckBox(); @@ -520,10 +522,10 @@ namespace SebWindowsConfig this.tabPageHookedKeys.Controls.Add(this.groupBoxSpecialKeys); this.tabPageHookedKeys.ImageIndex = 10; this.tabPageHookedKeys.Location = new System.Drawing.Point(4, 39); - this.tabPageHookedKeys.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.tabPageHookedKeys.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.tabPageHookedKeys.Name = "tabPageHookedKeys"; - this.tabPageHookedKeys.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.tabPageHookedKeys.Size = new System.Drawing.Size(1867, 948); + this.tabPageHookedKeys.Padding = new System.Windows.Forms.Padding(2, 1, 2, 1); + this.tabPageHookedKeys.Size = new System.Drawing.Size(1242, 601); this.tabPageHookedKeys.TabIndex = 27; this.tabPageHookedKeys.Text = "Hooked Keys"; this.tabPageHookedKeys.UseVisualStyleBackColor = true; @@ -532,10 +534,10 @@ namespace SebWindowsConfig // this.checkBoxHookKeys.AutoSize = true; this.checkBoxHookKeys.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxHookKeys.Location = new System.Drawing.Point(34, 412); - this.checkBoxHookKeys.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxHookKeys.Location = new System.Drawing.Point(23, 268); + this.checkBoxHookKeys.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxHookKeys.Name = "checkBoxHookKeys"; - this.checkBoxHookKeys.Size = new System.Drawing.Size(182, 24); + this.checkBoxHookKeys.Size = new System.Drawing.Size(127, 17); this.checkBoxHookKeys.TabIndex = 0; this.checkBoxHookKeys.Text = "Hook keys (Win only)"; this.checkBoxHookKeys.UseVisualStyleBackColor = true; @@ -557,11 +559,11 @@ namespace SebWindowsConfig this.groupBoxFunctionKeys.Controls.Add(this.checkBoxEnableF7); this.groupBoxFunctionKeys.Controls.Add(this.checkBoxEnableF8); this.groupBoxFunctionKeys.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.groupBoxFunctionKeys.Location = new System.Drawing.Point(274, 22); - this.groupBoxFunctionKeys.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.groupBoxFunctionKeys.Location = new System.Drawing.Point(183, 14); + this.groupBoxFunctionKeys.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.groupBoxFunctionKeys.Name = "groupBoxFunctionKeys"; - this.groupBoxFunctionKeys.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.groupBoxFunctionKeys.Size = new System.Drawing.Size(195, 488); + this.groupBoxFunctionKeys.Padding = new System.Windows.Forms.Padding(2, 1, 2, 1); + this.groupBoxFunctionKeys.Size = new System.Drawing.Size(130, 317); this.groupBoxFunctionKeys.TabIndex = 41; this.groupBoxFunctionKeys.TabStop = false; this.groupBoxFunctionKeys.Text = "Function Keys"; @@ -572,10 +574,10 @@ namespace SebWindowsConfig // this.checkBoxEnableF1.AutoSize = true; this.checkBoxEnableF1.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxEnableF1.Location = new System.Drawing.Point(12, 38); - this.checkBoxEnableF1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxEnableF1.Location = new System.Drawing.Point(8, 25); + this.checkBoxEnableF1.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxEnableF1.Name = "checkBoxEnableF1"; - this.checkBoxEnableF1.Size = new System.Drawing.Size(108, 24); + this.checkBoxEnableF1.Size = new System.Drawing.Size(74, 17); this.checkBoxEnableF1.TabIndex = 0; this.checkBoxEnableF1.Text = "Enable F1"; this.checkBoxEnableF1.UseVisualStyleBackColor = true; @@ -585,10 +587,10 @@ namespace SebWindowsConfig // this.checkBoxEnableF2.AutoSize = true; this.checkBoxEnableF2.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxEnableF2.Location = new System.Drawing.Point(12, 75); - this.checkBoxEnableF2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxEnableF2.Location = new System.Drawing.Point(8, 49); + this.checkBoxEnableF2.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxEnableF2.Name = "checkBoxEnableF2"; - this.checkBoxEnableF2.Size = new System.Drawing.Size(108, 24); + this.checkBoxEnableF2.Size = new System.Drawing.Size(74, 17); this.checkBoxEnableF2.TabIndex = 1; this.checkBoxEnableF2.Text = "Enable F2"; this.checkBoxEnableF2.UseVisualStyleBackColor = true; @@ -598,10 +600,10 @@ namespace SebWindowsConfig // this.checkBoxEnableF12.AutoSize = true; this.checkBoxEnableF12.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxEnableF12.Location = new System.Drawing.Point(12, 449); - this.checkBoxEnableF12.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxEnableF12.Location = new System.Drawing.Point(8, 292); + this.checkBoxEnableF12.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxEnableF12.Name = "checkBoxEnableF12"; - this.checkBoxEnableF12.Size = new System.Drawing.Size(117, 24); + this.checkBoxEnableF12.Size = new System.Drawing.Size(80, 17); this.checkBoxEnableF12.TabIndex = 11; this.checkBoxEnableF12.Text = "Enable F12"; this.checkBoxEnableF12.UseVisualStyleBackColor = true; @@ -611,10 +613,10 @@ namespace SebWindowsConfig // this.checkBoxEnableF3.AutoSize = true; this.checkBoxEnableF3.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxEnableF3.Location = new System.Drawing.Point(12, 112); - this.checkBoxEnableF3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxEnableF3.Location = new System.Drawing.Point(8, 73); + this.checkBoxEnableF3.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxEnableF3.Name = "checkBoxEnableF3"; - this.checkBoxEnableF3.Size = new System.Drawing.Size(108, 24); + this.checkBoxEnableF3.Size = new System.Drawing.Size(74, 17); this.checkBoxEnableF3.TabIndex = 2; this.checkBoxEnableF3.Text = "Enable F3"; this.checkBoxEnableF3.UseVisualStyleBackColor = true; @@ -624,10 +626,10 @@ namespace SebWindowsConfig // this.checkBoxEnableF11.AutoSize = true; this.checkBoxEnableF11.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxEnableF11.Location = new System.Drawing.Point(12, 412); - this.checkBoxEnableF11.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxEnableF11.Location = new System.Drawing.Point(8, 268); + this.checkBoxEnableF11.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxEnableF11.Name = "checkBoxEnableF11"; - this.checkBoxEnableF11.Size = new System.Drawing.Size(117, 24); + this.checkBoxEnableF11.Size = new System.Drawing.Size(80, 17); this.checkBoxEnableF11.TabIndex = 10; this.checkBoxEnableF11.Text = "Enable F11"; this.checkBoxEnableF11.UseVisualStyleBackColor = true; @@ -637,10 +639,10 @@ namespace SebWindowsConfig // this.checkBoxEnableF4.AutoSize = true; this.checkBoxEnableF4.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxEnableF4.Location = new System.Drawing.Point(12, 151); - this.checkBoxEnableF4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxEnableF4.Location = new System.Drawing.Point(8, 98); + this.checkBoxEnableF4.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxEnableF4.Name = "checkBoxEnableF4"; - this.checkBoxEnableF4.Size = new System.Drawing.Size(108, 24); + this.checkBoxEnableF4.Size = new System.Drawing.Size(74, 17); this.checkBoxEnableF4.TabIndex = 3; this.checkBoxEnableF4.Text = "Enable F4"; this.checkBoxEnableF4.UseVisualStyleBackColor = true; @@ -650,10 +652,10 @@ namespace SebWindowsConfig // this.checkBoxEnableF5.AutoSize = true; this.checkBoxEnableF5.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxEnableF5.Location = new System.Drawing.Point(12, 188); - this.checkBoxEnableF5.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxEnableF5.Location = new System.Drawing.Point(8, 122); + this.checkBoxEnableF5.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxEnableF5.Name = "checkBoxEnableF5"; - this.checkBoxEnableF5.Size = new System.Drawing.Size(108, 24); + this.checkBoxEnableF5.Size = new System.Drawing.Size(74, 17); this.checkBoxEnableF5.TabIndex = 4; this.checkBoxEnableF5.Text = "Enable F5"; this.toolTip1.SetToolTip(this.checkBoxEnableF5, "Enable F5 for reloading browser pages."); @@ -664,10 +666,10 @@ namespace SebWindowsConfig // this.checkBoxEnableF10.AutoSize = true; this.checkBoxEnableF10.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxEnableF10.Location = new System.Drawing.Point(12, 375); - this.checkBoxEnableF10.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxEnableF10.Location = new System.Drawing.Point(8, 244); + this.checkBoxEnableF10.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxEnableF10.Name = "checkBoxEnableF10"; - this.checkBoxEnableF10.Size = new System.Drawing.Size(117, 24); + this.checkBoxEnableF10.Size = new System.Drawing.Size(80, 17); this.checkBoxEnableF10.TabIndex = 9; this.checkBoxEnableF10.Text = "Enable F10"; this.checkBoxEnableF10.UseVisualStyleBackColor = true; @@ -677,10 +679,10 @@ namespace SebWindowsConfig // this.checkBoxEnableF6.AutoSize = true; this.checkBoxEnableF6.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxEnableF6.Location = new System.Drawing.Point(12, 225); - this.checkBoxEnableF6.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxEnableF6.Location = new System.Drawing.Point(8, 146); + this.checkBoxEnableF6.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxEnableF6.Name = "checkBoxEnableF6"; - this.checkBoxEnableF6.Size = new System.Drawing.Size(108, 24); + this.checkBoxEnableF6.Size = new System.Drawing.Size(74, 17); this.checkBoxEnableF6.TabIndex = 5; this.checkBoxEnableF6.Text = "Enable F6"; this.checkBoxEnableF6.UseVisualStyleBackColor = true; @@ -690,10 +692,10 @@ namespace SebWindowsConfig // this.checkBoxEnableF9.AutoSize = true; this.checkBoxEnableF9.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxEnableF9.Location = new System.Drawing.Point(12, 338); - this.checkBoxEnableF9.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxEnableF9.Location = new System.Drawing.Point(8, 220); + this.checkBoxEnableF9.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxEnableF9.Name = "checkBoxEnableF9"; - this.checkBoxEnableF9.Size = new System.Drawing.Size(108, 24); + this.checkBoxEnableF9.Size = new System.Drawing.Size(74, 17); this.checkBoxEnableF9.TabIndex = 8; this.checkBoxEnableF9.Text = "Enable F9"; this.checkBoxEnableF9.UseVisualStyleBackColor = true; @@ -703,10 +705,10 @@ namespace SebWindowsConfig // this.checkBoxEnableF7.AutoSize = true; this.checkBoxEnableF7.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxEnableF7.Location = new System.Drawing.Point(12, 262); - this.checkBoxEnableF7.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxEnableF7.Location = new System.Drawing.Point(8, 170); + this.checkBoxEnableF7.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxEnableF7.Name = "checkBoxEnableF7"; - this.checkBoxEnableF7.Size = new System.Drawing.Size(108, 24); + this.checkBoxEnableF7.Size = new System.Drawing.Size(74, 17); this.checkBoxEnableF7.TabIndex = 6; this.checkBoxEnableF7.Text = "Enable F7"; this.checkBoxEnableF7.UseVisualStyleBackColor = true; @@ -716,10 +718,10 @@ namespace SebWindowsConfig // this.checkBoxEnableF8.AutoSize = true; this.checkBoxEnableF8.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxEnableF8.Location = new System.Drawing.Point(12, 300); - this.checkBoxEnableF8.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxEnableF8.Location = new System.Drawing.Point(8, 195); + this.checkBoxEnableF8.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxEnableF8.Name = "checkBoxEnableF8"; - this.checkBoxEnableF8.Size = new System.Drawing.Size(108, 24); + this.checkBoxEnableF8.Size = new System.Drawing.Size(74, 17); this.checkBoxEnableF8.TabIndex = 7; this.checkBoxEnableF8.Text = "Enable F8"; this.checkBoxEnableF8.UseVisualStyleBackColor = true; @@ -736,11 +738,11 @@ namespace SebWindowsConfig this.groupBoxSpecialKeys.Controls.Add(this.checkBoxEnableAltF4); this.groupBoxSpecialKeys.Controls.Add(this.checkBoxEnableRightMouse); this.groupBoxSpecialKeys.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.groupBoxSpecialKeys.Location = new System.Drawing.Point(22, 22); - this.groupBoxSpecialKeys.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.groupBoxSpecialKeys.Location = new System.Drawing.Point(15, 14); + this.groupBoxSpecialKeys.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.groupBoxSpecialKeys.Name = "groupBoxSpecialKeys"; - this.groupBoxSpecialKeys.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.groupBoxSpecialKeys.Size = new System.Drawing.Size(228, 326); + this.groupBoxSpecialKeys.Padding = new System.Windows.Forms.Padding(2, 1, 2, 1); + this.groupBoxSpecialKeys.Size = new System.Drawing.Size(152, 212); this.groupBoxSpecialKeys.TabIndex = 39; this.groupBoxSpecialKeys.TabStop = false; this.groupBoxSpecialKeys.Text = "Special Keys"; @@ -750,10 +752,10 @@ namespace SebWindowsConfig // this.checkBoxEnableAltMouseWheel.AutoSize = true; this.checkBoxEnableAltMouseWheel.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxEnableAltMouseWheel.Location = new System.Drawing.Point(12, 291); - this.checkBoxEnableAltMouseWheel.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxEnableAltMouseWheel.Location = new System.Drawing.Point(8, 189); + this.checkBoxEnableAltMouseWheel.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxEnableAltMouseWheel.Name = "checkBoxEnableAltMouseWheel"; - this.checkBoxEnableAltMouseWheel.Size = new System.Drawing.Size(202, 24); + this.checkBoxEnableAltMouseWheel.Size = new System.Drawing.Size(137, 17); this.checkBoxEnableAltMouseWheel.TabIndex = 8; this.checkBoxEnableAltMouseWheel.Text = "Enable Alt-Mousewheel"; this.toolTip1.SetToolTip(this.checkBoxEnableAltMouseWheel, "Corresponds to \'Allow browsing back/forward\' in Browser pane. Disabling browsing " + @@ -766,10 +768,10 @@ namespace SebWindowsConfig // this.checkBoxEnablePrintScreen.AutoSize = true; this.checkBoxEnablePrintScreen.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxEnablePrintScreen.Location = new System.Drawing.Point(12, 258); - this.checkBoxEnablePrintScreen.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxEnablePrintScreen.Location = new System.Drawing.Point(8, 168); + this.checkBoxEnablePrintScreen.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxEnablePrintScreen.Name = "checkBoxEnablePrintScreen"; - this.checkBoxEnablePrintScreen.Size = new System.Drawing.Size(172, 24); + this.checkBoxEnablePrintScreen.Size = new System.Drawing.Size(117, 17); this.checkBoxEnablePrintScreen.TabIndex = 7; this.checkBoxEnablePrintScreen.Text = "Enable PrintScreen"; this.toolTip1.SetToolTip(this.checkBoxEnablePrintScreen, "Controls Print Screen and OS X screen capture, corresponds with Enable screen cap" + @@ -781,10 +783,10 @@ namespace SebWindowsConfig // this.checkBoxEnableEsc.AutoSize = true; this.checkBoxEnableEsc.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxEnableEsc.Location = new System.Drawing.Point(12, 38); - this.checkBoxEnableEsc.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxEnableEsc.Location = new System.Drawing.Point(8, 25); + this.checkBoxEnableEsc.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxEnableEsc.Name = "checkBoxEnableEsc"; - this.checkBoxEnableEsc.Size = new System.Drawing.Size(116, 24); + this.checkBoxEnableEsc.Size = new System.Drawing.Size(80, 17); this.checkBoxEnableEsc.TabIndex = 0; this.checkBoxEnableEsc.Text = "Enable Esc"; this.checkBoxEnableEsc.UseVisualStyleBackColor = true; @@ -794,10 +796,10 @@ namespace SebWindowsConfig // this.checkBoxEnableCtrlEsc.AutoSize = true; this.checkBoxEnableCtrlEsc.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxEnableCtrlEsc.Location = new System.Drawing.Point(12, 75); - this.checkBoxEnableCtrlEsc.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxEnableCtrlEsc.Location = new System.Drawing.Point(8, 49); + this.checkBoxEnableCtrlEsc.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxEnableCtrlEsc.Name = "checkBoxEnableCtrlEsc"; - this.checkBoxEnableCtrlEsc.Size = new System.Drawing.Size(145, 24); + this.checkBoxEnableCtrlEsc.Size = new System.Drawing.Size(98, 17); this.checkBoxEnableCtrlEsc.TabIndex = 1; this.checkBoxEnableCtrlEsc.Text = "Enable Ctrl-Esc"; this.checkBoxEnableCtrlEsc.UseVisualStyleBackColor = true; @@ -807,10 +809,10 @@ namespace SebWindowsConfig // this.checkBoxEnableAltEsc.AutoSize = true; this.checkBoxEnableAltEsc.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxEnableAltEsc.Location = new System.Drawing.Point(12, 112); - this.checkBoxEnableAltEsc.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxEnableAltEsc.Location = new System.Drawing.Point(8, 73); + this.checkBoxEnableAltEsc.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxEnableAltEsc.Name = "checkBoxEnableAltEsc"; - this.checkBoxEnableAltEsc.Size = new System.Drawing.Size(140, 24); + this.checkBoxEnableAltEsc.Size = new System.Drawing.Size(95, 17); this.checkBoxEnableAltEsc.TabIndex = 2; this.checkBoxEnableAltEsc.Text = "Enable Alt-Esc"; this.checkBoxEnableAltEsc.UseVisualStyleBackColor = true; @@ -820,10 +822,10 @@ namespace SebWindowsConfig // this.checkBoxEnableAltTab.AutoSize = true; this.checkBoxEnableAltTab.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxEnableAltTab.Location = new System.Drawing.Point(12, 151); - this.checkBoxEnableAltTab.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxEnableAltTab.Location = new System.Drawing.Point(8, 98); + this.checkBoxEnableAltTab.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxEnableAltTab.Name = "checkBoxEnableAltTab"; - this.checkBoxEnableAltTab.Size = new System.Drawing.Size(140, 24); + this.checkBoxEnableAltTab.Size = new System.Drawing.Size(96, 17); this.checkBoxEnableAltTab.TabIndex = 3; this.checkBoxEnableAltTab.Text = "Enable Alt-Tab"; this.checkBoxEnableAltTab.UseVisualStyleBackColor = true; @@ -833,10 +835,10 @@ namespace SebWindowsConfig // this.checkBoxEnableAltF4.AutoSize = true; this.checkBoxEnableAltF4.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxEnableAltF4.Location = new System.Drawing.Point(12, 188); - this.checkBoxEnableAltF4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxEnableAltF4.Location = new System.Drawing.Point(8, 122); + this.checkBoxEnableAltF4.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxEnableAltF4.Name = "checkBoxEnableAltF4"; - this.checkBoxEnableAltF4.Size = new System.Drawing.Size(132, 24); + this.checkBoxEnableAltF4.Size = new System.Drawing.Size(89, 17); this.checkBoxEnableAltF4.TabIndex = 4; this.checkBoxEnableAltF4.Text = "Enable Alt-F4"; this.checkBoxEnableAltF4.UseVisualStyleBackColor = true; @@ -846,10 +848,10 @@ namespace SebWindowsConfig // this.checkBoxEnableRightMouse.AutoSize = true; this.checkBoxEnableRightMouse.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxEnableRightMouse.Location = new System.Drawing.Point(12, 222); - this.checkBoxEnableRightMouse.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxEnableRightMouse.Location = new System.Drawing.Point(8, 144); + this.checkBoxEnableRightMouse.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxEnableRightMouse.Name = "checkBoxEnableRightMouse"; - this.checkBoxEnableRightMouse.Size = new System.Drawing.Size(179, 24); + this.checkBoxEnableRightMouse.Size = new System.Drawing.Size(122, 17); this.checkBoxEnableRightMouse.TabIndex = 6; this.checkBoxEnableRightMouse.Text = "Enable Right Mouse"; this.toolTip1.SetToolTip(this.checkBoxEnableRightMouse, "The right mouse button has to be enabled for users to be able to use the context " + @@ -863,10 +865,10 @@ namespace SebWindowsConfig this.tabPageRegistry.Controls.Add(this.groupBoxInsideSeb); this.tabPageRegistry.ImageIndex = 9; this.tabPageRegistry.Location = new System.Drawing.Point(4, 39); - this.tabPageRegistry.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.tabPageRegistry.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.tabPageRegistry.Name = "tabPageRegistry"; - this.tabPageRegistry.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.tabPageRegistry.Size = new System.Drawing.Size(1867, 948); + this.tabPageRegistry.Padding = new System.Windows.Forms.Padding(2, 1, 2, 1); + this.tabPageRegistry.Size = new System.Drawing.Size(1242, 601); this.tabPageRegistry.TabIndex = 25; this.tabPageRegistry.Text = "Registry"; this.tabPageRegistry.UseVisualStyleBackColor = true; @@ -874,9 +876,10 @@ namespace SebWindowsConfig // label1 // this.label1.AutoSize = true; - this.label1.Location = new System.Drawing.Point(27, 38); + this.label1.Location = new System.Drawing.Point(18, 25); + this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(454, 20); + this.label1.Size = new System.Drawing.Size(307, 13); this.label1.TabIndex = 76; this.label1.Text = "Options in the Windows Security Screen invoked by Ctrl-Alt-Del:"; this.label1.Click += new System.EventHandler(this.label1_Click); @@ -893,11 +896,11 @@ namespace SebWindowsConfig this.groupBoxInsideSeb.Controls.Add(this.checkBoxInsideSebEnableEaseOfAccess); this.groupBoxInsideSeb.Controls.Add(this.checkBoxInsideSebEnableVmWareClientShade); this.groupBoxInsideSeb.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.groupBoxInsideSeb.Location = new System.Drawing.Point(30, 82); - this.groupBoxInsideSeb.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.groupBoxInsideSeb.Location = new System.Drawing.Point(20, 53); + this.groupBoxInsideSeb.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.groupBoxInsideSeb.Name = "groupBoxInsideSeb"; - this.groupBoxInsideSeb.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.groupBoxInsideSeb.Size = new System.Drawing.Size(354, 389); + this.groupBoxInsideSeb.Padding = new System.Windows.Forms.Padding(2, 1, 2, 1); + this.groupBoxInsideSeb.Size = new System.Drawing.Size(305, 229); this.groupBoxInsideSeb.TabIndex = 25; this.groupBoxInsideSeb.TabStop = false; this.groupBoxInsideSeb.Text = "While running SEB"; @@ -906,10 +909,10 @@ namespace SebWindowsConfig // this.checkBoxInsideSebEnableNetworkConnectionSelector.AutoSize = true; this.checkBoxInsideSebEnableNetworkConnectionSelector.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxInsideSebEnableNetworkConnectionSelector.Location = new System.Drawing.Point(8, 315); - this.checkBoxInsideSebEnableNetworkConnectionSelector.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxInsideSebEnableNetworkConnectionSelector.Location = new System.Drawing.Point(16, 195); + this.checkBoxInsideSebEnableNetworkConnectionSelector.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxInsideSebEnableNetworkConnectionSelector.Name = "checkBoxInsideSebEnableNetworkConnectionSelector"; - this.checkBoxInsideSebEnableNetworkConnectionSelector.Size = new System.Drawing.Size(287, 24); + this.checkBoxInsideSebEnableNetworkConnectionSelector.Size = new System.Drawing.Size(196, 17); this.checkBoxInsideSebEnableNetworkConnectionSelector.TabIndex = 8; this.checkBoxInsideSebEnableNetworkConnectionSelector.Text = "Enable network connection selector"; this.toolTip1.SetToolTip(this.checkBoxInsideSebEnableNetworkConnectionSelector, "Activates the button which allows to connect to WiFi networks, introduced in Wind" + @@ -921,10 +924,10 @@ namespace SebWindowsConfig // this.checkBoxInsideSebEnableSwitchUser.AutoSize = true; this.checkBoxInsideSebEnableSwitchUser.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxInsideSebEnableSwitchUser.Location = new System.Drawing.Point(10, 42); - this.checkBoxInsideSebEnableSwitchUser.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxInsideSebEnableSwitchUser.Location = new System.Drawing.Point(16, 26); + this.checkBoxInsideSebEnableSwitchUser.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxInsideSebEnableSwitchUser.Name = "checkBoxInsideSebEnableSwitchUser"; - this.checkBoxInsideSebEnableSwitchUser.Size = new System.Drawing.Size(171, 24); + this.checkBoxInsideSebEnableSwitchUser.Size = new System.Drawing.Size(117, 17); this.checkBoxInsideSebEnableSwitchUser.TabIndex = 0; this.checkBoxInsideSebEnableSwitchUser.Text = "Enable Switch user"; this.toolTip1.SetToolTip(this.checkBoxInsideSebEnableSwitchUser, "Activates the button \"Switch User\""); @@ -935,10 +938,10 @@ namespace SebWindowsConfig // this.checkBoxInsideSebEnableLockThisComputer.AutoSize = true; this.checkBoxInsideSebEnableLockThisComputer.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxInsideSebEnableLockThisComputer.Location = new System.Drawing.Point(10, 75); - this.checkBoxInsideSebEnableLockThisComputer.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxInsideSebEnableLockThisComputer.Location = new System.Drawing.Point(16, 48); + this.checkBoxInsideSebEnableLockThisComputer.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxInsideSebEnableLockThisComputer.Name = "checkBoxInsideSebEnableLockThisComputer"; - this.checkBoxInsideSebEnableLockThisComputer.Size = new System.Drawing.Size(223, 24); + this.checkBoxInsideSebEnableLockThisComputer.Size = new System.Drawing.Size(152, 17); this.checkBoxInsideSebEnableLockThisComputer.TabIndex = 1; this.checkBoxInsideSebEnableLockThisComputer.Text = "Enable Lock this computer"; this.toolTip1.SetToolTip(this.checkBoxInsideSebEnableLockThisComputer, "Activates the button \"Lock this computer\""); @@ -949,10 +952,10 @@ namespace SebWindowsConfig // this.checkBoxInsideSebEnableChangeAPassword.AutoSize = true; this.checkBoxInsideSebEnableChangeAPassword.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxInsideSebEnableChangeAPassword.Location = new System.Drawing.Point(10, 109); - this.checkBoxInsideSebEnableChangeAPassword.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxInsideSebEnableChangeAPassword.Location = new System.Drawing.Point(16, 69); + this.checkBoxInsideSebEnableChangeAPassword.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxInsideSebEnableChangeAPassword.Name = "checkBoxInsideSebEnableChangeAPassword"; - this.checkBoxInsideSebEnableChangeAPassword.Size = new System.Drawing.Size(230, 24); + this.checkBoxInsideSebEnableChangeAPassword.Size = new System.Drawing.Size(156, 17); this.checkBoxInsideSebEnableChangeAPassword.TabIndex = 2; this.checkBoxInsideSebEnableChangeAPassword.Text = "Enable Change a password"; this.toolTip1.SetToolTip(this.checkBoxInsideSebEnableChangeAPassword, "Activates the button \"Change a password...\""); @@ -963,10 +966,10 @@ namespace SebWindowsConfig // this.checkBoxInsideSebEnableStartTaskManager.AutoSize = true; this.checkBoxInsideSebEnableStartTaskManager.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxInsideSebEnableStartTaskManager.Location = new System.Drawing.Point(10, 142); - this.checkBoxInsideSebEnableStartTaskManager.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxInsideSebEnableStartTaskManager.Location = new System.Drawing.Point(16, 91); + this.checkBoxInsideSebEnableStartTaskManager.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxInsideSebEnableStartTaskManager.Name = "checkBoxInsideSebEnableStartTaskManager"; - this.checkBoxInsideSebEnableStartTaskManager.Size = new System.Drawing.Size(229, 24); + this.checkBoxInsideSebEnableStartTaskManager.Size = new System.Drawing.Size(156, 17); this.checkBoxInsideSebEnableStartTaskManager.TabIndex = 3; this.checkBoxInsideSebEnableStartTaskManager.Text = "Enable Start Task Manager"; this.toolTip1.SetToolTip(this.checkBoxInsideSebEnableStartTaskManager, "Activates the button \"Start Task Manager\""); @@ -977,10 +980,10 @@ namespace SebWindowsConfig // this.checkBoxInsideSebEnableLogOff.AutoSize = true; this.checkBoxInsideSebEnableLogOff.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxInsideSebEnableLogOff.Location = new System.Drawing.Point(10, 178); - this.checkBoxInsideSebEnableLogOff.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxInsideSebEnableLogOff.Location = new System.Drawing.Point(16, 111); + this.checkBoxInsideSebEnableLogOff.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxInsideSebEnableLogOff.Name = "checkBoxInsideSebEnableLogOff"; - this.checkBoxInsideSebEnableLogOff.Size = new System.Drawing.Size(139, 24); + this.checkBoxInsideSebEnableLogOff.Size = new System.Drawing.Size(95, 17); this.checkBoxInsideSebEnableLogOff.TabIndex = 4; this.checkBoxInsideSebEnableLogOff.Text = "Enable Log off"; this.toolTip1.SetToolTip(this.checkBoxInsideSebEnableLogOff, "Activates the button \"Log off\""); @@ -991,10 +994,10 @@ namespace SebWindowsConfig // this.checkBoxInsideSebEnableShutDown.AutoSize = true; this.checkBoxInsideSebEnableShutDown.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxInsideSebEnableShutDown.Location = new System.Drawing.Point(10, 209); - this.checkBoxInsideSebEnableShutDown.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxInsideSebEnableShutDown.Location = new System.Drawing.Point(16, 133); + this.checkBoxInsideSebEnableShutDown.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxInsideSebEnableShutDown.Name = "checkBoxInsideSebEnableShutDown"; - this.checkBoxInsideSebEnableShutDown.Size = new System.Drawing.Size(165, 24); + this.checkBoxInsideSebEnableShutDown.Size = new System.Drawing.Size(113, 17); this.checkBoxInsideSebEnableShutDown.TabIndex = 5; this.checkBoxInsideSebEnableShutDown.Text = "Enable Shut down"; this.toolTip1.SetToolTip(this.checkBoxInsideSebEnableShutDown, "Activates the button \"Shutdown\""); @@ -1005,10 +1008,10 @@ namespace SebWindowsConfig // this.checkBoxInsideSebEnableEaseOfAccess.AutoSize = true; this.checkBoxInsideSebEnableEaseOfAccess.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxInsideSebEnableEaseOfAccess.Location = new System.Drawing.Point(8, 282); - this.checkBoxInsideSebEnableEaseOfAccess.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxInsideSebEnableEaseOfAccess.Location = new System.Drawing.Point(16, 174); + this.checkBoxInsideSebEnableEaseOfAccess.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxInsideSebEnableEaseOfAccess.Name = "checkBoxInsideSebEnableEaseOfAccess"; - this.checkBoxInsideSebEnableEaseOfAccess.Size = new System.Drawing.Size(200, 24); + this.checkBoxInsideSebEnableEaseOfAccess.Size = new System.Drawing.Size(136, 17); this.checkBoxInsideSebEnableEaseOfAccess.TabIndex = 6; this.checkBoxInsideSebEnableEaseOfAccess.Text = "Enable Ease of Access"; this.toolTip1.SetToolTip(this.checkBoxInsideSebEnableEaseOfAccess, "Shows options when the button \"Ease of Access\" in the lower left corner is clicke" + @@ -1021,10 +1024,10 @@ namespace SebWindowsConfig // this.checkBoxInsideSebEnableVmWareClientShade.AutoSize = true; this.checkBoxInsideSebEnableVmWareClientShade.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxInsideSebEnableVmWareClientShade.Location = new System.Drawing.Point(8, 252); - this.checkBoxInsideSebEnableVmWareClientShade.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxInsideSebEnableVmWareClientShade.Location = new System.Drawing.Point(16, 154); + this.checkBoxInsideSebEnableVmWareClientShade.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxInsideSebEnableVmWareClientShade.Name = "checkBoxInsideSebEnableVmWareClientShade"; - this.checkBoxInsideSebEnableVmWareClientShade.Size = new System.Drawing.Size(242, 24); + this.checkBoxInsideSebEnableVmWareClientShade.Size = new System.Drawing.Size(164, 17); this.checkBoxInsideSebEnableVmWareClientShade.TabIndex = 7; this.checkBoxInsideSebEnableVmWareClientShade.Text = "Enable VMware Client Shade"; this.toolTip1.SetToolTip(this.checkBoxInsideSebEnableVmWareClientShade, "Activates the \"Shade\" bar at the upper edge of a virtual desktop, if existent. If" + @@ -1034,6 +1037,8 @@ namespace SebWindowsConfig // // tabPageSecurity // + this.tabPageSecurity.Controls.Add(this.checkBoxAllowWindowsUpdate); + this.tabPageSecurity.Controls.Add(this.checkBoxAllowChromeNotifications); this.tabPageSecurity.Controls.Add(this.checkBoxShowLogButton); this.tabPageSecurity.Controls.Add(this.checkBoxAllowLogAccess); this.tabPageSecurity.Controls.Add(this.checkBoxEnablePrivateClipboard); @@ -1047,20 +1052,43 @@ namespace SebWindowsConfig this.tabPageSecurity.Controls.Add(this.checkBoxAllowVirtualMachine); this.tabPageSecurity.ImageIndex = 8; this.tabPageSecurity.Location = new System.Drawing.Point(4, 39); - this.tabPageSecurity.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.tabPageSecurity.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.tabPageSecurity.Name = "tabPageSecurity"; - this.tabPageSecurity.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.tabPageSecurity.Size = new System.Drawing.Size(1867, 948); + this.tabPageSecurity.Padding = new System.Windows.Forms.Padding(2, 1, 2, 1); + this.tabPageSecurity.Size = new System.Drawing.Size(1242, 601); this.tabPageSecurity.TabIndex = 24; this.tabPageSecurity.Text = "Security"; this.tabPageSecurity.UseVisualStyleBackColor = true; // + // checkBoxAllowWindowsUpdate + // + this.checkBoxAllowWindowsUpdate.AutoSize = true; + this.checkBoxAllowWindowsUpdate.Location = new System.Drawing.Point(23, 190); + this.checkBoxAllowWindowsUpdate.Name = "checkBoxAllowWindowsUpdate"; + this.checkBoxAllowWindowsUpdate.Size = new System.Drawing.Size(293, 17); + this.checkBoxAllowWindowsUpdate.TabIndex = 103; + this.checkBoxAllowWindowsUpdate.Text = "Allow Windows Update to run while SEB is running (Win)"; + this.checkBoxAllowWindowsUpdate.UseVisualStyleBackColor = true; + this.checkBoxAllowWindowsUpdate.CheckedChanged += new System.EventHandler(this.checkBoxAllowWindowsUpdate_CheckedChanged); + // + // checkBoxAllowChromeNotifications + // + this.checkBoxAllowChromeNotifications.AutoSize = true; + this.checkBoxAllowChromeNotifications.Location = new System.Drawing.Point(23, 169); + this.checkBoxAllowChromeNotifications.Name = "checkBoxAllowChromeNotifications"; + this.checkBoxAllowChromeNotifications.Size = new System.Drawing.Size(245, 17); + this.checkBoxAllowChromeNotifications.TabIndex = 102; + this.checkBoxAllowChromeNotifications.Text = "Allow notifications from Chrome browsers (Win)"; + this.checkBoxAllowChromeNotifications.UseVisualStyleBackColor = true; + this.checkBoxAllowChromeNotifications.CheckedChanged += new System.EventHandler(this.checkBoxAllowChromeNotifications_CheckedChanged); + // // checkBoxShowLogButton // this.checkBoxShowLogButton.AutoSize = true; - this.checkBoxShowLogButton.Location = new System.Drawing.Point(80, 287); + this.checkBoxShowLogButton.Location = new System.Drawing.Point(53, 232); + this.checkBoxShowLogButton.Margin = new System.Windows.Forms.Padding(2); this.checkBoxShowLogButton.Name = "checkBoxShowLogButton"; - this.checkBoxShowLogButton.Size = new System.Drawing.Size(264, 24); + this.checkBoxShowLogButton.Size = new System.Drawing.Size(180, 17); this.checkBoxShowLogButton.TabIndex = 100; this.checkBoxShowLogButton.Text = "Show log button in taskbar (Win)"; this.checkBoxShowLogButton.UseVisualStyleBackColor = true; @@ -1069,9 +1097,10 @@ namespace SebWindowsConfig // checkBoxAllowLogAccess // this.checkBoxAllowLogAccess.AutoSize = true; - this.checkBoxAllowLogAccess.Location = new System.Drawing.Point(34, 257); + this.checkBoxAllowLogAccess.Location = new System.Drawing.Point(23, 212); + this.checkBoxAllowLogAccess.Margin = new System.Windows.Forms.Padding(2); this.checkBoxAllowLogAccess.Name = "checkBoxAllowLogAccess"; - this.checkBoxAllowLogAccess.Size = new System.Drawing.Size(290, 24); + this.checkBoxAllowLogAccess.Size = new System.Drawing.Size(199, 17); this.checkBoxAllowLogAccess.TabIndex = 99; this.checkBoxAllowLogAccess.Text = "Allow access to application log (Win)"; this.checkBoxAllowLogAccess.UseVisualStyleBackColor = true; @@ -1081,10 +1110,10 @@ namespace SebWindowsConfig // this.checkBoxEnablePrivateClipboard.AutoSize = true; this.checkBoxEnablePrivateClipboard.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxEnablePrivateClipboard.Location = new System.Drawing.Point(514, 228); - this.checkBoxEnablePrivateClipboard.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxEnablePrivateClipboard.Location = new System.Drawing.Point(343, 148); + this.checkBoxEnablePrivateClipboard.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxEnablePrivateClipboard.Name = "checkBoxEnablePrivateClipboard"; - this.checkBoxEnablePrivateClipboard.Size = new System.Drawing.Size(183, 24); + this.checkBoxEnablePrivateClipboard.Size = new System.Drawing.Size(126, 17); this.checkBoxEnablePrivateClipboard.TabIndex = 98; this.checkBoxEnablePrivateClipboard.Text = "Use private clipboard"; this.toolTip1.SetToolTip(this.checkBoxEnablePrivateClipboard, "Private clipboard should always be used besides when working with third party app" + @@ -1096,10 +1125,10 @@ namespace SebWindowsConfig // this.checkBoxAllowScreenSharing.AutoSize = true; this.checkBoxAllowScreenSharing.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxAllowScreenSharing.Location = new System.Drawing.Point(34, 228); - this.checkBoxAllowScreenSharing.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxAllowScreenSharing.Location = new System.Drawing.Point(23, 148); + this.checkBoxAllowScreenSharing.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxAllowScreenSharing.Name = "checkBoxAllowScreenSharing"; - this.checkBoxAllowScreenSharing.Size = new System.Drawing.Size(292, 24); + this.checkBoxAllowScreenSharing.Size = new System.Drawing.Size(198, 17); this.checkBoxAllowScreenSharing.TabIndex = 97; this.checkBoxAllowScreenSharing.Text = "Allow remote session/screen sharing"; this.toolTip1.SetToolTip(this.checkBoxAllowScreenSharing, "Allows Windows remote sessions and macOS screen sharing to be used"); @@ -1120,11 +1149,9 @@ namespace SebWindowsConfig this.groupBox1.Controls.Add(this.checkBoxAllowSiri); this.groupBox1.Controls.Add(this.checkBoxForceAppFolderInstall); this.groupBox1.Controls.Add(this.checkBoxEnableAppSwitcherCheck); - this.groupBox1.Location = new System.Drawing.Point(874, 42); - this.groupBox1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.groupBox1.Location = new System.Drawing.Point(583, 27); this.groupBox1.Name = "groupBox1"; - this.groupBox1.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.groupBox1.Size = new System.Drawing.Size(952, 326); + this.groupBox1.Size = new System.Drawing.Size(635, 212); this.groupBox1.TabIndex = 96; this.groupBox1.TabStop = false; this.groupBox1.Text = "macOS specific settings"; @@ -1134,9 +1161,10 @@ namespace SebWindowsConfig this.label14.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.label14.AutoSize = true; this.label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label14.Location = new System.Drawing.Point(194, 32); + this.label14.Location = new System.Drawing.Point(129, 21); + this.label14.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label14.Name = "label14"; - this.label14.Size = new System.Drawing.Size(237, 20); + this.label14.Size = new System.Drawing.Size(159, 13); this.label14.TabIndex = 103; this.label14.Text = "Enforce minimal macOS version:"; this.label14.TextAlign = System.Drawing.ContentAlignment.TopRight; @@ -1146,10 +1174,10 @@ namespace SebWindowsConfig this.comboBoxMinMacOSVersion.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.comboBoxMinMacOSVersion.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboBoxMinMacOSVersion.FormattingEnabled = true; - this.comboBoxMinMacOSVersion.Location = new System.Drawing.Point(438, 28); - this.comboBoxMinMacOSVersion.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.comboBoxMinMacOSVersion.Location = new System.Drawing.Point(292, 18); + this.comboBoxMinMacOSVersion.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.comboBoxMinMacOSVersion.Name = "comboBoxMinMacOSVersion"; - this.comboBoxMinMacOSVersion.Size = new System.Drawing.Size(490, 28); + this.comboBoxMinMacOSVersion.Size = new System.Drawing.Size(328, 21); this.comboBoxMinMacOSVersion.TabIndex = 102; this.toolTip1.SetToolTip(this.comboBoxMinMacOSVersion, "SEB refuses to run on an older system version"); this.comboBoxMinMacOSVersion.SelectedIndexChanged += new System.EventHandler(this.comboBoxMinMacOSVersion_SelectedIndexChanged); @@ -1159,10 +1187,10 @@ namespace SebWindowsConfig // this.comboBoxAllowedDisplaysMaxNumber.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.comboBoxAllowedDisplaysMaxNumber.FormattingEnabled = true; - this.comboBoxAllowedDisplaysMaxNumber.Location = new System.Drawing.Point(790, 245); - this.comboBoxAllowedDisplaysMaxNumber.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.comboBoxAllowedDisplaysMaxNumber.Location = new System.Drawing.Point(527, 159); + this.comboBoxAllowedDisplaysMaxNumber.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.comboBoxAllowedDisplaysMaxNumber.Name = "comboBoxAllowedDisplaysMaxNumber"; - this.comboBoxAllowedDisplaysMaxNumber.Size = new System.Drawing.Size(138, 28); + this.comboBoxAllowedDisplaysMaxNumber.Size = new System.Drawing.Size(93, 21); this.comboBoxAllowedDisplaysMaxNumber.TabIndex = 100; this.toolTip1.SetToolTip(this.comboBoxAllowedDisplaysMaxNumber, "If more displays are connected, these are blanked with an orange full screen wind" + "ow"); @@ -1174,9 +1202,10 @@ namespace SebWindowsConfig this.label13.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.label13.AutoSize = true; this.label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label13.Location = new System.Drawing.Point(434, 249); + this.label13.Location = new System.Drawing.Point(289, 162); + this.label13.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label13.Name = "label13"; - this.label13.Size = new System.Drawing.Size(348, 20); + this.label13.Size = new System.Drawing.Size(234, 13); this.label13.TabIndex = 101; this.label13.Text = "Maximum allowed number of connected displays"; this.label13.TextAlign = System.Drawing.ContentAlignment.TopRight; @@ -1186,10 +1215,10 @@ namespace SebWindowsConfig this.checkBoxAllowedDisplayBuiltin.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.checkBoxAllowedDisplayBuiltin.AutoSize = true; this.checkBoxAllowedDisplayBuiltin.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxAllowedDisplayBuiltin.Location = new System.Drawing.Point(775, 283); - this.checkBoxAllowedDisplayBuiltin.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxAllowedDisplayBuiltin.Location = new System.Drawing.Point(514, 184); + this.checkBoxAllowedDisplayBuiltin.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxAllowedDisplayBuiltin.Name = "checkBoxAllowedDisplayBuiltin"; - this.checkBoxAllowedDisplayBuiltin.Size = new System.Drawing.Size(166, 24); + this.checkBoxAllowedDisplayBuiltin.Size = new System.Drawing.Size(113, 17); this.checkBoxAllowedDisplayBuiltin.TabIndex = 99; this.checkBoxAllowedDisplayBuiltin.Text = "Use built-in display"; this.toolTip1.SetToolTip(this.checkBoxAllowedDisplayBuiltin, "Use the built-in display (if available) when only one display is allowed or when " + @@ -1201,10 +1230,10 @@ namespace SebWindowsConfig // this.checkBoxAllowDisplayMirroring.AutoSize = true; this.checkBoxAllowDisplayMirroring.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxAllowDisplayMirroring.Location = new System.Drawing.Point(22, 215); - this.checkBoxAllowDisplayMirroring.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxAllowDisplayMirroring.Location = new System.Drawing.Point(15, 140); + this.checkBoxAllowDisplayMirroring.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxAllowDisplayMirroring.Name = "checkBoxAllowDisplayMirroring"; - this.checkBoxAllowDisplayMirroring.Size = new System.Drawing.Size(392, 24); + this.checkBoxAllowDisplayMirroring.Size = new System.Drawing.Size(263, 17); this.checkBoxAllowDisplayMirroring.TabIndex = 98; this.checkBoxAllowDisplayMirroring.Text = "Allow display mirroring (affects also AirPlay Display)"; this.toolTip1.SetToolTip(this.checkBoxAllowDisplayMirroring, "If not selected, SEB prevents to mirror the main display to another (for example " + @@ -1216,10 +1245,10 @@ namespace SebWindowsConfig // this.checkBoxDetectStoppedProcess.AutoSize = true; this.checkBoxDetectStoppedProcess.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxDetectStoppedProcess.Location = new System.Drawing.Point(22, 186); - this.checkBoxDetectStoppedProcess.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxDetectStoppedProcess.Location = new System.Drawing.Point(15, 121); + this.checkBoxDetectStoppedProcess.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxDetectStoppedProcess.Name = "checkBoxDetectStoppedProcess"; - this.checkBoxDetectStoppedProcess.Size = new System.Drawing.Size(316, 24); + this.checkBoxDetectStoppedProcess.Size = new System.Drawing.Size(214, 17); this.checkBoxDetectStoppedProcess.TabIndex = 97; this.checkBoxDetectStoppedProcess.Text = "Detect when SEB process was stopped"; this.toolTip1.SetToolTip(this.checkBoxDetectStoppedProcess, "SEB displays a lock screen (requiring to enter the quit/unlock password) if it de" + @@ -1231,10 +1260,10 @@ namespace SebWindowsConfig // this.checkBoxAllowDictation.AutoSize = true; this.checkBoxAllowDictation.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxAllowDictation.Location = new System.Drawing.Point(22, 157); - this.checkBoxAllowDictation.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxAllowDictation.Location = new System.Drawing.Point(15, 102); + this.checkBoxAllowDictation.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxAllowDictation.Name = "checkBoxAllowDictation"; - this.checkBoxAllowDictation.Size = new System.Drawing.Size(184, 24); + this.checkBoxAllowDictation.Size = new System.Drawing.Size(126, 17); this.checkBoxAllowDictation.TabIndex = 96; this.checkBoxAllowDictation.Text = "Allow to use dictation"; this.toolTip1.SetToolTip(this.checkBoxAllowDictation, "If enabled, dictation can be invoked with the shortcut set in System Preferences/" + @@ -1247,10 +1276,10 @@ namespace SebWindowsConfig this.checkBoxAllowUserAppFolderInstall.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.checkBoxAllowUserAppFolderInstall.AutoSize = true; this.checkBoxAllowUserAppFolderInstall.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxAllowUserAppFolderInstall.Location = new System.Drawing.Point(639, 98); - this.checkBoxAllowUserAppFolderInstall.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxAllowUserAppFolderInstall.Location = new System.Drawing.Point(421, 64); + this.checkBoxAllowUserAppFolderInstall.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxAllowUserAppFolderInstall.Name = "checkBoxAllowUserAppFolderInstall"; - this.checkBoxAllowUserAppFolderInstall.Size = new System.Drawing.Size(298, 24); + this.checkBoxAllowUserAppFolderInstall.Size = new System.Drawing.Size(204, 17); this.checkBoxAllowUserAppFolderInstall.TabIndex = 95; this.checkBoxAllowUserAppFolderInstall.Text = "Allow also user\'s ~/Applications folder"; this.toolTip1.SetToolTip(this.checkBoxAllowUserAppFolderInstall, "SEB can also be installed in the Applications folder of the current user (~/Appli" + @@ -1262,10 +1291,10 @@ namespace SebWindowsConfig // this.checkBoxAllowSiri.AutoSize = true; this.checkBoxAllowSiri.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxAllowSiri.Location = new System.Drawing.Point(22, 128); - this.checkBoxAllowSiri.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxAllowSiri.Location = new System.Drawing.Point(15, 83); + this.checkBoxAllowSiri.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxAllowSiri.Name = "checkBoxAllowSiri"; - this.checkBoxAllowSiri.Size = new System.Drawing.Size(146, 24); + this.checkBoxAllowSiri.Size = new System.Drawing.Size(100, 17); this.checkBoxAllowSiri.TabIndex = 4; this.checkBoxAllowSiri.Text = "Allow to use Siri"; this.toolTip1.SetToolTip(this.checkBoxAllowSiri, "If enabled, Siri can be used by tapping the menu bar icon, Touch Bar icon or shor" + @@ -1278,10 +1307,10 @@ namespace SebWindowsConfig // this.checkBoxForceAppFolderInstall.AutoSize = true; this.checkBoxForceAppFolderInstall.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxForceAppFolderInstall.Location = new System.Drawing.Point(22, 98); - this.checkBoxForceAppFolderInstall.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxForceAppFolderInstall.Location = new System.Drawing.Point(15, 64); + this.checkBoxForceAppFolderInstall.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxForceAppFolderInstall.Name = "checkBoxForceAppFolderInstall"; - this.checkBoxForceAppFolderInstall.Size = new System.Drawing.Size(305, 24); + this.checkBoxForceAppFolderInstall.Size = new System.Drawing.Size(205, 17); this.checkBoxForceAppFolderInstall.TabIndex = 93; this.checkBoxForceAppFolderInstall.Text = "Force installation in Applications folder"; this.toolTip1.SetToolTip(this.checkBoxForceAppFolderInstall, "SEB enforces to be installed in the Applications folder (/Applications)"); @@ -1292,10 +1321,10 @@ namespace SebWindowsConfig // this.checkBoxEnableAppSwitcherCheck.AutoSize = true; this.checkBoxEnableAppSwitcherCheck.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxEnableAppSwitcherCheck.Location = new System.Drawing.Point(22, 66); - this.checkBoxEnableAppSwitcherCheck.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxEnableAppSwitcherCheck.Location = new System.Drawing.Point(15, 43); + this.checkBoxEnableAppSwitcherCheck.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxEnableAppSwitcherCheck.Name = "checkBoxEnableAppSwitcherCheck"; - this.checkBoxEnableAppSwitcherCheck.Size = new System.Drawing.Size(324, 24); + this.checkBoxEnableAppSwitcherCheck.Size = new System.Drawing.Size(220, 17); this.checkBoxEnableAppSwitcherCheck.TabIndex = 94; this.checkBoxEnableAppSwitcherCheck.Text = "Disable app switcher when starting (Mac)"; this.toolTip1.SetToolTip(this.checkBoxEnableAppSwitcherCheck, "SEB checks for the command key being held down while SEB is starting up. This pre" + @@ -1311,11 +1340,9 @@ namespace SebWindowsConfig this.groupBox10.Controls.Add(this.textBoxLogDirectoryWin); this.groupBox10.Controls.Add(this.label4); this.groupBox10.Controls.Add(this.checkBoxUseStandardDirectory); - this.groupBox10.Location = new System.Drawing.Point(34, 324); - this.groupBox10.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.groupBox10.Location = new System.Drawing.Point(583, 259); this.groupBox10.Name = "groupBox10"; - this.groupBox10.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.groupBox10.Size = new System.Drawing.Size(832, 218); + this.groupBox10.Size = new System.Drawing.Size(555, 142); this.groupBox10.TabIndex = 95; this.groupBox10.TabStop = false; this.groupBox10.Text = "Logging"; @@ -1325,10 +1352,10 @@ namespace SebWindowsConfig // this.checkBoxEnableLogging.AutoSize = true; this.checkBoxEnableLogging.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxEnableLogging.Location = new System.Drawing.Point(22, 34); - this.checkBoxEnableLogging.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxEnableLogging.Location = new System.Drawing.Point(15, 22); + this.checkBoxEnableLogging.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxEnableLogging.Name = "checkBoxEnableLogging"; - this.checkBoxEnableLogging.Size = new System.Drawing.Size(140, 24); + this.checkBoxEnableLogging.Size = new System.Drawing.Size(96, 17); this.checkBoxEnableLogging.TabIndex = 5; this.checkBoxEnableLogging.Text = "Enable logging"; this.toolTip1.SetToolTip(this.checkBoxEnableLogging, "The log can help debugging SEB (send it to the developers) and to find out about " + @@ -1339,10 +1366,10 @@ namespace SebWindowsConfig // buttonLogDirectoryWin // this.buttonLogDirectoryWin.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.buttonLogDirectoryWin.Location = new System.Drawing.Point(22, 74); - this.buttonLogDirectoryWin.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.buttonLogDirectoryWin.Location = new System.Drawing.Point(15, 48); + this.buttonLogDirectoryWin.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.buttonLogDirectoryWin.Name = "buttonLogDirectoryWin"; - this.buttonLogDirectoryWin.Size = new System.Drawing.Size(214, 38); + this.buttonLogDirectoryWin.Size = new System.Drawing.Size(143, 25); this.buttonLogDirectoryWin.TabIndex = 6; this.buttonLogDirectoryWin.Text = "Save log file to..."; this.buttonLogDirectoryWin.UseVisualStyleBackColor = true; @@ -1350,28 +1377,27 @@ namespace SebWindowsConfig // // textBoxLogDirectoryOSX // - this.textBoxLogDirectoryOSX.Location = new System.Drawing.Point(252, 160); - this.textBoxLogDirectoryOSX.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.textBoxLogDirectoryOSX.Location = new System.Drawing.Point(168, 104); this.textBoxLogDirectoryOSX.Name = "textBoxLogDirectoryOSX"; - this.textBoxLogDirectoryOSX.Size = new System.Drawing.Size(556, 26); + this.textBoxLogDirectoryOSX.Size = new System.Drawing.Size(372, 20); this.textBoxLogDirectoryOSX.TabIndex = 82; this.textBoxLogDirectoryOSX.TextChanged += new System.EventHandler(this.textBoxLogDirectoryOSX_TextChanged); // // textBoxLogDirectoryWin // - this.textBoxLogDirectoryWin.Location = new System.Drawing.Point(252, 78); - this.textBoxLogDirectoryWin.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.textBoxLogDirectoryWin.Location = new System.Drawing.Point(168, 51); this.textBoxLogDirectoryWin.Name = "textBoxLogDirectoryWin"; - this.textBoxLogDirectoryWin.Size = new System.Drawing.Size(556, 26); + this.textBoxLogDirectoryWin.Size = new System.Drawing.Size(372, 20); this.textBoxLogDirectoryWin.TabIndex = 92; this.textBoxLogDirectoryWin.TextChanged += new System.EventHandler(this.textBoxLogDirectoryWin_TextChanged); // // label4 // this.label4.AutoSize = true; - this.label4.Location = new System.Drawing.Point(60, 165); + this.label4.Location = new System.Drawing.Point(40, 107); + this.label4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label4.Name = "label4"; - this.label4.Size = new System.Drawing.Size(184, 20); + this.label4.Size = new System.Drawing.Size(126, 13); this.label4.TabIndex = 83; this.label4.Text = "Log file directory on Mac:"; this.label4.TextAlign = System.Drawing.ContentAlignment.TopRight; @@ -1380,10 +1406,10 @@ namespace SebWindowsConfig // this.checkBoxUseStandardDirectory.AutoSize = true; this.checkBoxUseStandardDirectory.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxUseStandardDirectory.Location = new System.Drawing.Point(46, 120); - this.checkBoxUseStandardDirectory.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxUseStandardDirectory.Location = new System.Drawing.Point(31, 78); + this.checkBoxUseStandardDirectory.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxUseStandardDirectory.Name = "checkBoxUseStandardDirectory"; - this.checkBoxUseStandardDirectory.Size = new System.Drawing.Size(195, 24); + this.checkBoxUseStandardDirectory.Size = new System.Drawing.Size(132, 17); this.checkBoxUseStandardDirectory.TabIndex = 91; this.checkBoxUseStandardDirectory.Text = "Use standard directory"; this.toolTip1.SetToolTip(this.checkBoxUseStandardDirectory, "The log is saved to the user\'s AppData\\Roaming\\SafeExamBrowser directory"); @@ -1394,10 +1420,10 @@ namespace SebWindowsConfig // this.checkBoxEnableScreenCapture.AutoSize = true; this.checkBoxEnableScreenCapture.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxEnableScreenCapture.Location = new System.Drawing.Point(514, 198); - this.checkBoxEnableScreenCapture.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxEnableScreenCapture.Location = new System.Drawing.Point(343, 129); + this.checkBoxEnableScreenCapture.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxEnableScreenCapture.Name = "checkBoxEnableScreenCapture"; - this.checkBoxEnableScreenCapture.Size = new System.Drawing.Size(290, 24); + this.checkBoxEnableScreenCapture.Size = new System.Drawing.Size(199, 17); this.checkBoxEnableScreenCapture.TabIndex = 84; this.checkBoxEnableScreenCapture.Text = "Enable screen capture / PrintScreen"; this.toolTip1.SetToolTip(this.checkBoxEnableScreenCapture, "Controls Print Screen and OS X screen capture, corresponds with Enable Print Scre" + @@ -1410,11 +1436,11 @@ namespace SebWindowsConfig this.groupBox3.Controls.Add(this.radioNoKiosMode); this.groupBox3.Controls.Add(this.radioCreateNewDesktop); this.groupBox3.Controls.Add(this.radioKillExplorerShell); - this.groupBox3.Location = new System.Drawing.Point(514, 42); - this.groupBox3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.groupBox3.Location = new System.Drawing.Point(343, 27); + this.groupBox3.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.groupBox3.Name = "groupBox3"; - this.groupBox3.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.groupBox3.Size = new System.Drawing.Size(352, 142); + this.groupBox3.Padding = new System.Windows.Forms.Padding(2, 1, 2, 1); + this.groupBox3.Size = new System.Drawing.Size(235, 92); this.groupBox3.TabIndex = 81; this.groupBox3.TabStop = false; this.groupBox3.Text = "Kiosk Mode"; @@ -1423,10 +1449,10 @@ namespace SebWindowsConfig // radioNoKiosMode // this.radioNoKiosMode.AutoSize = true; - this.radioNoKiosMode.Location = new System.Drawing.Point(27, 98); - this.radioNoKiosMode.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.radioNoKiosMode.Location = new System.Drawing.Point(18, 64); + this.radioNoKiosMode.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.radioNoKiosMode.Name = "radioNoKiosMode"; - this.radioNoKiosMode.Size = new System.Drawing.Size(216, 24); + this.radioNoKiosMode.Size = new System.Drawing.Size(147, 17); this.radioNoKiosMode.TabIndex = 84; this.radioNoKiosMode.TabStop = true; this.radioNoKiosMode.Text = "None (for debugging only)"; @@ -1437,10 +1463,10 @@ namespace SebWindowsConfig // radioCreateNewDesktop // this.radioCreateNewDesktop.AutoSize = true; - this.radioCreateNewDesktop.Location = new System.Drawing.Point(27, 29); - this.radioCreateNewDesktop.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.radioCreateNewDesktop.Location = new System.Drawing.Point(18, 19); + this.radioCreateNewDesktop.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.radioCreateNewDesktop.Name = "radioCreateNewDesktop"; - this.radioCreateNewDesktop.Size = new System.Drawing.Size(176, 24); + this.radioCreateNewDesktop.Size = new System.Drawing.Size(120, 17); this.radioCreateNewDesktop.TabIndex = 82; this.radioCreateNewDesktop.TabStop = true; this.radioCreateNewDesktop.Text = "Create new desktop"; @@ -1453,10 +1479,10 @@ namespace SebWindowsConfig // radioKillExplorerShell // this.radioKillExplorerShell.AutoSize = true; - this.radioKillExplorerShell.Location = new System.Drawing.Point(27, 62); - this.radioKillExplorerShell.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.radioKillExplorerShell.Location = new System.Drawing.Point(18, 40); + this.radioKillExplorerShell.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.radioKillExplorerShell.Name = "radioKillExplorerShell"; - this.radioKillExplorerShell.Size = new System.Drawing.Size(188, 24); + this.radioKillExplorerShell.Size = new System.Drawing.Size(127, 17); this.radioKillExplorerShell.TabIndex = 83; this.radioKillExplorerShell.TabStop = true; this.radioKillExplorerShell.Text = "Disable Explorer Shell"; @@ -1468,20 +1494,20 @@ namespace SebWindowsConfig // labelSebServicePolicy // this.labelSebServicePolicy.AutoSize = true; - this.labelSebServicePolicy.Location = new System.Drawing.Point(32, 42); + this.labelSebServicePolicy.Location = new System.Drawing.Point(21, 27); + this.labelSebServicePolicy.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelSebServicePolicy.Name = "labelSebServicePolicy"; - this.labelSebServicePolicy.Size = new System.Drawing.Size(141, 20); + this.labelSebServicePolicy.Size = new System.Drawing.Size(97, 13); this.labelSebServicePolicy.TabIndex = 75; this.labelSebServicePolicy.Text = "SEB Service policy"; // // listBoxSebServicePolicy // this.listBoxSebServicePolicy.FormattingEnabled = true; - this.listBoxSebServicePolicy.ItemHeight = 20; - this.listBoxSebServicePolicy.Location = new System.Drawing.Point(34, 78); - this.listBoxSebServicePolicy.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.listBoxSebServicePolicy.Location = new System.Drawing.Point(23, 51); + this.listBoxSebServicePolicy.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.listBoxSebServicePolicy.Name = "listBoxSebServicePolicy"; - this.listBoxSebServicePolicy.Size = new System.Drawing.Size(421, 64); + this.listBoxSebServicePolicy.Size = new System.Drawing.Size(282, 43); this.listBoxSebServicePolicy.TabIndex = 0; this.toolTip1.SetToolTip(this.listBoxSebServicePolicy, "Policy that applies when an exam client doesn\'t have the SEB Service running."); this.listBoxSebServicePolicy.SelectedIndexChanged += new System.EventHandler(this.listBoxSebServicePolicy_SelectedIndexChanged); @@ -1490,10 +1516,10 @@ namespace SebWindowsConfig // this.checkBoxAllowVirtualMachine.AutoSize = true; this.checkBoxAllowVirtualMachine.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxAllowVirtualMachine.Location = new System.Drawing.Point(34, 198); - this.checkBoxAllowVirtualMachine.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxAllowVirtualMachine.Location = new System.Drawing.Point(23, 129); + this.checkBoxAllowVirtualMachine.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxAllowVirtualMachine.Name = "checkBoxAllowVirtualMachine"; - this.checkBoxAllowVirtualMachine.Size = new System.Drawing.Size(271, 24); + this.checkBoxAllowVirtualMachine.Size = new System.Drawing.Size(185, 17); this.checkBoxAllowVirtualMachine.TabIndex = 1; this.checkBoxAllowVirtualMachine.Text = "Allow to run inside virtual machine"; this.toolTip1.SetToolTip(this.checkBoxAllowVirtualMachine, "Indicates if SEB is allowed to run in a virtual machine or not (in order to preve" + @@ -1506,10 +1532,10 @@ namespace SebWindowsConfig this.tabPageNetwork.Controls.Add(this.tabControlNetwork); this.tabPageNetwork.ImageIndex = 7; this.tabPageNetwork.Location = new System.Drawing.Point(4, 39); - this.tabPageNetwork.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.tabPageNetwork.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.tabPageNetwork.Name = "tabPageNetwork"; - this.tabPageNetwork.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.tabPageNetwork.Size = new System.Drawing.Size(1867, 948); + this.tabPageNetwork.Padding = new System.Windows.Forms.Padding(2, 1, 2, 1); + this.tabPageNetwork.Size = new System.Drawing.Size(1242, 601); this.tabPageNetwork.TabIndex = 23; this.tabPageNetwork.Text = "Network"; this.tabPageNetwork.UseVisualStyleBackColor = true; @@ -1519,11 +1545,11 @@ namespace SebWindowsConfig this.tabControlNetwork.Controls.Add(this.tabPageUrlFilter); this.tabControlNetwork.Controls.Add(this.tabPageCertificates); this.tabControlNetwork.Controls.Add(this.tabPageProxies); - this.tabControlNetwork.Location = new System.Drawing.Point(33, 38); - this.tabControlNetwork.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.tabControlNetwork.Location = new System.Drawing.Point(22, 25); + this.tabControlNetwork.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.tabControlNetwork.Name = "tabControlNetwork"; this.tabControlNetwork.SelectedIndex = 0; - this.tabControlNetwork.Size = new System.Drawing.Size(1059, 751); + this.tabControlNetwork.Size = new System.Drawing.Size(706, 488); this.tabControlNetwork.TabIndex = 0; // // tabPageUrlFilter @@ -1531,31 +1557,30 @@ namespace SebWindowsConfig this.tabPageUrlFilter.Controls.Add(this.UrlFilterContainer); this.tabPageUrlFilter.Controls.Add(this.checkBoxEnableURLFilter); this.tabPageUrlFilter.Controls.Add(this.checkBoxEnableURLContentFilter); - this.tabPageUrlFilter.Location = new System.Drawing.Point(4, 29); - this.tabPageUrlFilter.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.tabPageUrlFilter.Location = new System.Drawing.Point(4, 22); this.tabPageUrlFilter.Name = "tabPageUrlFilter"; - this.tabPageUrlFilter.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.tabPageUrlFilter.Size = new System.Drawing.Size(1051, 718); + this.tabPageUrlFilter.Padding = new System.Windows.Forms.Padding(3); + this.tabPageUrlFilter.Size = new System.Drawing.Size(698, 462); this.tabPageUrlFilter.TabIndex = 3; this.tabPageUrlFilter.Text = "Filter"; this.tabPageUrlFilter.UseVisualStyleBackColor = true; // // UrlFilterContainer // - this.UrlFilterContainer.Location = new System.Drawing.Point(30, 68); - this.UrlFilterContainer.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.UrlFilterContainer.Location = new System.Drawing.Point(20, 44); + this.UrlFilterContainer.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.UrlFilterContainer.Name = "UrlFilterContainer"; - this.UrlFilterContainer.Size = new System.Drawing.Size(992, 642); + this.UrlFilterContainer.Size = new System.Drawing.Size(661, 417); this.UrlFilterContainer.TabIndex = 23; // // checkBoxEnableURLFilter // this.checkBoxEnableURLFilter.AutoSize = true; this.checkBoxEnableURLFilter.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxEnableURLFilter.Location = new System.Drawing.Point(30, 22); - this.checkBoxEnableURLFilter.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxEnableURLFilter.Location = new System.Drawing.Point(20, 14); + this.checkBoxEnableURLFilter.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxEnableURLFilter.Name = "checkBoxEnableURLFilter"; - this.checkBoxEnableURLFilter.Size = new System.Drawing.Size(184, 24); + this.checkBoxEnableURLFilter.Size = new System.Drawing.Size(126, 17); this.checkBoxEnableURLFilter.TabIndex = 22; this.checkBoxEnableURLFilter.Text = "Activate URL filtering"; this.toolTip1.SetToolTip(this.checkBoxEnableURLFilter, "Filter URLs when loading web pages using the filter set defined below and in addi" + @@ -1567,10 +1592,10 @@ namespace SebWindowsConfig // this.checkBoxEnableURLContentFilter.AutoSize = true; this.checkBoxEnableURLContentFilter.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxEnableURLContentFilter.Location = new System.Drawing.Point(225, 22); - this.checkBoxEnableURLContentFilter.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxEnableURLContentFilter.Location = new System.Drawing.Point(150, 14); + this.checkBoxEnableURLContentFilter.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxEnableURLContentFilter.Name = "checkBoxEnableURLContentFilter"; - this.checkBoxEnableURLContentFilter.Size = new System.Drawing.Size(241, 24); + this.checkBoxEnableURLContentFilter.Size = new System.Drawing.Size(162, 17); this.checkBoxEnableURLContentFilter.TabIndex = 2; this.checkBoxEnableURLContentFilter.Text = "Filter also embedded content"; this.toolTip1.SetToolTip(this.checkBoxEnableURLContentFilter, "If selected, also all embedded resources will be filtered using the filter set."); @@ -1589,11 +1614,11 @@ namespace SebWindowsConfig this.tabPageCertificates.Controls.Add(this.comboBoxChooseSSLServerCertificate); this.tabPageCertificates.Controls.Add(this.buttonRemoveCertificate); this.tabPageCertificates.Controls.Add(this.dataGridViewEmbeddedCertificates); - this.tabPageCertificates.Location = new System.Drawing.Point(4, 29); - this.tabPageCertificates.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.tabPageCertificates.Location = new System.Drawing.Point(4, 22); + this.tabPageCertificates.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.tabPageCertificates.Name = "tabPageCertificates"; - this.tabPageCertificates.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.tabPageCertificates.Size = new System.Drawing.Size(1051, 718); + this.tabPageCertificates.Padding = new System.Windows.Forms.Padding(2, 1, 2, 1); + this.tabPageCertificates.Size = new System.Drawing.Size(698, 462); this.tabPageCertificates.TabIndex = 1; this.tabPageCertificates.Text = "Certificates"; this.tabPageCertificates.UseVisualStyleBackColor = true; @@ -1602,10 +1627,10 @@ namespace SebWindowsConfig // this.checkBoxDebugCertificate.AutoSize = true; this.checkBoxDebugCertificate.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxDebugCertificate.Location = new System.Drawing.Point(786, 66); - this.checkBoxDebugCertificate.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxDebugCertificate.Location = new System.Drawing.Point(524, 43); + this.checkBoxDebugCertificate.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxDebugCertificate.Name = "checkBoxDebugCertificate"; - this.checkBoxDebugCertificate.Size = new System.Drawing.Size(156, 24); + this.checkBoxDebugCertificate.Size = new System.Drawing.Size(107, 17); this.checkBoxDebugCertificate.TabIndex = 101; this.checkBoxDebugCertificate.Text = "Debug certificate"; this.toolTip1.SetToolTip(this.checkBoxDebugCertificate, "Debug certificates allow changing the DNS name, so a server with a wrong domain n" + @@ -1617,10 +1642,10 @@ namespace SebWindowsConfig // this.checkBoxPinEmbeddedCertificates.AutoSize = true; this.checkBoxPinEmbeddedCertificates.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxPinEmbeddedCertificates.Location = new System.Drawing.Point(51, 189); - this.checkBoxPinEmbeddedCertificates.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxPinEmbeddedCertificates.Location = new System.Drawing.Point(34, 123); + this.checkBoxPinEmbeddedCertificates.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxPinEmbeddedCertificates.Name = "checkBoxPinEmbeddedCertificates"; - this.checkBoxPinEmbeddedCertificates.Size = new System.Drawing.Size(262, 24); + this.checkBoxPinEmbeddedCertificates.Size = new System.Drawing.Size(178, 17); this.checkBoxPinEmbeddedCertificates.TabIndex = 100; this.checkBoxPinEmbeddedCertificates.Text = "Pin embedded certificates (Mac)"; this.toolTip1.SetToolTip(this.checkBoxPinEmbeddedCertificates, "Bypasses the browser\'s built-in certificate store, you have to embed TLS or CA ce" + @@ -1632,9 +1657,10 @@ namespace SebWindowsConfig // label10 // this.label10.AutoSize = true; - this.label10.Location = new System.Drawing.Point(24, 114); + this.label10.Location = new System.Drawing.Point(16, 74); + this.label10.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label10.Name = "label10"; - this.label10.Size = new System.Drawing.Size(416, 20); + this.label10.Size = new System.Drawing.Size(279, 13); this.label10.TabIndex = 99; this.label10.Text = "Choose CA certificate to embed into configuration... (Mac)"; this.label10.Click += new System.EventHandler(this.label10_Click); @@ -1642,10 +1668,10 @@ namespace SebWindowsConfig // comboBoxChooseCACertificate // this.comboBoxChooseCACertificate.FormattingEnabled = true; - this.comboBoxChooseCACertificate.Location = new System.Drawing.Point(28, 140); - this.comboBoxChooseCACertificate.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.comboBoxChooseCACertificate.Location = new System.Drawing.Point(19, 91); + this.comboBoxChooseCACertificate.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.comboBoxChooseCACertificate.Name = "comboBoxChooseCACertificate"; - this.comboBoxChooseCACertificate.Size = new System.Drawing.Size(734, 28); + this.comboBoxChooseCACertificate.Size = new System.Drawing.Size(491, 21); this.comboBoxChooseCACertificate.TabIndex = 98; this.toolTip1.SetToolTip(this.comboBoxChooseCACertificate, "Certificate Authority certificates from the Windows Certificate Store. This allow" + "s to distribute self-signed certificates to exam clients."); @@ -1654,28 +1680,30 @@ namespace SebWindowsConfig // labelChooseIdentityToEmbed // this.labelChooseIdentityToEmbed.AutoSize = true; - this.labelChooseIdentityToEmbed.Location = new System.Drawing.Point(24, 242); + this.labelChooseIdentityToEmbed.Location = new System.Drawing.Point(16, 157); + this.labelChooseIdentityToEmbed.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelChooseIdentityToEmbed.Name = "labelChooseIdentityToEmbed"; - this.labelChooseIdentityToEmbed.Size = new System.Drawing.Size(327, 20); + this.labelChooseIdentityToEmbed.Size = new System.Drawing.Size(219, 13); this.labelChooseIdentityToEmbed.TabIndex = 97; this.labelChooseIdentityToEmbed.Text = "Choose identity to embed into configuration..."; // // labelChooseSSLClientCertificate // this.labelChooseSSLClientCertificate.AutoSize = true; - this.labelChooseSSLClientCertificate.Location = new System.Drawing.Point(24, 38); + this.labelChooseSSLClientCertificate.Location = new System.Drawing.Point(16, 25); + this.labelChooseSSLClientCertificate.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelChooseSSLClientCertificate.Name = "labelChooseSSLClientCertificate"; - this.labelChooseSSLClientCertificate.Size = new System.Drawing.Size(458, 20); + this.labelChooseSSLClientCertificate.Size = new System.Drawing.Size(310, 13); this.labelChooseSSLClientCertificate.TabIndex = 96; this.labelChooseSSLClientCertificate.Text = "Choose TLS/SSL certificate to embed into configuration... (Mac)"; // // comboBoxChooseIdentityToEmbed // this.comboBoxChooseIdentityToEmbed.FormattingEnabled = true; - this.comboBoxChooseIdentityToEmbed.Location = new System.Drawing.Point(28, 268); - this.comboBoxChooseIdentityToEmbed.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.comboBoxChooseIdentityToEmbed.Location = new System.Drawing.Point(19, 174); + this.comboBoxChooseIdentityToEmbed.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.comboBoxChooseIdentityToEmbed.Name = "comboBoxChooseIdentityToEmbed"; - this.comboBoxChooseIdentityToEmbed.Size = new System.Drawing.Size(734, 28); + this.comboBoxChooseIdentityToEmbed.Size = new System.Drawing.Size(491, 21); this.comboBoxChooseIdentityToEmbed.TabIndex = 1; this.toolTip1.SetToolTip(this.comboBoxChooseIdentityToEmbed, resources.GetString("comboBoxChooseIdentityToEmbed.ToolTip")); this.comboBoxChooseIdentityToEmbed.SelectedIndexChanged += new System.EventHandler(this.comboBoxChooseIdentityToEmbed_SelectedIndexChanged); @@ -1683,10 +1711,10 @@ namespace SebWindowsConfig // comboBoxChooseSSLServerCertificate // this.comboBoxChooseSSLServerCertificate.FormattingEnabled = true; - this.comboBoxChooseSSLServerCertificate.Location = new System.Drawing.Point(28, 62); - this.comboBoxChooseSSLServerCertificate.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.comboBoxChooseSSLServerCertificate.Location = new System.Drawing.Point(19, 40); + this.comboBoxChooseSSLServerCertificate.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.comboBoxChooseSSLServerCertificate.Name = "comboBoxChooseSSLServerCertificate"; - this.comboBoxChooseSSLServerCertificate.Size = new System.Drawing.Size(734, 28); + this.comboBoxChooseSSLServerCertificate.Size = new System.Drawing.Size(491, 21); this.comboBoxChooseSSLServerCertificate.TabIndex = 0; this.toolTip1.SetToolTip(this.comboBoxChooseSSLServerCertificate, "SSL/TLS certificates from the Windows Certificate Store. This allows to distribut" + "e self-signed certificates to exam clients."); @@ -1694,10 +1722,10 @@ namespace SebWindowsConfig // // buttonRemoveCertificate // - this.buttonRemoveCertificate.Location = new System.Drawing.Point(28, 578); - this.buttonRemoveCertificate.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.buttonRemoveCertificate.Location = new System.Drawing.Point(19, 376); + this.buttonRemoveCertificate.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.buttonRemoveCertificate.Name = "buttonRemoveCertificate"; - this.buttonRemoveCertificate.Size = new System.Drawing.Size(33, 40); + this.buttonRemoveCertificate.Size = new System.Drawing.Size(22, 26); this.buttonRemoveCertificate.TabIndex = 3; this.buttonRemoveCertificate.Text = "-"; this.toolTip1.SetToolTip(this.buttonRemoveCertificate, "Remove certificate/identity from settings"); @@ -1711,12 +1739,12 @@ namespace SebWindowsConfig this.Type, this.dataGridViewTextBoxColumnName}); this.dataGridViewEmbeddedCertificates.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter; - this.dataGridViewEmbeddedCertificates.Location = new System.Drawing.Point(28, 329); - this.dataGridViewEmbeddedCertificates.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.dataGridViewEmbeddedCertificates.Location = new System.Drawing.Point(19, 214); + this.dataGridViewEmbeddedCertificates.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.dataGridViewEmbeddedCertificates.Name = "dataGridViewEmbeddedCertificates"; this.dataGridViewEmbeddedCertificates.RowHeadersVisible = false; this.dataGridViewEmbeddedCertificates.RowTemplate.Height = 24; - this.dataGridViewEmbeddedCertificates.Size = new System.Drawing.Size(735, 228); + this.dataGridViewEmbeddedCertificates.Size = new System.Drawing.Size(490, 148); this.dataGridViewEmbeddedCertificates.TabIndex = 2; this.dataGridViewEmbeddedCertificates.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridViewEmbeddedCertificates_CellValueChanged); this.dataGridViewEmbeddedCertificates.CurrentCellDirtyStateChanged += new System.EventHandler(this.dataGridViewEmbeddedCertificates_CurrentCellDirtyStateChanged); @@ -1724,8 +1752,8 @@ namespace SebWindowsConfig // // Type // - dataGridViewCellStyle5.BackColor = System.Drawing.Color.Silver; - this.Type.DefaultCellStyle = dataGridViewCellStyle5; + dataGridViewCellStyle15.BackColor = System.Drawing.Color.Silver; + this.Type.DefaultCellStyle = dataGridViewCellStyle15; this.Type.HeaderText = "Type"; this.Type.Name = "Type"; this.Type.ReadOnly = true; @@ -1760,22 +1788,21 @@ namespace SebWindowsConfig this.tabPageProxies.Controls.Add(this.labelProxyProtocol); this.tabPageProxies.Controls.Add(this.radioButtonUseSebProxySettings); this.tabPageProxies.Controls.Add(this.radioButtonUseSystemProxySettings); - this.tabPageProxies.Location = new System.Drawing.Point(4, 29); - this.tabPageProxies.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.tabPageProxies.Location = new System.Drawing.Point(4, 22); + this.tabPageProxies.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.tabPageProxies.Name = "tabPageProxies"; - this.tabPageProxies.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.tabPageProxies.Size = new System.Drawing.Size(1051, 718); + this.tabPageProxies.Padding = new System.Windows.Forms.Padding(2, 1, 2, 1); + this.tabPageProxies.Size = new System.Drawing.Size(698, 462); this.tabPageProxies.TabIndex = 2; this.tabPageProxies.Text = "Proxies"; this.tabPageProxies.UseVisualStyleBackColor = true; // // textBoxBypassedProxyHostList // - this.textBoxBypassedProxyHostList.Location = new System.Drawing.Point(28, 489); - this.textBoxBypassedProxyHostList.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.textBoxBypassedProxyHostList.Location = new System.Drawing.Point(19, 318); this.textBoxBypassedProxyHostList.Multiline = true; this.textBoxBypassedProxyHostList.Name = "textBoxBypassedProxyHostList"; - this.textBoxBypassedProxyHostList.Size = new System.Drawing.Size(982, 150); + this.textBoxBypassedProxyHostList.Size = new System.Drawing.Size(656, 99); this.textBoxBypassedProxyHostList.TabIndex = 112; this.toolTip1.SetToolTip(this.textBoxBypassedProxyHostList, "Separate hosts/domains with commas"); this.textBoxBypassedProxyHostList.TextChanged += new System.EventHandler(this.textBoxBypassedProxyHostList_TextChanged); @@ -1785,12 +1812,12 @@ namespace SebWindowsConfig this.textBoxIfYourNetworkAdministrator.BackColor = System.Drawing.SystemColors.Window; this.textBoxIfYourNetworkAdministrator.BorderStyle = System.Windows.Forms.BorderStyle.None; this.textBoxIfYourNetworkAdministrator.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.textBoxIfYourNetworkAdministrator.Location = new System.Drawing.Point(454, 82); - this.textBoxIfYourNetworkAdministrator.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBoxIfYourNetworkAdministrator.Location = new System.Drawing.Point(303, 53); + this.textBoxIfYourNetworkAdministrator.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBoxIfYourNetworkAdministrator.Multiline = true; this.textBoxIfYourNetworkAdministrator.Name = "textBoxIfYourNetworkAdministrator"; this.textBoxIfYourNetworkAdministrator.ReadOnly = true; - this.textBoxIfYourNetworkAdministrator.Size = new System.Drawing.Size(428, 46); + this.textBoxIfYourNetworkAdministrator.Size = new System.Drawing.Size(285, 30); this.textBoxIfYourNetworkAdministrator.TabIndex = 111; this.textBoxIfYourNetworkAdministrator.Text = "If your network administrator provided you with the address of an automatic proxy" + " configuration (.pac) file, enter it above."; @@ -1799,47 +1826,50 @@ namespace SebWindowsConfig // labelProxyServerPort // this.labelProxyServerPort.AutoSize = true; - this.labelProxyServerPort.Location = new System.Drawing.Point(910, 188); + this.labelProxyServerPort.Location = new System.Drawing.Point(607, 122); + this.labelProxyServerPort.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelProxyServerPort.Name = "labelProxyServerPort"; - this.labelProxyServerPort.Size = new System.Drawing.Size(13, 20); + this.labelProxyServerPort.Size = new System.Drawing.Size(10, 13); this.labelProxyServerPort.TabIndex = 110; this.labelProxyServerPort.Text = ":"; // // labelProxyServerPassword // this.labelProxyServerPassword.AutoSize = true; - this.labelProxyServerPassword.Location = new System.Drawing.Point(484, 326); + this.labelProxyServerPassword.Location = new System.Drawing.Point(323, 212); + this.labelProxyServerPassword.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelProxyServerPassword.Name = "labelProxyServerPassword"; - this.labelProxyServerPassword.Size = new System.Drawing.Size(78, 20); + this.labelProxyServerPassword.Size = new System.Drawing.Size(53, 13); this.labelProxyServerPassword.TabIndex = 109; this.labelProxyServerPassword.Text = "Password"; // // labelProxyServerUsername // this.labelProxyServerUsername.AutoSize = true; - this.labelProxyServerUsername.Location = new System.Drawing.Point(484, 280); + this.labelProxyServerUsername.Location = new System.Drawing.Point(323, 182); + this.labelProxyServerUsername.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelProxyServerUsername.Name = "labelProxyServerUsername"; - this.labelProxyServerUsername.Size = new System.Drawing.Size(83, 20); + this.labelProxyServerUsername.Size = new System.Drawing.Size(55, 13); this.labelProxyServerUsername.TabIndex = 108; this.labelProxyServerUsername.Text = "Username"; // // textBoxProxyServerPassword // this.textBoxProxyServerPassword.Font = new System.Drawing.Font("Courier New", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.textBoxProxyServerPassword.Location = new System.Drawing.Point(573, 325); - this.textBoxProxyServerPassword.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBoxProxyServerPassword.Location = new System.Drawing.Point(382, 211); + this.textBoxProxyServerPassword.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBoxProxyServerPassword.Name = "textBoxProxyServerPassword"; - this.textBoxProxyServerPassword.Size = new System.Drawing.Size(438, 25); + this.textBoxProxyServerPassword.Size = new System.Drawing.Size(293, 19); this.textBoxProxyServerPassword.TabIndex = 11; this.textBoxProxyServerPassword.TextChanged += new System.EventHandler(this.textBoxProxyServerPassword_TextChanged); // // textBoxProxyServerUsername // this.textBoxProxyServerUsername.Font = new System.Drawing.Font("Courier New", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.textBoxProxyServerUsername.Location = new System.Drawing.Point(573, 278); - this.textBoxProxyServerUsername.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBoxProxyServerUsername.Location = new System.Drawing.Point(382, 181); + this.textBoxProxyServerUsername.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBoxProxyServerUsername.Name = "textBoxProxyServerUsername"; - this.textBoxProxyServerUsername.Size = new System.Drawing.Size(438, 25); + this.textBoxProxyServerUsername.Size = new System.Drawing.Size(293, 19); this.textBoxProxyServerUsername.TabIndex = 10; this.textBoxProxyServerUsername.TextChanged += new System.EventHandler(this.textBoxProxyServerUsername_TextChanged); // @@ -1847,10 +1877,10 @@ namespace SebWindowsConfig // this.checkBoxProxyServerRequires.AutoSize = true; this.checkBoxProxyServerRequires.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxProxyServerRequires.Location = new System.Drawing.Point(453, 238); - this.checkBoxProxyServerRequires.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxProxyServerRequires.Location = new System.Drawing.Point(302, 155); + this.checkBoxProxyServerRequires.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxProxyServerRequires.Name = "checkBoxProxyServerRequires"; - this.checkBoxProxyServerRequires.Size = new System.Drawing.Size(253, 24); + this.checkBoxProxyServerRequires.Size = new System.Drawing.Size(172, 17); this.checkBoxProxyServerRequires.TabIndex = 9; this.checkBoxProxyServerRequires.Text = "Proxy server requires password"; this.checkBoxProxyServerRequires.UseVisualStyleBackColor = true; @@ -1859,29 +1889,30 @@ namespace SebWindowsConfig // textBoxProxyServerPort // this.textBoxProxyServerPort.Font = new System.Drawing.Font("Courier New", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.textBoxProxyServerPort.Location = new System.Drawing.Point(933, 188); - this.textBoxProxyServerPort.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBoxProxyServerPort.Location = new System.Drawing.Point(622, 122); + this.textBoxProxyServerPort.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBoxProxyServerPort.Name = "textBoxProxyServerPort"; - this.textBoxProxyServerPort.Size = new System.Drawing.Size(78, 25); + this.textBoxProxyServerPort.Size = new System.Drawing.Size(53, 19); this.textBoxProxyServerPort.TabIndex = 8; this.textBoxProxyServerPort.TextChanged += new System.EventHandler(this.textBoxProxyServerPort_TextChanged); // // labelProxyServerHost // this.labelProxyServerHost.AutoSize = true; - this.labelProxyServerHost.Location = new System.Drawing.Point(450, 162); + this.labelProxyServerHost.Location = new System.Drawing.Point(300, 105); + this.labelProxyServerHost.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelProxyServerHost.Name = "labelProxyServerHost"; - this.labelProxyServerHost.Size = new System.Drawing.Size(97, 20); + this.labelProxyServerHost.Size = new System.Drawing.Size(67, 13); this.labelProxyServerHost.TabIndex = 103; this.labelProxyServerHost.Text = "Proxy Server"; // // textBoxProxyServerHost // this.textBoxProxyServerHost.Font = new System.Drawing.Font("Courier New", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.textBoxProxyServerHost.Location = new System.Drawing.Point(453, 188); - this.textBoxProxyServerHost.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBoxProxyServerHost.Location = new System.Drawing.Point(302, 122); + this.textBoxProxyServerHost.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBoxProxyServerHost.Name = "textBoxProxyServerHost"; - this.textBoxProxyServerHost.Size = new System.Drawing.Size(448, 25); + this.textBoxProxyServerHost.Size = new System.Drawing.Size(300, 19); this.textBoxProxyServerHost.TabIndex = 7; this.textBoxProxyServerHost.TextChanged += new System.EventHandler(this.textBoxProxyServerHost_TextChanged); // @@ -1892,12 +1923,12 @@ namespace SebWindowsConfig this.dataGridViewProxyProtocols.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.dataGridViewCheckBoxColumnProtocolEnable, this.dataGridViewTextBoxColumnProtocolType}); - this.dataGridViewProxyProtocols.Location = new System.Drawing.Point(28, 162); - this.dataGridViewProxyProtocols.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.dataGridViewProxyProtocols.Location = new System.Drawing.Point(19, 105); + this.dataGridViewProxyProtocols.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.dataGridViewProxyProtocols.Name = "dataGridViewProxyProtocols"; this.dataGridViewProxyProtocols.RowHeadersVisible = false; this.dataGridViewProxyProtocols.RowTemplate.Height = 24; - this.dataGridViewProxyProtocols.Size = new System.Drawing.Size(393, 214); + this.dataGridViewProxyProtocols.Size = new System.Drawing.Size(262, 139); this.dataGridViewProxyProtocols.TabIndex = 2; this.dataGridViewProxyProtocols.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridViewProxyProtocols_CellValueChanged); this.dataGridViewProxyProtocols.CurrentCellDirtyStateChanged += new System.EventHandler(this.dataGridViewProxyProtocols_CurrentCellDirtyStateChanged); @@ -1920,10 +1951,10 @@ namespace SebWindowsConfig // this.buttonChooseProxyConfigurationFile.Enabled = false; this.buttonChooseProxyConfigurationFile.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.buttonChooseProxyConfigurationFile.Location = new System.Drawing.Point(888, 86); - this.buttonChooseProxyConfigurationFile.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.buttonChooseProxyConfigurationFile.Location = new System.Drawing.Point(592, 56); + this.buttonChooseProxyConfigurationFile.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.buttonChooseProxyConfigurationFile.Name = "buttonChooseProxyConfigurationFile"; - this.buttonChooseProxyConfigurationFile.Size = new System.Drawing.Size(123, 38); + this.buttonChooseProxyConfigurationFile.Size = new System.Drawing.Size(82, 25); this.buttonChooseProxyConfigurationFile.TabIndex = 99; this.buttonChooseProxyConfigurationFile.Text = "Choose file..."; this.buttonChooseProxyConfigurationFile.UseVisualStyleBackColor = true; @@ -1933,37 +1964,40 @@ namespace SebWindowsConfig // labelProxyConfigurationFileURL // this.labelProxyConfigurationFileURL.AutoSize = true; - this.labelProxyConfigurationFileURL.Location = new System.Drawing.Point(447, 42); + this.labelProxyConfigurationFileURL.Location = new System.Drawing.Point(298, 27); + this.labelProxyConfigurationFileURL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelProxyConfigurationFileURL.Name = "labelProxyConfigurationFileURL"; - this.labelProxyConfigurationFileURL.Size = new System.Drawing.Size(46, 20); + this.labelProxyConfigurationFileURL.Size = new System.Drawing.Size(32, 13); this.labelProxyConfigurationFileURL.TabIndex = 97; this.labelProxyConfigurationFileURL.Text = "URL:"; // // textBoxAutoProxyConfigurationURL // this.textBoxAutoProxyConfigurationURL.Font = new System.Drawing.Font("Courier New", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.textBoxAutoProxyConfigurationURL.Location = new System.Drawing.Point(501, 42); - this.textBoxAutoProxyConfigurationURL.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBoxAutoProxyConfigurationURL.Location = new System.Drawing.Point(334, 27); + this.textBoxAutoProxyConfigurationURL.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBoxAutoProxyConfigurationURL.Name = "textBoxAutoProxyConfigurationURL"; - this.textBoxAutoProxyConfigurationURL.Size = new System.Drawing.Size(510, 25); + this.textBoxAutoProxyConfigurationURL.Size = new System.Drawing.Size(341, 19); this.textBoxAutoProxyConfigurationURL.TabIndex = 6; this.textBoxAutoProxyConfigurationURL.TextChanged += new System.EventHandler(this.textBoxAutoProxyConfigurationURL_TextChanged); // // labelAutoProxyConfigurationURL // this.labelAutoProxyConfigurationURL.AutoSize = true; - this.labelAutoProxyConfigurationURL.Location = new System.Drawing.Point(450, 18); + this.labelAutoProxyConfigurationURL.Location = new System.Drawing.Point(300, 12); + this.labelAutoProxyConfigurationURL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelAutoProxyConfigurationURL.Name = "labelAutoProxyConfigurationURL"; - this.labelAutoProxyConfigurationURL.Size = new System.Drawing.Size(167, 20); + this.labelAutoProxyConfigurationURL.Size = new System.Drawing.Size(113, 13); this.labelAutoProxyConfigurationURL.TabIndex = 95; this.labelAutoProxyConfigurationURL.Text = "Proxy configuration file"; // // labelBypassedProxies // this.labelBypassedProxies.AutoSize = true; - this.labelBypassedProxies.Location = new System.Drawing.Point(24, 465); + this.labelBypassedProxies.Location = new System.Drawing.Point(16, 302); + this.labelBypassedProxies.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelBypassedProxies.Name = "labelBypassedProxies"; - this.labelBypassedProxies.Size = new System.Drawing.Size(371, 20); + this.labelBypassedProxies.Size = new System.Drawing.Size(246, 13); this.labelBypassedProxies.TabIndex = 94; this.labelBypassedProxies.Text = "Bypass proxy settings for these hosts and domains:"; // @@ -1971,10 +2005,10 @@ namespace SebWindowsConfig // this.checkBoxUsePassiveFTPMode.AutoSize = true; this.checkBoxUsePassiveFTPMode.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxUsePassiveFTPMode.Location = new System.Drawing.Point(28, 649); - this.checkBoxUsePassiveFTPMode.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxUsePassiveFTPMode.Location = new System.Drawing.Point(19, 422); + this.checkBoxUsePassiveFTPMode.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxUsePassiveFTPMode.Name = "checkBoxUsePassiveFTPMode"; - this.checkBoxUsePassiveFTPMode.Size = new System.Drawing.Size(256, 24); + this.checkBoxUsePassiveFTPMode.Size = new System.Drawing.Size(175, 17); this.checkBoxUsePassiveFTPMode.TabIndex = 5; this.checkBoxUsePassiveFTPMode.Text = "Use Passive FTP Mode (PASV)"; this.checkBoxUsePassiveFTPMode.UseVisualStyleBackColor = true; @@ -1984,10 +2018,10 @@ namespace SebWindowsConfig // this.checkBoxExcludeSimpleHostnames.AutoSize = true; this.checkBoxExcludeSimpleHostnames.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxExcludeSimpleHostnames.Location = new System.Drawing.Point(28, 412); - this.checkBoxExcludeSimpleHostnames.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxExcludeSimpleHostnames.Location = new System.Drawing.Point(19, 268); + this.checkBoxExcludeSimpleHostnames.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxExcludeSimpleHostnames.Name = "checkBoxExcludeSimpleHostnames"; - this.checkBoxExcludeSimpleHostnames.Size = new System.Drawing.Size(223, 24); + this.checkBoxExcludeSimpleHostnames.Size = new System.Drawing.Size(150, 17); this.checkBoxExcludeSimpleHostnames.TabIndex = 3; this.checkBoxExcludeSimpleHostnames.Text = "Exclude simple hostnames"; this.checkBoxExcludeSimpleHostnames.UseVisualStyleBackColor = true; @@ -1996,19 +2030,20 @@ namespace SebWindowsConfig // labelProxyProtocol // this.labelProxyProtocol.AutoSize = true; - this.labelProxyProtocol.Location = new System.Drawing.Point(28, 125); + this.labelProxyProtocol.Location = new System.Drawing.Point(19, 81); + this.labelProxyProtocol.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelProxyProtocol.Name = "labelProxyProtocol"; - this.labelProxyProtocol.Size = new System.Drawing.Size(220, 20); + this.labelProxyProtocol.Size = new System.Drawing.Size(149, 13); this.labelProxyProtocol.TabIndex = 90; this.labelProxyProtocol.Text = "Select a protocol to configure:"; // // radioButtonUseSebProxySettings // this.radioButtonUseSebProxySettings.AutoSize = true; - this.radioButtonUseSebProxySettings.Location = new System.Drawing.Point(28, 62); - this.radioButtonUseSebProxySettings.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.radioButtonUseSebProxySettings.Location = new System.Drawing.Point(19, 40); + this.radioButtonUseSebProxySettings.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.radioButtonUseSebProxySettings.Name = "radioButtonUseSebProxySettings"; - this.radioButtonUseSebProxySettings.Size = new System.Drawing.Size(201, 24); + this.radioButtonUseSebProxySettings.Size = new System.Drawing.Size(135, 17); this.radioButtonUseSebProxySettings.TabIndex = 1; this.radioButtonUseSebProxySettings.Text = "Use SEB proxy settings"; this.toolTip1.SetToolTip(this.radioButtonUseSebProxySettings, "Proxy settings provided in these SEB settings are used"); @@ -2018,10 +2053,10 @@ namespace SebWindowsConfig // radioButtonUseSystemProxySettings // this.radioButtonUseSystemProxySettings.AutoSize = true; - this.radioButtonUseSystemProxySettings.Location = new System.Drawing.Point(28, 31); - this.radioButtonUseSystemProxySettings.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.radioButtonUseSystemProxySettings.Location = new System.Drawing.Point(19, 20); + this.radioButtonUseSystemProxySettings.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.radioButtonUseSystemProxySettings.Name = "radioButtonUseSystemProxySettings"; - this.radioButtonUseSystemProxySettings.Size = new System.Drawing.Size(218, 24); + this.radioButtonUseSystemProxySettings.Size = new System.Drawing.Size(146, 17); this.radioButtonUseSystemProxySettings.TabIndex = 0; this.radioButtonUseSystemProxySettings.Text = "Use system proxy settings"; this.toolTip1.SetToolTip(this.radioButtonUseSystemProxySettings, "System proxy settings of the exam client computer are used"); @@ -2034,10 +2069,10 @@ namespace SebWindowsConfig this.tabPageApplications.Controls.Add(this.checkBoxMonitorProcesses); this.tabPageApplications.ImageIndex = 6; this.tabPageApplications.Location = new System.Drawing.Point(4, 39); - this.tabPageApplications.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.tabPageApplications.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.tabPageApplications.Name = "tabPageApplications"; - this.tabPageApplications.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.tabPageApplications.Size = new System.Drawing.Size(1867, 948); + this.tabPageApplications.Padding = new System.Windows.Forms.Padding(2, 1, 2, 1); + this.tabPageApplications.Size = new System.Drawing.Size(1242, 601); this.tabPageApplications.TabIndex = 21; this.tabPageApplications.Text = "Applications"; this.tabPageApplications.UseVisualStyleBackColor = true; @@ -2046,11 +2081,11 @@ namespace SebWindowsConfig // this.tabControlApplications.Controls.Add(this.tabPagePermittedProcesses); this.tabControlApplications.Controls.Add(this.tabPageProhibitedProcesses); - this.tabControlApplications.Location = new System.Drawing.Point(34, 62); - this.tabControlApplications.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.tabControlApplications.Location = new System.Drawing.Point(23, 40); + this.tabControlApplications.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.tabControlApplications.Name = "tabControlApplications"; this.tabControlApplications.SelectedIndex = 0; - this.tabControlApplications.Size = new System.Drawing.Size(1814, 866); + this.tabControlApplications.Size = new System.Drawing.Size(1209, 563); this.tabControlApplications.TabIndex = 1; // // tabPagePermittedProcesses @@ -2063,11 +2098,11 @@ namespace SebWindowsConfig this.tabPagePermittedProcesses.Controls.Add(this.groupBoxPermittedProcess); this.tabPagePermittedProcesses.Controls.Add(this.checkBoxAllowSwitchToApplications); this.tabPagePermittedProcesses.Controls.Add(this.checkBoxAllowFlashFullscreen); - this.tabPagePermittedProcesses.Location = new System.Drawing.Point(4, 29); - this.tabPagePermittedProcesses.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.tabPagePermittedProcesses.Location = new System.Drawing.Point(4, 22); + this.tabPagePermittedProcesses.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.tabPagePermittedProcesses.Name = "tabPagePermittedProcesses"; - this.tabPagePermittedProcesses.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.tabPagePermittedProcesses.Size = new System.Drawing.Size(1806, 833); + this.tabPagePermittedProcesses.Padding = new System.Windows.Forms.Padding(2, 1, 2, 1); + this.tabPagePermittedProcesses.Size = new System.Drawing.Size(1201, 537); this.tabPagePermittedProcesses.TabIndex = 0; this.tabPagePermittedProcesses.Text = "Permitted Processes"; this.tabPagePermittedProcesses.UseVisualStyleBackColor = true; @@ -2080,12 +2115,12 @@ namespace SebWindowsConfig this.OS, this.Executable, this.Title}); - this.dataGridViewPermittedProcesses.Location = new System.Drawing.Point(28, 32); - this.dataGridViewPermittedProcesses.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.dataGridViewPermittedProcesses.Location = new System.Drawing.Point(19, 21); + this.dataGridViewPermittedProcesses.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.dataGridViewPermittedProcesses.Name = "dataGridViewPermittedProcesses"; this.dataGridViewPermittedProcesses.RowHeadersVisible = false; this.dataGridViewPermittedProcesses.RowTemplate.Height = 24; - this.dataGridViewPermittedProcesses.Size = new System.Drawing.Size(1143, 282); + this.dataGridViewPermittedProcesses.Size = new System.Drawing.Size(762, 183); this.dataGridViewPermittedProcesses.TabIndex = 2; this.dataGridViewPermittedProcesses.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridViewPermittedProcesses_CellValueChanged); this.dataGridViewPermittedProcesses.CurrentCellDirtyStateChanged += new System.EventHandler(this.dataGridViewPermittedProcesses_CurrentCellDirtyStateChanged); @@ -2119,10 +2154,10 @@ namespace SebWindowsConfig // // buttonChoosePermittedProcess // - this.buttonChoosePermittedProcess.Location = new System.Drawing.Point(1506, 275); - this.buttonChoosePermittedProcess.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.buttonChoosePermittedProcess.Location = new System.Drawing.Point(1004, 179); + this.buttonChoosePermittedProcess.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.buttonChoosePermittedProcess.Name = "buttonChoosePermittedProcess"; - this.buttonChoosePermittedProcess.Size = new System.Drawing.Size(168, 38); + this.buttonChoosePermittedProcess.Size = new System.Drawing.Size(112, 25); this.buttonChoosePermittedProcess.TabIndex = 6; this.buttonChoosePermittedProcess.Text = "Choose Process..."; this.buttonChoosePermittedProcess.UseVisualStyleBackColor = true; @@ -2131,10 +2166,10 @@ namespace SebWindowsConfig // // buttonChoosePermittedApplication // - this.buttonChoosePermittedApplication.Location = new System.Drawing.Point(1305, 275); - this.buttonChoosePermittedApplication.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.buttonChoosePermittedApplication.Location = new System.Drawing.Point(870, 179); + this.buttonChoosePermittedApplication.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.buttonChoosePermittedApplication.Name = "buttonChoosePermittedApplication"; - this.buttonChoosePermittedApplication.Size = new System.Drawing.Size(188, 38); + this.buttonChoosePermittedApplication.Size = new System.Drawing.Size(125, 25); this.buttonChoosePermittedApplication.TabIndex = 5; this.buttonChoosePermittedApplication.Text = "Choose Application..."; this.toolTip1.SetToolTip(this.buttonChoosePermittedApplication, resources.GetString("buttonChoosePermittedApplication.ToolTip")); @@ -2143,10 +2178,10 @@ namespace SebWindowsConfig // // buttonRemovePermittedProcess // - this.buttonRemovePermittedProcess.Location = new System.Drawing.Point(1238, 275); - this.buttonRemovePermittedProcess.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.buttonRemovePermittedProcess.Location = new System.Drawing.Point(825, 179); + this.buttonRemovePermittedProcess.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.buttonRemovePermittedProcess.Name = "buttonRemovePermittedProcess"; - this.buttonRemovePermittedProcess.Size = new System.Drawing.Size(33, 38); + this.buttonRemovePermittedProcess.Size = new System.Drawing.Size(22, 25); this.buttonRemovePermittedProcess.TabIndex = 4; this.buttonRemovePermittedProcess.Text = "-"; this.toolTip1.SetToolTip(this.buttonRemovePermittedProcess, "Remove process"); @@ -2155,10 +2190,10 @@ namespace SebWindowsConfig // // buttonAddPermittedProcess // - this.buttonAddPermittedProcess.Location = new System.Drawing.Point(1198, 275); - this.buttonAddPermittedProcess.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.buttonAddPermittedProcess.Location = new System.Drawing.Point(799, 179); + this.buttonAddPermittedProcess.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.buttonAddPermittedProcess.Name = "buttonAddPermittedProcess"; - this.buttonAddPermittedProcess.Size = new System.Drawing.Size(33, 38); + this.buttonAddPermittedProcess.Size = new System.Drawing.Size(22, 25); this.buttonAddPermittedProcess.TabIndex = 3; this.buttonAddPermittedProcess.Text = "+"; this.toolTip1.SetToolTip(this.buttonAddPermittedProcess, "Add a permitted process"); @@ -2195,11 +2230,11 @@ namespace SebWindowsConfig this.groupBoxPermittedProcess.Controls.Add(this.checkBoxPermittedProcessAutohide); this.groupBoxPermittedProcess.Controls.Add(this.checkBoxPermittedProcessAutostart); this.groupBoxPermittedProcess.Controls.Add(this.checkBoxPermittedProcessActive); - this.groupBoxPermittedProcess.Location = new System.Drawing.Point(28, 328); - this.groupBoxPermittedProcess.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.groupBoxPermittedProcess.Location = new System.Drawing.Point(19, 213); + this.groupBoxPermittedProcess.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.groupBoxPermittedProcess.Name = "groupBoxPermittedProcess"; - this.groupBoxPermittedProcess.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.groupBoxPermittedProcess.Size = new System.Drawing.Size(1749, 492); + this.groupBoxPermittedProcess.Padding = new System.Windows.Forms.Padding(2, 1, 2, 1); + this.groupBoxPermittedProcess.Size = new System.Drawing.Size(1166, 320); this.groupBoxPermittedProcess.TabIndex = 80; this.groupBoxPermittedProcess.TabStop = false; this.groupBoxPermittedProcess.Text = "Selected Process"; @@ -2208,9 +2243,10 @@ namespace SebWindowsConfig // // textBoxPermittedProcessOriginalName // - this.textBoxPermittedProcessOriginalName.Location = new System.Drawing.Point(298, 168); + this.textBoxPermittedProcessOriginalName.Location = new System.Drawing.Point(199, 109); + this.textBoxPermittedProcessOriginalName.Margin = new System.Windows.Forms.Padding(2); this.textBoxPermittedProcessOriginalName.Name = "textBoxPermittedProcessOriginalName"; - this.textBoxPermittedProcessOriginalName.Size = new System.Drawing.Size(846, 26); + this.textBoxPermittedProcessOriginalName.Size = new System.Drawing.Size(565, 20); this.textBoxPermittedProcessOriginalName.TabIndex = 95; this.toolTip1.SetToolTip(this.textBoxPermittedProcessOriginalName, "If the Original Name file metadata is available, SEB will prioritize this string " + "over the executable file name string."); @@ -2219,19 +2255,20 @@ namespace SebWindowsConfig // PermittedProcessOriginalNameLabel // this.PermittedProcessOriginalNameLabel.AutoSize = true; - this.PermittedProcessOriginalNameLabel.Location = new System.Drawing.Point(182, 171); + this.PermittedProcessOriginalNameLabel.Location = new System.Drawing.Point(121, 111); + this.PermittedProcessOriginalNameLabel.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.PermittedProcessOriginalNameLabel.Name = "PermittedProcessOriginalNameLabel"; - this.PermittedProcessOriginalNameLabel.Size = new System.Drawing.Size(108, 20); + this.PermittedProcessOriginalNameLabel.Size = new System.Drawing.Size(73, 13); this.PermittedProcessOriginalNameLabel.TabIndex = 94; this.PermittedProcessOriginalNameLabel.Text = "Original Name"; // // checkBoxPermittedProcessIconInTaskbar // this.checkBoxPermittedProcessIconInTaskbar.AutoSize = true; - this.checkBoxPermittedProcessIconInTaskbar.Location = new System.Drawing.Point(1172, 40); - this.checkBoxPermittedProcessIconInTaskbar.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxPermittedProcessIconInTaskbar.Location = new System.Drawing.Point(781, 26); + this.checkBoxPermittedProcessIconInTaskbar.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxPermittedProcessIconInTaskbar.Name = "checkBoxPermittedProcessIconInTaskbar"; - this.checkBoxPermittedProcessIconInTaskbar.Size = new System.Drawing.Size(139, 24); + this.checkBoxPermittedProcessIconInTaskbar.Size = new System.Drawing.Size(96, 17); this.checkBoxPermittedProcessIconInTaskbar.TabIndex = 93; this.checkBoxPermittedProcessIconInTaskbar.Text = "Icon in taskbar"; this.toolTip1.SetToolTip(this.checkBoxPermittedProcessIconInTaskbar, "Show icon of permitted application in taskbar (not possible when \'run in backgrou" + @@ -2241,10 +2278,9 @@ namespace SebWindowsConfig // // ButtonChooseExecutable // - this.ButtonChooseExecutable.Location = new System.Drawing.Point(1095, 123); - this.ButtonChooseExecutable.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.ButtonChooseExecutable.Location = new System.Drawing.Point(730, 80); this.ButtonChooseExecutable.Name = "ButtonChooseExecutable"; - this.ButtonChooseExecutable.Size = new System.Drawing.Size(51, 34); + this.ButtonChooseExecutable.Size = new System.Drawing.Size(34, 22); this.ButtonChooseExecutable.TabIndex = 92; this.ButtonChooseExecutable.Text = "..."; this.ButtonChooseExecutable.UseVisualStyleBackColor = true; @@ -2253,19 +2289,20 @@ namespace SebWindowsConfig // label2 // this.label2.AutoSize = true; - this.label2.Location = new System.Drawing.Point(160, 212); + this.label2.Location = new System.Drawing.Point(107, 138); + this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label2.Name = "label2"; - this.label2.Size = new System.Drawing.Size(189, 20); + this.label2.Size = new System.Drawing.Size(129, 13); this.label2.TabIndex = 91; this.label2.Text = "Window handling process"; this.label2.Visible = false; // // textBoxPermittedProcessExecutables // - this.textBoxPermittedProcessExecutables.Location = new System.Drawing.Point(369, 208); - this.textBoxPermittedProcessExecutables.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBoxPermittedProcessExecutables.Location = new System.Drawing.Point(246, 135); + this.textBoxPermittedProcessExecutables.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBoxPermittedProcessExecutables.Name = "textBoxPermittedProcessExecutables"; - this.textBoxPermittedProcessExecutables.Size = new System.Drawing.Size(774, 26); + this.textBoxPermittedProcessExecutables.Size = new System.Drawing.Size(517, 20); this.textBoxPermittedProcessExecutables.TabIndex = 90; this.toolTip1.SetToolTip(this.textBoxPermittedProcessExecutables, "Process executable which is actually handling the main window."); this.textBoxPermittedProcessExecutables.Visible = false; @@ -2274,10 +2311,10 @@ namespace SebWindowsConfig // checkBoxPermittedProcessStrongKill // this.checkBoxPermittedProcessStrongKill.AutoSize = true; - this.checkBoxPermittedProcessStrongKill.Location = new System.Drawing.Point(1172, 174); - this.checkBoxPermittedProcessStrongKill.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxPermittedProcessStrongKill.Location = new System.Drawing.Point(781, 113); + this.checkBoxPermittedProcessStrongKill.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxPermittedProcessStrongKill.Name = "checkBoxPermittedProcessStrongKill"; - this.checkBoxPermittedProcessStrongKill.Size = new System.Drawing.Size(230, 24); + this.checkBoxPermittedProcessStrongKill.Size = new System.Drawing.Size(155, 17); this.checkBoxPermittedProcessStrongKill.TabIndex = 13; this.checkBoxPermittedProcessStrongKill.Text = "Force quit (risk of data loss)"; this.toolTip1.SetToolTip(this.checkBoxPermittedProcessStrongKill, "Force terminate process, which may cause data loss if the application had unsaved" + @@ -2287,10 +2324,10 @@ namespace SebWindowsConfig // // buttonPermittedProcessCodeSignature // - this.buttonPermittedProcessCodeSignature.Location = new System.Drawing.Point(1172, 235); - this.buttonPermittedProcessCodeSignature.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.buttonPermittedProcessCodeSignature.Location = new System.Drawing.Point(781, 153); + this.buttonPermittedProcessCodeSignature.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.buttonPermittedProcessCodeSignature.Name = "buttonPermittedProcessCodeSignature"; - this.buttonPermittedProcessCodeSignature.Size = new System.Drawing.Size(168, 38); + this.buttonPermittedProcessCodeSignature.Size = new System.Drawing.Size(112, 25); this.buttonPermittedProcessCodeSignature.TabIndex = 14; this.buttonPermittedProcessCodeSignature.Text = "Code Signature..."; this.buttonPermittedProcessCodeSignature.UseVisualStyleBackColor = true; @@ -2304,12 +2341,12 @@ namespace SebWindowsConfig this.dataGridViewPermittedProcessArguments.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.ArgumentActive, this.ArgumentParameter}); - this.dataGridViewPermittedProcessArguments.Location = new System.Drawing.Point(256, 291); - this.dataGridViewPermittedProcessArguments.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.dataGridViewPermittedProcessArguments.Location = new System.Drawing.Point(171, 189); + this.dataGridViewPermittedProcessArguments.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.dataGridViewPermittedProcessArguments.Name = "dataGridViewPermittedProcessArguments"; this.dataGridViewPermittedProcessArguments.RowHeadersVisible = false; this.dataGridViewPermittedProcessArguments.RowTemplate.Height = 24; - this.dataGridViewPermittedProcessArguments.Size = new System.Drawing.Size(886, 145); + this.dataGridViewPermittedProcessArguments.Size = new System.Drawing.Size(591, 94); this.dataGridViewPermittedProcessArguments.TabIndex = 6; this.toolTip1.SetToolTip(this.dataGridViewPermittedProcessArguments, "Arguments to append to the executable of the application when starting it. You ca" + "n select if an argument is active or not (for testing)."); @@ -2332,19 +2369,20 @@ namespace SebWindowsConfig // labelPermittedProcessIdentifier // this.labelPermittedProcessIdentifier.AutoSize = true; - this.labelPermittedProcessIdentifier.Location = new System.Drawing.Point(292, 455); + this.labelPermittedProcessIdentifier.Location = new System.Drawing.Point(195, 296); + this.labelPermittedProcessIdentifier.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelPermittedProcessIdentifier.Name = "labelPermittedProcessIdentifier"; - this.labelPermittedProcessIdentifier.Size = new System.Drawing.Size(71, 20); + this.labelPermittedProcessIdentifier.Size = new System.Drawing.Size(47, 13); this.labelPermittedProcessIdentifier.TabIndex = 89; this.labelPermittedProcessIdentifier.Text = "Identifier"; this.labelPermittedProcessIdentifier.Visible = false; // // textBoxPermittedProcessIdentifier // - this.textBoxPermittedProcessIdentifier.Location = new System.Drawing.Point(369, 449); - this.textBoxPermittedProcessIdentifier.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBoxPermittedProcessIdentifier.Location = new System.Drawing.Point(246, 292); + this.textBoxPermittedProcessIdentifier.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBoxPermittedProcessIdentifier.Name = "textBoxPermittedProcessIdentifier"; - this.textBoxPermittedProcessIdentifier.Size = new System.Drawing.Size(774, 26); + this.textBoxPermittedProcessIdentifier.Size = new System.Drawing.Size(517, 20); this.textBoxPermittedProcessIdentifier.TabIndex = 9; this.toolTip1.SetToolTip(this.textBoxPermittedProcessIdentifier, "(Sub) string in the title of the main window of a tricky third party application " + "(Java, Acrobat etc.). Mac: Bundle identifier of the process in reverse domain no" + @@ -2354,10 +2392,10 @@ namespace SebWindowsConfig // // buttonPermittedProcessRemoveArgument // - this.buttonPermittedProcessRemoveArgument.Location = new System.Drawing.Point(190, 318); - this.buttonPermittedProcessRemoveArgument.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.buttonPermittedProcessRemoveArgument.Location = new System.Drawing.Point(127, 207); + this.buttonPermittedProcessRemoveArgument.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.buttonPermittedProcessRemoveArgument.Name = "buttonPermittedProcessRemoveArgument"; - this.buttonPermittedProcessRemoveArgument.Size = new System.Drawing.Size(33, 29); + this.buttonPermittedProcessRemoveArgument.Size = new System.Drawing.Size(22, 19); this.buttonPermittedProcessRemoveArgument.TabIndex = 8; this.buttonPermittedProcessRemoveArgument.Text = "-"; this.toolTip1.SetToolTip(this.buttonPermittedProcessRemoveArgument, "Remove an argument"); @@ -2366,10 +2404,10 @@ namespace SebWindowsConfig // // buttonPermittedProcessAddArgument // - this.buttonPermittedProcessAddArgument.Location = new System.Drawing.Point(150, 318); - this.buttonPermittedProcessAddArgument.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.buttonPermittedProcessAddArgument.Location = new System.Drawing.Point(100, 207); + this.buttonPermittedProcessAddArgument.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.buttonPermittedProcessAddArgument.Name = "buttonPermittedProcessAddArgument"; - this.buttonPermittedProcessAddArgument.Size = new System.Drawing.Size(33, 29); + this.buttonPermittedProcessAddArgument.Size = new System.Drawing.Size(22, 19); this.buttonPermittedProcessAddArgument.TabIndex = 7; this.buttonPermittedProcessAddArgument.Text = "+"; this.toolTip1.SetToolTip(this.buttonPermittedProcessAddArgument, "Add an argument"); @@ -2379,29 +2417,30 @@ namespace SebWindowsConfig // labelPermittedProcessArguments // this.labelPermittedProcessArguments.AutoSize = true; - this.labelPermittedProcessArguments.Location = new System.Drawing.Point(148, 291); + this.labelPermittedProcessArguments.Location = new System.Drawing.Point(99, 189); + this.labelPermittedProcessArguments.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelPermittedProcessArguments.Name = "labelPermittedProcessArguments"; - this.labelPermittedProcessArguments.Size = new System.Drawing.Size(87, 20); + this.labelPermittedProcessArguments.Size = new System.Drawing.Size(57, 13); this.labelPermittedProcessArguments.TabIndex = 14; this.labelPermittedProcessArguments.Text = "Arguments"; // // labelPermittedProcessOS // this.labelPermittedProcessOS.AutoSize = true; - this.labelPermittedProcessOS.Location = new System.Drawing.Point(27, 138); + this.labelPermittedProcessOS.Location = new System.Drawing.Point(18, 90); + this.labelPermittedProcessOS.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelPermittedProcessOS.Name = "labelPermittedProcessOS"; - this.labelPermittedProcessOS.Size = new System.Drawing.Size(32, 20); + this.labelPermittedProcessOS.Size = new System.Drawing.Size(22, 13); this.labelPermittedProcessOS.TabIndex = 13; this.labelPermittedProcessOS.Text = "OS"; // // listBoxPermittedProcessOS // this.listBoxPermittedProcessOS.FormattingEnabled = true; - this.listBoxPermittedProcessOS.ItemHeight = 20; - this.listBoxPermittedProcessOS.Location = new System.Drawing.Point(63, 138); - this.listBoxPermittedProcessOS.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.listBoxPermittedProcessOS.Location = new System.Drawing.Point(42, 90); + this.listBoxPermittedProcessOS.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.listBoxPermittedProcessOS.Name = "listBoxPermittedProcessOS"; - this.listBoxPermittedProcessOS.Size = new System.Drawing.Size(70, 44); + this.listBoxPermittedProcessOS.Size = new System.Drawing.Size(48, 30); this.listBoxPermittedProcessOS.TabIndex = 3; this.toolTip1.SetToolTip(this.listBoxPermittedProcessOS, "Indicates on which operating system the permitted process runs."); this.listBoxPermittedProcessOS.SelectedIndexChanged += new System.EventHandler(this.listBoxPermittedProcessOS_SelectedIndexChanged); @@ -2409,36 +2448,38 @@ namespace SebWindowsConfig // labelPermittedProcessExecutable // this.labelPermittedProcessExecutable.AutoSize = true; - this.labelPermittedProcessExecutable.Location = new System.Drawing.Point(202, 129); + this.labelPermittedProcessExecutable.Location = new System.Drawing.Point(135, 84); + this.labelPermittedProcessExecutable.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelPermittedProcessExecutable.Name = "labelPermittedProcessExecutable"; - this.labelPermittedProcessExecutable.Size = new System.Drawing.Size(88, 20); + this.labelPermittedProcessExecutable.Size = new System.Drawing.Size(60, 13); this.labelPermittedProcessExecutable.TabIndex = 11; this.labelPermittedProcessExecutable.Text = "Executable"; // // labelPermittedProcessPath // this.labelPermittedProcessPath.AutoSize = true; - this.labelPermittedProcessPath.Location = new System.Drawing.Point(80, 254); + this.labelPermittedProcessPath.Location = new System.Drawing.Point(53, 165); + this.labelPermittedProcessPath.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelPermittedProcessPath.Name = "labelPermittedProcessPath"; - this.labelPermittedProcessPath.Size = new System.Drawing.Size(42, 20); + this.labelPermittedProcessPath.Size = new System.Drawing.Size(29, 13); this.labelPermittedProcessPath.TabIndex = 10; this.labelPermittedProcessPath.Text = "Path"; // // textBoxPermittedProcessPath // - this.textBoxPermittedProcessPath.Location = new System.Drawing.Point(129, 249); - this.textBoxPermittedProcessPath.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBoxPermittedProcessPath.Location = new System.Drawing.Point(86, 162); + this.textBoxPermittedProcessPath.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBoxPermittedProcessPath.Name = "textBoxPermittedProcessPath"; - this.textBoxPermittedProcessPath.Size = new System.Drawing.Size(1014, 26); + this.textBoxPermittedProcessPath.Size = new System.Drawing.Size(677, 20); this.textBoxPermittedProcessPath.TabIndex = 5; this.textBoxPermittedProcessPath.TextChanged += new System.EventHandler(this.textBoxPermittedProcessPath_TextChanged); // // textBoxPermittedProcessExecutable // - this.textBoxPermittedProcessExecutable.Location = new System.Drawing.Point(298, 125); - this.textBoxPermittedProcessExecutable.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBoxPermittedProcessExecutable.Location = new System.Drawing.Point(199, 81); + this.textBoxPermittedProcessExecutable.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBoxPermittedProcessExecutable.Name = "textBoxPermittedProcessExecutable"; - this.textBoxPermittedProcessExecutable.Size = new System.Drawing.Size(787, 26); + this.textBoxPermittedProcessExecutable.Size = new System.Drawing.Size(526, 20); this.textBoxPermittedProcessExecutable.TabIndex = 4; this.toolTip1.SetToolTip(this.textBoxPermittedProcessExecutable, "File name of the executable, which should not contain any parts of a file system " + "path, only the filename of the exe file (like calc.exe)."); @@ -2446,10 +2487,10 @@ namespace SebWindowsConfig // // textBoxPermittedProcessDescription // - this.textBoxPermittedProcessDescription.Location = new System.Drawing.Point(129, 82); - this.textBoxPermittedProcessDescription.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBoxPermittedProcessDescription.Location = new System.Drawing.Point(86, 53); + this.textBoxPermittedProcessDescription.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBoxPermittedProcessDescription.Name = "textBoxPermittedProcessDescription"; - this.textBoxPermittedProcessDescription.Size = new System.Drawing.Size(1014, 26); + this.textBoxPermittedProcessDescription.Size = new System.Drawing.Size(677, 20); this.textBoxPermittedProcessDescription.TabIndex = 2; this.toolTip1.SetToolTip(this.textBoxPermittedProcessDescription, "Optional, should explain what kind of process this is, because this might not be " + "obvious only from the executable\'s name."); @@ -2458,27 +2499,29 @@ namespace SebWindowsConfig // labelPermittedProcessDescription // this.labelPermittedProcessDescription.AutoSize = true; - this.labelPermittedProcessDescription.Location = new System.Drawing.Point(21, 85); + this.labelPermittedProcessDescription.Location = new System.Drawing.Point(14, 55); + this.labelPermittedProcessDescription.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelPermittedProcessDescription.Name = "labelPermittedProcessDescription"; - this.labelPermittedProcessDescription.Size = new System.Drawing.Size(89, 20); + this.labelPermittedProcessDescription.Size = new System.Drawing.Size(60, 13); this.labelPermittedProcessDescription.TabIndex = 6; this.labelPermittedProcessDescription.Text = "Description"; // // labelPermittedProcessTitle // this.labelPermittedProcessTitle.AutoSize = true; - this.labelPermittedProcessTitle.Location = new System.Drawing.Point(252, 45); + this.labelPermittedProcessTitle.Location = new System.Drawing.Point(168, 29); + this.labelPermittedProcessTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelPermittedProcessTitle.Name = "labelPermittedProcessTitle"; - this.labelPermittedProcessTitle.Size = new System.Drawing.Size(38, 20); + this.labelPermittedProcessTitle.Size = new System.Drawing.Size(27, 13); this.labelPermittedProcessTitle.TabIndex = 5; this.labelPermittedProcessTitle.Text = "Title"; // // textBoxPermittedProcessTitle // - this.textBoxPermittedProcessTitle.Location = new System.Drawing.Point(298, 40); - this.textBoxPermittedProcessTitle.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBoxPermittedProcessTitle.Location = new System.Drawing.Point(199, 26); + this.textBoxPermittedProcessTitle.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBoxPermittedProcessTitle.Name = "textBoxPermittedProcessTitle"; - this.textBoxPermittedProcessTitle.Size = new System.Drawing.Size(846, 26); + this.textBoxPermittedProcessTitle.Size = new System.Drawing.Size(565, 20); this.textBoxPermittedProcessTitle.TabIndex = 1; this.toolTip1.SetToolTip(this.textBoxPermittedProcessTitle, "Application title which is displayed in the application chooser. Background proce" + "sses don’t have a title, because they can’t be selected by users."); @@ -2487,10 +2530,10 @@ namespace SebWindowsConfig // checkBoxPermittedProcessAllowUser // this.checkBoxPermittedProcessAllowUser.AutoSize = true; - this.checkBoxPermittedProcessAllowUser.Location = new System.Drawing.Point(1172, 140); - this.checkBoxPermittedProcessAllowUser.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxPermittedProcessAllowUser.Location = new System.Drawing.Point(781, 91); + this.checkBoxPermittedProcessAllowUser.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxPermittedProcessAllowUser.Name = "checkBoxPermittedProcessAllowUser"; - this.checkBoxPermittedProcessAllowUser.Size = new System.Drawing.Size(328, 24); + this.checkBoxPermittedProcessAllowUser.Size = new System.Drawing.Size(223, 17); this.checkBoxPermittedProcessAllowUser.TabIndex = 12; this.checkBoxPermittedProcessAllowUser.Text = "Allow user to select location of application"; this.toolTip1.SetToolTip(this.checkBoxPermittedProcessAllowUser, resources.GetString("checkBoxPermittedProcessAllowUser.ToolTip")); @@ -2500,10 +2543,10 @@ namespace SebWindowsConfig // checkBoxPermittedProcessAutohide // this.checkBoxPermittedProcessAutohide.AutoSize = true; - this.checkBoxPermittedProcessAutohide.Location = new System.Drawing.Point(1172, 106); - this.checkBoxPermittedProcessAutohide.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxPermittedProcessAutohide.Location = new System.Drawing.Point(781, 69); + this.checkBoxPermittedProcessAutohide.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxPermittedProcessAutohide.Name = "checkBoxPermittedProcessAutohide"; - this.checkBoxPermittedProcessAutohide.Size = new System.Drawing.Size(233, 24); + this.checkBoxPermittedProcessAutohide.Size = new System.Drawing.Size(160, 17); this.checkBoxPermittedProcessAutohide.TabIndex = 11; this.checkBoxPermittedProcessAutohide.Text = "Allow running in background"; this.checkBoxPermittedProcessAutohide.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; @@ -2515,10 +2558,10 @@ namespace SebWindowsConfig // checkBoxPermittedProcessAutostart // this.checkBoxPermittedProcessAutostart.AutoSize = true; - this.checkBoxPermittedProcessAutostart.Location = new System.Drawing.Point(1172, 72); - this.checkBoxPermittedProcessAutostart.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxPermittedProcessAutostart.Location = new System.Drawing.Point(781, 47); + this.checkBoxPermittedProcessAutostart.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxPermittedProcessAutostart.Name = "checkBoxPermittedProcessAutostart"; - this.checkBoxPermittedProcessAutostart.Size = new System.Drawing.Size(101, 24); + this.checkBoxPermittedProcessAutostart.Size = new System.Drawing.Size(68, 17); this.checkBoxPermittedProcessAutostart.TabIndex = 10; this.checkBoxPermittedProcessAutostart.Text = "Autostart"; this.toolTip1.SetToolTip(this.checkBoxPermittedProcessAutostart, "Start the process automatically together with SEB."); @@ -2528,10 +2571,10 @@ namespace SebWindowsConfig // checkBoxPermittedProcessActive // this.checkBoxPermittedProcessActive.AutoSize = true; - this.checkBoxPermittedProcessActive.Location = new System.Drawing.Point(26, 42); - this.checkBoxPermittedProcessActive.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxPermittedProcessActive.Location = new System.Drawing.Point(17, 27); + this.checkBoxPermittedProcessActive.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxPermittedProcessActive.Name = "checkBoxPermittedProcessActive"; - this.checkBoxPermittedProcessActive.Size = new System.Drawing.Size(78, 24); + this.checkBoxPermittedProcessActive.Size = new System.Drawing.Size(56, 17); this.checkBoxPermittedProcessActive.TabIndex = 0; this.checkBoxPermittedProcessActive.Text = "Active"; this.toolTip1.SetToolTip(this.checkBoxPermittedProcessActive, "This permitted process item is active."); @@ -2542,10 +2585,10 @@ namespace SebWindowsConfig // this.checkBoxAllowSwitchToApplications.AutoSize = true; this.checkBoxAllowSwitchToApplications.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxAllowSwitchToApplications.Location = new System.Drawing.Point(1198, 32); - this.checkBoxAllowSwitchToApplications.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxAllowSwitchToApplications.Location = new System.Drawing.Point(799, 21); + this.checkBoxAllowSwitchToApplications.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxAllowSwitchToApplications.Name = "checkBoxAllowSwitchToApplications"; - this.checkBoxAllowSwitchToApplications.Size = new System.Drawing.Size(365, 24); + this.checkBoxAllowSwitchToApplications.Size = new System.Drawing.Size(248, 17); this.checkBoxAllowSwitchToApplications.TabIndex = 0; this.checkBoxAllowSwitchToApplications.Text = "Allow switching to third party applications (Mac)"; this.toolTip1.SetToolTip(this.checkBoxAllowSwitchToApplications, "Decreases security of the kiosk mode by allowing process switcher (Cmd+Tab). The " + @@ -2558,10 +2601,10 @@ namespace SebWindowsConfig // this.checkBoxAllowFlashFullscreen.AutoSize = true; this.checkBoxAllowFlashFullscreen.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxAllowFlashFullscreen.Location = new System.Drawing.Point(1222, 66); - this.checkBoxAllowFlashFullscreen.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxAllowFlashFullscreen.Location = new System.Drawing.Point(815, 43); + this.checkBoxAllowFlashFullscreen.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxAllowFlashFullscreen.Name = "checkBoxAllowFlashFullscreen"; - this.checkBoxAllowFlashFullscreen.Size = new System.Drawing.Size(359, 24); + this.checkBoxAllowFlashFullscreen.Size = new System.Drawing.Size(243, 17); this.checkBoxAllowFlashFullscreen.TabIndex = 1; this.checkBoxAllowFlashFullscreen.Text = "Allow Flash to switch to fullscreen mode (Mac)"; this.checkBoxAllowFlashFullscreen.UseVisualStyleBackColor = true; @@ -2575,11 +2618,11 @@ namespace SebWindowsConfig this.tabPageProhibitedProcesses.Controls.Add(this.buttonRemoveProhibitedProcess); this.tabPageProhibitedProcesses.Controls.Add(this.buttonAddProhibitedProcess); this.tabPageProhibitedProcesses.Controls.Add(this.dataGridViewProhibitedProcesses); - this.tabPageProhibitedProcesses.Location = new System.Drawing.Point(4, 29); - this.tabPageProhibitedProcesses.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.tabPageProhibitedProcesses.Location = new System.Drawing.Point(4, 22); + this.tabPageProhibitedProcesses.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.tabPageProhibitedProcesses.Name = "tabPageProhibitedProcesses"; - this.tabPageProhibitedProcesses.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.tabPageProhibitedProcesses.Size = new System.Drawing.Size(1806, 833); + this.tabPageProhibitedProcesses.Padding = new System.Windows.Forms.Padding(2, 1, 2, 1); + this.tabPageProhibitedProcesses.Size = new System.Drawing.Size(1201, 537); this.tabPageProhibitedProcesses.TabIndex = 1; this.tabPageProhibitedProcesses.Text = "Prohibited Processes"; this.tabPageProhibitedProcesses.UseVisualStyleBackColor = true; @@ -2602,38 +2645,40 @@ namespace SebWindowsConfig this.groupBoxProhibitedProcess.Controls.Add(this.checkBoxProhibitedProcessStrongKill); this.groupBoxProhibitedProcess.Controls.Add(this.checkBoxProhibitedProcessCurrentUser); this.groupBoxProhibitedProcess.Controls.Add(this.checkBoxProhibitedProcessActive); - this.groupBoxProhibitedProcess.Location = new System.Drawing.Point(28, 475); - this.groupBoxProhibitedProcess.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.groupBoxProhibitedProcess.Location = new System.Drawing.Point(19, 309); + this.groupBoxProhibitedProcess.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.groupBoxProhibitedProcess.Name = "groupBoxProhibitedProcess"; - this.groupBoxProhibitedProcess.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.groupBoxProhibitedProcess.Size = new System.Drawing.Size(1116, 332); + this.groupBoxProhibitedProcess.Padding = new System.Windows.Forms.Padding(2, 1, 2, 1); + this.groupBoxProhibitedProcess.Size = new System.Drawing.Size(744, 216); this.groupBoxProhibitedProcess.TabIndex = 95; this.groupBoxProhibitedProcess.TabStop = false; this.groupBoxProhibitedProcess.Text = "Selected Process"; // // textBoxProhibitedProcessOriginalName // - this.textBoxProhibitedProcessOriginalName.Location = new System.Drawing.Point(267, 85); + this.textBoxProhibitedProcessOriginalName.Location = new System.Drawing.Point(178, 55); + this.textBoxProhibitedProcessOriginalName.Margin = new System.Windows.Forms.Padding(2); this.textBoxProhibitedProcessOriginalName.Name = "textBoxProhibitedProcessOriginalName"; - this.textBoxProhibitedProcessOriginalName.Size = new System.Drawing.Size(505, 26); + this.textBoxProhibitedProcessOriginalName.Size = new System.Drawing.Size(338, 20); this.textBoxProhibitedProcessOriginalName.TabIndex = 15; this.textBoxProhibitedProcessOriginalName.TextChanged += new System.EventHandler(this.textBoxProhibitedProcessOriginalName_TextChanged); // // ProhibitedProcessOriginalNameLabel // this.ProhibitedProcessOriginalNameLabel.AutoSize = true; - this.ProhibitedProcessOriginalNameLabel.Location = new System.Drawing.Point(153, 88); + this.ProhibitedProcessOriginalNameLabel.Location = new System.Drawing.Point(102, 57); + this.ProhibitedProcessOriginalNameLabel.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.ProhibitedProcessOriginalNameLabel.Name = "ProhibitedProcessOriginalNameLabel"; - this.ProhibitedProcessOriginalNameLabel.Size = new System.Drawing.Size(108, 20); + this.ProhibitedProcessOriginalNameLabel.Size = new System.Drawing.Size(73, 13); this.ProhibitedProcessOriginalNameLabel.TabIndex = 14; this.ProhibitedProcessOriginalNameLabel.Text = "Original Name"; // // buttonProhibitedProcessCodeSignature // - this.buttonProhibitedProcessCodeSignature.Location = new System.Drawing.Point(603, 278); - this.buttonProhibitedProcessCodeSignature.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.buttonProhibitedProcessCodeSignature.Location = new System.Drawing.Point(402, 181); + this.buttonProhibitedProcessCodeSignature.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.buttonProhibitedProcessCodeSignature.Name = "buttonProhibitedProcessCodeSignature"; - this.buttonProhibitedProcessCodeSignature.Size = new System.Drawing.Size(168, 38); + this.buttonProhibitedProcessCodeSignature.Size = new System.Drawing.Size(112, 25); this.buttonProhibitedProcessCodeSignature.TabIndex = 8; this.buttonProhibitedProcessCodeSignature.Text = "Code Signature..."; this.buttonProhibitedProcessCodeSignature.UseVisualStyleBackColor = true; @@ -2643,29 +2688,30 @@ namespace SebWindowsConfig // labelProhibitedProcessOS // this.labelProhibitedProcessOS.AutoSize = true; - this.labelProhibitedProcessOS.Location = new System.Drawing.Point(27, 175); + this.labelProhibitedProcessOS.Location = new System.Drawing.Point(18, 114); + this.labelProhibitedProcessOS.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelProhibitedProcessOS.Name = "labelProhibitedProcessOS"; - this.labelProhibitedProcessOS.Size = new System.Drawing.Size(32, 20); + this.labelProhibitedProcessOS.Size = new System.Drawing.Size(22, 13); this.labelProhibitedProcessOS.TabIndex = 13; this.labelProhibitedProcessOS.Text = "OS"; // // listBoxProhibitedProcessOS // this.listBoxProhibitedProcessOS.FormattingEnabled = true; - this.listBoxProhibitedProcessOS.ItemHeight = 20; - this.listBoxProhibitedProcessOS.Location = new System.Drawing.Point(63, 175); - this.listBoxProhibitedProcessOS.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.listBoxProhibitedProcessOS.Location = new System.Drawing.Point(42, 114); + this.listBoxProhibitedProcessOS.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.listBoxProhibitedProcessOS.Name = "listBoxProhibitedProcessOS"; - this.listBoxProhibitedProcessOS.Size = new System.Drawing.Size(70, 44); + this.listBoxProhibitedProcessOS.Size = new System.Drawing.Size(48, 30); this.listBoxProhibitedProcessOS.TabIndex = 3; this.listBoxProhibitedProcessOS.SelectedIndexChanged += new System.EventHandler(this.listBoxProhibitedProcessOS_SelectedIndexChanged); // // labelProhibitedProcessIdentifier // this.labelProhibitedProcessIdentifier.AutoSize = true; - this.labelProhibitedProcessIdentifier.Location = new System.Drawing.Point(190, 175); + this.labelProhibitedProcessIdentifier.Location = new System.Drawing.Point(127, 114); + this.labelProhibitedProcessIdentifier.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelProhibitedProcessIdentifier.Name = "labelProhibitedProcessIdentifier"; - this.labelProhibitedProcessIdentifier.Size = new System.Drawing.Size(71, 20); + this.labelProhibitedProcessIdentifier.Size = new System.Drawing.Size(47, 13); this.labelProhibitedProcessIdentifier.TabIndex = 11; this.labelProhibitedProcessIdentifier.Text = "Identifier"; this.labelProhibitedProcessIdentifier.Visible = false; @@ -2673,19 +2719,20 @@ namespace SebWindowsConfig // labelProhibitedProcessUser // this.labelProhibitedProcessUser.AutoSize = true; - this.labelProhibitedProcessUser.Location = new System.Drawing.Point(218, 222); + this.labelProhibitedProcessUser.Location = new System.Drawing.Point(145, 144); + this.labelProhibitedProcessUser.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelProhibitedProcessUser.Name = "labelProhibitedProcessUser"; - this.labelProhibitedProcessUser.Size = new System.Drawing.Size(43, 20); + this.labelProhibitedProcessUser.Size = new System.Drawing.Size(29, 13); this.labelProhibitedProcessUser.TabIndex = 10; this.labelProhibitedProcessUser.Text = "User"; this.labelProhibitedProcessUser.Visible = false; // // textBoxProhibitedProcessUser // - this.textBoxProhibitedProcessUser.Location = new System.Drawing.Point(267, 222); - this.textBoxProhibitedProcessUser.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBoxProhibitedProcessUser.Location = new System.Drawing.Point(178, 144); + this.textBoxProhibitedProcessUser.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBoxProhibitedProcessUser.Name = "textBoxProhibitedProcessUser"; - this.textBoxProhibitedProcessUser.Size = new System.Drawing.Size(505, 26); + this.textBoxProhibitedProcessUser.Size = new System.Drawing.Size(338, 20); this.textBoxProhibitedProcessUser.TabIndex = 5; this.toolTip1.SetToolTip(this.textBoxProhibitedProcessUser, "User identifier under which this process is running. If no user is indicated, the" + "n the process is killed regardless under which user it is running. Instead the c" + @@ -2695,10 +2742,10 @@ namespace SebWindowsConfig // // textBoxProhibitedProcessIdentifier // - this.textBoxProhibitedProcessIdentifier.Location = new System.Drawing.Point(267, 175); - this.textBoxProhibitedProcessIdentifier.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBoxProhibitedProcessIdentifier.Location = new System.Drawing.Point(178, 114); + this.textBoxProhibitedProcessIdentifier.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBoxProhibitedProcessIdentifier.Name = "textBoxProhibitedProcessIdentifier"; - this.textBoxProhibitedProcessIdentifier.Size = new System.Drawing.Size(505, 26); + this.textBoxProhibitedProcessIdentifier.Size = new System.Drawing.Size(338, 20); this.textBoxProhibitedProcessIdentifier.TabIndex = 4; this.toolTip1.SetToolTip(this.textBoxProhibitedProcessIdentifier, "Title of the main window of a Java third party application. Mac OS X: Bundle iden" + "tifier of the process in reverse domain notation."); @@ -2707,10 +2754,10 @@ namespace SebWindowsConfig // // textBoxProhibitedProcessDescription // - this.textBoxProhibitedProcessDescription.Location = new System.Drawing.Point(129, 131); - this.textBoxProhibitedProcessDescription.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBoxProhibitedProcessDescription.Location = new System.Drawing.Point(86, 85); + this.textBoxProhibitedProcessDescription.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBoxProhibitedProcessDescription.Name = "textBoxProhibitedProcessDescription"; - this.textBoxProhibitedProcessDescription.Size = new System.Drawing.Size(643, 26); + this.textBoxProhibitedProcessDescription.Size = new System.Drawing.Size(430, 20); this.textBoxProhibitedProcessDescription.TabIndex = 2; this.toolTip1.SetToolTip(this.textBoxProhibitedProcessDescription, "Optional, to explain what kind of process this is, because this might not be obvi" + "ous only from the executable\'s name."); @@ -2719,27 +2766,29 @@ namespace SebWindowsConfig // labelProhibitedProcessDescription // this.labelProhibitedProcessDescription.AutoSize = true; - this.labelProhibitedProcessDescription.Location = new System.Drawing.Point(24, 131); + this.labelProhibitedProcessDescription.Location = new System.Drawing.Point(16, 85); + this.labelProhibitedProcessDescription.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelProhibitedProcessDescription.Name = "labelProhibitedProcessDescription"; - this.labelProhibitedProcessDescription.Size = new System.Drawing.Size(89, 20); + this.labelProhibitedProcessDescription.Size = new System.Drawing.Size(60, 13); this.labelProhibitedProcessDescription.TabIndex = 6; this.labelProhibitedProcessDescription.Text = "Description"; // // labelProhibitedProcessExecutable // this.labelProhibitedProcessExecutable.AutoSize = true; - this.labelProhibitedProcessExecutable.Location = new System.Drawing.Point(174, 40); + this.labelProhibitedProcessExecutable.Location = new System.Drawing.Point(116, 26); + this.labelProhibitedProcessExecutable.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelProhibitedProcessExecutable.Name = "labelProhibitedProcessExecutable"; - this.labelProhibitedProcessExecutable.Size = new System.Drawing.Size(88, 20); + this.labelProhibitedProcessExecutable.Size = new System.Drawing.Size(60, 13); this.labelProhibitedProcessExecutable.TabIndex = 5; this.labelProhibitedProcessExecutable.Text = "Executable"; // // textBoxProhibitedProcessExecutable // - this.textBoxProhibitedProcessExecutable.Location = new System.Drawing.Point(267, 40); - this.textBoxProhibitedProcessExecutable.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBoxProhibitedProcessExecutable.Location = new System.Drawing.Point(178, 26); + this.textBoxProhibitedProcessExecutable.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBoxProhibitedProcessExecutable.Name = "textBoxProhibitedProcessExecutable"; - this.textBoxProhibitedProcessExecutable.Size = new System.Drawing.Size(505, 26); + this.textBoxProhibitedProcessExecutable.Size = new System.Drawing.Size(338, 20); this.textBoxProhibitedProcessExecutable.TabIndex = 1; this.toolTip1.SetToolTip(this.textBoxProhibitedProcessExecutable, "File name of the executable, which should not contain any parts of a file system " + "path, only the filename of the exe file (like calc.exe)."); @@ -2748,10 +2797,10 @@ namespace SebWindowsConfig // checkBoxProhibitedProcessStrongKill // this.checkBoxProhibitedProcessStrongKill.AutoSize = true; - this.checkBoxProhibitedProcessStrongKill.Location = new System.Drawing.Point(22, 288); - this.checkBoxProhibitedProcessStrongKill.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxProhibitedProcessStrongKill.Location = new System.Drawing.Point(15, 187); + this.checkBoxProhibitedProcessStrongKill.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxProhibitedProcessStrongKill.Name = "checkBoxProhibitedProcessStrongKill"; - this.checkBoxProhibitedProcessStrongKill.Size = new System.Drawing.Size(230, 24); + this.checkBoxProhibitedProcessStrongKill.Size = new System.Drawing.Size(155, 17); this.checkBoxProhibitedProcessStrongKill.TabIndex = 7; this.checkBoxProhibitedProcessStrongKill.Text = "Force quit (risk of data loss)"; this.toolTip1.SetToolTip(this.checkBoxProhibitedProcessStrongKill, "Terminate process in a not-nice way, which may cause data loss if the application" + @@ -2762,10 +2811,10 @@ namespace SebWindowsConfig // checkBoxProhibitedProcessCurrentUser // this.checkBoxProhibitedProcessCurrentUser.AutoSize = true; - this.checkBoxProhibitedProcessCurrentUser.Location = new System.Drawing.Point(22, 249); - this.checkBoxProhibitedProcessCurrentUser.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxProhibitedProcessCurrentUser.Location = new System.Drawing.Point(15, 162); + this.checkBoxProhibitedProcessCurrentUser.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxProhibitedProcessCurrentUser.Name = "checkBoxProhibitedProcessCurrentUser"; - this.checkBoxProhibitedProcessCurrentUser.Size = new System.Drawing.Size(123, 24); + this.checkBoxProhibitedProcessCurrentUser.Size = new System.Drawing.Size(83, 17); this.checkBoxProhibitedProcessCurrentUser.TabIndex = 6; this.checkBoxProhibitedProcessCurrentUser.Text = "Current user"; this.toolTip1.SetToolTip(this.checkBoxProhibitedProcessCurrentUser, "The prohibited process has to run under the currently logged in user. Use it inst" + @@ -2777,10 +2826,10 @@ namespace SebWindowsConfig // checkBoxProhibitedProcessActive // this.checkBoxProhibitedProcessActive.AutoSize = true; - this.checkBoxProhibitedProcessActive.Location = new System.Drawing.Point(26, 35); - this.checkBoxProhibitedProcessActive.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxProhibitedProcessActive.Location = new System.Drawing.Point(17, 23); + this.checkBoxProhibitedProcessActive.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxProhibitedProcessActive.Name = "checkBoxProhibitedProcessActive"; - this.checkBoxProhibitedProcessActive.Size = new System.Drawing.Size(78, 24); + this.checkBoxProhibitedProcessActive.Size = new System.Drawing.Size(56, 17); this.checkBoxProhibitedProcessActive.TabIndex = 0; this.checkBoxProhibitedProcessActive.Text = "Active"; this.toolTip1.SetToolTip(this.checkBoxProhibitedProcessActive, "Indicates if this prohibited process item is active."); @@ -2789,10 +2838,10 @@ namespace SebWindowsConfig // // buttonChooseProhibitedProcess // - this.buttonChooseProhibitedProcess.Location = new System.Drawing.Point(338, 422); - this.buttonChooseProhibitedProcess.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.buttonChooseProhibitedProcess.Location = new System.Drawing.Point(225, 274); + this.buttonChooseProhibitedProcess.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.buttonChooseProhibitedProcess.Name = "buttonChooseProhibitedProcess"; - this.buttonChooseProhibitedProcess.Size = new System.Drawing.Size(168, 38); + this.buttonChooseProhibitedProcess.Size = new System.Drawing.Size(112, 25); this.buttonChooseProhibitedProcess.TabIndex = 4; this.buttonChooseProhibitedProcess.Text = "Choose Process..."; this.buttonChooseProhibitedProcess.UseVisualStyleBackColor = true; @@ -2801,10 +2850,10 @@ namespace SebWindowsConfig // // buttonChooseProhibitedExecutable // - this.buttonChooseProhibitedExecutable.Location = new System.Drawing.Point(135, 422); - this.buttonChooseProhibitedExecutable.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.buttonChooseProhibitedExecutable.Location = new System.Drawing.Point(90, 274); + this.buttonChooseProhibitedExecutable.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.buttonChooseProhibitedExecutable.Name = "buttonChooseProhibitedExecutable"; - this.buttonChooseProhibitedExecutable.Size = new System.Drawing.Size(168, 38); + this.buttonChooseProhibitedExecutable.Size = new System.Drawing.Size(112, 25); this.buttonChooseProhibitedExecutable.TabIndex = 3; this.buttonChooseProhibitedExecutable.Text = "Choose Executable..."; this.buttonChooseProhibitedExecutable.UseVisualStyleBackColor = true; @@ -2813,10 +2862,10 @@ namespace SebWindowsConfig // // buttonRemoveProhibitedProcess // - this.buttonRemoveProhibitedProcess.Location = new System.Drawing.Point(68, 422); - this.buttonRemoveProhibitedProcess.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.buttonRemoveProhibitedProcess.Location = new System.Drawing.Point(45, 274); + this.buttonRemoveProhibitedProcess.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.buttonRemoveProhibitedProcess.Name = "buttonRemoveProhibitedProcess"; - this.buttonRemoveProhibitedProcess.Size = new System.Drawing.Size(33, 38); + this.buttonRemoveProhibitedProcess.Size = new System.Drawing.Size(22, 25); this.buttonRemoveProhibitedProcess.TabIndex = 2; this.buttonRemoveProhibitedProcess.Text = "-"; this.buttonRemoveProhibitedProcess.UseVisualStyleBackColor = true; @@ -2824,10 +2873,10 @@ namespace SebWindowsConfig // // buttonAddProhibitedProcess // - this.buttonAddProhibitedProcess.Location = new System.Drawing.Point(28, 422); - this.buttonAddProhibitedProcess.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.buttonAddProhibitedProcess.Location = new System.Drawing.Point(19, 274); + this.buttonAddProhibitedProcess.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.buttonAddProhibitedProcess.Name = "buttonAddProhibitedProcess"; - this.buttonAddProhibitedProcess.Size = new System.Drawing.Size(33, 38); + this.buttonAddProhibitedProcess.Size = new System.Drawing.Size(22, 25); this.buttonAddProhibitedProcess.TabIndex = 1; this.buttonAddProhibitedProcess.Text = "+"; this.buttonAddProhibitedProcess.UseVisualStyleBackColor = true; @@ -2841,12 +2890,12 @@ namespace SebWindowsConfig this.dataGridViewComboBoxColumn1, this.dataGridViewTextBoxColumn1, this.dataGridViewTextBoxColumn2}); - this.dataGridViewProhibitedProcesses.Location = new System.Drawing.Point(28, 42); - this.dataGridViewProhibitedProcesses.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.dataGridViewProhibitedProcesses.Location = new System.Drawing.Point(19, 27); + this.dataGridViewProhibitedProcesses.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.dataGridViewProhibitedProcesses.Name = "dataGridViewProhibitedProcesses"; this.dataGridViewProhibitedProcesses.RowHeadersVisible = false; this.dataGridViewProhibitedProcesses.RowTemplate.Height = 24; - this.dataGridViewProhibitedProcesses.Size = new System.Drawing.Size(1116, 360); + this.dataGridViewProhibitedProcesses.Size = new System.Drawing.Size(744, 234); this.dataGridViewProhibitedProcesses.TabIndex = 0; this.dataGridViewProhibitedProcesses.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridViewProhibitedProcesses_CellValueChanged); this.dataGridViewProhibitedProcesses.CurrentCellDirtyStateChanged += new System.EventHandler(this.dataGridViewProhibitedProcesses_CurrentCellDirtyStateChanged); @@ -2883,10 +2932,10 @@ namespace SebWindowsConfig // this.checkBoxMonitorProcesses.AutoSize = true; this.checkBoxMonitorProcesses.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxMonitorProcesses.Location = new System.Drawing.Point(36, 22); - this.checkBoxMonitorProcesses.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxMonitorProcesses.Location = new System.Drawing.Point(24, 14); + this.checkBoxMonitorProcesses.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxMonitorProcesses.Name = "checkBoxMonitorProcesses"; - this.checkBoxMonitorProcesses.Size = new System.Drawing.Size(313, 24); + this.checkBoxMonitorProcesses.Size = new System.Drawing.Size(211, 17); this.checkBoxMonitorProcesses.TabIndex = 0; this.checkBoxMonitorProcesses.Text = "Monitor processes while SEB is running"; this.toolTip1.SetToolTip(this.checkBoxMonitorProcesses, "SEB monitors which processes/applications are running during an exam. Those which" + @@ -2905,10 +2954,10 @@ namespace SebWindowsConfig this.tabPageExam.Controls.Add(this.label3); this.tabPageExam.ImageIndex = 5; this.tabPageExam.Location = new System.Drawing.Point(4, 39); - this.tabPageExam.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.tabPageExam.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.tabPageExam.Name = "tabPageExam"; - this.tabPageExam.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.tabPageExam.Size = new System.Drawing.Size(1867, 948); + this.tabPageExam.Padding = new System.Windows.Forms.Padding(2, 1, 2, 1); + this.tabPageExam.Size = new System.Drawing.Size(1242, 601); this.tabPageExam.TabIndex = 18; this.tabPageExam.Text = " Exam"; this.tabPageExam.UseVisualStyleBackColor = true; @@ -2918,18 +2967,21 @@ namespace SebWindowsConfig this.groupBox2.Controls.Add(this.label15); this.groupBox2.Controls.Add(this.checkBoxClearSessionOnEnd); this.groupBox2.Controls.Add(this.checkBoxClearSessionOnStart); - this.groupBox2.Location = new System.Drawing.Point(907, 23); + this.groupBox2.Location = new System.Drawing.Point(605, 15); + this.groupBox2.Margin = new System.Windows.Forms.Padding(2); this.groupBox2.Name = "groupBox2"; - this.groupBox2.Size = new System.Drawing.Size(915, 182); + this.groupBox2.Padding = new System.Windows.Forms.Padding(2); + this.groupBox2.Size = new System.Drawing.Size(610, 118); this.groupBox2.TabIndex = 122; this.groupBox2.TabStop = false; this.groupBox2.Text = "Session Handling"; // // label15 // - this.label15.Location = new System.Drawing.Point(18, 35); + this.label15.Location = new System.Drawing.Point(12, 23); + this.label15.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label15.Name = "label15"; - this.label15.Size = new System.Drawing.Size(792, 56); + this.label15.Size = new System.Drawing.Size(528, 36); this.label15.TabIndex = 2; this.label15.Text = "Use the following parameters to control whether a browser session is persisted on" + " disk, e.g. to keep users logged in after a reconfiguration."; @@ -2937,9 +2989,10 @@ namespace SebWindowsConfig // checkBoxClearSessionOnEnd // this.checkBoxClearSessionOnEnd.AutoSize = true; - this.checkBoxClearSessionOnEnd.Location = new System.Drawing.Point(22, 135); + this.checkBoxClearSessionOnEnd.Location = new System.Drawing.Point(15, 88); + this.checkBoxClearSessionOnEnd.Margin = new System.Windows.Forms.Padding(2); this.checkBoxClearSessionOnEnd.Name = "checkBoxClearSessionOnEnd"; - this.checkBoxClearSessionOnEnd.Size = new System.Drawing.Size(848, 24); + this.checkBoxClearSessionOnEnd.Size = new System.Drawing.Size(570, 17); this.checkBoxClearSessionOnEnd.TabIndex = 1; this.checkBoxClearSessionOnEnd.Text = "Clear browser session when ending an exam or terminating SEB (prevents deletion o" + "f browser cache if deactivated!)"; @@ -2949,9 +3002,10 @@ namespace SebWindowsConfig // checkBoxClearSessionOnStart // this.checkBoxClearSessionOnStart.AutoSize = true; - this.checkBoxClearSessionOnStart.Location = new System.Drawing.Point(22, 94); + this.checkBoxClearSessionOnStart.Location = new System.Drawing.Point(15, 61); + this.checkBoxClearSessionOnStart.Margin = new System.Windows.Forms.Padding(2); this.checkBoxClearSessionOnStart.Name = "checkBoxClearSessionOnStart"; - this.checkBoxClearSessionOnStart.Size = new System.Drawing.Size(465, 24); + this.checkBoxClearSessionOnStart.Size = new System.Drawing.Size(310, 17); this.checkBoxClearSessionOnStart.TabIndex = 0; this.checkBoxClearSessionOnStart.Text = "Clear browser session when starting an exam or starting SEB"; this.checkBoxClearSessionOnStart.UseVisualStyleBackColor = true; @@ -2965,11 +3019,9 @@ namespace SebWindowsConfig this.groupBox9.Controls.Add(this.textBoxRestartExamText); this.groupBox9.Controls.Add(this.textBox4); this.groupBox9.Controls.Add(this.textBox3); - this.groupBox9.Location = new System.Drawing.Point(907, 442); - this.groupBox9.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.groupBox9.Location = new System.Drawing.Point(605, 287); this.groupBox9.Name = "groupBox9"; - this.groupBox9.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.groupBox9.Size = new System.Drawing.Size(915, 278); + this.groupBox9.Size = new System.Drawing.Size(610, 181); this.groupBox9.TabIndex = 121; this.groupBox9.TabStop = false; this.groupBox9.Text = "Back to Start Button (Mac)"; @@ -2978,10 +3030,10 @@ namespace SebWindowsConfig // this.checkBoxUseStartURL.AutoSize = true; this.checkBoxUseStartURL.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxUseStartURL.Location = new System.Drawing.Point(22, 34); - this.checkBoxUseStartURL.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxUseStartURL.Location = new System.Drawing.Point(15, 22); + this.checkBoxUseStartURL.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxUseStartURL.Name = "checkBoxUseStartURL"; - this.checkBoxUseStartURL.Size = new System.Drawing.Size(268, 24); + this.checkBoxUseStartURL.Size = new System.Drawing.Size(179, 17); this.checkBoxUseStartURL.TabIndex = 119; this.checkBoxUseStartURL.Text = "Use Start URL (see General tab)"; this.toolTip1.SetToolTip(this.checkBoxUseStartURL, "The back to start button reloads the Start URL"); @@ -2991,10 +3043,10 @@ namespace SebWindowsConfig // textBoxRestartExamLink // this.textBoxRestartExamLink.Font = new System.Drawing.Font("Courier New", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.textBoxRestartExamLink.Location = new System.Drawing.Point(22, 68); - this.textBoxRestartExamLink.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBoxRestartExamLink.Location = new System.Drawing.Point(15, 44); + this.textBoxRestartExamLink.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBoxRestartExamLink.Name = "textBoxRestartExamLink"; - this.textBoxRestartExamLink.Size = new System.Drawing.Size(787, 25); + this.textBoxRestartExamLink.Size = new System.Drawing.Size(526, 19); this.textBoxRestartExamLink.TabIndex = 116; this.toolTip1.SetToolTip(this.textBoxRestartExamLink, "This fully qualified URL is loaded when clicking the back to start button"); this.textBoxRestartExamLink.TextChanged += new System.EventHandler(this.textBoxRestartExamLink_TextChanged); @@ -3003,10 +3055,10 @@ namespace SebWindowsConfig // this.checkBoxRestartExamPasswordProtected.AutoSize = true; this.checkBoxRestartExamPasswordProtected.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxRestartExamPasswordProtected.Location = new System.Drawing.Point(21, 234); - this.checkBoxRestartExamPasswordProtected.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxRestartExamPasswordProtected.Location = new System.Drawing.Point(14, 152); + this.checkBoxRestartExamPasswordProtected.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxRestartExamPasswordProtected.Name = "checkBoxRestartExamPasswordProtected"; - this.checkBoxRestartExamPasswordProtected.Size = new System.Drawing.Size(439, 24); + this.checkBoxRestartExamPasswordProtected.Size = new System.Drawing.Size(300, 17); this.checkBoxRestartExamPasswordProtected.TabIndex = 115; this.checkBoxRestartExamPasswordProtected.Text = "Protect back to start button with the quit/unlock password"; this.toolTip1.SetToolTip(this.checkBoxRestartExamPasswordProtected, "The quit/unlock password (if set) must be entered when the back to start button i" + @@ -3017,10 +3069,10 @@ namespace SebWindowsConfig // textBoxRestartExamText // this.textBoxRestartExamText.Font = new System.Drawing.Font("Courier New", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.textBoxRestartExamText.Location = new System.Drawing.Point(21, 155); - this.textBoxRestartExamText.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBoxRestartExamText.Location = new System.Drawing.Point(14, 101); + this.textBoxRestartExamText.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBoxRestartExamText.Name = "textBoxRestartExamText"; - this.textBoxRestartExamText.Size = new System.Drawing.Size(787, 25); + this.textBoxRestartExamText.Size = new System.Drawing.Size(526, 19); this.textBoxRestartExamText.TabIndex = 117; this.toolTip1.SetToolTip(this.textBoxRestartExamText, "This text is displayed as the title of the confirmation alert and as tool tip on " + "the icon"); @@ -3031,12 +3083,12 @@ namespace SebWindowsConfig this.textBox4.BackColor = System.Drawing.SystemColors.Window; this.textBox4.BorderStyle = System.Windows.Forms.BorderStyle.None; this.textBox4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.textBox4.Location = new System.Drawing.Point(22, 194); - this.textBox4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBox4.Location = new System.Drawing.Point(15, 126); + this.textBox4.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBox4.Multiline = true; this.textBox4.Name = "textBox4"; this.textBox4.ReadOnly = true; - this.textBox4.Size = new System.Drawing.Size(684, 34); + this.textBox4.Size = new System.Drawing.Size(456, 22); this.textBox4.TabIndex = 118; this.textBox4.Text = "Title/tool tip text for the back to start button (leave empty for localized stand" + "ard text)\r\n"; @@ -3046,12 +3098,12 @@ namespace SebWindowsConfig this.textBox3.BackColor = System.Drawing.SystemColors.Window; this.textBox3.BorderStyle = System.Windows.Forms.BorderStyle.None; this.textBox3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.textBox3.Location = new System.Drawing.Point(22, 108); - this.textBox3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBox3.Location = new System.Drawing.Point(15, 70); + this.textBox3.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBox3.Multiline = true; this.textBox3.Name = "textBox3"; this.textBox3.ReadOnly = true; - this.textBox3.Size = new System.Drawing.Size(788, 29); + this.textBox3.Size = new System.Drawing.Size(525, 19); this.textBox3.TabIndex = 118; this.textBox3.Text = "Enter custom URL or select \"Use Start URL\" to display the back to start button in" + " the SEB taskbar."; @@ -3061,11 +3113,9 @@ namespace SebWindowsConfig this.groupBox8.Controls.Add(this.checkBoxQuitURLConfirm); this.groupBox8.Controls.Add(this.textBoxQuitURL); this.groupBox8.Controls.Add(this.textBox1); - this.groupBox8.Location = new System.Drawing.Point(907, 231); - this.groupBox8.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.groupBox8.Location = new System.Drawing.Point(605, 150); this.groupBox8.Name = "groupBox8"; - this.groupBox8.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.groupBox8.Size = new System.Drawing.Size(915, 180); + this.groupBox8.Size = new System.Drawing.Size(610, 117); this.groupBox8.TabIndex = 120; this.groupBox8.TabStop = false; this.groupBox8.Text = "Link to quit SEB after exam"; @@ -3074,10 +3124,10 @@ namespace SebWindowsConfig // this.checkBoxQuitURLConfirm.AutoSize = true; this.checkBoxQuitURLConfirm.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxQuitURLConfirm.Location = new System.Drawing.Point(22, 135); - this.checkBoxQuitURLConfirm.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxQuitURLConfirm.Location = new System.Drawing.Point(15, 88); + this.checkBoxQuitURLConfirm.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxQuitURLConfirm.Name = "checkBoxQuitURLConfirm"; - this.checkBoxQuitURLConfirm.Size = new System.Drawing.Size(227, 24); + this.checkBoxQuitURLConfirm.Size = new System.Drawing.Size(153, 17); this.checkBoxQuitURLConfirm.TabIndex = 114; this.checkBoxQuitURLConfirm.Text = "Ask user to confirm quitting"; this.toolTip1.SetToolTip(this.checkBoxQuitURLConfirm, "The user is asked to confirm quitting SEB after the quit URL has been detected by" + @@ -3088,10 +3138,10 @@ namespace SebWindowsConfig // textBoxQuitURL // this.textBoxQuitURL.Font = new System.Drawing.Font("Courier New", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.textBoxQuitURL.Location = new System.Drawing.Point(22, 34); - this.textBoxQuitURL.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBoxQuitURL.Location = new System.Drawing.Point(15, 22); + this.textBoxQuitURL.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBoxQuitURL.Name = "textBoxQuitURL"; - this.textBoxQuitURL.Size = new System.Drawing.Size(787, 25); + this.textBoxQuitURL.Size = new System.Drawing.Size(526, 19); this.textBoxQuitURL.TabIndex = 3; this.toolTip1.SetToolTip(this.textBoxQuitURL, "If a quit link is entered, it works regardless of other quit settings in the Gene" + "ral settings pane."); @@ -3102,12 +3152,12 @@ namespace SebWindowsConfig this.textBox1.BackColor = System.Drawing.SystemColors.Window; this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.None; this.textBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.textBox1.Location = new System.Drawing.Point(22, 75); - this.textBox1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBox1.Location = new System.Drawing.Point(15, 49); + this.textBox1.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBox1.Multiline = true; this.textBox1.Name = "textBox1"; this.textBox1.ReadOnly = true; - this.textBox1.Size = new System.Drawing.Size(684, 46); + this.textBox1.Size = new System.Drawing.Size(456, 30); this.textBox1.TabIndex = 113; this.textBox1.Text = "Place this quit link to the \"feedback\" page displayed after an exam was successfu" + "lly finished. Clicking that link will quit SEB without having to enter the quit " + @@ -3123,36 +3173,37 @@ namespace SebWindowsConfig this.groupBox7.Controls.Add(this.textBoxConfigurationKey); this.groupBox7.Controls.Add(this.checkBoxSendBrowserExamKey); this.groupBox7.Controls.Add(this.textBoxBrowserExamKey); - this.groupBox7.Location = new System.Drawing.Point(36, 25); - this.groupBox7.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.groupBox7.Location = new System.Drawing.Point(24, 16); this.groupBox7.Name = "groupBox7"; - this.groupBox7.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.groupBox7.Size = new System.Drawing.Size(832, 583); + this.groupBox7.Size = new System.Drawing.Size(555, 379); this.groupBox7.TabIndex = 119; this.groupBox7.TabStop = false; this.groupBox7.Text = "Browser Exam Key / Configuration Key"; // // label20 // - this.label20.Location = new System.Drawing.Point(18, 447); + this.label20.Location = new System.Drawing.Point(12, 291); + this.label20.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label20.Name = "label20"; - this.label20.Size = new System.Drawing.Size(791, 65); + this.label20.Size = new System.Drawing.Size(527, 42); this.label20.TabIndex = 119; this.label20.Text = resources.GetString("label20.Text"); // // label19 // - this.label19.Location = new System.Drawing.Point(18, 33); + this.label19.Location = new System.Drawing.Point(12, 21); + this.label19.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label19.Name = "label19"; - this.label19.Size = new System.Drawing.Size(791, 148); + this.label19.Size = new System.Drawing.Size(527, 96); this.label19.TabIndex = 118; this.label19.Text = resources.GetString("label19.Text"); // // label18 // - this.label18.Location = new System.Drawing.Point(18, 278); + this.label18.Location = new System.Drawing.Point(12, 181); + this.label18.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label18.Name = "label18"; - this.label18.Size = new System.Drawing.Size(791, 67); + this.label18.Size = new System.Drawing.Size(527, 44); this.label18.TabIndex = 117; this.label18.Text = resources.GetString("label18.Text"); // @@ -3160,9 +3211,10 @@ namespace SebWindowsConfig // this.label17.AutoSize = true; this.label17.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label17.Location = new System.Drawing.Point(18, 417); + this.label17.Location = new System.Drawing.Point(12, 271); + this.label17.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label17.Name = "label17"; - this.label17.Size = new System.Drawing.Size(151, 20); + this.label17.Size = new System.Drawing.Size(107, 13); this.label17.TabIndex = 116; this.label17.Text = "Configuration Key"; // @@ -3170,28 +3222,30 @@ namespace SebWindowsConfig // this.label16.AutoSize = true; this.label16.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label16.Location = new System.Drawing.Point(18, 250); + this.label16.Location = new System.Drawing.Point(12, 162); + this.label16.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label16.Name = "label16"; - this.label16.Size = new System.Drawing.Size(157, 20); + this.label16.Size = new System.Drawing.Size(111, 13); this.label16.TabIndex = 116; this.label16.Text = "Browser Exam Key"; // // textBoxConfigurationKey // - this.textBoxConfigurationKey.Location = new System.Drawing.Point(22, 522); + this.textBoxConfigurationKey.Location = new System.Drawing.Point(15, 339); + this.textBoxConfigurationKey.Margin = new System.Windows.Forms.Padding(2); this.textBoxConfigurationKey.Name = "textBoxConfigurationKey"; this.textBoxConfigurationKey.ReadOnly = true; - this.textBoxConfigurationKey.Size = new System.Drawing.Size(787, 26); + this.textBoxConfigurationKey.Size = new System.Drawing.Size(526, 20); this.textBoxConfigurationKey.TabIndex = 115; // // checkBoxSendBrowserExamKey // this.checkBoxSendBrowserExamKey.AutoSize = true; this.checkBoxSendBrowserExamKey.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxSendBrowserExamKey.Location = new System.Drawing.Point(22, 196); - this.checkBoxSendBrowserExamKey.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxSendBrowserExamKey.Location = new System.Drawing.Point(15, 127); + this.checkBoxSendBrowserExamKey.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxSendBrowserExamKey.Name = "checkBoxSendBrowserExamKey"; - this.checkBoxSendBrowserExamKey.Size = new System.Drawing.Size(360, 24); + this.checkBoxSendBrowserExamKey.Size = new System.Drawing.Size(243, 17); this.checkBoxSendBrowserExamKey.TabIndex = 2; this.checkBoxSendBrowserExamKey.Text = "Use Browser Exam Key and Configuration Key"; this.toolTip1.SetToolTip(this.checkBoxSendBrowserExamKey, "Send Browser Exam Key in an HTTP header to authenticate the SEB client and its se" + @@ -3201,11 +3255,11 @@ namespace SebWindowsConfig // // textBoxBrowserExamKey // - this.textBoxBrowserExamKey.Location = new System.Drawing.Point(22, 351); - this.textBoxBrowserExamKey.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBoxBrowserExamKey.Location = new System.Drawing.Point(15, 228); + this.textBoxBrowserExamKey.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBoxBrowserExamKey.Name = "textBoxBrowserExamKey"; this.textBoxBrowserExamKey.ReadOnly = true; - this.textBoxBrowserExamKey.Size = new System.Drawing.Size(787, 26); + this.textBoxBrowserExamKey.Size = new System.Drawing.Size(526, 20); this.textBoxBrowserExamKey.TabIndex = 0; this.textBoxBrowserExamKey.TextChanged += new System.EventHandler(this.textBoxBrowserExamKey_TextChanged); // @@ -3213,18 +3267,20 @@ namespace SebWindowsConfig // this.labelBrowserExamKey.AutoSize = true; this.labelBrowserExamKey.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.labelBrowserExamKey.Location = new System.Drawing.Point(33, 40); + this.labelBrowserExamKey.Location = new System.Drawing.Point(22, 26); + this.labelBrowserExamKey.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelBrowserExamKey.Name = "labelBrowserExamKey"; - this.labelBrowserExamKey.Size = new System.Drawing.Size(0, 20); + this.labelBrowserExamKey.Size = new System.Drawing.Size(0, 13); this.labelBrowserExamKey.TabIndex = 78; // // label3 // this.label3.AutoSize = true; this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label3.Location = new System.Drawing.Point(34, 442); + this.label3.Location = new System.Drawing.Point(23, 287); + this.label3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label3.Name = "label3"; - this.label3.Size = new System.Drawing.Size(0, 20); + this.label3.Size = new System.Drawing.Size(0, 13); this.label3.TabIndex = 75; // // tabPageDownUploads @@ -3242,10 +3298,10 @@ namespace SebWindowsConfig this.tabPageDownUploads.Controls.Add(this.checkBoxAllowDownUploads); this.tabPageDownUploads.ImageIndex = 4; this.tabPageDownUploads.Location = new System.Drawing.Point(4, 39); - this.tabPageDownUploads.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.tabPageDownUploads.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.tabPageDownUploads.Name = "tabPageDownUploads"; - this.tabPageDownUploads.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.tabPageDownUploads.Size = new System.Drawing.Size(1867, 948); + this.tabPageDownUploads.Padding = new System.Windows.Forms.Padding(2, 1, 2, 1); + this.tabPageDownUploads.Size = new System.Drawing.Size(1242, 601); this.tabPageDownUploads.TabIndex = 17; this.tabPageDownUploads.Text = "Down/Uploads"; this.tabPageDownUploads.UseVisualStyleBackColor = true; @@ -3254,10 +3310,10 @@ namespace SebWindowsConfig // this.checkBoxAllowPDFPlugIn.AutoSize = true; this.checkBoxAllowPDFPlugIn.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxAllowPDFPlugIn.Location = new System.Drawing.Point(38, 402); - this.checkBoxAllowPDFPlugIn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxAllowPDFPlugIn.Location = new System.Drawing.Point(25, 261); + this.checkBoxAllowPDFPlugIn.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxAllowPDFPlugIn.Name = "checkBoxAllowPDFPlugIn"; - this.checkBoxAllowPDFPlugIn.Size = new System.Drawing.Size(457, 24); + this.checkBoxAllowPDFPlugIn.Size = new System.Drawing.Size(310, 17); this.checkBoxAllowPDFPlugIn.TabIndex = 88; this.checkBoxAllowPDFPlugIn.Text = "Allow using Acrobat Reader PDF plugin (insecure! Mac only)"; this.toolTip1.SetToolTip(this.checkBoxAllowPDFPlugIn, "The Adobe Acrobat Reader browser plugin should only be used on secured managed Ma" + @@ -3268,10 +3324,9 @@ namespace SebWindowsConfig // // textBoxDownloadDirectoryWin // - this.textBoxDownloadDirectoryWin.Location = new System.Drawing.Point(404, 85); - this.textBoxDownloadDirectoryWin.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.textBoxDownloadDirectoryWin.Location = new System.Drawing.Point(269, 55); this.textBoxDownloadDirectoryWin.Name = "textBoxDownloadDirectoryWin"; - this.textBoxDownloadDirectoryWin.Size = new System.Drawing.Size(566, 26); + this.textBoxDownloadDirectoryWin.Size = new System.Drawing.Size(379, 20); this.textBoxDownloadDirectoryWin.TabIndex = 87; this.textBoxDownloadDirectoryWin.TextChanged += new System.EventHandler(this.textBoxDownloadDirectoryWin_TextChanged); // @@ -3279,10 +3334,10 @@ namespace SebWindowsConfig // this.checkBoxDownloadOpenSEBFiles.AutoSize = true; this.checkBoxDownloadOpenSEBFiles.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxDownloadOpenSEBFiles.Location = new System.Drawing.Point(38, 468); - this.checkBoxDownloadOpenSEBFiles.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxDownloadOpenSEBFiles.Location = new System.Drawing.Point(25, 304); + this.checkBoxDownloadOpenSEBFiles.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxDownloadOpenSEBFiles.Name = "checkBoxDownloadOpenSEBFiles"; - this.checkBoxDownloadOpenSEBFiles.Size = new System.Drawing.Size(301, 24); + this.checkBoxDownloadOpenSEBFiles.Size = new System.Drawing.Size(203, 17); this.checkBoxDownloadOpenSEBFiles.TabIndex = 86; this.checkBoxDownloadOpenSEBFiles.Text = "Download and open SEB Config Files"; this.toolTip1.SetToolTip(this.checkBoxDownloadOpenSEBFiles, "Download and open .seb config files regardless if downloading and opening other f" + @@ -3293,29 +3348,29 @@ namespace SebWindowsConfig // label5 // this.label5.AutoSize = true; - this.label5.Location = new System.Drawing.Point(196, 135); + this.label5.Location = new System.Drawing.Point(131, 88); + this.label5.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label5.Name = "label5"; - this.label5.Size = new System.Drawing.Size(200, 20); + this.label5.Size = new System.Drawing.Size(137, 13); this.label5.TabIndex = 85; this.label5.Text = "Download directory on Mac"; this.label5.TextAlign = System.Drawing.ContentAlignment.TopRight; // // textBoxDownloadDirectoryOSX // - this.textBoxDownloadDirectoryOSX.Location = new System.Drawing.Point(404, 131); - this.textBoxDownloadDirectoryOSX.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.textBoxDownloadDirectoryOSX.Location = new System.Drawing.Point(269, 85); this.textBoxDownloadDirectoryOSX.Name = "textBoxDownloadDirectoryOSX"; - this.textBoxDownloadDirectoryOSX.Size = new System.Drawing.Size(566, 26); + this.textBoxDownloadDirectoryOSX.Size = new System.Drawing.Size(379, 20); this.textBoxDownloadDirectoryOSX.TabIndex = 84; this.textBoxDownloadDirectoryOSX.TextChanged += new System.EventHandler(this.textBoxDownloadDirectoryOSX_TextChanged); // // buttonDownloadDirectoryWin // this.buttonDownloadDirectoryWin.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.buttonDownloadDirectoryWin.Location = new System.Drawing.Point(171, 80); - this.buttonDownloadDirectoryWin.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.buttonDownloadDirectoryWin.Location = new System.Drawing.Point(114, 52); + this.buttonDownloadDirectoryWin.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.buttonDownloadDirectoryWin.Name = "buttonDownloadDirectoryWin"; - this.buttonDownloadDirectoryWin.Size = new System.Drawing.Size(214, 38); + this.buttonDownloadDirectoryWin.Size = new System.Drawing.Size(143, 25); this.buttonDownloadDirectoryWin.TabIndex = 0; this.buttonDownloadDirectoryWin.Text = "Save downloaded files to..."; this.buttonDownloadDirectoryWin.UseVisualStyleBackColor = true; @@ -3324,11 +3379,10 @@ namespace SebWindowsConfig // listBoxChooseFileToUploadPolicy // this.listBoxChooseFileToUploadPolicy.FormattingEnabled = true; - this.listBoxChooseFileToUploadPolicy.ItemHeight = 20; - this.listBoxChooseFileToUploadPolicy.Location = new System.Drawing.Point(66, 282); - this.listBoxChooseFileToUploadPolicy.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.listBoxChooseFileToUploadPolicy.Location = new System.Drawing.Point(44, 183); + this.listBoxChooseFileToUploadPolicy.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.listBoxChooseFileToUploadPolicy.Name = "listBoxChooseFileToUploadPolicy"; - this.listBoxChooseFileToUploadPolicy.Size = new System.Drawing.Size(520, 64); + this.listBoxChooseFileToUploadPolicy.Size = new System.Drawing.Size(348, 43); this.listBoxChooseFileToUploadPolicy.TabIndex = 2; this.toolTip1.SetToolTip(this.listBoxChooseFileToUploadPolicy, "SEB can let users choose the file to upload or automatically use the same file wh" + "ich was downloaded before. If not found, a file requester or an error is present" + @@ -3338,9 +3392,10 @@ namespace SebWindowsConfig // labelChooseFileToUploadPolicy // this.labelChooseFileToUploadPolicy.AutoSize = true; - this.labelChooseFileToUploadPolicy.Location = new System.Drawing.Point(62, 238); + this.labelChooseFileToUploadPolicy.Location = new System.Drawing.Point(41, 155); + this.labelChooseFileToUploadPolicy.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelChooseFileToUploadPolicy.Name = "labelChooseFileToUploadPolicy"; - this.labelChooseFileToUploadPolicy.Size = new System.Drawing.Size(214, 20); + this.labelChooseFileToUploadPolicy.Size = new System.Drawing.Size(145, 13); this.labelChooseFileToUploadPolicy.TabIndex = 75; this.labelChooseFileToUploadPolicy.Text = "Choose file to upload... (Mac)"; // @@ -3348,10 +3403,10 @@ namespace SebWindowsConfig // this.checkBoxDownloadPDFFiles.AutoSize = true; this.checkBoxDownloadPDFFiles.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxDownloadPDFFiles.Location = new System.Drawing.Point(38, 378); - this.checkBoxDownloadPDFFiles.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxDownloadPDFFiles.Location = new System.Drawing.Point(25, 246); + this.checkBoxDownloadPDFFiles.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxDownloadPDFFiles.Name = "checkBoxDownloadPDFFiles"; - this.checkBoxDownloadPDFFiles.Size = new System.Drawing.Size(401, 24); + this.checkBoxDownloadPDFFiles.Size = new System.Drawing.Size(270, 17); this.checkBoxDownloadPDFFiles.TabIndex = 3; this.checkBoxDownloadPDFFiles.Text = "Download PDF files instead of displaying them inline"; this.toolTip1.SetToolTip(this.checkBoxDownloadPDFFiles, "PDF files will not be displayed by SEB but downloaded and openend (if \"Open files" + @@ -3364,10 +3419,10 @@ namespace SebWindowsConfig // this.checkBoxOpenDownloads.AutoSize = true; this.checkBoxOpenDownloads.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxOpenDownloads.Location = new System.Drawing.Point(171, 175); - this.checkBoxOpenDownloads.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxOpenDownloads.Location = new System.Drawing.Point(114, 114); + this.checkBoxOpenDownloads.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxOpenDownloads.Name = "checkBoxOpenDownloads"; - this.checkBoxOpenDownloads.Size = new System.Drawing.Size(236, 24); + this.checkBoxOpenDownloads.Size = new System.Drawing.Size(160, 17); this.checkBoxOpenDownloads.TabIndex = 1; this.checkBoxOpenDownloads.Text = "Open files after downloading"; this.toolTip1.SetToolTip(this.checkBoxOpenDownloads, "Downloaded files will be opened with the according application, which has to be s" + @@ -3380,10 +3435,10 @@ namespace SebWindowsConfig // this.checkBoxAllowDownUploads.AutoSize = true; this.checkBoxAllowDownUploads.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxAllowDownUploads.Location = new System.Drawing.Point(38, 40); - this.checkBoxAllowDownUploads.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxAllowDownUploads.Location = new System.Drawing.Point(25, 26); + this.checkBoxAllowDownUploads.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxAllowDownUploads.Name = "checkBoxAllowDownUploads"; - this.checkBoxAllowDownUploads.Size = new System.Drawing.Size(301, 24); + this.checkBoxAllowDownUploads.Size = new System.Drawing.Size(205, 17); this.checkBoxAllowDownUploads.TabIndex = 71; this.checkBoxAllowDownUploads.Text = "Allow downloading and uploading files"; this.toolTip1.SetToolTip(this.checkBoxAllowDownUploads, "Usually to be used with permitted third party applications for which you want to " + @@ -3409,10 +3464,10 @@ namespace SebWindowsConfig this.tabPageBrowser.Controls.Add(this.groupBoxNewBrowserWindow); this.tabPageBrowser.ImageIndex = 3; this.tabPageBrowser.Location = new System.Drawing.Point(4, 39); - this.tabPageBrowser.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.tabPageBrowser.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.tabPageBrowser.Name = "tabPageBrowser"; - this.tabPageBrowser.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.tabPageBrowser.Size = new System.Drawing.Size(1867, 948); + this.tabPageBrowser.Padding = new System.Windows.Forms.Padding(2, 1, 2, 1); + this.tabPageBrowser.Size = new System.Drawing.Size(1242, 601); this.tabPageBrowser.TabIndex = 14; this.tabPageBrowser.Text = "Browser"; this.tabPageBrowser.UseVisualStyleBackColor = true; @@ -3420,9 +3475,10 @@ namespace SebWindowsConfig // label12 // this.label12.AutoSize = true; - this.label12.Location = new System.Drawing.Point(831, 780); + this.label12.Location = new System.Drawing.Point(554, 507); + this.label12.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label12.Name = "label12"; - this.label12.Size = new System.Drawing.Size(265, 20); + this.label12.Size = new System.Drawing.Size(178, 13); this.label12.TabIndex = 126; this.label12.Text = "Suffix to be added to any user agent"; // @@ -3432,10 +3488,10 @@ namespace SebWindowsConfig this.textBoxUserAgent.AcceptsTab = true; this.textBoxUserAgent.AllowDrop = true; this.textBoxUserAgent.Font = new System.Drawing.Font("Courier New", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.textBoxUserAgent.Location = new System.Drawing.Point(835, 812); - this.textBoxUserAgent.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBoxUserAgent.Location = new System.Drawing.Point(557, 528); + this.textBoxUserAgent.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBoxUserAgent.Name = "textBoxUserAgent"; - this.textBoxUserAgent.Size = new System.Drawing.Size(748, 25); + this.textBoxUserAgent.Size = new System.Drawing.Size(500, 19); this.textBoxUserAgent.TabIndex = 125; this.toolTip1.SetToolTip(this.textBoxUserAgent, "This string is appended to any user agent, in addition to the user agents generat" + "ed with the other setting options."); @@ -3444,9 +3500,10 @@ namespace SebWindowsConfig // label11 // this.label11.AutoSize = true; - this.label11.Location = new System.Drawing.Point(831, 849); + this.label11.Location = new System.Drawing.Point(554, 552); + this.label11.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label11.Name = "label11"; - this.label11.Size = new System.Drawing.Size(313, 20); + this.label11.Size = new System.Drawing.Size(213, 13); this.label11.TabIndex = 124; this.label11.Text = "Suffix to be added to every browser window"; this.label11.Visible = false; @@ -3457,10 +3514,10 @@ namespace SebWindowsConfig this.textBoxBrowserSuffix.AcceptsTab = true; this.textBoxBrowserSuffix.AllowDrop = true; this.textBoxBrowserSuffix.Font = new System.Drawing.Font("Courier New", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.textBoxBrowserSuffix.Location = new System.Drawing.Point(835, 875); - this.textBoxBrowserSuffix.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBoxBrowserSuffix.Location = new System.Drawing.Point(557, 569); + this.textBoxBrowserSuffix.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBoxBrowserSuffix.Name = "textBoxBrowserSuffix"; - this.textBoxBrowserSuffix.Size = new System.Drawing.Size(319, 25); + this.textBoxBrowserSuffix.Size = new System.Drawing.Size(214, 19); this.textBoxBrowserSuffix.TabIndex = 123; this.toolTip1.SetToolTip(this.textBoxBrowserSuffix, "This text is appended to the title string of any SEB browser window."); this.textBoxBrowserSuffix.Visible = false; @@ -3471,11 +3528,9 @@ namespace SebWindowsConfig this.groupBox14.Controls.Add(this.textBoxUserAgentMacCustom); this.groupBox14.Controls.Add(this.radioButtonUserAgentMacDefault); this.groupBox14.Controls.Add(this.radioButtonUserAgentMacCustom); - this.groupBox14.Location = new System.Drawing.Point(835, 368); - this.groupBox14.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.groupBox14.Location = new System.Drawing.Point(557, 239); this.groupBox14.Name = "groupBox14"; - this.groupBox14.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.groupBox14.Size = new System.Drawing.Size(750, 158); + this.groupBox14.Size = new System.Drawing.Size(500, 103); this.groupBox14.TabIndex = 74; this.groupBox14.TabStop = false; this.groupBox14.Text = "User agent (Mac)"; @@ -3486,10 +3541,10 @@ namespace SebWindowsConfig this.textBoxUserAgentMacCustom.AcceptsTab = true; this.textBoxUserAgentMacCustom.AllowDrop = true; this.textBoxUserAgentMacCustom.Font = new System.Drawing.Font("Courier New", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.textBoxUserAgentMacCustom.Location = new System.Drawing.Point(21, 105); - this.textBoxUserAgentMacCustom.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBoxUserAgentMacCustom.Location = new System.Drawing.Point(14, 68); + this.textBoxUserAgentMacCustom.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBoxUserAgentMacCustom.Name = "textBoxUserAgentMacCustom"; - this.textBoxUserAgentMacCustom.Size = new System.Drawing.Size(706, 25); + this.textBoxUserAgentMacCustom.Size = new System.Drawing.Size(472, 19); this.textBoxUserAgentMacCustom.TabIndex = 3; this.toolTip1.SetToolTip(this.textBoxUserAgentMacCustom, "This text is displayed as the title of the confirmation alert and as tool tip on " + "the icon"); @@ -3497,10 +3552,10 @@ namespace SebWindowsConfig // radioButtonUserAgentMacDefault // this.radioButtonUserAgentMacDefault.AutoSize = true; - this.radioButtonUserAgentMacDefault.Location = new System.Drawing.Point(20, 35); - this.radioButtonUserAgentMacDefault.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.radioButtonUserAgentMacDefault.Location = new System.Drawing.Point(13, 23); + this.radioButtonUserAgentMacDefault.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.radioButtonUserAgentMacDefault.Name = "radioButtonUserAgentMacDefault"; - this.radioButtonUserAgentMacDefault.Size = new System.Drawing.Size(401, 24); + this.radioButtonUserAgentMacDefault.Size = new System.Drawing.Size(272, 17); this.radioButtonUserAgentMacDefault.TabIndex = 0; this.radioButtonUserAgentMacDefault.Text = "Default (depends on installed Safari/WebKit version)"; this.radioButtonUserAgentMacDefault.UseVisualStyleBackColor = true; @@ -3509,10 +3564,10 @@ namespace SebWindowsConfig // radioButtonUserAgentMacCustom // this.radioButtonUserAgentMacCustom.AutoSize = true; - this.radioButtonUserAgentMacCustom.Location = new System.Drawing.Point(20, 68); - this.radioButtonUserAgentMacCustom.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.radioButtonUserAgentMacCustom.Location = new System.Drawing.Point(13, 44); + this.radioButtonUserAgentMacCustom.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.radioButtonUserAgentMacCustom.Name = "radioButtonUserAgentMacCustom"; - this.radioButtonUserAgentMacCustom.Size = new System.Drawing.Size(89, 24); + this.radioButtonUserAgentMacCustom.Size = new System.Drawing.Size(60, 17); this.radioButtonUserAgentMacCustom.TabIndex = 2; this.radioButtonUserAgentMacCustom.Text = "Custom"; this.toolTip1.SetToolTip(this.radioButtonUserAgentMacCustom, "Zoom only text on web pages using Ctrl-Mousewheel (Win)"); @@ -3527,11 +3582,9 @@ namespace SebWindowsConfig this.groupBox13.Controls.Add(this.textBoxUserAgentTouchModeCustom); this.groupBox13.Controls.Add(this.radioButtonUserAgentTouchDefault); this.groupBox13.Controls.Add(this.radioButtonUserAgentTouchCustom); - this.groupBox13.Location = new System.Drawing.Point(835, 564); - this.groupBox13.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.groupBox13.Location = new System.Drawing.Point(557, 367); this.groupBox13.Name = "groupBox13"; - this.groupBox13.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.groupBox13.Size = new System.Drawing.Size(750, 189); + this.groupBox13.Size = new System.Drawing.Size(500, 123); this.groupBox13.TabIndex = 73; this.groupBox13.TabStop = false; this.groupBox13.Text = "User agent for touch/tablet mode"; @@ -3539,10 +3592,10 @@ namespace SebWindowsConfig // textBoxUserAgentTouchModeIPad // this.textBoxUserAgentTouchModeIPad.BackColor = System.Drawing.SystemColors.Window; - this.textBoxUserAgentTouchModeIPad.Location = new System.Drawing.Point(171, 66); - this.textBoxUserAgentTouchModeIPad.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBoxUserAgentTouchModeIPad.Location = new System.Drawing.Point(114, 43); + this.textBoxUserAgentTouchModeIPad.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBoxUserAgentTouchModeIPad.Name = "textBoxUserAgentTouchModeIPad"; - this.textBoxUserAgentTouchModeIPad.Size = new System.Drawing.Size(556, 26); + this.textBoxUserAgentTouchModeIPad.Size = new System.Drawing.Size(372, 20); this.textBoxUserAgentTouchModeIPad.TabIndex = 122; this.toolTip1.SetToolTip(this.textBoxUserAgentTouchModeIPad, "An iPad user agent is recognized by most websites which have a tablet mobile them" + "e."); @@ -3551,10 +3604,10 @@ namespace SebWindowsConfig // radioButtonUserAgentTouchIPad // this.radioButtonUserAgentTouchIPad.AutoSize = true; - this.radioButtonUserAgentTouchIPad.Location = new System.Drawing.Point(20, 68); - this.radioButtonUserAgentTouchIPad.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.radioButtonUserAgentTouchIPad.Location = new System.Drawing.Point(13, 44); + this.radioButtonUserAgentTouchIPad.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.radioButtonUserAgentTouchIPad.Name = "radioButtonUserAgentTouchIPad"; - this.radioButtonUserAgentTouchIPad.Size = new System.Drawing.Size(69, 24); + this.radioButtonUserAgentTouchIPad.Size = new System.Drawing.Size(49, 17); this.radioButtonUserAgentTouchIPad.TabIndex = 121; this.radioButtonUserAgentTouchIPad.Text = "iPad:"; this.radioButtonUserAgentTouchIPad.UseVisualStyleBackColor = true; @@ -3562,11 +3615,11 @@ namespace SebWindowsConfig // // textBoxUserAgentTouchModeDefault // - this.textBoxUserAgentTouchModeDefault.Location = new System.Drawing.Point(171, 34); - this.textBoxUserAgentTouchModeDefault.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBoxUserAgentTouchModeDefault.Location = new System.Drawing.Point(114, 22); + this.textBoxUserAgentTouchModeDefault.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBoxUserAgentTouchModeDefault.Name = "textBoxUserAgentTouchModeDefault"; this.textBoxUserAgentTouchModeDefault.ReadOnly = true; - this.textBoxUserAgentTouchModeDefault.Size = new System.Drawing.Size(556, 26); + this.textBoxUserAgentTouchModeDefault.Size = new System.Drawing.Size(372, 20); this.textBoxUserAgentTouchModeDefault.TabIndex = 1; // // textBoxUserAgentTouchModeCustom @@ -3575,10 +3628,10 @@ namespace SebWindowsConfig this.textBoxUserAgentTouchModeCustom.AcceptsTab = true; this.textBoxUserAgentTouchModeCustom.AllowDrop = true; this.textBoxUserAgentTouchModeCustom.Font = new System.Drawing.Font("Courier New", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.textBoxUserAgentTouchModeCustom.Location = new System.Drawing.Point(21, 138); - this.textBoxUserAgentTouchModeCustom.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBoxUserAgentTouchModeCustom.Location = new System.Drawing.Point(14, 90); + this.textBoxUserAgentTouchModeCustom.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBoxUserAgentTouchModeCustom.Name = "textBoxUserAgentTouchModeCustom"; - this.textBoxUserAgentTouchModeCustom.Size = new System.Drawing.Size(706, 25); + this.textBoxUserAgentTouchModeCustom.Size = new System.Drawing.Size(472, 19); this.textBoxUserAgentTouchModeCustom.TabIndex = 3; this.toolTip1.SetToolTip(this.textBoxUserAgentTouchModeCustom, "This text is displayed as the title of the confirmation alert and as tool tip on " + "the icon"); @@ -3586,10 +3639,10 @@ namespace SebWindowsConfig // radioButtonUserAgentTouchDefault // this.radioButtonUserAgentTouchDefault.AutoSize = true; - this.radioButtonUserAgentTouchDefault.Location = new System.Drawing.Point(20, 35); - this.radioButtonUserAgentTouchDefault.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.radioButtonUserAgentTouchDefault.Location = new System.Drawing.Point(13, 23); + this.radioButtonUserAgentTouchDefault.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.radioButtonUserAgentTouchDefault.Name = "radioButtonUserAgentTouchDefault"; - this.radioButtonUserAgentTouchDefault.Size = new System.Drawing.Size(135, 24); + this.radioButtonUserAgentTouchDefault.Size = new System.Drawing.Size(94, 17); this.radioButtonUserAgentTouchDefault.TabIndex = 0; this.radioButtonUserAgentTouchDefault.Text = "Touch default:"; this.radioButtonUserAgentTouchDefault.UseVisualStyleBackColor = true; @@ -3598,10 +3651,10 @@ namespace SebWindowsConfig // radioButtonUserAgentTouchCustom // this.radioButtonUserAgentTouchCustom.AutoSize = true; - this.radioButtonUserAgentTouchCustom.Location = new System.Drawing.Point(20, 100); - this.radioButtonUserAgentTouchCustom.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.radioButtonUserAgentTouchCustom.Location = new System.Drawing.Point(13, 65); + this.radioButtonUserAgentTouchCustom.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.radioButtonUserAgentTouchCustom.Name = "radioButtonUserAgentTouchCustom"; - this.radioButtonUserAgentTouchCustom.Size = new System.Drawing.Size(89, 24); + this.radioButtonUserAgentTouchCustom.Size = new System.Drawing.Size(60, 17); this.radioButtonUserAgentTouchCustom.TabIndex = 2; this.radioButtonUserAgentTouchCustom.Text = "Custom"; this.toolTip1.SetToolTip(this.radioButtonUserAgentTouchCustom, "Zoom only text on web pages using Ctrl-Mousewheel (Win)"); @@ -3615,22 +3668,20 @@ namespace SebWindowsConfig this.groupBox12.Controls.Add(this.textBoxUserAgentDesktopModeCustom); this.groupBox12.Controls.Add(this.radioButtonUserAgentDesktopDefault); this.groupBox12.Controls.Add(this.radioButtonUserAgentDesktopCustom); - this.groupBox12.Location = new System.Drawing.Point(835, 149); - this.groupBox12.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.groupBox12.Location = new System.Drawing.Point(557, 97); this.groupBox12.Name = "groupBox12"; - this.groupBox12.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.groupBox12.Size = new System.Drawing.Size(750, 189); + this.groupBox12.Size = new System.Drawing.Size(500, 123); this.groupBox12.TabIndex = 72; this.groupBox12.TabStop = false; this.groupBox12.Text = "User agent for desktop mode"; // // textBoxUserAgentDesktopModeDefault // - this.textBoxUserAgentDesktopModeDefault.Location = new System.Drawing.Point(171, 34); - this.textBoxUserAgentDesktopModeDefault.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBoxUserAgentDesktopModeDefault.Location = new System.Drawing.Point(114, 22); + this.textBoxUserAgentDesktopModeDefault.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBoxUserAgentDesktopModeDefault.Name = "textBoxUserAgentDesktopModeDefault"; this.textBoxUserAgentDesktopModeDefault.ReadOnly = true; - this.textBoxUserAgentDesktopModeDefault.Size = new System.Drawing.Size(556, 26); + this.textBoxUserAgentDesktopModeDefault.Size = new System.Drawing.Size(372, 20); this.textBoxUserAgentDesktopModeDefault.TabIndex = 1; // // textBox6 @@ -3638,12 +3689,12 @@ namespace SebWindowsConfig this.textBox6.BackColor = System.Drawing.SystemColors.Window; this.textBox6.BorderStyle = System.Windows.Forms.BorderStyle.None; this.textBox6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.textBox6.Location = new System.Drawing.Point(21, 142); - this.textBox6.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBox6.Location = new System.Drawing.Point(14, 92); + this.textBox6.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBox6.Multiline = true; this.textBox6.Name = "textBox6"; this.textBox6.ReadOnly = true; - this.textBox6.Size = new System.Drawing.Size(684, 34); + this.textBox6.Size = new System.Drawing.Size(456, 22); this.textBox6.TabIndex = 120; this.textBox6.Text = "Custom desktop user agent string (SEB appends its version number automatically)"; // @@ -3653,10 +3704,10 @@ namespace SebWindowsConfig this.textBoxUserAgentDesktopModeCustom.AcceptsTab = true; this.textBoxUserAgentDesktopModeCustom.AllowDrop = true; this.textBoxUserAgentDesktopModeCustom.Font = new System.Drawing.Font("Courier New", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.textBoxUserAgentDesktopModeCustom.Location = new System.Drawing.Point(21, 105); - this.textBoxUserAgentDesktopModeCustom.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBoxUserAgentDesktopModeCustom.Location = new System.Drawing.Point(14, 68); + this.textBoxUserAgentDesktopModeCustom.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBoxUserAgentDesktopModeCustom.Name = "textBoxUserAgentDesktopModeCustom"; - this.textBoxUserAgentDesktopModeCustom.Size = new System.Drawing.Size(706, 25); + this.textBoxUserAgentDesktopModeCustom.Size = new System.Drawing.Size(472, 19); this.textBoxUserAgentDesktopModeCustom.TabIndex = 3; this.toolTip1.SetToolTip(this.textBoxUserAgentDesktopModeCustom, "This text is displayed as the title of the confirmation alert and as tool tip on " + "the icon"); @@ -3664,10 +3715,10 @@ namespace SebWindowsConfig // radioButtonUserAgentDesktopDefault // this.radioButtonUserAgentDesktopDefault.AutoSize = true; - this.radioButtonUserAgentDesktopDefault.Location = new System.Drawing.Point(20, 35); - this.radioButtonUserAgentDesktopDefault.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.radioButtonUserAgentDesktopDefault.Location = new System.Drawing.Point(13, 23); + this.radioButtonUserAgentDesktopDefault.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.radioButtonUserAgentDesktopDefault.Name = "radioButtonUserAgentDesktopDefault"; - this.radioButtonUserAgentDesktopDefault.Size = new System.Drawing.Size(151, 24); + this.radioButtonUserAgentDesktopDefault.Size = new System.Drawing.Size(103, 17); this.radioButtonUserAgentDesktopDefault.TabIndex = 0; this.radioButtonUserAgentDesktopDefault.Text = "Desktop default:"; this.toolTip1.SetToolTip(this.radioButtonUserAgentDesktopDefault, "Zoom whole web pages using Ctrl-Mousewheel (Win)"); @@ -3677,10 +3728,10 @@ namespace SebWindowsConfig // radioButtonUserAgentDesktopCustom // this.radioButtonUserAgentDesktopCustom.AutoSize = true; - this.radioButtonUserAgentDesktopCustom.Location = new System.Drawing.Point(20, 68); - this.radioButtonUserAgentDesktopCustom.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.radioButtonUserAgentDesktopCustom.Location = new System.Drawing.Point(13, 44); + this.radioButtonUserAgentDesktopCustom.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.radioButtonUserAgentDesktopCustom.Name = "radioButtonUserAgentDesktopCustom"; - this.radioButtonUserAgentDesktopCustom.Size = new System.Drawing.Size(89, 24); + this.radioButtonUserAgentDesktopCustom.Size = new System.Drawing.Size(60, 17); this.radioButtonUserAgentDesktopCustom.TabIndex = 2; this.radioButtonUserAgentDesktopCustom.Text = "Custom"; this.toolTip1.SetToolTip(this.radioButtonUserAgentDesktopCustom, "Zoom only text on web pages using Ctrl-Mousewheel (Win)"); @@ -3703,11 +3754,9 @@ namespace SebWindowsConfig this.groupBox11.Controls.Add(this.checkBoxBlockPopUpWindows); this.groupBox11.Controls.Add(this.checkBoxEnableJavaScript); this.groupBox11.Controls.Add(this.checkBoxEnableJava); - this.groupBox11.Location = new System.Drawing.Point(36, 311); - this.groupBox11.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.groupBox11.Location = new System.Drawing.Point(24, 202); this.groupBox11.Name = "groupBox11"; - this.groupBox11.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.groupBox11.Size = new System.Drawing.Size(750, 187); + this.groupBox11.Size = new System.Drawing.Size(500, 122); this.groupBox11.TabIndex = 71; this.groupBox11.TabStop = false; this.groupBox11.Text = "Browser security"; @@ -3715,10 +3764,10 @@ namespace SebWindowsConfig // checkBoxShowReloadWarningNewWindow // this.checkBoxShowReloadWarningNewWindow.AutoSize = true; - this.checkBoxShowReloadWarningNewWindow.Location = new System.Drawing.Point(388, 91); - this.checkBoxShowReloadWarningNewWindow.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxShowReloadWarningNewWindow.Location = new System.Drawing.Point(259, 59); + this.checkBoxShowReloadWarningNewWindow.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxShowReloadWarningNewWindow.Name = "checkBoxShowReloadWarningNewWindow"; - this.checkBoxShowReloadWarningNewWindow.Size = new System.Drawing.Size(334, 24); + this.checkBoxShowReloadWarningNewWindow.Size = new System.Drawing.Size(228, 17); this.checkBoxShowReloadWarningNewWindow.TabIndex = 13; this.checkBoxShowReloadWarningNewWindow.Text = "Show reload warning in additional windows"; this.toolTip1.SetToolTip(this.checkBoxShowReloadWarningNewWindow, "User has to confirm reloading a web page with F5 or reload button"); @@ -3728,10 +3777,10 @@ namespace SebWindowsConfig // checkBoxAllowReloadNewWindow // this.checkBoxAllowReloadNewWindow.AutoSize = true; - this.checkBoxAllowReloadNewWindow.Location = new System.Drawing.Point(388, 62); - this.checkBoxAllowReloadNewWindow.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxAllowReloadNewWindow.Location = new System.Drawing.Point(259, 40); + this.checkBoxAllowReloadNewWindow.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxAllowReloadNewWindow.Name = "checkBoxAllowReloadNewWindow"; - this.checkBoxAllowReloadNewWindow.Size = new System.Drawing.Size(272, 24); + this.checkBoxAllowReloadNewWindow.Size = new System.Drawing.Size(186, 17); this.checkBoxAllowReloadNewWindow.TabIndex = 12; this.checkBoxAllowReloadNewWindow.Text = "Allow reload in additional windows"; this.toolTip1.SetToolTip(this.checkBoxAllowReloadNewWindow, "Allow reloading additional windows with F5 or reload button (if displayed)"); @@ -3742,10 +3791,10 @@ namespace SebWindowsConfig // this.checkBoxAllowVideoCapture.AutoSize = true; this.checkBoxAllowVideoCapture.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxAllowVideoCapture.Location = new System.Drawing.Point(21, 253); - this.checkBoxAllowVideoCapture.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxAllowVideoCapture.Location = new System.Drawing.Point(14, 164); + this.checkBoxAllowVideoCapture.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxAllowVideoCapture.Name = "checkBoxAllowVideoCapture"; - this.checkBoxAllowVideoCapture.Size = new System.Drawing.Size(244, 24); + this.checkBoxAllowVideoCapture.Size = new System.Drawing.Size(168, 17); this.checkBoxAllowVideoCapture.TabIndex = 10; this.checkBoxAllowVideoCapture.Text = "Allow video capture (webcam)"; this.toolTip1.SetToolTip(this.checkBoxAllowVideoCapture, "Allow web applications to access camera (using HMTL 5 APIs)."); @@ -3756,10 +3805,10 @@ namespace SebWindowsConfig // checkBoxAllowReload // this.checkBoxAllowReload.AutoSize = true; - this.checkBoxAllowReload.Location = new System.Drawing.Point(21, 62); - this.checkBoxAllowReload.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxAllowReload.Location = new System.Drawing.Point(14, 40); + this.checkBoxAllowReload.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxAllowReload.Name = "checkBoxAllowReload"; - this.checkBoxAllowReload.Size = new System.Drawing.Size(178, 24); + this.checkBoxAllowReload.Size = new System.Drawing.Size(122, 17); this.checkBoxAllowReload.TabIndex = 9; this.checkBoxAllowReload.Text = "Allow reload in exam"; this.toolTip1.SetToolTip(this.checkBoxAllowReload, "Allow reload in the exam window with F5 or reload button (if displayed)"); @@ -3770,10 +3819,10 @@ namespace SebWindowsConfig // this.checkBoxAllowNavigationNewWindow.AutoSize = true; this.checkBoxAllowNavigationNewWindow.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxAllowNavigationNewWindow.Location = new System.Drawing.Point(388, 29); - this.checkBoxAllowNavigationNewWindow.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxAllowNavigationNewWindow.Location = new System.Drawing.Point(259, 19); + this.checkBoxAllowNavigationNewWindow.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxAllowNavigationNewWindow.Name = "checkBoxAllowNavigationNewWindow"; - this.checkBoxAllowNavigationNewWindow.Size = new System.Drawing.Size(300, 24); + this.checkBoxAllowNavigationNewWindow.Size = new System.Drawing.Size(206, 17); this.checkBoxAllowNavigationNewWindow.TabIndex = 8; this.checkBoxAllowNavigationNewWindow.Text = "Allow navigating in additional windows"; this.toolTip1.SetToolTip(this.checkBoxAllowNavigationNewWindow, resources.GetString("checkBoxAllowNavigationNewWindow.ToolTip")); @@ -3784,10 +3833,10 @@ namespace SebWindowsConfig // this.checkBoxAllowAudioCapture.AutoSize = true; this.checkBoxAllowAudioCapture.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxAllowAudioCapture.Location = new System.Drawing.Point(388, 253); - this.checkBoxAllowAudioCapture.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxAllowAudioCapture.Location = new System.Drawing.Point(259, 164); + this.checkBoxAllowAudioCapture.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxAllowAudioCapture.Name = "checkBoxAllowAudioCapture"; - this.checkBoxAllowAudioCapture.Size = new System.Drawing.Size(270, 24); + this.checkBoxAllowAudioCapture.Size = new System.Drawing.Size(183, 17); this.checkBoxAllowAudioCapture.TabIndex = 11; this.checkBoxAllowAudioCapture.Text = "Allow audio capture (microphone)"; this.toolTip1.SetToolTip(this.checkBoxAllowAudioCapture, "Allow web applications to access microphone (using HMTL 5 APIs)."); @@ -3798,10 +3847,10 @@ namespace SebWindowsConfig // checkBoxShowReloadWarning // this.checkBoxShowReloadWarning.AutoSize = true; - this.checkBoxShowReloadWarning.Location = new System.Drawing.Point(21, 91); - this.checkBoxShowReloadWarning.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxShowReloadWarning.Location = new System.Drawing.Point(14, 59); + this.checkBoxShowReloadWarning.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxShowReloadWarning.Name = "checkBoxShowReloadWarning"; - this.checkBoxShowReloadWarning.Size = new System.Drawing.Size(240, 24); + this.checkBoxShowReloadWarning.Size = new System.Drawing.Size(164, 17); this.checkBoxShowReloadWarning.TabIndex = 5; this.checkBoxShowReloadWarning.Text = "Show reload warning in exam"; this.toolTip1.SetToolTip(this.checkBoxShowReloadWarning, "User has to confirm reloading a web page with F5 or reload button"); @@ -3812,10 +3861,10 @@ namespace SebWindowsConfig // this.checkBoxDisableLocalStorage.AutoSize = true; this.checkBoxDisableLocalStorage.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxDisableLocalStorage.Location = new System.Drawing.Point(388, 292); - this.checkBoxDisableLocalStorage.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxDisableLocalStorage.Location = new System.Drawing.Point(259, 190); + this.checkBoxDisableLocalStorage.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxDisableLocalStorage.Name = "checkBoxDisableLocalStorage"; - this.checkBoxDisableLocalStorage.Size = new System.Drawing.Size(226, 24); + this.checkBoxDisableLocalStorage.Size = new System.Drawing.Size(154, 17); this.checkBoxDisableLocalStorage.TabIndex = 7; this.checkBoxDisableLocalStorage.Text = "Disable local storage (Mac)"; this.toolTip1.SetToolTip(this.checkBoxDisableLocalStorage, "If your web application uses local storage, you have to be sure data is saved enc" + @@ -3826,10 +3875,9 @@ namespace SebWindowsConfig // // checkBoxRemoveProfile // - this.checkBoxRemoveProfile.Location = new System.Drawing.Point(21, 120); - this.checkBoxRemoveProfile.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.checkBoxRemoveProfile.Location = new System.Drawing.Point(14, 78); this.checkBoxRemoveProfile.Name = "checkBoxRemoveProfile"; - this.checkBoxRemoveProfile.Size = new System.Drawing.Size(721, 55); + this.checkBoxRemoveProfile.Size = new System.Drawing.Size(481, 36); this.checkBoxRemoveProfile.TabIndex = 6; this.checkBoxRemoveProfile.Text = "Delete cache when re-configuring or terminating SEB (Win). This setting is ignore" + "d if \"Clear browser session when ending\" in section Exam > Session Handling is d" + @@ -3841,10 +3889,10 @@ namespace SebWindowsConfig // this.checkBoxAllowBrowsingBackForward.AutoSize = true; this.checkBoxAllowBrowsingBackForward.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxAllowBrowsingBackForward.Location = new System.Drawing.Point(21, 31); - this.checkBoxAllowBrowsingBackForward.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxAllowBrowsingBackForward.Location = new System.Drawing.Point(14, 20); + this.checkBoxAllowBrowsingBackForward.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxAllowBrowsingBackForward.Name = "checkBoxAllowBrowsingBackForward"; - this.checkBoxAllowBrowsingBackForward.Size = new System.Drawing.Size(301, 24); + this.checkBoxAllowBrowsingBackForward.Size = new System.Drawing.Size(209, 17); this.checkBoxAllowBrowsingBackForward.TabIndex = 4; this.checkBoxAllowBrowsingBackForward.Text = "Allow navigating back/forward in exam"; this.toolTip1.SetToolTip(this.checkBoxAllowBrowsingBackForward, resources.GetString("checkBoxAllowBrowsingBackForward.ToolTip")); @@ -3855,10 +3903,10 @@ namespace SebWindowsConfig // this.checkBoxEnablePlugIns.AutoSize = true; this.checkBoxEnablePlugIns.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxEnablePlugIns.Location = new System.Drawing.Point(21, 191); - this.checkBoxEnablePlugIns.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxEnablePlugIns.Location = new System.Drawing.Point(14, 124); + this.checkBoxEnablePlugIns.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxEnablePlugIns.Name = "checkBoxEnablePlugIns"; - this.checkBoxEnablePlugIns.Size = new System.Drawing.Size(264, 24); + this.checkBoxEnablePlugIns.Size = new System.Drawing.Size(179, 17); this.checkBoxEnablePlugIns.TabIndex = 0; this.checkBoxEnablePlugIns.Text = "Enable plug-ins (Win: only Flash)"; this.toolTip1.SetToolTip(this.checkBoxEnablePlugIns, "Enables web plugins (Mac) or just Flash (Win). For security reasons it\'s recommen" + @@ -3871,10 +3919,10 @@ namespace SebWindowsConfig // this.checkBoxBlockPopUpWindows.AutoSize = true; this.checkBoxBlockPopUpWindows.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxBlockPopUpWindows.Location = new System.Drawing.Point(388, 222); - this.checkBoxBlockPopUpWindows.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxBlockPopUpWindows.Location = new System.Drawing.Point(259, 144); + this.checkBoxBlockPopUpWindows.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxBlockPopUpWindows.Name = "checkBoxBlockPopUpWindows"; - this.checkBoxBlockPopUpWindows.Size = new System.Drawing.Size(192, 24); + this.checkBoxBlockPopUpWindows.Size = new System.Drawing.Size(133, 17); this.checkBoxBlockPopUpWindows.TabIndex = 3; this.checkBoxBlockPopUpWindows.Text = "Block pop-up windows"; this.toolTip1.SetToolTip(this.checkBoxBlockPopUpWindows, "Disables pop-up windows (often advertisement) opened by JavaScript without an use" + @@ -3887,10 +3935,10 @@ namespace SebWindowsConfig // this.checkBoxEnableJavaScript.AutoSize = true; this.checkBoxEnableJavaScript.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxEnableJavaScript.Location = new System.Drawing.Point(388, 191); - this.checkBoxEnableJavaScript.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxEnableJavaScript.Location = new System.Drawing.Point(259, 124); + this.checkBoxEnableJavaScript.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxEnableJavaScript.Name = "checkBoxEnableJavaScript"; - this.checkBoxEnableJavaScript.Size = new System.Drawing.Size(163, 24); + this.checkBoxEnableJavaScript.Size = new System.Drawing.Size(112, 17); this.checkBoxEnableJavaScript.TabIndex = 1; this.checkBoxEnableJavaScript.Text = "Enable JavaScript"; this.toolTip1.SetToolTip(this.checkBoxEnableJavaScript, "Enables JavaScript. Please note that most modern websites need JavaScript for ful" + @@ -3903,10 +3951,10 @@ namespace SebWindowsConfig // this.checkBoxEnableJava.AutoSize = true; this.checkBoxEnableJava.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxEnableJava.Location = new System.Drawing.Point(21, 222); - this.checkBoxEnableJava.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxEnableJava.Location = new System.Drawing.Point(14, 144); + this.checkBoxEnableJava.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxEnableJava.Name = "checkBoxEnableJava"; - this.checkBoxEnableJava.Size = new System.Drawing.Size(122, 24); + this.checkBoxEnableJava.Size = new System.Drawing.Size(85, 17); this.checkBoxEnableJava.TabIndex = 2; this.checkBoxEnableJava.Text = "Enable Java"; this.toolTip1.SetToolTip(this.checkBoxEnableJava, "Enables Java applets. Note: Only applets with the highest Java security level wil" + @@ -3918,20 +3966,20 @@ namespace SebWindowsConfig // listBoxOpenLinksHTML // this.listBoxOpenLinksHTML.FormattingEnabled = true; - this.listBoxOpenLinksHTML.ItemHeight = 20; - this.listBoxOpenLinksHTML.Location = new System.Drawing.Point(34, 62); - this.listBoxOpenLinksHTML.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.listBoxOpenLinksHTML.Location = new System.Drawing.Point(23, 40); + this.listBoxOpenLinksHTML.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.listBoxOpenLinksHTML.Name = "listBoxOpenLinksHTML"; - this.listBoxOpenLinksHTML.Size = new System.Drawing.Size(222, 64); + this.listBoxOpenLinksHTML.Size = new System.Drawing.Size(149, 43); this.listBoxOpenLinksHTML.TabIndex = 0; this.listBoxOpenLinksHTML.SelectedIndexChanged += new System.EventHandler(this.listBoxOpenLinksHTML_SelectedIndexChanged); // // labelUseSEBWithoutBrowser // this.labelUseSEBWithoutBrowser.AutoSize = true; - this.labelUseSEBWithoutBrowser.Location = new System.Drawing.Point(82, 570); + this.labelUseSEBWithoutBrowser.Location = new System.Drawing.Point(55, 370); + this.labelUseSEBWithoutBrowser.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelUseSEBWithoutBrowser.Name = "labelUseSEBWithoutBrowser"; - this.labelUseSEBWithoutBrowser.Size = new System.Drawing.Size(652, 20); + this.labelUseSEBWithoutBrowser.Size = new System.Drawing.Size(436, 13); this.labelUseSEBWithoutBrowser.TabIndex = 10; this.labelUseSEBWithoutBrowser.Text = "to start another application in kiosk mode (for example a virtual desktop infrast" + "ructure client)"; @@ -3939,10 +3987,10 @@ namespace SebWindowsConfig // checkBoxUseSebWithoutBrowser // this.checkBoxUseSebWithoutBrowser.AutoSize = true; - this.checkBoxUseSebWithoutBrowser.Location = new System.Drawing.Point(57, 539); - this.checkBoxUseSebWithoutBrowser.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxUseSebWithoutBrowser.Location = new System.Drawing.Point(38, 350); + this.checkBoxUseSebWithoutBrowser.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxUseSebWithoutBrowser.Name = "checkBoxUseSebWithoutBrowser"; - this.checkBoxUseSebWithoutBrowser.Size = new System.Drawing.Size(272, 24); + this.checkBoxUseSebWithoutBrowser.Size = new System.Drawing.Size(185, 17); this.checkBoxUseSebWithoutBrowser.TabIndex = 4; this.checkBoxUseSebWithoutBrowser.Text = "Use SEB without browser window"; this.toolTip1.SetToolTip(this.checkBoxUseSebWithoutBrowser, "When SEB browser is disabled, no browser window is openend. Use this option with " + @@ -3953,9 +4001,10 @@ namespace SebWindowsConfig // labelOpenLinksHTML // this.labelOpenLinksHTML.AutoSize = true; - this.labelOpenLinksHTML.Location = new System.Drawing.Point(32, 22); + this.labelOpenLinksHTML.Location = new System.Drawing.Point(21, 14); + this.labelOpenLinksHTML.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelOpenLinksHTML.Name = "labelOpenLinksHTML"; - this.labelOpenLinksHTML.Size = new System.Drawing.Size(413, 20); + this.labelOpenLinksHTML.Size = new System.Drawing.Size(281, 13); this.labelOpenLinksHTML.TabIndex = 60; this.labelOpenLinksHTML.Text = "Links requesting to be opened in a new browser window..."; this.labelOpenLinksHTML.Click += new System.EventHandler(this.labelOpenLinksHTML_Click); @@ -3963,10 +4012,10 @@ namespace SebWindowsConfig // checkBoxBlockLinksHTML // this.checkBoxBlockLinksHTML.AutoSize = true; - this.checkBoxBlockLinksHTML.Location = new System.Drawing.Point(422, 62); - this.checkBoxBlockLinksHTML.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxBlockLinksHTML.Location = new System.Drawing.Point(281, 40); + this.checkBoxBlockLinksHTML.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxBlockLinksHTML.Name = "checkBoxBlockLinksHTML"; - this.checkBoxBlockLinksHTML.Size = new System.Drawing.Size(363, 24); + this.checkBoxBlockLinksHTML.Size = new System.Drawing.Size(248, 17); this.checkBoxBlockLinksHTML.TabIndex = 1; this.checkBoxBlockLinksHTML.Text = "block when directing to a different server (Mac)"; this.toolTip1.SetToolTip(this.checkBoxBlockLinksHTML, "Hyperlinks which direct to a different host than the one of the current main page" + @@ -3983,11 +4032,11 @@ namespace SebWindowsConfig this.groupBoxNewBrowserWindow.Controls.Add(this.labelNewWindowPosition); this.groupBoxNewBrowserWindow.Controls.Add(this.listBoxNewBrowserWindowPositioning); this.groupBoxNewBrowserWindow.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.groupBoxNewBrowserWindow.Location = new System.Drawing.Point(34, 149); - this.groupBoxNewBrowserWindow.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.groupBoxNewBrowserWindow.Location = new System.Drawing.Point(23, 97); + this.groupBoxNewBrowserWindow.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.groupBoxNewBrowserWindow.Name = "groupBoxNewBrowserWindow"; - this.groupBoxNewBrowserWindow.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.groupBoxNewBrowserWindow.Size = new System.Drawing.Size(750, 138); + this.groupBoxNewBrowserWindow.Padding = new System.Windows.Forms.Padding(2, 1, 2, 1); + this.groupBoxNewBrowserWindow.Size = new System.Drawing.Size(500, 90); this.groupBoxNewBrowserWindow.TabIndex = 58; this.groupBoxNewBrowserWindow.TabStop = false; this.groupBoxNewBrowserWindow.Text = "New browser window size and position"; @@ -3995,10 +4044,10 @@ namespace SebWindowsConfig // comboBoxNewBrowserWindowHeight // this.comboBoxNewBrowserWindowHeight.FormattingEnabled = true; - this.comboBoxNewBrowserWindowHeight.Location = new System.Drawing.Point(99, 89); - this.comboBoxNewBrowserWindowHeight.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.comboBoxNewBrowserWindowHeight.Location = new System.Drawing.Point(66, 58); + this.comboBoxNewBrowserWindowHeight.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.comboBoxNewBrowserWindowHeight.Name = "comboBoxNewBrowserWindowHeight"; - this.comboBoxNewBrowserWindowHeight.Size = new System.Drawing.Size(136, 28); + this.comboBoxNewBrowserWindowHeight.Size = new System.Drawing.Size(92, 21); this.comboBoxNewBrowserWindowHeight.TabIndex = 1; this.toolTip1.SetToolTip(this.comboBoxNewBrowserWindowHeight, "Window height in pixel or percentage of total screen height."); this.comboBoxNewBrowserWindowHeight.SelectedIndexChanged += new System.EventHandler(this.comboBoxNewBrowserWindowHeight_SelectedIndexChanged); @@ -4007,10 +4056,10 @@ namespace SebWindowsConfig // comboBoxNewBrowserWindowWidth // this.comboBoxNewBrowserWindowWidth.FormattingEnabled = true; - this.comboBoxNewBrowserWindowWidth.Location = new System.Drawing.Point(99, 42); - this.comboBoxNewBrowserWindowWidth.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.comboBoxNewBrowserWindowWidth.Location = new System.Drawing.Point(66, 27); + this.comboBoxNewBrowserWindowWidth.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.comboBoxNewBrowserWindowWidth.Name = "comboBoxNewBrowserWindowWidth"; - this.comboBoxNewBrowserWindowWidth.Size = new System.Drawing.Size(136, 28); + this.comboBoxNewBrowserWindowWidth.Size = new System.Drawing.Size(92, 21); this.comboBoxNewBrowserWindowWidth.TabIndex = 0; this.toolTip1.SetToolTip(this.comboBoxNewBrowserWindowWidth, "Window width in pixel or percentage of total screen width."); this.comboBoxNewBrowserWindowWidth.SelectedIndexChanged += new System.EventHandler(this.comboBoxNewBrowserWindowWidth_SelectedIndexChanged); @@ -4020,9 +4069,10 @@ namespace SebWindowsConfig // this.labelNewWindowHeight.AutoSize = true; this.labelNewWindowHeight.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.labelNewWindowHeight.Location = new System.Drawing.Point(28, 94); + this.labelNewWindowHeight.Location = new System.Drawing.Point(19, 61); + this.labelNewWindowHeight.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelNewWindowHeight.Name = "labelNewWindowHeight"; - this.labelNewWindowHeight.Size = new System.Drawing.Size(56, 20); + this.labelNewWindowHeight.Size = new System.Drawing.Size(38, 13); this.labelNewWindowHeight.TabIndex = 61; this.labelNewWindowHeight.Text = "Height"; // @@ -4030,29 +4080,30 @@ namespace SebWindowsConfig // this.labelNewWindowWidth.AutoSize = true; this.labelNewWindowWidth.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.labelNewWindowWidth.Location = new System.Drawing.Point(33, 48); + this.labelNewWindowWidth.Location = new System.Drawing.Point(22, 31); + this.labelNewWindowWidth.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelNewWindowWidth.Name = "labelNewWindowWidth"; - this.labelNewWindowWidth.Size = new System.Drawing.Size(50, 20); + this.labelNewWindowWidth.Size = new System.Drawing.Size(35, 13); this.labelNewWindowWidth.TabIndex = 60; this.labelNewWindowWidth.Text = "Width"; // // labelNewWindowPosition // this.labelNewWindowPosition.AutoSize = true; - this.labelNewWindowPosition.Location = new System.Drawing.Point(410, 48); + this.labelNewWindowPosition.Location = new System.Drawing.Point(273, 31); + this.labelNewWindowPosition.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelNewWindowPosition.Name = "labelNewWindowPosition"; - this.labelNewWindowPosition.Size = new System.Drawing.Size(161, 20); + this.labelNewWindowPosition.Size = new System.Drawing.Size(107, 13); this.labelNewWindowPosition.TabIndex = 58; this.labelNewWindowPosition.Text = "Horizontal positioning"; // // listBoxNewBrowserWindowPositioning // this.listBoxNewBrowserWindowPositioning.FormattingEnabled = true; - this.listBoxNewBrowserWindowPositioning.ItemHeight = 20; - this.listBoxNewBrowserWindowPositioning.Location = new System.Drawing.Point(576, 25); - this.listBoxNewBrowserWindowPositioning.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.listBoxNewBrowserWindowPositioning.Location = new System.Drawing.Point(384, 16); + this.listBoxNewBrowserWindowPositioning.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.listBoxNewBrowserWindowPositioning.Name = "listBoxNewBrowserWindowPositioning"; - this.listBoxNewBrowserWindowPositioning.Size = new System.Drawing.Size(134, 64); + this.listBoxNewBrowserWindowPositioning.Size = new System.Drawing.Size(91, 43); this.listBoxNewBrowserWindowPositioning.TabIndex = 2; this.listBoxNewBrowserWindowPositioning.SelectedIndexChanged += new System.EventHandler(this.listBoxNewBrowserWindowPositioning_SelectedIndexChanged); // @@ -4068,10 +4119,10 @@ namespace SebWindowsConfig this.tabPageAppearance.Controls.Add(this.groupBoxMainBrowserWindow); this.tabPageAppearance.ImageIndex = 2; this.tabPageAppearance.Location = new System.Drawing.Point(4, 39); - this.tabPageAppearance.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.tabPageAppearance.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.tabPageAppearance.Name = "tabPageAppearance"; - this.tabPageAppearance.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.tabPageAppearance.Size = new System.Drawing.Size(1867, 948); + this.tabPageAppearance.Padding = new System.Windows.Forms.Padding(2, 1, 2, 1); + this.tabPageAppearance.Size = new System.Drawing.Size(1242, 601); this.tabPageAppearance.TabIndex = 8; this.tabPageAppearance.Text = "User Interface"; this.tabPageAppearance.UseVisualStyleBackColor = true; @@ -4085,9 +4136,11 @@ namespace SebWindowsConfig this.spellCheckerGroupBox.Controls.Add(this.addDictionaryButton); this.spellCheckerGroupBox.Controls.Add(this.spellCheckerDataGridView); this.spellCheckerGroupBox.Controls.Add(this.checkBoxAllowSpellCheck); - this.spellCheckerGroupBox.Location = new System.Drawing.Point(790, 182); + this.spellCheckerGroupBox.Location = new System.Drawing.Point(527, 118); + this.spellCheckerGroupBox.Margin = new System.Windows.Forms.Padding(2); this.spellCheckerGroupBox.Name = "spellCheckerGroupBox"; - this.spellCheckerGroupBox.Size = new System.Drawing.Size(1036, 628); + this.spellCheckerGroupBox.Padding = new System.Windows.Forms.Padding(2); + this.spellCheckerGroupBox.Size = new System.Drawing.Size(691, 408); this.spellCheckerGroupBox.TabIndex = 87; this.spellCheckerGroupBox.TabStop = false; this.spellCheckerGroupBox.Text = "Spell Checker"; @@ -4095,9 +4148,10 @@ namespace SebWindowsConfig // // dictionariesDescriptionLabel // - this.dictionariesDescriptionLabel.Location = new System.Drawing.Point(12, 516); + this.dictionariesDescriptionLabel.Location = new System.Drawing.Point(8, 335); + this.dictionariesDescriptionLabel.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.dictionariesDescriptionLabel.Name = "dictionariesDescriptionLabel"; - this.dictionariesDescriptionLabel.Size = new System.Drawing.Size(1012, 45); + this.dictionariesDescriptionLabel.Size = new System.Drawing.Size(675, 29); this.dictionariesDescriptionLabel.TabIndex = 3; this.dictionariesDescriptionLabel.Text = "It is possible to embed additional dictionaries to be used for spell checking. Pl" + "ease make sure to use the correct file formats, namely an .aff and a .dic file p" + @@ -4105,9 +4159,10 @@ namespace SebWindowsConfig // // spellCheckerDescriptionLabel // - this.spellCheckerDescriptionLabel.Location = new System.Drawing.Point(12, 65); + this.spellCheckerDescriptionLabel.Location = new System.Drawing.Point(8, 42); + this.spellCheckerDescriptionLabel.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.spellCheckerDescriptionLabel.Name = "spellCheckerDescriptionLabel"; - this.spellCheckerDescriptionLabel.Size = new System.Drawing.Size(1012, 42); + this.spellCheckerDescriptionLabel.Size = new System.Drawing.Size(675, 27); this.spellCheckerDescriptionLabel.TabIndex = 2; this.spellCheckerDescriptionLabel.Text = "The list below shows all dictionaries currently available for spell checking. SEB" + " comes with a list of standard dictionaries which cannot be removed, but may be " + @@ -4116,10 +4171,10 @@ namespace SebWindowsConfig // checkBoxAllowDictionaryLookup // this.checkBoxAllowDictionaryLookup.AutoSize = true; - this.checkBoxAllowDictionaryLookup.Location = new System.Drawing.Point(208, 31); - this.checkBoxAllowDictionaryLookup.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxAllowDictionaryLookup.Location = new System.Drawing.Point(139, 20); + this.checkBoxAllowDictionaryLookup.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxAllowDictionaryLookup.Name = "checkBoxAllowDictionaryLookup"; - this.checkBoxAllowDictionaryLookup.Size = new System.Drawing.Size(238, 24); + this.checkBoxAllowDictionaryLookup.Size = new System.Drawing.Size(164, 17); this.checkBoxAllowDictionaryLookup.TabIndex = 84; this.checkBoxAllowDictionaryLookup.Text = "Allow dictionary lookup (Mac)"; this.toolTip1.SetToolTip(this.checkBoxAllowDictionaryLookup, "Allow to use the OS X dictionary lookup using a 3 finger tap"); @@ -4128,9 +4183,10 @@ namespace SebWindowsConfig // // removeDictionaryButton // - this.removeDictionaryButton.Location = new System.Drawing.Point(176, 571); + this.removeDictionaryButton.Location = new System.Drawing.Point(117, 371); + this.removeDictionaryButton.Margin = new System.Windows.Forms.Padding(2); this.removeDictionaryButton.Name = "removeDictionaryButton"; - this.removeDictionaryButton.Size = new System.Drawing.Size(170, 35); + this.removeDictionaryButton.Size = new System.Drawing.Size(113, 23); this.removeDictionaryButton.TabIndex = 1; this.removeDictionaryButton.Text = "Remove Selected"; this.removeDictionaryButton.UseVisualStyleBackColor = true; @@ -4138,9 +4194,10 @@ namespace SebWindowsConfig // // addDictionaryButton // - this.addDictionaryButton.Location = new System.Drawing.Point(12, 571); + this.addDictionaryButton.Location = new System.Drawing.Point(8, 371); + this.addDictionaryButton.Margin = new System.Windows.Forms.Padding(2); this.addDictionaryButton.Name = "addDictionaryButton"; - this.addDictionaryButton.Size = new System.Drawing.Size(158, 35); + this.addDictionaryButton.Size = new System.Drawing.Size(105, 23); this.addDictionaryButton.TabIndex = 1; this.addDictionaryButton.Text = "Add Dictionary..."; this.toolTip1.SetToolTip(this.addDictionaryButton, "SEB containts dictionaries with a compatible license, others can be embedded to c" + @@ -4159,10 +4216,11 @@ namespace SebWindowsConfig this.spellCheckerDictionaryEnabledColumn, this.spellCheckerDictionaryLocaleColumn, this.spellCheckerDictionaryFilesColumn}); - this.spellCheckerDataGridView.Location = new System.Drawing.Point(16, 120); + this.spellCheckerDataGridView.Location = new System.Drawing.Point(11, 78); + this.spellCheckerDataGridView.Margin = new System.Windows.Forms.Padding(2); this.spellCheckerDataGridView.Name = "spellCheckerDataGridView"; this.spellCheckerDataGridView.RowTemplate.Height = 28; - this.spellCheckerDataGridView.Size = new System.Drawing.Size(1002, 380); + this.spellCheckerDataGridView.Size = new System.Drawing.Size(668, 247); this.spellCheckerDataGridView.TabIndex = 0; this.spellCheckerDataGridView.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.spellCheckerDataGridView_CellValueChanged); this.spellCheckerDataGridView.CurrentCellDirtyStateChanged += new System.EventHandler(this.spellCheckerDataGridView_CurrentCellDirtyStateChanged); @@ -4175,7 +4233,7 @@ namespace SebWindowsConfig this.spellCheckerDictionaryEnabledColumn.Resizable = System.Windows.Forms.DataGridViewTriState.False; this.spellCheckerDictionaryEnabledColumn.ToolTipText = "Determines whether this dictionary is enabled and active during the application r" + "untime."; - this.spellCheckerDictionaryEnabledColumn.Width = 74; + this.spellCheckerDictionaryEnabledColumn.Width = 52; // // spellCheckerDictionaryLocaleColumn // @@ -4189,8 +4247,8 @@ namespace SebWindowsConfig // spellCheckerDictionaryFilesColumn // this.spellCheckerDictionaryFilesColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill; - dataGridViewCellStyle6.WrapMode = System.Windows.Forms.DataGridViewTriState.True; - this.spellCheckerDictionaryFilesColumn.DefaultCellStyle = dataGridViewCellStyle6; + dataGridViewCellStyle16.WrapMode = System.Windows.Forms.DataGridViewTriState.True; + this.spellCheckerDictionaryFilesColumn.DefaultCellStyle = dataGridViewCellStyle16; this.spellCheckerDictionaryFilesColumn.HeaderText = "Files"; this.spellCheckerDictionaryFilesColumn.Name = "spellCheckerDictionaryFilesColumn"; this.spellCheckerDictionaryFilesColumn.ReadOnly = true; @@ -4201,10 +4259,10 @@ namespace SebWindowsConfig // checkBoxAllowSpellCheck // this.checkBoxAllowSpellCheck.AutoSize = true; - this.checkBoxAllowSpellCheck.Location = new System.Drawing.Point(16, 31); - this.checkBoxAllowSpellCheck.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxAllowSpellCheck.Location = new System.Drawing.Point(11, 20); + this.checkBoxAllowSpellCheck.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxAllowSpellCheck.Name = "checkBoxAllowSpellCheck"; - this.checkBoxAllowSpellCheck.Size = new System.Drawing.Size(175, 24); + this.checkBoxAllowSpellCheck.Size = new System.Drawing.Size(122, 17); this.checkBoxAllowSpellCheck.TabIndex = 67; this.checkBoxAllowSpellCheck.Text = "Allow spell checking"; this.toolTip1.SetToolTip(this.checkBoxAllowSpellCheck, "Spell checking in the SEB browser underlines incorrectly spelled words and displa" + @@ -4219,32 +4277,32 @@ namespace SebWindowsConfig this.groupBox16.Controls.Add(this.checkBoxEnableAudioControl); this.groupBox16.Controls.Add(this.checkBoxSetVolumeLevel); this.groupBox16.Controls.Add(this.checkBoxMuteAudio); - this.groupBox16.Location = new System.Drawing.Point(790, 25); - this.groupBox16.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.groupBox16.Location = new System.Drawing.Point(527, 16); + this.groupBox16.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.groupBox16.Name = "groupBox16"; - this.groupBox16.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.groupBox16.Size = new System.Drawing.Size(1036, 142); + this.groupBox16.Padding = new System.Windows.Forms.Padding(2, 1, 2, 1); + this.groupBox16.Size = new System.Drawing.Size(691, 92); this.groupBox16.TabIndex = 86; this.groupBox16.TabStop = false; this.groupBox16.Text = "Audio Control"; // // trackBarVolumeLevel // - this.trackBarVolumeLevel.Location = new System.Drawing.Point(208, 49); - this.trackBarVolumeLevel.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.trackBarVolumeLevel.Location = new System.Drawing.Point(139, 32); + this.trackBarVolumeLevel.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.trackBarVolumeLevel.Maximum = 100; this.trackBarVolumeLevel.Name = "trackBarVolumeLevel"; - this.trackBarVolumeLevel.Size = new System.Drawing.Size(810, 69); + this.trackBarVolumeLevel.Size = new System.Drawing.Size(540, 45); this.trackBarVolumeLevel.TabIndex = 89; this.trackBarVolumeLevel.Scroll += new System.EventHandler(this.trackBarVolumeLevel_Scroll); // // checkBoxEnableAudioControl // this.checkBoxEnableAudioControl.AutoSize = true; - this.checkBoxEnableAudioControl.Location = new System.Drawing.Point(12, 38); - this.checkBoxEnableAudioControl.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxEnableAudioControl.Location = new System.Drawing.Point(8, 25); + this.checkBoxEnableAudioControl.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxEnableAudioControl.Name = "checkBoxEnableAudioControl"; - this.checkBoxEnableAudioControl.Size = new System.Drawing.Size(188, 24); + this.checkBoxEnableAudioControl.Size = new System.Drawing.Size(128, 17); this.checkBoxEnableAudioControl.TabIndex = 86; this.checkBoxEnableAudioControl.Text = "Enable audio controls"; this.toolTip1.SetToolTip(this.checkBoxEnableAudioControl, "Displays an audio control in the SEB taskbar"); @@ -4254,10 +4312,10 @@ namespace SebWindowsConfig // checkBoxSetVolumeLevel // this.checkBoxSetVolumeLevel.AutoSize = true; - this.checkBoxSetVolumeLevel.Location = new System.Drawing.Point(12, 105); - this.checkBoxSetVolumeLevel.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxSetVolumeLevel.Location = new System.Drawing.Point(8, 68); + this.checkBoxSetVolumeLevel.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxSetVolumeLevel.Name = "checkBoxSetVolumeLevel"; - this.checkBoxSetVolumeLevel.Size = new System.Drawing.Size(188, 24); + this.checkBoxSetVolumeLevel.Size = new System.Drawing.Size(130, 17); this.checkBoxSetVolumeLevel.TabIndex = 88; this.checkBoxSetVolumeLevel.Text = "Set initial volume level"; this.toolTip1.SetToolTip(this.checkBoxSetVolumeLevel, "Volume level after starting SEB/the exam"); @@ -4267,10 +4325,10 @@ namespace SebWindowsConfig // checkBoxMuteAudio // this.checkBoxMuteAudio.AutoSize = true; - this.checkBoxMuteAudio.Location = new System.Drawing.Point(12, 71); - this.checkBoxMuteAudio.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxMuteAudio.Location = new System.Drawing.Point(8, 46); + this.checkBoxMuteAudio.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxMuteAudio.Name = "checkBoxMuteAudio"; - this.checkBoxMuteAudio.Size = new System.Drawing.Size(190, 24); + this.checkBoxMuteAudio.Size = new System.Drawing.Size(129, 17); this.checkBoxMuteAudio.TabIndex = 87; this.checkBoxMuteAudio.Text = "Mute audio on startup"; this.toolTip1.SetToolTip(this.checkBoxMuteAudio, "When SEB/the exam starts, audio is muted"); @@ -4284,11 +4342,9 @@ namespace SebWindowsConfig this.groupBox6.Controls.Add(this.checkBoxEnableBrowserWindowToolbar); this.groupBox6.Controls.Add(this.checkBoxHideBrowserWindowToolbar); this.groupBox6.Controls.Add(this.checkBoxShowMenuBar); - this.groupBox6.Location = new System.Drawing.Point(34, 319); - this.groupBox6.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.groupBox6.Location = new System.Drawing.Point(23, 207); this.groupBox6.Name = "groupBox6"; - this.groupBox6.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.groupBox6.Size = new System.Drawing.Size(750, 152); + this.groupBox6.Size = new System.Drawing.Size(500, 99); this.groupBox6.TabIndex = 83; this.groupBox6.TabStop = false; this.groupBox6.Text = "Browser Window Toolbar"; @@ -4296,9 +4352,10 @@ namespace SebWindowsConfig // checkBoxAllowAdditionalWindowAddressBar // this.checkBoxAllowAdditionalWindowAddressBar.AutoSize = true; - this.checkBoxAllowAdditionalWindowAddressBar.Location = new System.Drawing.Point(44, 89); + this.checkBoxAllowAdditionalWindowAddressBar.Location = new System.Drawing.Point(29, 58); + this.checkBoxAllowAdditionalWindowAddressBar.Margin = new System.Windows.Forms.Padding(2); this.checkBoxAllowAdditionalWindowAddressBar.Name = "checkBoxAllowAdditionalWindowAddressBar"; - this.checkBoxAllowAdditionalWindowAddressBar.Size = new System.Drawing.Size(360, 24); + this.checkBoxAllowAdditionalWindowAddressBar.Size = new System.Drawing.Size(244, 17); this.checkBoxAllowAdditionalWindowAddressBar.TabIndex = 6; this.checkBoxAllowAdditionalWindowAddressBar.Text = "Allow address bar for additional windows (Win)"; this.checkBoxAllowAdditionalWindowAddressBar.UseVisualStyleBackColor = true; @@ -4307,9 +4364,10 @@ namespace SebWindowsConfig // checkBoxAllowMainWindowAddressBar // this.checkBoxAllowMainWindowAddressBar.AutoSize = true; - this.checkBoxAllowMainWindowAddressBar.Location = new System.Drawing.Point(44, 59); + this.checkBoxAllowMainWindowAddressBar.Location = new System.Drawing.Point(29, 38); + this.checkBoxAllowMainWindowAddressBar.Margin = new System.Windows.Forms.Padding(2); this.checkBoxAllowMainWindowAddressBar.Name = "checkBoxAllowMainWindowAddressBar"; - this.checkBoxAllowMainWindowAddressBar.Size = new System.Drawing.Size(318, 24); + this.checkBoxAllowMainWindowAddressBar.Size = new System.Drawing.Size(216, 17); this.checkBoxAllowMainWindowAddressBar.TabIndex = 5; this.checkBoxAllowMainWindowAddressBar.Text = "Allow address bar for main window (Win)"; this.checkBoxAllowMainWindowAddressBar.UseVisualStyleBackColor = true; @@ -4318,10 +4376,10 @@ namespace SebWindowsConfig // checkBoxEnableBrowserWindowToolbar // this.checkBoxEnableBrowserWindowToolbar.AutoSize = true; - this.checkBoxEnableBrowserWindowToolbar.Location = new System.Drawing.Point(14, 29); - this.checkBoxEnableBrowserWindowToolbar.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxEnableBrowserWindowToolbar.Location = new System.Drawing.Point(9, 19); + this.checkBoxEnableBrowserWindowToolbar.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxEnableBrowserWindowToolbar.Name = "checkBoxEnableBrowserWindowToolbar"; - this.checkBoxEnableBrowserWindowToolbar.Size = new System.Drawing.Size(254, 24); + this.checkBoxEnableBrowserWindowToolbar.Size = new System.Drawing.Size(173, 17); this.checkBoxEnableBrowserWindowToolbar.TabIndex = 2; this.checkBoxEnableBrowserWindowToolbar.Text = "Enable browser window toolbar"; this.toolTip1.SetToolTip(this.checkBoxEnableBrowserWindowToolbar, "Displays a toolbar with reload and navigation buttons (if enabled) on top of the " + @@ -4333,10 +4391,10 @@ namespace SebWindowsConfig // this.checkBoxHideBrowserWindowToolbar.AutoSize = true; this.checkBoxHideBrowserWindowToolbar.Enabled = false; - this.checkBoxHideBrowserWindowToolbar.Location = new System.Drawing.Point(44, 118); - this.checkBoxHideBrowserWindowToolbar.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxHideBrowserWindowToolbar.Location = new System.Drawing.Point(29, 77); + this.checkBoxHideBrowserWindowToolbar.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxHideBrowserWindowToolbar.Name = "checkBoxHideBrowserWindowToolbar"; - this.checkBoxHideBrowserWindowToolbar.Size = new System.Drawing.Size(239, 24); + this.checkBoxHideBrowserWindowToolbar.Size = new System.Drawing.Size(162, 17); this.checkBoxHideBrowserWindowToolbar.TabIndex = 3; this.checkBoxHideBrowserWindowToolbar.Text = "Hide toolbar as default (Mac)"; this.toolTip1.SetToolTip(this.checkBoxHideBrowserWindowToolbar, "Hide browser window toolbar by default. It can be unhiden using the View menu or" + @@ -4347,10 +4405,10 @@ namespace SebWindowsConfig // checkBoxShowMenuBar // this.checkBoxShowMenuBar.AutoSize = true; - this.checkBoxShowMenuBar.Location = new System.Drawing.Point(388, 29); - this.checkBoxShowMenuBar.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxShowMenuBar.Location = new System.Drawing.Point(259, 19); + this.checkBoxShowMenuBar.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxShowMenuBar.Name = "checkBoxShowMenuBar"; - this.checkBoxShowMenuBar.Size = new System.Drawing.Size(190, 24); + this.checkBoxShowMenuBar.Size = new System.Drawing.Size(130, 17); this.checkBoxShowMenuBar.TabIndex = 4; this.checkBoxShowMenuBar.Text = "Show menu bar (Mac)"; this.toolTip1.SetToolTip(this.checkBoxShowMenuBar, "Show the OS X menu bar to allow to access settings like Wi-Fi."); @@ -4367,11 +4425,9 @@ namespace SebWindowsConfig this.groupBox5.Controls.Add(this.labelTaskBarHeight); this.groupBox5.Controls.Add(this.checkBoxShowTime); this.groupBox5.Controls.Add(this.checkBoxShowReloadButton); - this.groupBox5.Location = new System.Drawing.Point(34, 481); - this.groupBox5.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.groupBox5.Location = new System.Drawing.Point(23, 313); this.groupBox5.Name = "groupBox5"; - this.groupBox5.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.groupBox5.Size = new System.Drawing.Size(750, 161); + this.groupBox5.Size = new System.Drawing.Size(500, 105); this.groupBox5.TabIndex = 82; this.groupBox5.TabStop = false; this.groupBox5.Text = "Taskbar / Dock / Side Menu"; @@ -4379,9 +4435,10 @@ namespace SebWindowsConfig // checkBoxShowSideMenu // this.checkBoxShowSideMenu.AutoSize = true; - this.checkBoxShowSideMenu.Location = new System.Drawing.Point(15, 61); + this.checkBoxShowSideMenu.Location = new System.Drawing.Point(10, 40); + this.checkBoxShowSideMenu.Margin = new System.Windows.Forms.Padding(2); this.checkBoxShowSideMenu.Name = "checkBoxShowSideMenu"; - this.checkBoxShowSideMenu.Size = new System.Drawing.Size(152, 24); + this.checkBoxShowSideMenu.Size = new System.Drawing.Size(104, 17); this.checkBoxShowSideMenu.TabIndex = 82; this.checkBoxShowSideMenu.Text = "Show side menu"; this.checkBoxShowSideMenu.UseVisualStyleBackColor = true; @@ -4390,10 +4447,10 @@ namespace SebWindowsConfig // checkBoxShowTaskBar // this.checkBoxShowTaskBar.AutoSize = true; - this.checkBoxShowTaskBar.Location = new System.Drawing.Point(15, 29); - this.checkBoxShowTaskBar.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxShowTaskBar.Location = new System.Drawing.Point(10, 19); + this.checkBoxShowTaskBar.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxShowTaskBar.Name = "checkBoxShowTaskBar"; - this.checkBoxShowTaskBar.Size = new System.Drawing.Size(178, 24); + this.checkBoxShowTaskBar.Size = new System.Drawing.Size(126, 17); this.checkBoxShowTaskBar.TabIndex = 5; this.checkBoxShowTaskBar.Text = "Show taskbar / dock"; this.toolTip1.SetToolTip(this.checkBoxShowTaskBar, "The SEB taskbar shows and switches between open browser windows, allowed resource" + @@ -4405,10 +4462,10 @@ namespace SebWindowsConfig // this.checkboxAllowWlan.AutoSize = true; this.checkboxAllowWlan.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkboxAllowWlan.Location = new System.Drawing.Point(388, 29); - this.checkboxAllowWlan.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkboxAllowWlan.Location = new System.Drawing.Point(259, 19); + this.checkboxAllowWlan.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkboxAllowWlan.Name = "checkboxAllowWlan"; - this.checkboxAllowWlan.Size = new System.Drawing.Size(208, 24); + this.checkboxAllowWlan.Size = new System.Drawing.Size(143, 17); this.checkboxAllowWlan.TabIndex = 81; this.checkboxAllowWlan.Text = "Show Wi-Fi control (Win)"; this.toolTip1.SetToolTip(this.checkboxAllowWlan, "Allows to reconnect to WiFi networks which have previously been connected to"); @@ -4418,10 +4475,10 @@ namespace SebWindowsConfig // comboBoxTaskBarHeight // this.comboBoxTaskBarHeight.FormattingEnabled = true; - this.comboBoxTaskBarHeight.Location = new System.Drawing.Point(204, 123); - this.comboBoxTaskBarHeight.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.comboBoxTaskBarHeight.Location = new System.Drawing.Point(136, 80); + this.comboBoxTaskBarHeight.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.comboBoxTaskBarHeight.Name = "comboBoxTaskBarHeight"; - this.comboBoxTaskBarHeight.Size = new System.Drawing.Size(136, 28); + this.comboBoxTaskBarHeight.Size = new System.Drawing.Size(92, 21); this.comboBoxTaskBarHeight.TabIndex = 6; this.toolTip1.SetToolTip(this.comboBoxTaskBarHeight, "Height of SEB dock/taskbar in points/pixels"); this.comboBoxTaskBarHeight.Visible = false; @@ -4431,10 +4488,10 @@ namespace SebWindowsConfig // checkBoxShowKeyboardLayout // this.checkBoxShowKeyboardLayout.AutoSize = true; - this.checkBoxShowKeyboardLayout.Location = new System.Drawing.Point(388, 125); - this.checkBoxShowKeyboardLayout.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxShowKeyboardLayout.Location = new System.Drawing.Point(259, 81); + this.checkBoxShowKeyboardLayout.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxShowKeyboardLayout.Name = "checkBoxShowKeyboardLayout"; - this.checkBoxShowKeyboardLayout.Size = new System.Drawing.Size(190, 24); + this.checkBoxShowKeyboardLayout.Size = new System.Drawing.Size(131, 17); this.checkBoxShowKeyboardLayout.TabIndex = 78; this.checkBoxShowKeyboardLayout.Text = "Show keyboard layout"; this.toolTip1.SetToolTip(this.checkBoxShowKeyboardLayout, "Shows current keyboard layout and allows to switch between other active keyboard " + @@ -4446,9 +4503,10 @@ namespace SebWindowsConfig // this.labelTaskBarHeight.AutoSize = true; this.labelTaskBarHeight.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.labelTaskBarHeight.Location = new System.Drawing.Point(14, 126); + this.labelTaskBarHeight.Location = new System.Drawing.Point(9, 82); + this.labelTaskBarHeight.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelTaskBarHeight.Name = "labelTaskBarHeight"; - this.labelTaskBarHeight.Size = new System.Drawing.Size(152, 20); + this.labelTaskBarHeight.Size = new System.Drawing.Size(107, 13); this.labelTaskBarHeight.TabIndex = 63; this.labelTaskBarHeight.Text = "Taskbar/dock height"; this.labelTaskBarHeight.TextAlign = System.Drawing.ContentAlignment.TopRight; @@ -4457,10 +4515,10 @@ namespace SebWindowsConfig // checkBoxShowTime // this.checkBoxShowTime.AutoSize = true; - this.checkBoxShowTime.Location = new System.Drawing.Point(388, 93); - this.checkBoxShowTime.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxShowTime.Location = new System.Drawing.Point(259, 60); + this.checkBoxShowTime.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxShowTime.Name = "checkBoxShowTime"; - this.checkBoxShowTime.Size = new System.Drawing.Size(109, 24); + this.checkBoxShowTime.Size = new System.Drawing.Size(75, 17); this.checkBoxShowTime.TabIndex = 77; this.checkBoxShowTime.Text = "Show time"; this.toolTip1.SetToolTip(this.checkBoxShowTime, "Show current time"); @@ -4470,10 +4528,10 @@ namespace SebWindowsConfig // checkBoxShowReloadButton // this.checkBoxShowReloadButton.AutoSize = true; - this.checkBoxShowReloadButton.Location = new System.Drawing.Point(388, 61); - this.checkBoxShowReloadButton.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxShowReloadButton.Location = new System.Drawing.Point(259, 40); + this.checkBoxShowReloadButton.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxShowReloadButton.Name = "checkBoxShowReloadButton"; - this.checkBoxShowReloadButton.Size = new System.Drawing.Size(173, 24); + this.checkBoxShowReloadButton.Size = new System.Drawing.Size(118, 17); this.checkBoxShowReloadButton.TabIndex = 68; this.checkBoxShowReloadButton.Text = "Show reload button"; this.toolTip1.SetToolTip(this.checkBoxShowReloadButton, "Reloads current web page. Shows warning if enabled in Browser settings tab"); @@ -4484,11 +4542,9 @@ namespace SebWindowsConfig // this.groupBoxEnableZoom.Controls.Add(this.checkBoxEnableZoomPage); this.groupBoxEnableZoom.Controls.Add(this.checkBoxEnableZoomText); - this.groupBoxEnableZoom.Location = new System.Drawing.Point(33, 661); - this.groupBoxEnableZoom.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.groupBoxEnableZoom.Location = new System.Drawing.Point(22, 430); this.groupBoxEnableZoom.Name = "groupBoxEnableZoom"; - this.groupBoxEnableZoom.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.groupBoxEnableZoom.Size = new System.Drawing.Size(362, 106); + this.groupBoxEnableZoom.Size = new System.Drawing.Size(241, 69); this.groupBoxEnableZoom.TabIndex = 76; this.groupBoxEnableZoom.TabStop = false; this.groupBoxEnableZoom.Text = "Enable zoom (Win/Mac)"; @@ -4496,10 +4552,10 @@ namespace SebWindowsConfig // checkBoxEnableZoomPage // this.checkBoxEnableZoomPage.AutoSize = true; - this.checkBoxEnableZoomPage.Location = new System.Drawing.Point(15, 29); - this.checkBoxEnableZoomPage.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxEnableZoomPage.Location = new System.Drawing.Point(10, 19); + this.checkBoxEnableZoomPage.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxEnableZoomPage.Name = "checkBoxEnableZoomPage"; - this.checkBoxEnableZoomPage.Size = new System.Drawing.Size(168, 24); + this.checkBoxEnableZoomPage.Size = new System.Drawing.Size(114, 17); this.checkBoxEnableZoomPage.TabIndex = 66; this.checkBoxEnableZoomPage.Text = "Enable page zoom"; this.toolTip1.SetToolTip(this.checkBoxEnableZoomPage, "Pages can be zoomed with ctrl - cmd +/- or the commands in the view menu and brow" + @@ -4509,10 +4565,10 @@ namespace SebWindowsConfig // checkBoxEnableZoomText // this.checkBoxEnableZoomText.AutoSize = true; - this.checkBoxEnableZoomText.Location = new System.Drawing.Point(15, 62); - this.checkBoxEnableZoomText.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxEnableZoomText.Location = new System.Drawing.Point(10, 40); + this.checkBoxEnableZoomText.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxEnableZoomText.Name = "checkBoxEnableZoomText"; - this.checkBoxEnableZoomText.Size = new System.Drawing.Size(158, 24); + this.checkBoxEnableZoomText.Size = new System.Drawing.Size(107, 17); this.checkBoxEnableZoomText.TabIndex = 65; this.checkBoxEnableZoomText.Text = "Enable text zoom"; this.toolTip1.SetToolTip(this.checkBoxEnableZoomText, "Text in browser windows can be zoomed with cmd +/- or the commands in the view me" + @@ -4523,11 +4579,9 @@ namespace SebWindowsConfig // this.groupBoxZoomMode.Controls.Add(this.radioButtonUseZoomPage); this.groupBoxZoomMode.Controls.Add(this.radioButtonUseZoomText); - this.groupBoxZoomMode.Location = new System.Drawing.Point(422, 661); - this.groupBoxZoomMode.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.groupBoxZoomMode.Location = new System.Drawing.Point(281, 430); this.groupBoxZoomMode.Name = "groupBoxZoomMode"; - this.groupBoxZoomMode.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.groupBoxZoomMode.Size = new System.Drawing.Size(362, 106); + this.groupBoxZoomMode.Size = new System.Drawing.Size(241, 69); this.groupBoxZoomMode.TabIndex = 75; this.groupBoxZoomMode.TabStop = false; this.groupBoxZoomMode.Text = "Zoom mode Win (Ctrl-Mousewheel)"; @@ -4535,10 +4589,10 @@ namespace SebWindowsConfig // radioButtonUseZoomPage // this.radioButtonUseZoomPage.AutoSize = true; - this.radioButtonUseZoomPage.Location = new System.Drawing.Point(15, 28); - this.radioButtonUseZoomPage.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.radioButtonUseZoomPage.Location = new System.Drawing.Point(10, 18); + this.radioButtonUseZoomPage.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.radioButtonUseZoomPage.Name = "radioButtonUseZoomPage"; - this.radioButtonUseZoomPage.Size = new System.Drawing.Size(146, 24); + this.radioButtonUseZoomPage.Size = new System.Drawing.Size(99, 17); this.radioButtonUseZoomPage.TabIndex = 71; this.radioButtonUseZoomPage.Text = "Use page zoom"; this.toolTip1.SetToolTip(this.radioButtonUseZoomPage, "Zoom whole web pages using Ctrl-Mousewheel (Win)"); @@ -4548,10 +4602,10 @@ namespace SebWindowsConfig // radioButtonUseZoomText // this.radioButtonUseZoomText.AutoSize = true; - this.radioButtonUseZoomText.Location = new System.Drawing.Point(15, 60); - this.radioButtonUseZoomText.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.radioButtonUseZoomText.Location = new System.Drawing.Point(10, 39); + this.radioButtonUseZoomText.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.radioButtonUseZoomText.Name = "radioButtonUseZoomText"; - this.radioButtonUseZoomText.Size = new System.Drawing.Size(136, 24); + this.radioButtonUseZoomText.Size = new System.Drawing.Size(92, 17); this.radioButtonUseZoomText.TabIndex = 70; this.radioButtonUseZoomText.Text = "Use text zoom"; this.toolTip1.SetToolTip(this.radioButtonUseZoomText, "Zoom only text on web pages using Ctrl-Mousewheel (Win)"); @@ -4564,11 +4618,9 @@ namespace SebWindowsConfig this.groupBox4.Controls.Add(this.radioButtonUseBrowserWindow); this.groupBox4.Controls.Add(this.radioButtonUseFullScreenMode); this.groupBox4.Controls.Add(this.radioButtonTouchOptimized); - this.groupBox4.Location = new System.Drawing.Point(34, 25); - this.groupBox4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.groupBox4.Location = new System.Drawing.Point(23, 16); this.groupBox4.Name = "groupBox4"; - this.groupBox4.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.groupBox4.Size = new System.Drawing.Size(750, 142); + this.groupBox4.Size = new System.Drawing.Size(500, 92); this.groupBox4.TabIndex = 74; this.groupBox4.TabStop = false; this.groupBox4.Text = "Browser view mode"; @@ -4576,10 +4628,10 @@ namespace SebWindowsConfig // checkBoxEnableTouchExit // this.checkBoxEnableTouchExit.AutoSize = true; - this.checkBoxEnableTouchExit.Location = new System.Drawing.Point(388, 98); - this.checkBoxEnableTouchExit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxEnableTouchExit.Location = new System.Drawing.Point(259, 64); + this.checkBoxEnableTouchExit.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxEnableTouchExit.Name = "checkBoxEnableTouchExit"; - this.checkBoxEnableTouchExit.Size = new System.Drawing.Size(157, 24); + this.checkBoxEnableTouchExit.Size = new System.Drawing.Size(108, 17); this.checkBoxEnableTouchExit.TabIndex = 65; this.checkBoxEnableTouchExit.Text = "Enable touch exit"; this.toolTip1.SetToolTip(this.checkBoxEnableTouchExit, "SEB can be quit with a swipe down from the upper display edge."); @@ -4590,10 +4642,10 @@ namespace SebWindowsConfig // radioButtonUseBrowserWindow // this.radioButtonUseBrowserWindow.AutoSize = true; - this.radioButtonUseBrowserWindow.Location = new System.Drawing.Point(22, 28); - this.radioButtonUseBrowserWindow.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.radioButtonUseBrowserWindow.Location = new System.Drawing.Point(15, 18); + this.radioButtonUseBrowserWindow.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.radioButtonUseBrowserWindow.Name = "radioButtonUseBrowserWindow"; - this.radioButtonUseBrowserWindow.Size = new System.Drawing.Size(179, 24); + this.radioButtonUseBrowserWindow.Size = new System.Drawing.Size(123, 17); this.radioButtonUseBrowserWindow.TabIndex = 0; this.radioButtonUseBrowserWindow.Text = "Use browser window"; this.toolTip1.SetToolTip(this.radioButtonUseBrowserWindow, "Use a window for the SEB browser which can be scaled and moved around, also to an" + @@ -4604,10 +4656,10 @@ namespace SebWindowsConfig // radioButtonUseFullScreenMode // this.radioButtonUseFullScreenMode.AutoSize = true; - this.radioButtonUseFullScreenMode.Location = new System.Drawing.Point(22, 62); - this.radioButtonUseFullScreenMode.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.radioButtonUseFullScreenMode.Location = new System.Drawing.Point(15, 40); + this.radioButtonUseFullScreenMode.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.radioButtonUseFullScreenMode.Name = "radioButtonUseFullScreenMode"; - this.radioButtonUseFullScreenMode.Size = new System.Drawing.Size(183, 24); + this.radioButtonUseFullScreenMode.Size = new System.Drawing.Size(124, 17); this.radioButtonUseFullScreenMode.TabIndex = 1; this.radioButtonUseFullScreenMode.Text = "Use full screen mode"; this.toolTip1.SetToolTip(this.radioButtonUseFullScreenMode, "Display the SEB browser full screen."); @@ -4617,10 +4669,10 @@ namespace SebWindowsConfig // radioButtonTouchOptimized // this.radioButtonTouchOptimized.AutoSize = true; - this.radioButtonTouchOptimized.Location = new System.Drawing.Point(22, 95); - this.radioButtonTouchOptimized.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.radioButtonTouchOptimized.Location = new System.Drawing.Point(15, 62); + this.radioButtonTouchOptimized.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.radioButtonTouchOptimized.Name = "radioButtonTouchOptimized"; - this.radioButtonTouchOptimized.Size = new System.Drawing.Size(150, 24); + this.radioButtonTouchOptimized.Size = new System.Drawing.Size(103, 17); this.radioButtonTouchOptimized.TabIndex = 64; this.radioButtonTouchOptimized.Text = "Touch optimized"; this.toolTip1.SetToolTip(this.radioButtonTouchOptimized, resources.GetString("radioButtonTouchOptimized.ToolTip")); @@ -4636,11 +4688,11 @@ namespace SebWindowsConfig this.groupBoxMainBrowserWindow.Controls.Add(this.labelMainWindowPosition); this.groupBoxMainBrowserWindow.Controls.Add(this.listBoxMainBrowserWindowPositioning); this.groupBoxMainBrowserWindow.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.groupBoxMainBrowserWindow.Location = new System.Drawing.Point(34, 182); - this.groupBoxMainBrowserWindow.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.groupBoxMainBrowserWindow.Location = new System.Drawing.Point(23, 118); + this.groupBoxMainBrowserWindow.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.groupBoxMainBrowserWindow.Name = "groupBoxMainBrowserWindow"; - this.groupBoxMainBrowserWindow.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.groupBoxMainBrowserWindow.Size = new System.Drawing.Size(750, 122); + this.groupBoxMainBrowserWindow.Padding = new System.Windows.Forms.Padding(2, 1, 2, 1); + this.groupBoxMainBrowserWindow.Size = new System.Drawing.Size(500, 79); this.groupBoxMainBrowserWindow.TabIndex = 57; this.groupBoxMainBrowserWindow.TabStop = false; this.groupBoxMainBrowserWindow.Text = "Main browser window size and position"; @@ -4648,10 +4700,10 @@ namespace SebWindowsConfig // comboBoxMainBrowserWindowHeight // this.comboBoxMainBrowserWindowHeight.FormattingEnabled = true; - this.comboBoxMainBrowserWindowHeight.Location = new System.Drawing.Point(106, 74); - this.comboBoxMainBrowserWindowHeight.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.comboBoxMainBrowserWindowHeight.Location = new System.Drawing.Point(71, 48); + this.comboBoxMainBrowserWindowHeight.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.comboBoxMainBrowserWindowHeight.Name = "comboBoxMainBrowserWindowHeight"; - this.comboBoxMainBrowserWindowHeight.Size = new System.Drawing.Size(136, 28); + this.comboBoxMainBrowserWindowHeight.Size = new System.Drawing.Size(92, 21); this.comboBoxMainBrowserWindowHeight.TabIndex = 1; this.toolTip1.SetToolTip(this.comboBoxMainBrowserWindowHeight, "Window height in pixel or percentage of total screen height."); this.comboBoxMainBrowserWindowHeight.SelectedIndexChanged += new System.EventHandler(this.comboBoxMainBrowserWindowHeight_SelectedIndexChanged); @@ -4660,10 +4712,10 @@ namespace SebWindowsConfig // comboBoxMainBrowserWindowWidth // this.comboBoxMainBrowserWindowWidth.FormattingEnabled = true; - this.comboBoxMainBrowserWindowWidth.Location = new System.Drawing.Point(106, 30); - this.comboBoxMainBrowserWindowWidth.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.comboBoxMainBrowserWindowWidth.Location = new System.Drawing.Point(71, 19); + this.comboBoxMainBrowserWindowWidth.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.comboBoxMainBrowserWindowWidth.Name = "comboBoxMainBrowserWindowWidth"; - this.comboBoxMainBrowserWindowWidth.Size = new System.Drawing.Size(136, 28); + this.comboBoxMainBrowserWindowWidth.Size = new System.Drawing.Size(92, 21); this.comboBoxMainBrowserWindowWidth.TabIndex = 0; this.toolTip1.SetToolTip(this.comboBoxMainBrowserWindowWidth, "Window width in pixel or percentage of total screen width."); this.comboBoxMainBrowserWindowWidth.SelectedIndexChanged += new System.EventHandler(this.comboBoxMainBrowserWindowWidth_SelectedIndexChanged); @@ -4673,9 +4725,10 @@ namespace SebWindowsConfig // this.labelMainWindowHeight.AutoSize = true; this.labelMainWindowHeight.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.labelMainWindowHeight.Location = new System.Drawing.Point(36, 79); + this.labelMainWindowHeight.Location = new System.Drawing.Point(24, 51); + this.labelMainWindowHeight.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelMainWindowHeight.Name = "labelMainWindowHeight"; - this.labelMainWindowHeight.Size = new System.Drawing.Size(56, 20); + this.labelMainWindowHeight.Size = new System.Drawing.Size(38, 13); this.labelMainWindowHeight.TabIndex = 60; this.labelMainWindowHeight.Text = "Height"; // @@ -4683,9 +4736,10 @@ namespace SebWindowsConfig // this.labelMainWindowWidth.AutoSize = true; this.labelMainWindowWidth.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.labelMainWindowWidth.Location = new System.Drawing.Point(36, 36); + this.labelMainWindowWidth.Location = new System.Drawing.Point(24, 23); + this.labelMainWindowWidth.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelMainWindowWidth.Name = "labelMainWindowWidth"; - this.labelMainWindowWidth.Size = new System.Drawing.Size(50, 20); + this.labelMainWindowWidth.Size = new System.Drawing.Size(35, 13); this.labelMainWindowWidth.TabIndex = 59; this.labelMainWindowWidth.Text = "Width"; // @@ -4693,9 +4747,10 @@ namespace SebWindowsConfig // this.labelMainWindowPosition.AutoSize = true; this.labelMainWindowPosition.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.labelMainWindowPosition.Location = new System.Drawing.Point(406, 53); + this.labelMainWindowPosition.Location = new System.Drawing.Point(271, 34); + this.labelMainWindowPosition.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelMainWindowPosition.Name = "labelMainWindowPosition"; - this.labelMainWindowPosition.Size = new System.Drawing.Size(161, 20); + this.labelMainWindowPosition.Size = new System.Drawing.Size(107, 13); this.labelMainWindowPosition.TabIndex = 58; this.labelMainWindowPosition.Text = "Horizontal positioning"; this.labelMainWindowPosition.TextAlign = System.Drawing.ContentAlignment.TopRight; @@ -4704,11 +4759,10 @@ namespace SebWindowsConfig // this.listBoxMainBrowserWindowPositioning.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.listBoxMainBrowserWindowPositioning.FormattingEnabled = true; - this.listBoxMainBrowserWindowPositioning.ItemHeight = 20; - this.listBoxMainBrowserWindowPositioning.Location = new System.Drawing.Point(576, 30); - this.listBoxMainBrowserWindowPositioning.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.listBoxMainBrowserWindowPositioning.Location = new System.Drawing.Point(384, 19); + this.listBoxMainBrowserWindowPositioning.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.listBoxMainBrowserWindowPositioning.Name = "listBoxMainBrowserWindowPositioning"; - this.listBoxMainBrowserWindowPositioning.Size = new System.Drawing.Size(134, 64); + this.listBoxMainBrowserWindowPositioning.Size = new System.Drawing.Size(91, 43); this.listBoxMainBrowserWindowPositioning.TabIndex = 2; this.toolTip1.SetToolTip(this.listBoxMainBrowserWindowPositioning, "Position browser window on the left, right or centered"); this.listBoxMainBrowserWindowPositioning.SelectedIndexChanged += new System.EventHandler(this.listBoxMainBrowserWindowPositioning_SelectedIndexChanged); @@ -4742,10 +4796,10 @@ namespace SebWindowsConfig this.tabPageConfigFile.Controls.Add(this.buttonRevertToLastOpened); this.tabPageConfigFile.ImageIndex = 1; this.tabPageConfigFile.Location = new System.Drawing.Point(4, 39); - this.tabPageConfigFile.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.tabPageConfigFile.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.tabPageConfigFile.Name = "tabPageConfigFile"; - this.tabPageConfigFile.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.tabPageConfigFile.Size = new System.Drawing.Size(1867, 948); + this.tabPageConfigFile.Padding = new System.Windows.Forms.Padding(2, 1, 2, 1); + this.tabPageConfigFile.Size = new System.Drawing.Size(1242, 601); this.tabPageConfigFile.TabIndex = 6; this.tabPageConfigFile.Text = "Config File"; this.tabPageConfigFile.UseVisualStyleBackColor = true; @@ -4754,11 +4808,11 @@ namespace SebWindowsConfig // this.checkBoxUseOldAsymmetricOnlyEncryption.AutoSize = true; this.checkBoxUseOldAsymmetricOnlyEncryption.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxUseOldAsymmetricOnlyEncryption.Location = new System.Drawing.Point(392, 271); - this.checkBoxUseOldAsymmetricOnlyEncryption.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxUseOldAsymmetricOnlyEncryption.Location = new System.Drawing.Point(261, 176); + this.checkBoxUseOldAsymmetricOnlyEncryption.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxUseOldAsymmetricOnlyEncryption.Name = "checkBoxUseOldAsymmetricOnlyEncryption"; this.checkBoxUseOldAsymmetricOnlyEncryption.RightToLeft = System.Windows.Forms.RightToLeft.Yes; - this.checkBoxUseOldAsymmetricOnlyEncryption.Size = new System.Drawing.Size(392, 24); + this.checkBoxUseOldAsymmetricOnlyEncryption.Size = new System.Drawing.Size(263, 17); this.checkBoxUseOldAsymmetricOnlyEncryption.TabIndex = 73; this.checkBoxUseOldAsymmetricOnlyEncryption.Text = "Use old asymmetric-only encryption (for SEB < 2.2)"; this.toolTip1.SetToolTip(this.checkBoxUseOldAsymmetricOnlyEncryption, "The new asymmetric/symmetric encryption is much faster especially for large confi" + @@ -4769,10 +4823,10 @@ namespace SebWindowsConfig // buttonConfigureClient // this.buttonConfigureClient.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.buttonConfigureClient.Location = new System.Drawing.Point(570, 555); - this.buttonConfigureClient.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.buttonConfigureClient.Location = new System.Drawing.Point(380, 361); + this.buttonConfigureClient.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.buttonConfigureClient.Name = "buttonConfigureClient"; - this.buttonConfigureClient.Size = new System.Drawing.Size(214, 49); + this.buttonConfigureClient.Size = new System.Drawing.Size(143, 32); this.buttonConfigureClient.TabIndex = 72; this.buttonConfigureClient.Text = "Configure Client"; this.toolTip1.SetToolTip(this.buttonConfigureClient, "Configure client using current settings (overwriting current local settings)"); @@ -4782,19 +4836,20 @@ namespace SebWindowsConfig // label8 // this.label8.AutoSize = true; - this.label8.Location = new System.Drawing.Point(564, 455); + this.label8.Location = new System.Drawing.Point(376, 296); + this.label8.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label8.Name = "label8"; - this.label8.Size = new System.Drawing.Size(188, 20); + this.label8.Size = new System.Drawing.Size(125, 13); this.label8.TabIndex = 71; this.label8.Text = "Use Current Settings to..."; // // buttonEditDuplicate // this.buttonEditDuplicate.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.buttonEditDuplicate.Location = new System.Drawing.Point(570, 491); - this.buttonEditDuplicate.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.buttonEditDuplicate.Location = new System.Drawing.Point(380, 319); + this.buttonEditDuplicate.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.buttonEditDuplicate.Name = "buttonEditDuplicate"; - this.buttonEditDuplicate.Size = new System.Drawing.Size(214, 49); + this.buttonEditDuplicate.Size = new System.Drawing.Size(143, 32); this.buttonEditDuplicate.TabIndex = 69; this.buttonEditDuplicate.Text = "Edit Duplicate"; this.toolTip1.SetToolTip(this.buttonEditDuplicate, "Create duplicate of current settings for editing"); @@ -4804,10 +4859,10 @@ namespace SebWindowsConfig // buttonApplyAndStartSEB // this.buttonApplyAndStartSEB.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.buttonApplyAndStartSEB.Location = new System.Drawing.Point(570, 622); - this.buttonApplyAndStartSEB.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.buttonApplyAndStartSEB.Location = new System.Drawing.Point(380, 404); + this.buttonApplyAndStartSEB.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.buttonApplyAndStartSEB.Name = "buttonApplyAndStartSEB"; - this.buttonApplyAndStartSEB.Size = new System.Drawing.Size(214, 49); + this.buttonApplyAndStartSEB.Size = new System.Drawing.Size(143, 32); this.buttonApplyAndStartSEB.TabIndex = 70; this.buttonApplyAndStartSEB.Text = "Apply and Start SEB"; this.toolTip1.SetToolTip(this.buttonApplyAndStartSEB, "Save current settings and start SEB using them"); @@ -4818,10 +4873,10 @@ namespace SebWindowsConfig // buttonRevertToLocalClientSettings // this.buttonRevertToLocalClientSettings.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.buttonRevertToLocalClientSettings.Location = new System.Drawing.Point(306, 555); - this.buttonRevertToLocalClientSettings.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.buttonRevertToLocalClientSettings.Location = new System.Drawing.Point(204, 361); + this.buttonRevertToLocalClientSettings.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.buttonRevertToLocalClientSettings.Name = "buttonRevertToLocalClientSettings"; - this.buttonRevertToLocalClientSettings.Size = new System.Drawing.Size(214, 49); + this.buttonRevertToLocalClientSettings.Size = new System.Drawing.Size(143, 32); this.buttonRevertToLocalClientSettings.TabIndex = 68; this.buttonRevertToLocalClientSettings.Text = "Local Client Settings"; this.toolTip1.SetToolTip(this.buttonRevertToLocalClientSettings, "Revert to the local client settings"); @@ -4831,18 +4886,20 @@ namespace SebWindowsConfig // label7 // this.label7.AutoSize = true; - this.label7.Location = new System.Drawing.Point(303, 455); + this.label7.Location = new System.Drawing.Point(202, 296); + this.label7.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label7.Name = "label7"; - this.label7.Size = new System.Drawing.Size(149, 20); + this.label7.Size = new System.Drawing.Size(101, 13); this.label7.TabIndex = 67; this.label7.Text = "Revert Settings to..."; // // label6 // this.label6.AutoSize = true; - this.label6.Location = new System.Drawing.Point(40, 455); + this.label6.Location = new System.Drawing.Point(27, 296); + this.label6.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label6.Name = "label6"; - this.label6.Size = new System.Drawing.Size(141, 20); + this.label6.Size = new System.Drawing.Size(94, 13); this.label6.TabIndex = 66; this.label6.Text = "Config File Editing:"; this.label6.Click += new System.EventHandler(this.label6_Click); @@ -4850,10 +4907,10 @@ namespace SebWindowsConfig // buttonSaveSettings // this.buttonSaveSettings.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.buttonSaveSettings.Location = new System.Drawing.Point(44, 555); - this.buttonSaveSettings.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.buttonSaveSettings.Location = new System.Drawing.Point(29, 361); + this.buttonSaveSettings.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.buttonSaveSettings.Name = "buttonSaveSettings"; - this.buttonSaveSettings.Size = new System.Drawing.Size(214, 49); + this.buttonSaveSettings.Size = new System.Drawing.Size(143, 32); this.buttonSaveSettings.TabIndex = 65; this.buttonSaveSettings.Text = "Save Settings"; this.toolTip1.SetToolTip(this.buttonSaveSettings, "Save settings file with same name"); @@ -4865,9 +4922,10 @@ namespace SebWindowsConfig this.labelSettingsPasswordCompare.AutoSize = true; this.labelSettingsPasswordCompare.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.labelSettingsPasswordCompare.ForeColor = System.Drawing.Color.Red; - this.labelSettingsPasswordCompare.Location = new System.Drawing.Point(510, 406); + this.labelSettingsPasswordCompare.Location = new System.Drawing.Point(340, 264); + this.labelSettingsPasswordCompare.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelSettingsPasswordCompare.Name = "labelSettingsPasswordCompare"; - this.labelSettingsPasswordCompare.Size = new System.Drawing.Size(279, 20); + this.labelSettingsPasswordCompare.Size = new System.Drawing.Size(187, 13); this.labelSettingsPasswordCompare.TabIndex = 64; this.labelSettingsPasswordCompare.Text = "Please enter correct confirm password"; this.labelSettingsPasswordCompare.TextAlign = System.Drawing.ContentAlignment.MiddleRight; @@ -4876,10 +4934,10 @@ namespace SebWindowsConfig // buttonSaveSettingsAs // this.buttonSaveSettingsAs.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.buttonSaveSettingsAs.Location = new System.Drawing.Point(44, 622); - this.buttonSaveSettingsAs.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.buttonSaveSettingsAs.Location = new System.Drawing.Point(29, 404); + this.buttonSaveSettingsAs.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.buttonSaveSettingsAs.Name = "buttonSaveSettingsAs"; - this.buttonSaveSettingsAs.Size = new System.Drawing.Size(214, 49); + this.buttonSaveSettingsAs.Size = new System.Drawing.Size(143, 32); this.buttonSaveSettingsAs.TabIndex = 9; this.buttonSaveSettingsAs.Text = "Save Settings As..."; this.toolTip1.SetToolTip(this.buttonSaveSettingsAs, "Choose file name and destination to save settings"); @@ -4889,10 +4947,10 @@ namespace SebWindowsConfig // buttonOpenSettings // this.buttonOpenSettings.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.buttonOpenSettings.Location = new System.Drawing.Point(44, 491); - this.buttonOpenSettings.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.buttonOpenSettings.Location = new System.Drawing.Point(29, 319); + this.buttonOpenSettings.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.buttonOpenSettings.Name = "buttonOpenSettings"; - this.buttonOpenSettings.Size = new System.Drawing.Size(214, 49); + this.buttonOpenSettings.Size = new System.Drawing.Size(143, 32); this.buttonOpenSettings.TabIndex = 8; this.buttonOpenSettings.Text = "Open Settings..."; this.toolTip1.SetToolTip(this.buttonOpenSettings, "Open a settings file for editing"); @@ -4902,18 +4960,20 @@ namespace SebWindowsConfig // labelUseEither // this.labelUseEither.AutoSize = true; - this.labelUseEither.Location = new System.Drawing.Point(40, 302); + this.labelUseEither.Location = new System.Drawing.Point(27, 196); + this.labelUseEither.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelUseEither.Name = "labelUseEither"; - this.labelUseEither.Size = new System.Drawing.Size(405, 20); + this.labelUseEither.Size = new System.Drawing.Size(272, 13); this.labelUseEither.TabIndex = 59; this.labelUseEither.Text = "Use either a cryptographic identity or a password or both"; // // labelCryptoIdentity // this.labelCryptoIdentity.AutoSize = true; - this.labelCryptoIdentity.Location = new System.Drawing.Point(40, 205); + this.labelCryptoIdentity.Location = new System.Drawing.Point(27, 133); + this.labelCryptoIdentity.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelCryptoIdentity.Name = "labelCryptoIdentity"; - this.labelCryptoIdentity.Size = new System.Drawing.Size(430, 20); + this.labelCryptoIdentity.Size = new System.Drawing.Size(287, 13); this.labelCryptoIdentity.TabIndex = 58; this.labelCryptoIdentity.Text = "Choose identity to be used for encrypting SEB settings file..."; // @@ -4921,10 +4981,10 @@ namespace SebWindowsConfig // this.comboBoxCryptoIdentity.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboBoxCryptoIdentity.FormattingEnabled = true; - this.comboBoxCryptoIdentity.Location = new System.Drawing.Point(44, 234); - this.comboBoxCryptoIdentity.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.comboBoxCryptoIdentity.Location = new System.Drawing.Point(29, 152); + this.comboBoxCryptoIdentity.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.comboBoxCryptoIdentity.Name = "comboBoxCryptoIdentity"; - this.comboBoxCryptoIdentity.Size = new System.Drawing.Size(739, 28); + this.comboBoxCryptoIdentity.Size = new System.Drawing.Size(494, 21); this.comboBoxCryptoIdentity.TabIndex = 3; this.toolTip1.SetToolTip(this.comboBoxCryptoIdentity, resources.GetString("comboBoxCryptoIdentity.ToolTip")); this.comboBoxCryptoIdentity.SelectedIndexChanged += new System.EventHandler(this.comboBoxCryptoIdentity_SelectedIndexChanged); @@ -4934,9 +4994,10 @@ namespace SebWindowsConfig // this.labelConfirmSettingsPassword.AutoSize = true; this.labelConfirmSettingsPassword.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.labelConfirmSettingsPassword.Location = new System.Drawing.Point(303, 375); + this.labelConfirmSettingsPassword.Location = new System.Drawing.Point(202, 244); + this.labelConfirmSettingsPassword.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelConfirmSettingsPassword.Name = "labelConfirmSettingsPassword"; - this.labelConfirmSettingsPassword.Size = new System.Drawing.Size(196, 20); + this.labelConfirmSettingsPassword.Size = new System.Drawing.Size(129, 13); this.labelConfirmSettingsPassword.TabIndex = 56; this.labelConfirmSettingsPassword.Text = "Confirm settings password"; // @@ -4944,20 +5005,21 @@ namespace SebWindowsConfig // this.labelSettingsPassword.AutoSize = true; this.labelSettingsPassword.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.labelSettingsPassword.Location = new System.Drawing.Point(357, 340); + this.labelSettingsPassword.Location = new System.Drawing.Point(238, 221); + this.labelSettingsPassword.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelSettingsPassword.Name = "labelSettingsPassword"; - this.labelSettingsPassword.Size = new System.Drawing.Size(140, 20); + this.labelSettingsPassword.Size = new System.Drawing.Size(93, 13); this.labelSettingsPassword.TabIndex = 55; this.labelSettingsPassword.Text = "Settings password"; // // textBoxConfirmSettingsPassword // this.textBoxConfirmSettingsPassword.Font = new System.Drawing.Font("Courier New", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.textBoxConfirmSettingsPassword.Location = new System.Drawing.Point(514, 374); - this.textBoxConfirmSettingsPassword.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBoxConfirmSettingsPassword.Location = new System.Drawing.Point(343, 243); + this.textBoxConfirmSettingsPassword.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBoxConfirmSettingsPassword.Name = "textBoxConfirmSettingsPassword"; this.textBoxConfirmSettingsPassword.PasswordChar = '●'; - this.textBoxConfirmSettingsPassword.Size = new System.Drawing.Size(268, 25); + this.textBoxConfirmSettingsPassword.Size = new System.Drawing.Size(180, 19); this.textBoxConfirmSettingsPassword.TabIndex = 5; this.toolTip1.SetToolTip(this.textBoxConfirmSettingsPassword, "Retype the settings password"); this.textBoxConfirmSettingsPassword.WordWrap = false; @@ -4966,11 +5028,11 @@ namespace SebWindowsConfig // textBoxSettingsPassword // this.textBoxSettingsPassword.Font = new System.Drawing.Font("Courier New", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.textBoxSettingsPassword.Location = new System.Drawing.Point(514, 338); - this.textBoxSettingsPassword.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBoxSettingsPassword.Location = new System.Drawing.Point(343, 220); + this.textBoxSettingsPassword.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBoxSettingsPassword.Name = "textBoxSettingsPassword"; this.textBoxSettingsPassword.PasswordChar = '●'; - this.textBoxSettingsPassword.Size = new System.Drawing.Size(268, 25); + this.textBoxSettingsPassword.Size = new System.Drawing.Size(180, 19); this.textBoxSettingsPassword.TabIndex = 4; this.toolTip1.SetToolTip(this.textBoxSettingsPassword, "Password to decrypt the settings file, if one is set then it will be prompted whe" + "n SEB reads the settings."); @@ -4980,9 +5042,10 @@ namespace SebWindowsConfig // labelUseSEBSettingsFileFor // this.labelUseSEBSettingsFileFor.AutoSize = true; - this.labelUseSEBSettingsFileFor.Location = new System.Drawing.Point(40, 40); + this.labelUseSEBSettingsFileFor.Location = new System.Drawing.Point(27, 26); + this.labelUseSEBSettingsFileFor.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelUseSEBSettingsFileFor.Name = "labelUseSEBSettingsFileFor"; - this.labelUseSEBSettingsFileFor.Size = new System.Drawing.Size(194, 20); + this.labelUseSEBSettingsFileFor.Size = new System.Drawing.Size(129, 13); this.labelUseSEBSettingsFileFor.TabIndex = 52; this.labelUseSEBSettingsFileFor.Text = "Use SEB settings file for..."; // @@ -4990,10 +5053,10 @@ namespace SebWindowsConfig // this.radioButtonConfiguringAClient.AutoSize = true; this.radioButtonConfiguringAClient.Checked = true; - this.radioButtonConfiguringAClient.Location = new System.Drawing.Point(68, 112); - this.radioButtonConfiguringAClient.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.radioButtonConfiguringAClient.Location = new System.Drawing.Point(45, 73); + this.radioButtonConfiguringAClient.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.radioButtonConfiguringAClient.Name = "radioButtonConfiguringAClient"; - this.radioButtonConfiguringAClient.Size = new System.Drawing.Size(166, 24); + this.radioButtonConfiguringAClient.Size = new System.Drawing.Size(114, 17); this.radioButtonConfiguringAClient.TabIndex = 1; this.radioButtonConfiguringAClient.TabStop = true; this.radioButtonConfiguringAClient.Text = "configuring a client"; @@ -5004,10 +5067,10 @@ namespace SebWindowsConfig // radioButtonStartingAnExam // this.radioButtonStartingAnExam.AutoSize = true; - this.radioButtonStartingAnExam.Location = new System.Drawing.Point(68, 78); - this.radioButtonStartingAnExam.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.radioButtonStartingAnExam.Location = new System.Drawing.Point(45, 51); + this.radioButtonStartingAnExam.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.radioButtonStartingAnExam.Name = "radioButtonStartingAnExam"; - this.radioButtonStartingAnExam.Size = new System.Drawing.Size(151, 24); + this.radioButtonStartingAnExam.Size = new System.Drawing.Size(102, 17); this.radioButtonStartingAnExam.TabIndex = 0; this.radioButtonStartingAnExam.Text = "starting an exam"; this.toolTip1.SetToolTip(this.radioButtonStartingAnExam, "A settings file saved with this option will start the exam with the according set" + @@ -5019,10 +5082,10 @@ namespace SebWindowsConfig // this.checkBoxAllowPreferencesWindow.AutoSize = true; this.checkBoxAllowPreferencesWindow.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxAllowPreferencesWindow.Location = new System.Drawing.Point(68, 146); - this.checkBoxAllowPreferencesWindow.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxAllowPreferencesWindow.Location = new System.Drawing.Point(45, 95); + this.checkBoxAllowPreferencesWindow.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxAllowPreferencesWindow.Name = "checkBoxAllowPreferencesWindow"; - this.checkBoxAllowPreferencesWindow.Size = new System.Drawing.Size(382, 24); + this.checkBoxAllowPreferencesWindow.Size = new System.Drawing.Size(261, 17); this.checkBoxAllowPreferencesWindow.TabIndex = 2; this.checkBoxAllowPreferencesWindow.Text = "Allow to open preferences window on client (Mac)"; this.toolTip1.SetToolTip(this.checkBoxAllowPreferencesWindow, "Usually you should disable the preference window on exam clients besides for debu" + @@ -5033,10 +5096,10 @@ namespace SebWindowsConfig // buttonRevertToDefaultSettings // this.buttonRevertToDefaultSettings.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.buttonRevertToDefaultSettings.Location = new System.Drawing.Point(306, 491); - this.buttonRevertToDefaultSettings.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.buttonRevertToDefaultSettings.Location = new System.Drawing.Point(204, 319); + this.buttonRevertToDefaultSettings.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.buttonRevertToDefaultSettings.Name = "buttonRevertToDefaultSettings"; - this.buttonRevertToDefaultSettings.Size = new System.Drawing.Size(214, 49); + this.buttonRevertToDefaultSettings.Size = new System.Drawing.Size(143, 32); this.buttonRevertToDefaultSettings.TabIndex = 6; this.buttonRevertToDefaultSettings.Text = "Default Settings"; this.toolTip1.SetToolTip(this.buttonRevertToDefaultSettings, "Revert current settings to SEB defaults"); @@ -5046,10 +5109,10 @@ namespace SebWindowsConfig // buttonRevertToLastOpened // this.buttonRevertToLastOpened.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.buttonRevertToLastOpened.Location = new System.Drawing.Point(306, 622); - this.buttonRevertToLastOpened.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.buttonRevertToLastOpened.Location = new System.Drawing.Point(204, 404); + this.buttonRevertToLastOpened.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.buttonRevertToLastOpened.Name = "buttonRevertToLastOpened"; - this.buttonRevertToLastOpened.Size = new System.Drawing.Size(214, 49); + this.buttonRevertToLastOpened.Size = new System.Drawing.Size(143, 32); this.buttonRevertToLastOpened.TabIndex = 7; this.buttonRevertToLastOpened.Text = "Last Opened"; this.toolTip1.SetToolTip(this.buttonRevertToLastOpened, "Revert to last saved (or opened) settings"); @@ -5080,10 +5143,10 @@ namespace SebWindowsConfig this.tabPageGeneral.Controls.Add(this.labelStartURL); this.tabPageGeneral.ImageIndex = 0; this.tabPageGeneral.Location = new System.Drawing.Point(4, 39); - this.tabPageGeneral.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.tabPageGeneral.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.tabPageGeneral.Name = "tabPageGeneral"; - this.tabPageGeneral.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.tabPageGeneral.Size = new System.Drawing.Size(1867, 948); + this.tabPageGeneral.Padding = new System.Windows.Forms.Padding(2, 1, 2, 1); + this.tabPageGeneral.Size = new System.Drawing.Size(1242, 601); this.tabPageGeneral.TabIndex = 4; this.tabPageGeneral.Text = "General"; this.tabPageGeneral.UseVisualStyleBackColor = true; @@ -5092,10 +5155,9 @@ namespace SebWindowsConfig // this.comboBoxAdditionalResourceStartUrl.DisplayMember = "Value"; this.comboBoxAdditionalResourceStartUrl.FormattingEnabled = true; - this.comboBoxAdditionalResourceStartUrl.Location = new System.Drawing.Point(798, 48); - this.comboBoxAdditionalResourceStartUrl.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.comboBoxAdditionalResourceStartUrl.Location = new System.Drawing.Point(532, 31); this.comboBoxAdditionalResourceStartUrl.Name = "comboBoxAdditionalResourceStartUrl"; - this.comboBoxAdditionalResourceStartUrl.Size = new System.Drawing.Size(514, 28); + this.comboBoxAdditionalResourceStartUrl.Size = new System.Drawing.Size(344, 21); this.comboBoxAdditionalResourceStartUrl.TabIndex = 58; this.comboBoxAdditionalResourceStartUrl.Text = "Choose an embedded resource..."; this.comboBoxAdditionalResourceStartUrl.ValueMember = "Key"; @@ -5107,9 +5169,10 @@ namespace SebWindowsConfig // this.label9.AutoSize = true; this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label9.Location = new System.Drawing.Point(766, 54); + this.label9.Location = new System.Drawing.Point(511, 35); + this.label9.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label9.Name = "label9"; - this.label9.Size = new System.Drawing.Size(23, 20); + this.label9.Size = new System.Drawing.Size(16, 13); this.label9.TabIndex = 57; this.label9.Text = "or"; this.label9.Visible = false; @@ -5119,9 +5182,10 @@ namespace SebWindowsConfig this.labelQuitPasswordCompare.AutoSize = true; this.labelQuitPasswordCompare.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.labelQuitPasswordCompare.ForeColor = System.Drawing.Color.Red; - this.labelQuitPasswordCompare.Location = new System.Drawing.Point(264, 426); + this.labelQuitPasswordCompare.Location = new System.Drawing.Point(176, 277); + this.labelQuitPasswordCompare.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelQuitPasswordCompare.Name = "labelQuitPasswordCompare"; - this.labelQuitPasswordCompare.Size = new System.Drawing.Size(279, 20); + this.labelQuitPasswordCompare.Size = new System.Drawing.Size(187, 13); this.labelQuitPasswordCompare.TabIndex = 56; this.labelQuitPasswordCompare.Text = "Please enter correct confirm password"; this.labelQuitPasswordCompare.TextAlign = System.Drawing.ContentAlignment.MiddleRight; @@ -5132,9 +5196,10 @@ namespace SebWindowsConfig this.labelAdminPasswordCompare.AutoSize = true; this.labelAdminPasswordCompare.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.labelAdminPasswordCompare.ForeColor = System.Drawing.Color.Red; - this.labelAdminPasswordCompare.Location = new System.Drawing.Point(264, 237); + this.labelAdminPasswordCompare.Location = new System.Drawing.Point(176, 154); + this.labelAdminPasswordCompare.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelAdminPasswordCompare.Name = "labelAdminPasswordCompare"; - this.labelAdminPasswordCompare.Size = new System.Drawing.Size(279, 20); + this.labelAdminPasswordCompare.Size = new System.Drawing.Size(187, 13); this.labelAdminPasswordCompare.TabIndex = 55; this.labelAdminPasswordCompare.Text = "Please enter correct confirm password"; this.labelAdminPasswordCompare.TextAlign = System.Drawing.ContentAlignment.MiddleRight; @@ -5148,11 +5213,11 @@ namespace SebWindowsConfig this.groupBoxExitSequence.Controls.Add(this.checkBoxIgnoreExitKeys); this.groupBoxExitSequence.Controls.Add(this.listBoxExitKey2); this.groupBoxExitSequence.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.groupBoxExitSequence.Location = new System.Drawing.Point(798, 160); - this.groupBoxExitSequence.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.groupBoxExitSequence.Location = new System.Drawing.Point(532, 104); + this.groupBoxExitSequence.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.groupBoxExitSequence.Name = "groupBoxExitSequence"; - this.groupBoxExitSequence.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.groupBoxExitSequence.Size = new System.Drawing.Size(180, 335); + this.groupBoxExitSequence.Padding = new System.Windows.Forms.Padding(2, 1, 2, 1); + this.groupBoxExitSequence.Size = new System.Drawing.Size(120, 218); this.groupBoxExitSequence.TabIndex = 11; this.groupBoxExitSequence.TabStop = false; this.groupBoxExitSequence.Text = "Exit Sequence"; @@ -5164,11 +5229,10 @@ namespace SebWindowsConfig // this.listBoxExitKey1.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.listBoxExitKey1.FormattingEnabled = true; - this.listBoxExitKey1.ItemHeight = 20; - this.listBoxExitKey1.Location = new System.Drawing.Point(12, 38); - this.listBoxExitKey1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.listBoxExitKey1.Location = new System.Drawing.Point(8, 25); + this.listBoxExitKey1.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.listBoxExitKey1.Name = "listBoxExitKey1"; - this.listBoxExitKey1.Size = new System.Drawing.Size(44, 244); + this.listBoxExitKey1.Size = new System.Drawing.Size(31, 160); this.listBoxExitKey1.TabIndex = 0; this.listBoxExitKey1.SelectedIndexChanged += new System.EventHandler(this.listBoxExitKey1_SelectedIndexChanged); // @@ -5176,11 +5240,10 @@ namespace SebWindowsConfig // this.listBoxExitKey3.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.listBoxExitKey3.FormattingEnabled = true; - this.listBoxExitKey3.ItemHeight = 20; - this.listBoxExitKey3.Location = new System.Drawing.Point(123, 38); - this.listBoxExitKey3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.listBoxExitKey3.Location = new System.Drawing.Point(82, 25); + this.listBoxExitKey3.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.listBoxExitKey3.Name = "listBoxExitKey3"; - this.listBoxExitKey3.Size = new System.Drawing.Size(44, 244); + this.listBoxExitKey3.Size = new System.Drawing.Size(31, 160); this.listBoxExitKey3.TabIndex = 2; this.listBoxExitKey3.SelectedIndexChanged += new System.EventHandler(this.listBoxExitKey3_SelectedIndexChanged); // @@ -5188,10 +5251,10 @@ namespace SebWindowsConfig // this.checkBoxIgnoreExitKeys.AutoSize = true; this.checkBoxIgnoreExitKeys.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.checkBoxIgnoreExitKeys.Location = new System.Drawing.Point(12, 298); - this.checkBoxIgnoreExitKeys.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxIgnoreExitKeys.Location = new System.Drawing.Point(8, 194); + this.checkBoxIgnoreExitKeys.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxIgnoreExitKeys.Name = "checkBoxIgnoreExitKeys"; - this.checkBoxIgnoreExitKeys.Size = new System.Drawing.Size(145, 24); + this.checkBoxIgnoreExitKeys.Size = new System.Drawing.Size(100, 17); this.checkBoxIgnoreExitKeys.TabIndex = 8; this.checkBoxIgnoreExitKeys.Text = "Ignore exit keys"; this.toolTip1.SetToolTip(this.checkBoxIgnoreExitKeys, "SEB ignores the exit keys and can only be quit manually by entering the quit pass" + @@ -5205,11 +5268,10 @@ namespace SebWindowsConfig // this.listBoxExitKey2.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.listBoxExitKey2.FormattingEnabled = true; - this.listBoxExitKey2.ItemHeight = 20; - this.listBoxExitKey2.Location = new System.Drawing.Point(68, 38); - this.listBoxExitKey2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.listBoxExitKey2.Location = new System.Drawing.Point(45, 25); + this.listBoxExitKey2.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.listBoxExitKey2.Name = "listBoxExitKey2"; - this.listBoxExitKey2.Size = new System.Drawing.Size(44, 244); + this.listBoxExitKey2.Size = new System.Drawing.Size(31, 160); this.listBoxExitKey2.TabIndex = 1; this.listBoxExitKey2.SelectedIndexChanged += new System.EventHandler(this.listBoxExitKey2_SelectedIndexChanged); // @@ -5218,9 +5280,10 @@ namespace SebWindowsConfig this.labelSebServerURL.AutoSize = true; this.labelSebServerURL.Enabled = false; this.labelSebServerURL.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.labelSebServerURL.Location = new System.Drawing.Point(24, 89); + this.labelSebServerURL.Location = new System.Drawing.Point(16, 58); + this.labelSebServerURL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelSebServerURL.Name = "labelSebServerURL"; - this.labelSebServerURL.Size = new System.Drawing.Size(129, 20); + this.labelSebServerURL.Size = new System.Drawing.Size(87, 13); this.labelSebServerURL.TabIndex = 47; this.labelSebServerURL.Text = "SEB Server URL"; this.labelSebServerURL.Visible = false; @@ -5229,10 +5292,10 @@ namespace SebWindowsConfig // this.textBoxSebServerURL.Enabled = false; this.textBoxSebServerURL.Font = new System.Drawing.Font("Courier New", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.textBoxSebServerURL.Location = new System.Drawing.Point(158, 82); - this.textBoxSebServerURL.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBoxSebServerURL.Location = new System.Drawing.Point(105, 53); + this.textBoxSebServerURL.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBoxSebServerURL.Name = "textBoxSebServerURL"; - this.textBoxSebServerURL.Size = new System.Drawing.Size(601, 25); + this.textBoxSebServerURL.Size = new System.Drawing.Size(402, 19); this.textBoxSebServerURL.TabIndex = 1; this.textBoxSebServerURL.Visible = false; this.textBoxSebServerURL.TextChanged += new System.EventHandler(this.textBoxSebServerURL_TextChanged); @@ -5240,11 +5303,11 @@ namespace SebWindowsConfig // textBoxConfirmAdminPassword // this.textBoxConfirmAdminPassword.Font = new System.Drawing.Font("Courier New", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.textBoxConfirmAdminPassword.Location = new System.Drawing.Point(268, 201); - this.textBoxConfirmAdminPassword.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBoxConfirmAdminPassword.Location = new System.Drawing.Point(179, 131); + this.textBoxConfirmAdminPassword.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBoxConfirmAdminPassword.Name = "textBoxConfirmAdminPassword"; this.textBoxConfirmAdminPassword.PasswordChar = '●'; - this.textBoxConfirmAdminPassword.Size = new System.Drawing.Size(268, 25); + this.textBoxConfirmAdminPassword.Size = new System.Drawing.Size(180, 19); this.textBoxConfirmAdminPassword.TabIndex = 3; this.toolTip1.SetToolTip(this.textBoxConfirmAdminPassword, "Retype the administrator password"); this.textBoxConfirmAdminPassword.WordWrap = false; @@ -5253,11 +5316,11 @@ namespace SebWindowsConfig // textBoxAdminPassword // this.textBoxAdminPassword.Font = new System.Drawing.Font("Courier New", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.textBoxAdminPassword.Location = new System.Drawing.Point(268, 161); - this.textBoxAdminPassword.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBoxAdminPassword.Location = new System.Drawing.Point(179, 105); + this.textBoxAdminPassword.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBoxAdminPassword.Name = "textBoxAdminPassword"; this.textBoxAdminPassword.PasswordChar = '●'; - this.textBoxAdminPassword.Size = new System.Drawing.Size(268, 25); + this.textBoxAdminPassword.Size = new System.Drawing.Size(180, 19); this.textBoxAdminPassword.TabIndex = 2; this.toolTip1.SetToolTip(this.textBoxAdminPassword, "Password required to open the configuration file for editing or to enter the pref" + "erences window in SEB MacOSX. It\'s recommended to set one!"); @@ -5267,11 +5330,11 @@ namespace SebWindowsConfig // textBoxConfirmQuitPassword // this.textBoxConfirmQuitPassword.Font = new System.Drawing.Font("Courier New", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.textBoxConfirmQuitPassword.Location = new System.Drawing.Point(268, 393); - this.textBoxConfirmQuitPassword.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBoxConfirmQuitPassword.Location = new System.Drawing.Point(179, 255); + this.textBoxConfirmQuitPassword.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBoxConfirmQuitPassword.Name = "textBoxConfirmQuitPassword"; this.textBoxConfirmQuitPassword.PasswordChar = '●'; - this.textBoxConfirmQuitPassword.Size = new System.Drawing.Size(268, 25); + this.textBoxConfirmQuitPassword.Size = new System.Drawing.Size(180, 19); this.textBoxConfirmQuitPassword.TabIndex = 5; this.toolTip1.SetToolTip(this.textBoxConfirmQuitPassword, "Retype the quit/restart password"); this.textBoxConfirmQuitPassword.WordWrap = false; @@ -5280,11 +5343,11 @@ namespace SebWindowsConfig // textBoxQuitPassword // this.textBoxQuitPassword.Font = new System.Drawing.Font("Courier New", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.textBoxQuitPassword.Location = new System.Drawing.Point(268, 358); - this.textBoxQuitPassword.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBoxQuitPassword.Location = new System.Drawing.Point(179, 233); + this.textBoxQuitPassword.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBoxQuitPassword.Name = "textBoxQuitPassword"; this.textBoxQuitPassword.PasswordChar = '●'; - this.textBoxQuitPassword.Size = new System.Drawing.Size(268, 25); + this.textBoxQuitPassword.Size = new System.Drawing.Size(180, 19); this.textBoxQuitPassword.TabIndex = 4; this.toolTip1.SetToolTip(this.textBoxQuitPassword, "This password is prompted when users try to quit SEB and when the restart exam bu" + "tton is pressed. Not prompted when using a quit link"); @@ -5294,10 +5357,10 @@ namespace SebWindowsConfig // textBoxStartURL // this.textBoxStartURL.Font = new System.Drawing.Font("Courier New", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.textBoxStartURL.Location = new System.Drawing.Point(158, 48); - this.textBoxStartURL.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.textBoxStartURL.Location = new System.Drawing.Point(105, 31); + this.textBoxStartURL.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.textBoxStartURL.Name = "textBoxStartURL"; - this.textBoxStartURL.Size = new System.Drawing.Size(601, 25); + this.textBoxStartURL.Size = new System.Drawing.Size(402, 19); this.textBoxStartURL.TabIndex = 0; this.toolTip1.SetToolTip(this.textBoxStartURL, "Full URL (starting with http:// or https://) of the page to open when SEB is star" + "ted."); @@ -5305,10 +5368,10 @@ namespace SebWindowsConfig // // buttonHelp // - this.buttonHelp.Location = new System.Drawing.Point(268, 591); - this.buttonHelp.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.buttonHelp.Location = new System.Drawing.Point(179, 384); + this.buttonHelp.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.buttonHelp.Name = "buttonHelp"; - this.buttonHelp.Size = new System.Drawing.Size(84, 38); + this.buttonHelp.Size = new System.Drawing.Size(56, 25); this.buttonHelp.TabIndex = 45; this.buttonHelp.Text = "Help"; this.buttonHelp.UseVisualStyleBackColor = true; @@ -5317,10 +5380,10 @@ namespace SebWindowsConfig // // buttonAbout // - this.buttonAbout.Location = new System.Drawing.Point(30, 591); - this.buttonAbout.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.buttonAbout.Location = new System.Drawing.Point(20, 384); + this.buttonAbout.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.buttonAbout.Name = "buttonAbout"; - this.buttonAbout.Size = new System.Drawing.Size(84, 38); + this.buttonAbout.Size = new System.Drawing.Size(56, 25); this.buttonAbout.TabIndex = 42; this.buttonAbout.Text = "About"; this.buttonAbout.UseVisualStyleBackColor = true; @@ -5331,9 +5394,10 @@ namespace SebWindowsConfig // this.labelConfirmAdminPassword.AutoSize = true; this.labelConfirmAdminPassword.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.labelConfirmAdminPassword.Location = new System.Drawing.Point(26, 204); + this.labelConfirmAdminPassword.Location = new System.Drawing.Point(17, 133); + this.labelConfirmAdminPassword.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelConfirmAdminPassword.Name = "labelConfirmAdminPassword"; - this.labelConfirmAdminPassword.Size = new System.Drawing.Size(232, 20); + this.labelConfirmAdminPassword.Size = new System.Drawing.Size(152, 13); this.labelConfirmAdminPassword.TabIndex = 40; this.labelConfirmAdminPassword.Text = "Confirm administrator password"; // @@ -5341,9 +5405,10 @@ namespace SebWindowsConfig // this.labelAdminPassword.AutoSize = true; this.labelAdminPassword.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.labelAdminPassword.Location = new System.Drawing.Point(81, 164); + this.labelAdminPassword.Location = new System.Drawing.Point(54, 107); + this.labelAdminPassword.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelAdminPassword.Name = "labelAdminPassword"; - this.labelAdminPassword.Size = new System.Drawing.Size(175, 20); + this.labelAdminPassword.Size = new System.Drawing.Size(115, 13); this.labelAdminPassword.TabIndex = 38; this.labelAdminPassword.Text = "Administrator password"; // @@ -5351,19 +5416,20 @@ namespace SebWindowsConfig // this.labelConfirmQuitPassword.AutoSize = true; this.labelConfirmQuitPassword.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.labelConfirmQuitPassword.Location = new System.Drawing.Point(38, 399); + this.labelConfirmQuitPassword.Location = new System.Drawing.Point(25, 259); + this.labelConfirmQuitPassword.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelConfirmQuitPassword.Name = "labelConfirmQuitPassword"; - this.labelConfirmQuitPassword.Size = new System.Drawing.Size(216, 20); + this.labelConfirmQuitPassword.Size = new System.Drawing.Size(147, 13); this.labelConfirmQuitPassword.TabIndex = 10; this.labelConfirmQuitPassword.Text = "Confirm quit/unlock password"; // // checkBoxAllowQuit // this.checkBoxAllowQuit.AutoSize = true; - this.checkBoxAllowQuit.Location = new System.Drawing.Point(28, 285); - this.checkBoxAllowQuit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.checkBoxAllowQuit.Location = new System.Drawing.Point(19, 185); + this.checkBoxAllowQuit.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.checkBoxAllowQuit.Name = "checkBoxAllowQuit"; - this.checkBoxAllowQuit.Size = new System.Drawing.Size(192, 24); + this.checkBoxAllowQuit.Size = new System.Drawing.Size(130, 17); this.checkBoxAllowQuit.TabIndex = 6; this.checkBoxAllowQuit.Text = "Allow user to quit SEB"; this.toolTip1.SetToolTip(this.checkBoxAllowQuit, "Users can quit SEB with Control-Q, window close or quit button. Otherwise use a q" + @@ -5375,9 +5441,10 @@ namespace SebWindowsConfig // this.labelQuitPassword.AutoSize = true; this.labelQuitPassword.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.labelQuitPassword.Location = new System.Drawing.Point(88, 366); + this.labelQuitPassword.Location = new System.Drawing.Point(59, 238); + this.labelQuitPassword.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelQuitPassword.Name = "labelQuitPassword"; - this.labelQuitPassword.Size = new System.Drawing.Size(160, 20); + this.labelQuitPassword.Size = new System.Drawing.Size(111, 13); this.labelQuitPassword.TabIndex = 9; this.labelQuitPassword.Text = "Quit/unlock password"; // @@ -5385,9 +5452,10 @@ namespace SebWindowsConfig // this.labelStartURL.AutoSize = true; this.labelStartURL.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.labelStartURL.Location = new System.Drawing.Point(72, 54); + this.labelStartURL.Location = new System.Drawing.Point(48, 35); + this.labelStartURL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.labelStartURL.Name = "labelStartURL"; - this.labelStartURL.Size = new System.Drawing.Size(81, 20); + this.labelStartURL.Size = new System.Drawing.Size(54, 13); this.labelStartURL.TabIndex = 22; this.labelStartURL.Text = "Start URL"; // @@ -5406,11 +5474,11 @@ namespace SebWindowsConfig this.tabControlSebWindowsConfig.Controls.Add(this.tabPageRegistry); this.tabControlSebWindowsConfig.Controls.Add(this.tabPageHookedKeys); this.tabControlSebWindowsConfig.ImageList = this.imageListTabIcons; - this.tabControlSebWindowsConfig.Location = new System.Drawing.Point(12, 34); - this.tabControlSebWindowsConfig.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.tabControlSebWindowsConfig.Location = new System.Drawing.Point(8, 22); + this.tabControlSebWindowsConfig.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.tabControlSebWindowsConfig.Name = "tabControlSebWindowsConfig"; this.tabControlSebWindowsConfig.SelectedIndex = 0; - this.tabControlSebWindowsConfig.Size = new System.Drawing.Size(1875, 991); + this.tabControlSebWindowsConfig.Size = new System.Drawing.Size(1250, 644); this.tabControlSebWindowsConfig.TabIndex = 0; this.tabControlSebWindowsConfig.Selecting += new System.Windows.Forms.TabControlCancelEventHandler(this.tabControlSebWindowsConfig_Selecting); // @@ -5418,10 +5486,10 @@ namespace SebWindowsConfig // this.tabPageAdditionalResources.ImageIndex = 11; this.tabPageAdditionalResources.Location = new System.Drawing.Point(4, 39); - this.tabPageAdditionalResources.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.tabPageAdditionalResources.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.tabPageAdditionalResources.Name = "tabPageAdditionalResources"; - this.tabPageAdditionalResources.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.tabPageAdditionalResources.Size = new System.Drawing.Size(1867, 948); + this.tabPageAdditionalResources.Padding = new System.Windows.Forms.Padding(2, 1, 2, 1); + this.tabPageAdditionalResources.Size = new System.Drawing.Size(1242, 601); this.tabPageAdditionalResources.TabIndex = 28; this.tabPageAdditionalResources.Text = "Additional Resources"; this.tabPageAdditionalResources.UseVisualStyleBackColor = true; @@ -5441,8 +5509,8 @@ namespace SebWindowsConfig this.useSettingsToToolStripMenuItem}); this.menuStrip1.Location = new System.Drawing.Point(0, 0); this.menuStrip1.Name = "menuStrip1"; - this.menuStrip1.Padding = new System.Windows.Forms.Padding(9, 2, 0, 2); - this.menuStrip1.Size = new System.Drawing.Size(1896, 33); + this.menuStrip1.Padding = new System.Windows.Forms.Padding(6, 1, 0, 1); + this.menuStrip1.Size = new System.Drawing.Size(1264, 24); this.menuStrip1.TabIndex = 1; this.menuStrip1.Text = "menuStrip1"; // @@ -5455,7 +5523,7 @@ namespace SebWindowsConfig this.collectLogFilesToolStripMenuItem, this.exitToolStripMenuItem}); this.fileToolStripMenuItem.Name = "fileToolStripMenuItem"; - this.fileToolStripMenuItem.Size = new System.Drawing.Size(50, 29); + this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 22); this.fileToolStripMenuItem.Text = "File"; // // openSettingsToolStripMenuItem @@ -5463,7 +5531,7 @@ namespace SebWindowsConfig this.openSettingsToolStripMenuItem.Name = "openSettingsToolStripMenuItem"; this.openSettingsToolStripMenuItem.ShortcutKeyDisplayString = "Ctrl+O"; this.openSettingsToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O))); - this.openSettingsToolStripMenuItem.Size = new System.Drawing.Size(286, 30); + this.openSettingsToolStripMenuItem.Size = new System.Drawing.Size(200, 22); this.openSettingsToolStripMenuItem.Text = "Open Settings..."; this.openSettingsToolStripMenuItem.Click += new System.EventHandler(this.openSettingsToolStripMenuItem_Click); // @@ -5472,21 +5540,21 @@ namespace SebWindowsConfig this.saveSettingsToolStripMenuItem.Name = "saveSettingsToolStripMenuItem"; this.saveSettingsToolStripMenuItem.ShortcutKeyDisplayString = "Ctrl+S"; this.saveSettingsToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S))); - this.saveSettingsToolStripMenuItem.Size = new System.Drawing.Size(286, 30); + this.saveSettingsToolStripMenuItem.Size = new System.Drawing.Size(200, 22); this.saveSettingsToolStripMenuItem.Text = "Save Settings"; this.saveSettingsToolStripMenuItem.Click += new System.EventHandler(this.saveSettingsToolStripMenuItem_Click); // // saveSettingsAsToolStripMenuItem // this.saveSettingsAsToolStripMenuItem.Name = "saveSettingsAsToolStripMenuItem"; - this.saveSettingsAsToolStripMenuItem.Size = new System.Drawing.Size(286, 30); + this.saveSettingsAsToolStripMenuItem.Size = new System.Drawing.Size(200, 22); this.saveSettingsAsToolStripMenuItem.Text = "Save Settings As..."; this.saveSettingsAsToolStripMenuItem.Click += new System.EventHandler(this.saveSettingsAsToolStripMenuItem_Click); // // collectLogFilesToolStripMenuItem // this.collectLogFilesToolStripMenuItem.Name = "collectLogFilesToolStripMenuItem"; - this.collectLogFilesToolStripMenuItem.Size = new System.Drawing.Size(286, 30); + this.collectLogFilesToolStripMenuItem.Size = new System.Drawing.Size(200, 22); this.collectLogFilesToolStripMenuItem.Text = "Collect Log Files..."; this.collectLogFilesToolStripMenuItem.Visible = false; this.collectLogFilesToolStripMenuItem.Click += new System.EventHandler(this.collectLogFilesToolStripMenuItem_Click); @@ -5495,7 +5563,7 @@ namespace SebWindowsConfig // this.exitToolStripMenuItem.Name = "exitToolStripMenuItem"; this.exitToolStripMenuItem.ShortcutKeyDisplayString = "Alt+F4"; - this.exitToolStripMenuItem.Size = new System.Drawing.Size(286, 30); + this.exitToolStripMenuItem.Size = new System.Drawing.Size(200, 22); this.exitToolStripMenuItem.Text = "Exit"; this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click); // @@ -5506,27 +5574,27 @@ namespace SebWindowsConfig this.localClientSettingsToolStripMenuItem, this.lastOpenedToolStripMenuItem}); this.revertSettingsToToolStripMenuItem.Name = "revertSettingsToToolStripMenuItem"; - this.revertSettingsToToolStripMenuItem.Size = new System.Drawing.Size(142, 29); + this.revertSettingsToToolStripMenuItem.Size = new System.Drawing.Size(97, 22); this.revertSettingsToToolStripMenuItem.Text = "Revert Settings"; // // defaultSettingsToolStripMenuItem // this.defaultSettingsToolStripMenuItem.Name = "defaultSettingsToolStripMenuItem"; - this.defaultSettingsToolStripMenuItem.Size = new System.Drawing.Size(254, 30); + this.defaultSettingsToolStripMenuItem.Size = new System.Drawing.Size(181, 22); this.defaultSettingsToolStripMenuItem.Text = "Default Settings"; this.defaultSettingsToolStripMenuItem.Click += new System.EventHandler(this.defaultSettingsToolStripMenuItem_Click); // // localClientSettingsToolStripMenuItem // this.localClientSettingsToolStripMenuItem.Name = "localClientSettingsToolStripMenuItem"; - this.localClientSettingsToolStripMenuItem.Size = new System.Drawing.Size(254, 30); + this.localClientSettingsToolStripMenuItem.Size = new System.Drawing.Size(181, 22); this.localClientSettingsToolStripMenuItem.Text = "Local Client Settings"; this.localClientSettingsToolStripMenuItem.Click += new System.EventHandler(this.localClientSettingsToolStripMenuItem_Click); // // lastOpenedToolStripMenuItem // this.lastOpenedToolStripMenuItem.Name = "lastOpenedToolStripMenuItem"; - this.lastOpenedToolStripMenuItem.Size = new System.Drawing.Size(254, 30); + this.lastOpenedToolStripMenuItem.Size = new System.Drawing.Size(181, 22); this.lastOpenedToolStripMenuItem.Text = "Last Opened"; this.lastOpenedToolStripMenuItem.Click += new System.EventHandler(this.lastOpenedToolStripMenuItem_Click); // @@ -5537,20 +5605,20 @@ namespace SebWindowsConfig this.configureClientToolStripMenuItem, this.applyAndStartSEBToolStripMenuItem}); this.useSettingsToToolStripMenuItem.Name = "useSettingsToToolStripMenuItem"; - this.useSettingsToToolStripMenuItem.Size = new System.Drawing.Size(122, 29); + this.useSettingsToToolStripMenuItem.Size = new System.Drawing.Size(83, 22); this.useSettingsToToolStripMenuItem.Text = "Use Settings"; // // editDuplicateToolStripMenuItem // this.editDuplicateToolStripMenuItem.Name = "editDuplicateToolStripMenuItem"; - this.editDuplicateToolStripMenuItem.Size = new System.Drawing.Size(284, 30); + this.editDuplicateToolStripMenuItem.Size = new System.Drawing.Size(196, 22); this.editDuplicateToolStripMenuItem.Text = "Edit Duplicate"; this.editDuplicateToolStripMenuItem.Click += new System.EventHandler(this.editDuplicateToolStripMenuItem_Click); // // configureClientToolStripMenuItem // this.configureClientToolStripMenuItem.Name = "configureClientToolStripMenuItem"; - this.configureClientToolStripMenuItem.Size = new System.Drawing.Size(284, 30); + this.configureClientToolStripMenuItem.Size = new System.Drawing.Size(196, 22); this.configureClientToolStripMenuItem.Text = "Configure Client"; this.configureClientToolStripMenuItem.Click += new System.EventHandler(this.configureClientToolStripMenuItem_Click); // @@ -5559,7 +5627,7 @@ namespace SebWindowsConfig this.applyAndStartSEBToolStripMenuItem.Name = "applyAndStartSEBToolStripMenuItem"; this.applyAndStartSEBToolStripMenuItem.ShortcutKeyDisplayString = "F5"; this.applyAndStartSEBToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F5; - this.applyAndStartSEBToolStripMenuItem.Size = new System.Drawing.Size(284, 30); + this.applyAndStartSEBToolStripMenuItem.Size = new System.Drawing.Size(196, 22); this.applyAndStartSEBToolStripMenuItem.Text = "Apply and Start SEB"; this.applyAndStartSEBToolStripMenuItem.Visible = false; this.applyAndStartSEBToolStripMenuItem.Click += new System.EventHandler(this.applyAndStartSEBToolStripMenuItem_Click); @@ -5567,18 +5635,18 @@ namespace SebWindowsConfig // SebWindowsConfigForm // this.AllowDrop = true; - this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F); + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoScroll = true; this.AutoSize = true; this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.ClientSize = new System.Drawing.Size(1896, 1034); + this.ClientSize = new System.Drawing.Size(1264, 672); this.Controls.Add(this.tabControlSebWindowsConfig); this.Controls.Add(this.menuStrip1); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MainMenuStrip = this.menuStrip1; - this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1); this.MaximizeBox = false; this.Name = "SebWindowsConfigForm"; this.Text = "SEB Windows Configuration Editor"; @@ -6086,6 +6154,8 @@ namespace SebWindowsConfig private System.Windows.Forms.Label label18; private System.Windows.Forms.Label label19; private System.Windows.Forms.Label label20; + private System.Windows.Forms.CheckBox checkBoxAllowWindowsUpdate; + private System.Windows.Forms.CheckBox checkBoxAllowChromeNotifications; } } diff --git a/SebWindowsConfig/SebWindowsConfigForm.cs b/SebWindowsConfig/SebWindowsConfigForm.cs index d778d628..b116b403 100644 --- a/SebWindowsConfig/SebWindowsConfigForm.cs +++ b/SebWindowsConfig/SebWindowsConfigForm.cs @@ -763,6 +763,9 @@ namespace SebWindowsConfig textBoxLogDirectoryWin.Text = (String)SEBSettings.settingsCurrent[SEBSettings.KeyLogDirectoryWin]; checkBoxAllowLogAccess.Checked = (Boolean)SEBSettings.settingsCurrent[SEBSettings.KeyAllowApplicationLog]; checkBoxShowLogButton.Checked = (Boolean)SEBSettings.settingsCurrent[SEBSettings.KeyShowApplicationLogButton]; + checkBoxShowLogButton.Enabled = checkBoxAllowLogAccess.Checked; + checkBoxAllowChromeNotifications.Checked = (Boolean)SEBSettings.settingsCurrent[SEBSettings.KeyAllowChromeNotifications]; + checkBoxAllowWindowsUpdate.Checked = (Boolean)SEBSettings.settingsCurrent[SEBSettings.KeyAllowWindowsUpdate]; if (String.IsNullOrEmpty(textBoxLogDirectoryWin.Text)) { @@ -4520,5 +4523,15 @@ namespace SebWindowsConfig { SEBSettings.settingsCurrent[SEBSettings.KeyShowApplicationLogButton] = checkBoxShowLogButton.Checked; } + + private void checkBoxAllowChromeNotifications_CheckedChanged(object sender, EventArgs e) + { + SEBSettings.settingsCurrent[SEBSettings.KeyAllowChromeNotifications] = checkBoxAllowChromeNotifications.Checked; + } + + private void checkBoxAllowWindowsUpdate_CheckedChanged(object sender, EventArgs e) + { + SEBSettings.settingsCurrent[SEBSettings.KeyAllowWindowsUpdate] = checkBoxAllowWindowsUpdate.Checked; + } } } diff --git a/SebWindowsConfig/SebWindowsConfigForm.resx b/SebWindowsConfig/SebWindowsConfigForm.resx index 269e2c1b..714976f0 100644 --- a/SebWindowsConfig/SebWindowsConfigForm.resx +++ b/SebWindowsConfig/SebWindowsConfigForm.resx @@ -130,921 +130,921 @@ AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 - ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAAy - 1gAAAk1TRnQBSQFMAgEBDAEAAfABCgHwAQoBIAEAASABAAT/ASEBAAj/AUIBTQE2BwABNgMAASgDAAGA - AwABgAMAAQEBAAEgBwABAf8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A + ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAAu + 1gAAAk1TRnQBSQFMAgEBDAIAAQsBAAELASABAAEgAQAE/wEhAQAI/wFCAU0BNgcAATYDAAEoAwABgAMA + AYADAAEBAQABIAcAAQH/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A /wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A - /wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A0QABjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGO - AYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEA - Af8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGO - AYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEA - Af8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/BAADPQFpA1gB3QMAAf8DAAH/ - AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/A1oB1QM3AVu4AAMMARADKgFAA0cBgANH - AYADRwGAA0cBgAM6AWADIQEwLAABjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/ - AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGL + /wD/AP8A/wD/AP8A/wD/AP8A/wD/ANEAAY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGL AQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/ AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGL - AQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/Az4BawMAAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wM4AV0QAAMPARQDJwE7AygBPAMo - ATwDKAE8AygBPAMoATwDKAE8AygBPAMoATwDKAE8AygBPAMoATwDKAE8AygBPAMoATwDKAE8AygBPAMo - ATwDKAE8AygBPAMoATwDKAE8AxABFTwAAzoBYANcAc8BrwGsAaoB/wGuAasBqQH/Aa0BqgGoAf8BpAGh - AZ8B/wGgAZ0BmwH/AacBpAGiAf8BqQGmAaQB/wGoAaUBowH/A2IB7wNRAZ8DIQEwIAABjgGLAQAB/wGO - AYsBAAH/AY8BjQEAAf8BkQGPAQAB/wGRAY8BAAH/AZEBjwEAAf8BkQGOAQAB/wGQAY0BAAH/AZEBjwEA - Af8BkQGPAQAB/wGRAY8BAAH/AZEBjgEAAf8BkAGNAQAB/wGRAY8BAAH/AZEBjwEAAf8BkQGPAQAB/wGR - AY4BAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEA - Af8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGO - AYsBAAH/A1IB9AMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA + AQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/ + AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wQAAz0BaQNYAd0DAAH/AwAB/wMA Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8DAAH/AwAB/wNUAe4QAAMyAVEDZwH6A2cB+gNnAfoDZwH6A2cB+gNnAfoDZwH6A2cB+gNnAfoDZwH6 - A2cB+gNnAfoDZwH6A2cB+gNnAfoDZwH6A2cB+gNnAfoDZwH6A2cB+gNnAfoDZwH6AzYBWTQAAzIBUANc - Ad8BsQGvAa0B/wGlAaIBoQH/AZIBjwGOAf8BhgGDAYIB/wGAAU8BTgH/AYABTwFOAf8BgAFPAU4B/wGA - AU8BTgH/AYABTwFOAf8BigGHAYYB/wGWAZMBkgH/AaUBogGgAf8BpgGjAaEB/wNUAa8DFwEgGAABjgGL - AQAB/wGOAYsBAAH/AbsBuQEAAf8C/gH9Af8C/gH9Af8C/gH9Af8C9AHmAf8BwgHAAQAB/wL+Af0B/wL+ - Af0B/wL+Af0B/wLwAd0B/wHGAcQBAAH/Av4B/QH/Av4B/QH/Av4B/QH/AekB6AHOAf8BqwGoAQAB/wGP + Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wNaAdUDNwFbuAADDAEQAyoBQANHAYADRwGA + A0cBgANHAYADOgFgAyEBMCwAAY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGO + AYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEA + Af8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGO + AYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEA + Af8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wM+AWsDAAH/AwAB/wMAAf8DAAH/AwAB/wMA + Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA + Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DOAFdEAADDwEUAycBOwMoATwDKAE8 + AygBPAMoATwDKAE8AygBPAMoATwDKAE8AygBPAMoATwDKAE8AygBPAMoATwDKAE8AygBPAMoATwDKAE8 + AygBPAMoATwDKAE8AygBPAMQARU8AAM6AWADXAHPAa8BrAGqAf8BrgGrAakB/wGtAaoBqAH/AaQBoQGf + Af8BoAGdAZsB/wGnAaQBogH/AakBpgGkAf8BqAGlAaMB/wNiAe8DUQGfAyEBMCAAAY4BiwEAAf8BjgGL + AQAB/wGPAY0BAAH/AZEBjwEAAf8BkQGPAQAB/wGRAY8BAAH/AZEBjgEAAf8BkAGNAQAB/wGRAY8BAAH/ + AZEBjwEAAf8BkQGPAQAB/wGRAY4BAAH/AZABjQEAAf8BkQGPAQAB/wGRAY8BAAH/AZEBjwEAAf8BkQGO + AQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/ + AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGL + AQAB/wNSAfQDAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ + AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ + AwAB/wMAAf8DVAHuEAADMgFRA2QB+gNkAfoDZAH6A2QB+gNkAfoDZAH6A2QB+gNkAfoDZAH6A2QB+gNk + AfoDZAH6A2QB+gNkAfoDZAH6A2QB+gNkAfoDZAH6A2QB+gNkAfoDZAH6A2QB+gM2AVk0AAMyAVADXAHf + AbEBrwGtAf8BpQGiAaEB/wGSAY8BjgH/AYYBgwGCAf8BgAFNAUwB/wGAAU0BTAH/AYABTQFMAf8BgAFN + AUwB/wGAAU0BTAH/AYoBhwGGAf8BlgGTAZIB/wGlAaIBoAH/AaYBowGhAf8DVAGvAxcBIBgAAY4BiwEA + Af8BjgGLAQAB/wG7AbkBAAH/Av4B/QH/Av4B/QH/Av4B/QH/AvQB5gH/AcIBwAEAAf8C/gH9Af8C/gH9 + Af8C/gH9Af8C8AHdAf8BxgHEAQAB/wL+Af0B/wL+Af0B/wL+Af0B/wHpAegBzgH/AasBqAEAAf8BjwGM + AQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/ + AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AwAB/wMAAf8DAAH/ + AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ + AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8QAAM0 + AVRY/wM4AVwsAAMMARADUQGfAbUBsgGwAf8BqQGmAaQB/wGSAY8BjQH/AYQBgQGAAf8BkQGOAYwB/wGZ + AZYBlAH/AY8BjAGKAf8BhAGBAYAB/wGAAU0BTAH/AYABTQFMAf8BgAFNAUwB/wGAAU0BTAH/AYABTQFM + Af8BgAFNAUwB/wGRAY4BjQH/AaQBoQGfAf8DYgHvAzIBUBQAAY4BiwEAAf8BjgGLAQAB/wG7AbkBAAH/ + DAAC9QHoAf8BwgHAAQAB/wwAAvEB3wH/AcYBxAEAAf8MAAHqAekBzwH/AdIB0QGaAf8BvgG8AQAB/wGP AYwBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEA + Af8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AwAB/wMAAf8DAAH/A5oB/wOi + Af8DogH/A6IB/wOiAf8DogH/A6IB/wOiAf8DogH/A6IB/wOiAf8DogH/A6IB/wOiAf8DogH/A6IB/wOi + Af8DogH/A6IB/wOiAf8DogH/A6IB/wOiAf8DogH/A6IB/wOaAf8DAAH/AwAB/wMAAf8QAAMzAVNY/wM3 + AVsoAAMMARADXAHPAbcBtAGyAf8BnwGcAZsB/wGLAYgBhwH/AYkBhgGEAf8BmAGVAZMB/wGpAaYBpAH/ + AacBpAGiAf8BpAGhAZ8B/wGiAZ8BnQH/AZYBkwGRAf8BhQGCAYEB/wGAAU0BTAH/AYABTQFMAf8BgAFN + AUwB/wGAAU0BTAH/AYABTQFMAf8BggFPAU4B/wGdAZoBmAH/AaUBogGgAf8DOgFgEAABjgGLAQAB/wGO + AYsBAAH/AbsBuQEAAf8MAAL1AegB/wHCAcABAAH/DAAC8QHfAf8BxgHEAQAB/wwAAeoB6QHPAf8B0gHR + AZoB/wHdAdwBsgH/AcUBwwEAAf8BjwGMAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/ + AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8DAAH/ + AwAB/wOiAf8DkwH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ + AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/A5MB/wOiAf8DAAH/ + AwAB/xAAAzMBU1j/AzcBWygAA1wBzwG3AbQBsgH/AZsBmAGWAf8BkAGNAYsB/wGNAYoBiQH/AYsBiAGH + Af8BqAGlAaMB/wGqAacBpQH/AacBpAGiAf8BpgGjAaEB/wGjAaABngH/AaIBnwGdAf8BnQGaAZgB/wGN + AYoBiQH/AYEBTgFNAf8BgAFNAUwB/wGAAU0BTAH/AYABTQFMAf8BgAFNAUwB/wGAAU0BTAH/AZgBlQGT + Af8BpQGiAaAB/wM6AWAMAAGOAYsBAAH/AY4BiwEAAf8BuwG5AQAB/wwAAvUB6AH/AcIBwAEAAf8MAALx + Ad8B/wHGAcQBAAH/DAAB6gHpAc8B/wHSAdEBmgH/Ad0B3AGyAf8B3QHcAbIB/wHPAc4BkgH/AY4BiwEA + Af8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGO + AYsBAAH/AY4BiwEAAf8BjgGLAQAB/wMAAf8DmgH/A5EB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA + Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA + Af8DAAH/AwAB/wMAAf8DAAH/A5MB/wOaAf8DAAH/EAADMwFTWP8DNwFbJAADTAGPAbsBuAG3Af8BoQGe + AZwB/wGUAZEBjwH/AZIBjwGNAf8BkAGNAYsB/wGNAYoBiQH/AaoBpwGlAf8BqgGnAaUB/wGoAaUBowH/ + AacBpAGiAf8BpAGhAZ8B/wGjAaABngH/AaEBngGcAf8BoQGeAZwB/wGeAZsBmQH/AZEBjgGMAf8BggFP + AU4B/wGAAU0BTAH/AYABTQFMAf8BgAFNAUwB/wGAAU0BTAH/AZgBlQGTAf8BpQGiAaAB/wMhATAIAAGO + AYsBAAH/AY4BiwEAAf8BnwGcAQAB/wG4AbYBAAH/AbgBtgEAAf8BuAG2AQAB/wG0AbIBAAH/AaEBnwEA + Af8BuAG2AQAB/wG4AbYBAAH/AbgBtgEAAf8BsgGwAQAB/wGnAaQBAAH/Ab4BvQEAAf8BvgG9AQAB/wG+ + Ab0BAAH/AbgBtgEAAf8B0AHPAZUB/wHdAdwBsgH/Ad0B3AGyAf8C6gHQAf8BjgGLAQAB/wGOAYsBAAH/ + AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGL + AQAB/wGOAYsBAAH/AwAB/wOiAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ + AwAB/wMAAf8DAAH/A5UB/wO4Af8DrwH/A4MB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ + AwAB/wMAAf8DAAH/A6IB/wMAAf8QAAMzAVNY/wM3AVsgAAMqAUABvAG6AbgB/wGrAagBpwH/AZgBlQGT + Af8BlgGTAZEB/wGUAZEBjwH/AZIBjwGNAf8BkAGNAYsB/wGrAagBpgH/AasBqAGmAf8BqQGmAaQB/wGn + AaQBogH/AaUBogGgAf8BowGgAZ4B/wGhAZ4BnAH/AaEBngGcAf8BoQGeAZwB/wGhAZ4BnAH/AZsBmAGW + Af8BgQFOAU0B/wGAAU0BTAH/AYABTQFMAf8BgAFNAUwB/wGCAU8BTgH/AaEBngGdAf8DXAHPCAABjgGL + AQAB/wGOAYsBAAH/AbsBuQEAAf8MAAL1AegB/wHCAcABAAH/DAAC8QHfAf8BswGxAQAB/wLmAccB/wHt + AewB1gH/Ae0B7AHWAf8B7QHsAdYB/wHEAcIBAAH/AcwBywGMAf8B3QHcAbIB/wLqAdAB/wGOAYsBAAH/ + AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGL + AQAB/wGOAYsBAAH/AY4BiwEAAf8DAAH/A6IB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ + AwAB/wMAAf8DAAH/A64B/wP2Af8QAAPJAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA + Af8DAAH/A6IB/wMAAf8QAAMzAVNY/wM3AVsgAANZAb8BugG3AbUB/wGdAZoBmAH/AZsBmAGWAf8BmAGV + AZMB/wGWAZMBkQH/AZQBkQGPAf8BkgGPAY0B/wGoAaUBowH/AZ0BmgGZAf8BqgGnAaUB/wGoAaUBowH/ + AaYBowGhAf8BpAGhAZ8B/wGiAZ8BnQH/AaEBngGcAf8BoQGeAZwB/wGhAZ4BnAH/AaEBngGcAf8BhQGC + AYAB/wGAAU0BTAH/AYABTQFMAf8BgAFNAUwB/wGAAU0BTAH/AYoBhwGGAf8BpgGjAaEB/wM6AWAEAAGO + AYsBAAH/AY4BiwEAAf8BuwG5AQAB/wwAAvUB6AH/AcIBwAEAAf8MAALxAd8B/wHMAcsBjQH/AdMB0gGc + Af8B7gHtAdgB/wHuAe0B2AH/Ae4B7QHYAf8B7gHtAdgB/wGnAaQBAAH/AckByAGFAf8C6gHQAf8BjgGL + AQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/ + AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AwAB/wOiAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ + AwAB/wMAAf8DAAH/A8gB/wgAA+MB/wOgAf8DrQH/CAADyAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ + AwAB/wMAAf8DAAH/A6IB/wMAAf8QAAMzAVNY/wM3AVscAAMqAUABwAG9AbwB/wGsAakBqAH/AZ8BnAGa + Af8BnQGaAZgB/wGbAZgBlgH/AZgBlQGTAf8BRgFEAUIB/wERARABDwH/AwAB/wMAAf8BSQFGAUUB/wGp + AaYBpAH/AacBpAGiAf8BpQGiAaAB/wGjAaABngH/AaEBngGcAf8BoQGeAZwB/wGhAZ4BnAH/AaEBngGc + Af8BhQGCAYEB/wGAAU0BTAH/AYABTQFMAf8BgAFNAUwB/wGAAU0BTAH/AYABTQFMAf8BnQGaAZkB/wNc + Ad8EAAGOAYsBAAH/AY4BiwEAAf8BuwG5AQAB/wwAAvUB6AH/AcIBwAEAAf8MAALxAd8B/wHMAcsBjQH/ + AdsB2gGuAf8QAAG6AbgBAAH/AcwBywGMAf8B1gHVAaQB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGO + AYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEA + Af8DAAH/A6IB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wOaAf8IAAOSAf8DAAH/ + AwAB/wMAAf8DAAH/CAADkQH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DogH/AwAB/xAA + AzMBUwj/A/4B/wP+Af8D/gH/A/4B/wP+Af8D/gH/A/4B/wP+Af8D/gH/A/4B/wP+Af8D/gH/A/4B/wP+ + Af8D/gH/A/4B/wP+Af8D/gH/A/4F/wM3AVscAANRAZ8BvQG7AbkB/wGkAaEBnwH/AaIBnwGdAf8BnwGc + AZoB/wGdAZoBmAH/AZsBmAGWAf8BAwIBAf8DAAH/AwAB/wEAAQgBFAH/ASkBMgE3Af8BqgGnAaUB/wGo + AaUBowH/AaYBowGhAf8BpAGhAZ8B/wGiAZ8BnQH/AaEBngGcAf8BoQGeAZwB/wGeAZsBmQH/AYABTQFM + Af8BgAFNAUwB/wGAAU0BTAH/AYABTQFMAf8BgAFNAUwB/wGAAU0BTAH/AYwBiQGIAf8BpwGkAaIB/wMh + ATABjgGLAQAB/wGOAYsBAAH/AbsBuQEAAf8MAAL1AegB/wHCAcABAAH/DAAC8QHfAf8BzAHLAY0B/wHb + AdoBrgH/EAABugG4AQAB/wLdAbMB/wHUAdMBngH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEA + Af8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wMA + Af8DogH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/A94B/wcAAf8DAAH/AwAB/wMA + Af8DAAH/AwAB/wO6Af8EAAPAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wOiAf8DAAH/ + EAADMwFTBP8D/gH/A/0B/wP9Af8D/QH/A/0B/wP9Af8D/QH/A/0B/wP9Af8D/QH/A/0B/wP9Af8D/QH/ + A/0B/wP9Af8D/QH/A/0B/wP9Af8D/QH/A/0F/wM3AVscAANcAd8BtgG0AbIB/wGmAaMBoQH/AaQBoQGf + Af8BogGfAZ0B/wGfAZwBmgH/AZ0BmgGYAf8BKgEoAScB/wMAAf8BDgGPAbgB/wEHAY8BvQH/ATIBjQGk + Af8BqwGoAaYB/wGpAaYBpAH/AacBpAGiAf8BpQGiAaAB/wGjAaABngH/AaEBngGcAf8BoQGeAZwB/wGP + AYwBigH/AYQBgQGAAf8BhAGBAYAB/wGAAU0BTAH/AYABTQFMAf8BgAFNAUwB/wGAAU0BTAH/AYABTQFM + Af8BqAGlAaMB/wNHAYABjgGLAQAB/wGOAYsBAAH/AZ8BnAEAAf8BuAG2AQAB/wG4AbYBAAH/AbgBtgEA + Af8BtAGyAQAB/wGkAaEBAAH/AcsBygGLAf8BywHKAYsB/wHLAcoBiwH/AcgBxwGDAf8BvwG+AQAB/wHb + AdoBrQH/EAABugG4AQAB/wLdAbMB/wLqAdAB/wGOAYsBAAH/AZEBjgEAAf8BzAHLAYwB/wGXAZQBAAH/ + AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8DAAH/ + A6IB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wQAA5IB/wMAAf8DAAH/AwAB/wMA + Af8DAAH/AwAB/wOcAf8EAAPOAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wOiAf8DAAH/ + EAADMwFTA/4B/wP9Af8D/QH/A/0B/wP9Af8D/QH/A/0B/wP9Af8D/QH/A/0B/wP9Af8D/QH/A/0B/wP9 + Af8D/QH/A/0B/wP9Af8D/QH/A/0B/wP9Af8D/QX/AzcBWxgAAwwBEAHEAcEBwAH/AbIBrwGtAf8BqQGm + AaQB/wGmAaMBoQH/AaQBoQGfAf8BogGfAZ0B/wGfAZwBmgH/AYMBgAFOAf8DAAH/ARkBpAHKAf8BBwGQ + Ab0B/wEyAY0BpAH/AawBqQGnAf8BqgGnAaUB/wGoAaUBowH/AaYBowGhAf8BpAGhAZ8B/wGeAZsBmQH/ + AZEBjgGNAf8BlAGRAY8B/wGhAZ4BnAH/AaABnQGbAf8BjwGMAYoB/wGAAU0BTAH/AYABTQFMAf8BgAFN + AUwB/wGAAU0BTAH/AZ8BnAGaAf8DVAGvAY4BiwEAAf8BjgGLAQAB/wG7AbkBAAH/DAAC9QHoAf8BuQG2 + AQAB/wHUAdMBngH/AdkB2AGoAf8B2QHYAagB/wHZAdgBqAH/AcUBxAEAAf8BpAGhAQAB/wHFAcMBAAH/ + AcUBwwEAAf8BxQHDAQAB/wHFAcMBAAH/AbgBtgEAAf8C3QGzAf8C6gHQAf8BkQGOAQAB/wLcAbEB/wQA + AesB6gHRAf8BlwGUAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGL + AQAB/wMAAf8DogH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DhwH/A9YB/wMAAf8DAAH/ + AwAB/wMAAf8DAAH/AwAB/wMAAf8D3AH/BAADswH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA + Af8DogH/AwAB/xAAAzMBUwP9Af8D/QH/A/wB/wP8Af8D/AH/A/wB/wP8Af8D/AH/A/wB/wP8Af8D/AH/ + A/wB/wP8Af8D/AH/A/wB/wP8Af8D/AH/A/wB/wP8Af8D/AH/A/wF/wM3AVsYAAMqAUABxAHCAcEB/wG+ + AbsBugH/AbYBswGxAf8BqwGoAaYB/wGmAaMBoQH/AaQBoQGfAf8BogGfAZ0B/wGfAZwBmgH/AR8BHQEc + Af8BBwGDAZkB/wEVAaYBygH/ATMBkgGnAf8BrQGqAagB/wGrAagBpgH/AaUBogGgAf8BmAGVAZMB/wGP + AYwBiwH/AYkBhgGEAf8BkQGOAY0B/wGhAZ4BnAH/AaEBngGcAf8BoQGeAZwB/wGfAZwBmgH/AYEBTgFN + Af8BgAFNAUwB/wGAAU0BTAH/AYABTQFMAf8BlQGSAZAB/wNZAb8BjgGLAQAB/wGOAYsBAAH/AbsBuQEA + Af8MAAL1AegB/wHIAcYBgwH/AdYB1QGjAf8C8gHiAf8C8gHhAf8C8gHhAf8C8gHhAf8BrgGsAQAB/wHb + AdoBrQH/AvgB7wH/AvgB7wH/AvgB7wH/AdYB1QGjAf8BxQHEAQAB/wHgAd8BuQH/AdwB2wGxAf8MAAHr + AeoB0QH/AZcBlAEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AwAB/wOh + Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA + Af8DAAH/A6kB/wsAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wOhAf8DAAH/EAADMwFT + A/wB/wP7Af8D+gH/A/oB/wP6Af8D+gH/A/oB/wP6Af8D+gH/A/oB/wP6Af8D+gH/A/oB/wP6Af8D+gH/ + A/oB/wP6Af8D+gH/A/oB/wP6Af8D+gH/A/4B/wM3AVsYAAMqAUABxQHDAcIB/wHEAcEBwAH/AcIBwAG+ + Af8BvgG7AboB/wGqAacBpQH/AaYBowGhAf8BpAGhAZ8B/wGkAaEBnwH/AZ8BnAGbAf8BAAEtATgB/wEY + Ab0B2gH/ATUBngGvAf8BrgGrAakB/wGiAZ8BnQH/AZIBjwGNAf8BlAGRAY8B/wGUAZEBkAH/AYsBiAGH + Af8BngGbAZkB/wGhAZ4BnAH/AaEBngGcAf8BoQGeAZwB/wGhAZ4BnAH/AYYBgwGCAf8BgAFNAUwB/wGA + AU0BTAH/AYABTQFMAf8BlQGSAZEB/wNiAe8BjgGLAQAB/wGOAYsBAAH/AbsBuQEAAf8MAAL1AegB/wHI + AcYBgwH/AdkB2AGpAf8QAAG+AbwBAAH/AdMB0gGcAf8BzAHKAYsB/wHbAdoBrgH/AdsB2gGuAf8B2wHa + Aa4B/wG/Ab4BAAH/AbsBugEAAf8C/gH8Af8QAAG6AbgBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/ + AY4BiwEAAf8BjgGLAQAB/wMAAf8DnQH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ + AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/A6gB/wgAA58B/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA + Af8DAAH/AwAB/wOdAf8DAAH/EAADMwFTA/oB/wP5Af8D+QH/A/kB/wP5Af8D+QH/A/kB/wP5Af8D+QH/ + A/kB/wP5Af8D+QH/A/kB/wP5Af8D+QH/A/kB/wP5Af8D+QH/A/kB/wP5Af8D+QH/A/0B/wM3AVsYAAMq + AUABxwHFAcMB/wHFAcMBwgH/AcMBwAG/Af8BvQK7Af8BrwGuAbAB/wGsAaoBqAH/AaYBowGhAf8BqAGl + AaMB/wG3AbQBsgH/ASkBMQEyAf8BDQHEAd8B/wEeAakBvgH/AY4BoQGmAf8BlgGTAZEB/wGUAZEBjwH/ + AZkBlgGUAf8BpwGkAaIB/wGbAZgBlgH/AaMBoAGeAf8BoQGeAZwB/wGhAZ4BnAH/AaEBngGcAf8BoQGe + AZwB/wGGAYMBggH/AYABTQFMAf8BgAFNAUwB/wGAAU0BTAH/AZYBkwGRAf8BqwGoAaYB/wGOAYsBAAH/ + AY4BiwEAAf8BuwG5AQAB/wwAAvUB6AH/AcgBxgGDAf8B2QHYAagB/xAAAb4BvAEAAf8B1gHVAaIB/wHo + AecBygH/DAAB2wHaAa4B/wHXAdYBpQH/AbYBtAEAAf8C/gH8Af8IAAHDAcEBAAH/AY4BiwEAAf8BjgGL + AQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AwAB/wOYAf8DAAH/AwAB/wMAAf8DAAH/ + AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/A7AB/wPrAf8IAAOeAf8DAAH/AwAB/wMA + Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/A5gB/wMAAf8QAAMzAVMD+QH/A/kB/wP4Af8D+AH/ + A/gB/wP4Af8D+AH/A/gB/wP4Af8D+AH/A/gB/wP4Af8D+AH/A/gB/wP4Af8D+AH/A/gB/wP4Af8D+AH/ + A/gB/wP4Af8D/AH/AzcBWxgAAyoBQAGoAcABxQH/AU8BsgHAAf8BHQGiAbwB/wEAAZoBvAH/AQABlwG6 + Af8BQAGpAbkB/wGuAasBqQH/AasBqAGmAf8BuAG1AbMB/wFPAUwBSwH/AQEBjwGhAf8BBgG/AdsB/wEG + AaIBwQH/AUMBkQGdAf8BoAGdAZsB/wGfAZwBmgH/AaYBowGhAf8BpgGjAaEB/wGkAaEBnwH/AaIBnwGd + Af8BoQGeAZwB/wGhAZ4BnAH/AaEBngGcAf8BiAGFAYQB/wGAAU0BTAH/AYABTQFMAf8BgAFNAUwB/wGW + AZMBkgH/A1kBvwGOAYsBAAH/AY4BiwEAAf8BlwGUAQAB/wG6AbgBAAH/Ab0BvAEAAf8BvQG8AQAB/wG7 + AboBAAH/AcYBxAEAAf8B2QHYAagB/xAAAb4BvAEAAf8B1gHVAaIB/wLnAcoB/wwAAdsB2gGuAf8C6gHQ + Af8BjgGLAQAB/wG2AbQBAAH/Af4B/QH8Af8BwwHCAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGO + AYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AwAB/wOUAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA + Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DsAH/CAAD1QH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ + AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/A5QB/wMAAf8QAAMzAVMD+AH/A/cB/wP2Af8D9gH/A/YB/wP2 + Af8D9gH/A/YB/wP2Af8D9gH/A/YB/wP2Af8D9gH/A/YB/wP2Af8D9gH/A/YB/wP2Af8D9gH/A/YB/wP2 + Af8D+gH/AzcBWxAAAzIBUANUAa8BWAJiAe8BAAGaAbwB/wEAAaYBxgH/AQ0BuAHUAf8BJgHGAd8B/wEl + AcIB3AH/AQwBmgG4Af8BugG4AbcB/wG5AbYBtQH/AbUBswGyAf8BPwGEAYoB/wEAAYQBnAH/AQUBuwHX + Af8BAAGuAc8B/wEAAZUBvgH/AU8BlAGeAf8BqgGnAaUB/wGpAaYBpAH/AacBpAGiAf8BpQGiAaAB/wGj + AaABngH/AaEBngGcAf8BoQGeAZwB/wGgAZ0BmwH/AYYBgwGCAf8BggFPAU4B/wGAAU0BTAH/AYABTQFM + Af8BogGfAZ4B/wNZAb8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BrgGsAQAB/wHeAd0BtAH/Ad4B3QG0 + Af8B3gHdAbQB/wHPAc4BkwH/AakBpwEAAf8BvgG8AQAB/wG+AbwBAAH/Ab4BvAEAAf8BvgG8AQAB/wG2 + AbQBAAH/AdYB1QGiAf8C5wHKAf8MAAHbAdoBrgH/AuoB0AH/AY4BiwEAAf8BjgGLAQAB/wGhAZ4BAAH/ + AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGL + AQAB/wMAAf8DjwH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ + A+YB/wsAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DjwH/ + AwAB/xAAAzMBUwP2Af8D9QH/A/UB/wP1Af8D9QH/A/UB/wP1Af8D9QH/A/UB/wP1Af8D9QH/A/UB/wP1 + Af8D9QH/A/UB/wP1Af8D9QH/A/UB/wP1Af8D9QH/A/UB/wP5Af8DNwFbEQABkAG/Af8BAAGMAbcB/wEF + AbIB0gH/AREBxwHhAf8BJgHJAeEB/wGBAccB1wH/AZoBxAHMAf8BOQHKAeEB/wEGAaEBwgH/AToBnQGx + Af8BMwGbAbIB/wEIAZYBtgH/AQABoAHCAf8BAAGuAcwB/wEAAbgB1gH/AQABswHTAf8BAAGaAcEB/wEg + AYgBpQH/AasBqAGmAf8BqgGnAaUB/wGnAaQBogH/AaYBowGhAf8BowGgAZ4B/wGiAZ8BnQH/AaEBngGc + Af8BngGbAZkB/wGHAYQBggH/AYQBgQGAAf8BggFPAU4B/wGAAU0BTAH/AawBqQGnAf8DRwGAAY4BiwEA + Af8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BrQGrAQAB/wL2AewB/wL5AfEB/wL5AfEB/wHrAeoB0QH/ + AdUB1AGhAf8C+QHxAf8C+QHxAf8C+QHxAf8B5wHmAckB/wG2AbQBAAH/AcoByQGGAf8B2gHZAasB/wHa + AdkBqwH/AdoB2QGrAf8BxAHDAQAB/wHqAekBzwH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEA + Af8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wMA + Af8DigH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wPCAf8UAAPgAf8DAAH/ + AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wOKAf8DAAH/EAADMwFTA/UB/wP1 + Af8D9AH/A/QB/wP0Af8D9AH/A/QB/wP0Af8D9AH/A/QB/wP0Af8D9AH/A/QB/wP0Af8D9AH/A/QB/wP0 + Af8D9AH/A/QB/wP0Af8D9AH/A/cB/wM3AVsQAAFYAmIB7wEDAZ4BxQH/AVcCXAHfA1kBvwHJAccBxgH/ + AccBxQHDAf8BxAHCAcEB/wGBAcYB1gH/AR4BvAHWAf8BAAGiAcMB/wEAAa4BzQH/AQABuAHVAf8BAAG6 + AdcB/wEAAboB1wH/AQABugHXAf8BAAG1AdUB/wEEAaEBxwH/ARYBiwGtAf8BqwGoAaYB/wGhAZ4BnAH/ + AakBpgGkAf8BowGgAZ4B/wGcAZkBlwH/AZsBmAGWAf8BnAGZAZcB/wGPAYwBiwH/AYkBhgGEAf8BhwGE + AYIB/wGEAYEBgAH/AZEBjgGNAf8BsAGtAasB/wMhATABjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGL + AQAB/wGOAYsBAAH/AZwBmgEAAf8B3wHeAbYB/wHjAeIBvwH/AeMB4gG/Af8B3wHeAbYB/wG/Ab0BAAH/ + AeMB4gG/Af8B4wHiAb8B/wHjAeIBvwH/AdwB2wGwAf8BwQG/AQAB/wHjAeIBvwH/AeMB4gG/Af8B4wHi + Ab8B/wHbAdoBrgH/AbUBswEAAf8BjgGLAQAB/wGOAYsBAAH/AZcBlAEAAf8BuQG3AQAB/wGOAYsBAAH/ + AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AwAB/wOFAf8DAAH/ + AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8D1QH/HAAD8wH/AwAB/wMAAf8DAAH/AwAB/wMA + Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wOFAf8DAAH/EAADMwFTA/QB/wPzAf8D8gH/A/IB/wPyAf8D8gH/ + A/IB/wPyAf8D8gH/A/IB/wPyAf8D8gH/A/IB/wPyAf8D8gH/A/EB/wPxAf8D8QH/A/EB/wPxAf8D8QH/ + A/MB/wM3AVsQAANRAaABGQGpAc4B/wFaAl0B0wMyAVABywHJAcgB/wHIAcYBxAH/AcUBwwHCAf8BmAHC + AcsB/wE2AcgB4AH/AQABuwHZAf8BAAG7AdgB/wEAAbsB2AH/AQABvAHZAf8BCAHAAdsB/wEXAcUB3wH/ + ARsBwQHdAf8BCwGVAbYB/wEXAUQBiwH/AZ4BmwGZAf8BmwGYAZYB/wGgAZ0BmwH/AZYBkwGRAf8BlAGR + AY8B/wGSAY8BjQH/AZABjQGLAf8BjQGKAYkB/wGLAYgBhwH/AYkBhgGEAf8BhwGEAYIB/wGhAZ4BnAH/ + A1wB3wQAAY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AZ0BmgEA + Af8BpQGjAQAB/wGlAaMBAAH/AaUBowEAAf8BnAGZAQAB/wGjAaEBAAH/AaUBowEAAf8BpQGjAQAB/wGl + AaMBAAH/AZsBmAEAAf8BpAGiAQAB/wGlAaMBAAH/AaUBowEAAf8BpQGjAQAB/wGZAZcBAAH/AY4BiwEA + Af8BlwGVAQAB/wHrAeoB0gH/BAABwQHAAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/ + AY4BiwEAAf8BjgGLAQAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DmAH/ + JAADvgH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8QAAMzAVMD8gH/ + A/EB/wPxAf8D8QH/A/EB/wPxAf8D8QH/A/EB/wPxAf8D8QH/A/EB/wPxAf8D8QH/A/EB/wPwAf8D7QH/ + A+oB/wPoAf8D6AH/A+cB/wPmAf8D5wH/AzgBXBAAAzoBYAEyAbQB1wH/AQEBlgG6Af8DHAEnA1wB3wHK + AcgBxwH/AcYBxAHDAf8BuwHCAcMB/wE1AcoB4QH/AQABvgHaAf8BDAHBAd0B/wEkAccB4AH/ASYByAHh + Af8BLwHCAdcB/wEpAZsBqAH/AQABCgEQAf8DAAH/AYQBggGAAf8BpQGiAaAB/wGqAacBpQH/AaoBpwGl + Af8BoAGdAZsB/wGWAZMBkQH/AZQBkQGPAf8BkgGPAY0B/wGQAY0BiwH/AY0BigGJAf8BiwGIAYcB/wGR + AY4BjAH/AbMBsAGuAf8DRwGABAABjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/ + AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGL + AQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY8BjAEAAf8BkwGQAQAB/wGOAYsBAAH/ + AY4BiwEAAf8BlwGUAQAB/wHrAeoB0gH/DAABwQHAAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGO + AYsBAAH/AY4BiwEAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/A9oB/ysA + Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/EAADMwFTA/EB/wPxAf8D8AH/ + A/AB/wPwAf8D8AH/A/AB/wPwAf8D8AH/A/AB/wPwAf8D8AH/A/AB/wPvAf8D7AH/A+QB/wPYAf8D0AH/ + A88B/wPQAf8DzAH/A8gB/wM1AVcQAAMMARABPAG3AdoB/wERAaEBxQH/A0MBdwMyAVABywHJAcgB/wHJ + AccBxQH/AcUBwwHCAf8BSgHGAdcB/wEQAb8B2wH/AR8BsgHMAf8BjgG+AccB/wGpAbkBvAH/AbkBtwG1 + Af8BtwG0AbIB/wGkAaIBoAH/AasBqAGmAf8BsQGvAa0B/wGvAawBqgH/Aa0BqgGoAf8BqwGoAaYB/wGi + AZ8BnQH/AZgBlQGTAf8BlgGTAZEB/wGUAZEBjwH/AZIBjwGNAf8BkAGNAYsB/wGNAYoBiQH/Aa0BqgGo + Af8DXAHfAwwBEAQAAY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/ + AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGL + AQAB/wGOAYsBAAH/AY4BiwEAAf8BjwGMAQAB/wHUAdMBngH/AeQB4wHBAf8BkwGQAQAB/wGOAYsBAAH/ + Ac0BzAGPAf8QAAL8AfkB/wGdAZsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8DAAH/ + AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/LwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ + AwAB/wMAAf8DAAH/AwAB/wMAAf8QAAMzAVMD8AH/A+8B/wPuAf8D7gH/A+4B/wPuAf8D7gH/A+4B/wPu + Af8D7gH/A+4B/wPuAf8D7gH/A+0B/wPoAf8D1gH/A7gB/wOnAf8DogH/A54B/wOeAf8DYQHmAxQBGxQA + A1QBrwEsAbAB0wH/AVoCXQHTBAADVAGvAcsByQHIAf8BxwHFAcQB/wGTAcMBzAH/ARgBwwHeAf8BAwGa + AboB/wG9AbsBugH/AbwBugG4Af8BugG3AbYB/wG4AbYBtAH/AbYBswGyAf8BtAGyAbAB/wGyAa8BrQH/ + AbABrQGrAf8BrgGrAakB/wGrAagBpgH/AZ4BmwGZAf8BmwGYAZYB/wGYAZUBkwH/AZYBkwGRAf8BlAGR + AY8B/wGSAY8BjQH/AagBpQGjAf8BtQGzAbEB/wMqAUAIAAGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGO + AYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEA + Af8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGPAYwBAAH/AdQB0wGeAf8IAAHkAeMBwgH/ + AZMBkAEAAf8BkQGOAQAB/wHeAd0BtAH/CAAC/AH5Af8BsQGvAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGL + AQAB/wGOAYsBAAH/AY4BiwEAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ + AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ + AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/xAAAzMBUwPuAf8D7QH/A+0B/wPtAf8D7QH/A+0B/wPt + Af8D7QH/A+0B/wPtAf8D7QH/A+0B/wPtAf8D7AH/A+MB/wPKAf8DnQH/A4MB/wOGAf8DmAH/A2IB7wMn + ATsYAAM6AWABQgG6Ad0B/wEQAZMBugH/AxoBJAMMARADXAHPAY0BuAHEAf8BFwGlAcAB/wEAAbkB1gH/ + AQABngG+Af8BmAG2Ab0B/wG9AbsBuQH/Ab0BugG5Af8BuQG3AbUB/wG3AbQBsgH/AbUBsgGxAf8BswGw + Aa4B/wGxAa8BrQH/Aa0BqgGoAf8BogGfAZ0B/wGfAZwBmgH/AZ0BmgGYAf8BmwGYAZYB/wGYAZUBkwH/ + AZYBkwGRAf8BpAGhAZ8B/wG4AbUBswH/A0cBgAwAAY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEA + Af8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGO + AYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AdMB0gGcAf8QAAHkAeMBwgH/AZIBjwEAAf8BkQGO + AQAB/wHeAd0BtAH/AvwB+QH/AbEBrwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGO + AYsBAAH/AY4BiwEAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/LwAB/wMA + Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8QAAMzAVMD7QH/A+0B/wPsAf8D7AH/ + A+wB/wPsAf8D7AH/A+wB/wPsAf8D7AH/A+wB/wPsAf8D7AH/A+sB/wPfAf8DyQH/A+0B/wPwAf8D8QH/ + A2cB8gMrAUIcAAMMARABTQHBAeIB/wEfAZ4BxwH/AVgCWgHAA1EBogEAAZgBuwH/AQABowHEAf8BAAG1 + AdMB/wEMAcIB3gH/AQABsQHQAf8BoQG3Ab0B/wG+AbwBugH/Ab0BuwG5Af8BvQG6AbkB/wG6AbcBtQH/ + AbYBswGxAf8BsgGvAa0B/wGuAasBqQH/AaYBowGhAf8BpAGhAZ8B/wGiAZ8BnQH/AZ8BnAGaAf8BnQGa + AZgB/wGdAZoBmAH/Aa4BqwGpAf8BuQG3AbUB/wNRAZ8QAAGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGO + AYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEA + Af8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wG6AbgBAAH/Av4B/QH/DAABzQHMAY8B/wGO + AYsBAAH/AY4BiwEAAf8BkQGOAQAB/wGoAaYBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEA + Af8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA + Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA + Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/xAAAzMBUwPsAf8D7AH/A+sB/wPrAf8D6wH/ + A+sB/wPrAf8D6wH/A+sB/wPrAf8D6wH/A+sB/wPrAf8D6QH/A9wB/wPHAf8D/gX/A2cB8gMsAUQkAANc + Ac8BOgG2AdsB/wEZAZcBwgH/ARcBngHGAf8BIAGxAdQB/wEsAb0B3AH/ATMBwAHbAf8BTgHCAdQB/wGj + AcIByQH/AcIBwAG+Af8BvwG8AbsB/wG9AbsBuQH/AbsBuAG3Af8BugG3AbUB/wG0AbEBrwH/Aa0BqgGo + Af8BqwGoAaYB/wGpAaYBpAH/AaYBowGhAf8BpAGhAZ8B/wGiAZ8BnQH/AacBpAGiAf8BuAG2AbQB/wG8 + AbkBuAH/A0ABcBQAAY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/ + AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGL + AQAB/wGOAYsBAAH/AY4BiwEAAf8BugG4AQAB/wL+Af0B/wQAAc0BzAGPAf8BjgGLAQAB/wGOAYsBAAH/ + AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGL + AQAB/wGOAYsBAAH/AY4BiwEAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ + AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ + AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/xAAAzMBUwPqAf8D6gH/A+kB/wPpAf8D6QH/A+kB/wPp + Af8D6QH/A+kB/wPpAf8D6QH/A+kB/wPpAf8D5gH/A9gB/wPGAf8D+AH/A2cB8gMtAUUoAANAAXABiwHK + AegB/wFJAb8B4QH/AUUBuwHeAf8DVAGvAzoBYAMMARADRwGAA2IB7wHLAckByAH/AcYBxAHDAf8BwQG/ + Ab0B/wG8AbkBuAH/AboBtwG2Af8BuQG2AbQB/wGvAawBqgH/Aa0BqgGoAf8BqwGoAaYB/wGsAakBpwH/ + AbABrQGsAf8BuwG4AbYB/wG/AbwBuwH/A1wBzwMhATAYAAGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGO + AYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEA + Af8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BugG4AQAB/wHN + AcsBjgH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEA Af8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8DAAH/AwAB/wMA Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/xAA - AzQBVFj/AzgBXCwAAwwBEANRAZ8BtQGyAbAB/wGpAaYBpAH/AZIBjwGNAf8BhAGBAYAB/wGRAY4BjAH/ - AZkBlgGUAf8BjwGMAYoB/wGEAYEBgAH/AYABTwFOAf8BgAFPAU4B/wGAAU8BTgH/AYABTwFOAf8BgAFP - AU4B/wGAAU8BTgH/AZEBjgGNAf8BpAGhAZ8B/wNiAe8DMgFQFAABjgGLAQAB/wGOAYsBAAH/AbsBuQEA - Af8MAAL1AegB/wHCAcABAAH/DAAC8QHfAf8BxgHEAQAB/wwAAeoB6QHPAf8B0gHRAZoB/wG+AbwBAAH/ - AY8BjAEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGL - AQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8DAAH/AwAB/wMAAf8DmgH/ - A6IB/wOiAf8DogH/A6IB/wOiAf8DogH/A6IB/wOiAf8DogH/A6IB/wOiAf8DogH/A6IB/wOiAf8DogH/ - A6IB/wOiAf8DogH/A6IB/wOiAf8DogH/A6IB/wOiAf8DogH/A5oB/wMAAf8DAAH/AwAB/xAAAzMBU1j/ - AzcBWygAAwwBEANcAc8BtwG0AbIB/wGfAZwBmwH/AYsBiAGHAf8BiQGGAYQB/wGYAZUBkwH/AakBpgGk - Af8BpwGkAaIB/wGkAaEBnwH/AaIBnwGdAf8BlgGTAZEB/wGFAYIBgQH/AYABTwFOAf8BgAFPAU4B/wGA - AU8BTgH/AYABTwFOAf8BgAFPAU4B/wGCAVEBUAH/AZ0BmgGYAf8BpQGiAaAB/wM6AWAQAAGOAYsBAAH/ - AY4BiwEAAf8BuwG5AQAB/wwAAvUB6AH/AcIBwAEAAf8MAALxAd8B/wHGAcQBAAH/DAAB6gHpAc8B/wHS - AdEBmgH/Ad0B3AGyAf8BxQHDAQAB/wGPAYwBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEA - Af8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wMA - Af8DAAH/A6IB/wOTAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DkwH/A6IB/wMA - Af8DAAH/EAADMwFTWP8DNwFbKAADXAHPAbcBtAGyAf8BmwGYAZYB/wGQAY0BiwH/AY0BigGJAf8BiwGI - AYcB/wGoAaUBowH/AaoBpwGlAf8BpwGkAaIB/wGmAaMBoQH/AaMBoAGeAf8BogGfAZ0B/wGdAZoBmAH/ - AY0BigGJAf8BgQFQAU8B/wGAAU8BTgH/AYABTwFOAf8BgAFPAU4B/wGAAU8BTgH/AYABTwFOAf8BmAGV - AZMB/wGlAaIBoAH/AzoBYAwAAY4BiwEAAf8BjgGLAQAB/wG7AbkBAAH/DAAC9QHoAf8BwgHAAQAB/wwA - AvEB3wH/AcYBxAEAAf8MAAHqAekBzwH/AdIB0QGaAf8B3QHcAbIB/wHdAdwBsgH/Ac8BzgGSAf8BjgGL - AQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/ - AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AwAB/wOaAf8DkQH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/wMAAf8DAAH/AwAB/wMAAf8DkwH/A5oB/wMAAf8QAAMzAVNY/wM3AVskAANMAY8BuwG4AbcB/wGh - AZ4BnAH/AZQBkQGPAf8BkgGPAY0B/wGQAY0BiwH/AY0BigGJAf8BqgGnAaUB/wGqAacBpQH/AagBpQGj - Af8BpwGkAaIB/wGkAaEBnwH/AaMBoAGeAf8BoQGeAZwB/wGhAZ4BnAH/AZ4BmwGZAf8BkQGOAYwB/wGC - AVEBUAH/AYABTwFOAf8BgAFPAU4B/wGAAU8BTgH/AYABTwFOAf8BmAGVAZMB/wGlAaIBoAH/AyEBMAgA - AY4BiwEAAf8BjgGLAQAB/wGfAZwBAAH/AbgBtgEAAf8BuAG2AQAB/wG4AbYBAAH/AbQBsgEAAf8BoQGf - AQAB/wG4AbYBAAH/AbgBtgEAAf8BuAG2AQAB/wGyAbABAAH/AacBpAEAAf8BvgG9AQAB/wG+Ab0BAAH/ - Ab4BvQEAAf8BuAG2AQAB/wHQAc8BlQH/Ad0B3AGyAf8B3QHcAbIB/wLqAdAB/wGOAYsBAAH/AY4BiwEA - Af8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGO - AYsBAAH/AY4BiwEAAf8DAAH/A6IB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8DAAH/AwAB/wMAAf8DlQH/A7gB/wOvAf8DgwH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8DAAH/AwAB/wMAAf8DogH/AwAB/xAAAzMBU1j/AzcBWyAAAyoBQAG8AboBuAH/AasBqAGnAf8BmAGV - AZMB/wGWAZMBkQH/AZQBkQGPAf8BkgGPAY0B/wGQAY0BiwH/AasBqAGmAf8BqwGoAaYB/wGpAaYBpAH/ - AacBpAGiAf8BpQGiAaAB/wGjAaABngH/AaEBngGcAf8BoQGeAZwB/wGhAZ4BnAH/AaEBngGcAf8BmwGY - AZYB/wGBAVABTwH/AYABTwFOAf8BgAFPAU4B/wGAAU8BTgH/AYIBUQFQAf8BoQGeAZ0B/wNcAc8IAAGO - AYsBAAH/AY4BiwEAAf8BuwG5AQAB/wwAAvUB6AH/AcIBwAEAAf8MAALxAd8B/wGzAbEBAAH/AuYBxwH/ - Ae0B7AHWAf8B7QHsAdYB/wHtAewB1gH/AcQBwgEAAf8BzAHLAYwB/wHdAdwBsgH/AuoB0AH/AY4BiwEA - Af8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGO - AYsBAAH/AY4BiwEAAf8BjgGLAQAB/wMAAf8DogH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8DAAH/AwAB/wMAAf8DrgH/A/YB/xAAA8kB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/wMAAf8DogH/AwAB/xAAAzMBU1j/AzcBWyAAA1kBvwG6AbcBtQH/AZ0BmgGYAf8BmwGYAZYB/wGY - AZUBkwH/AZYBkwGRAf8BlAGRAY8B/wGSAY8BjQH/AagBpQGjAf8BnQGaAZkB/wGqAacBpQH/AagBpQGj - Af8BpgGjAaEB/wGkAaEBnwH/AaIBnwGdAf8BoQGeAZwB/wGhAZ4BnAH/AaEBngGcAf8BoQGeAZwB/wGF - AYIBgAH/AYABTwFOAf8BgAFPAU4B/wGAAU8BTgH/AYABTwFOAf8BigGHAYYB/wGmAaMBoQH/AzoBYAQA - AY4BiwEAAf8BjgGLAQAB/wG7AbkBAAH/DAAC9QHoAf8BwgHAAQAB/wwAAvEB3wH/AcwBywGNAf8B0wHS - AZwB/wHuAe0B2AH/Ae4B7QHYAf8B7gHtAdgB/wHuAe0B2AH/AacBpAEAAf8ByQHIAYUB/wLqAdAB/wGO + AzMBUwPpAf8D6QH/A+kB/wPpAf8D6QH/A+kB/wPpAf8D6QH/A+kB/wPpAf8D6QH/A+kB/wPmAf8D4QH/ + A9AB/wPLAf8DXwHzAy0BRSwAAwwBEANHAYADQAFwAxcBIBAAAwwBEANHAYADXAHfAckBxwHGAf8ByAHG + AcUB/wHFAcMBwgH/AcMBwQG/Af8BwAG+Ab0B/wG/Ab0BuwH/AcEBvgG9Af8BwwHAAb8B/wHBAb8BvQH/ + A1kBvwM6AWAgAAGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGO AYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEA - Af8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8DAAH/A6IB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8DAAH/AwAB/wMAAf8DyAH/CAAD4wH/A6AB/wOtAf8IAAPIAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8DAAH/AwAB/wMAAf8DogH/AwAB/xAAAzMBU1j/AzcBWxwAAyoBQAHAAb0BvAH/AawBqQGoAf8BnwGc - AZoB/wGdAZoBmAH/AZsBmAGWAf8BmAGVAZMB/wFIAUYBRAH/ARMBEgERAf8DAAH/AwAB/wFLAUgBRwH/ - AakBpgGkAf8BpwGkAaIB/wGlAaIBoAH/AaMBoAGeAf8BoQGeAZwB/wGhAZ4BnAH/AaEBngGcAf8BoQGe - AZwB/wGFAYIBgQH/AYABTwFOAf8BgAFPAU4B/wGAAU8BTgH/AYABTwFOAf8BgAFPAU4B/wGdAZoBmQH/ - A1wB3wQAAY4BiwEAAf8BjgGLAQAB/wG7AbkBAAH/DAAC9QHoAf8BwgHAAQAB/wwAAvEB3wH/AcwBywGN - Af8B2wHaAa4B/xAAAboBuAEAAf8BzAHLAYwB/wHWAdUBpAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/ - AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGL - AQAB/wMAAf8DogH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/A5oB/wgAA5IB/wMA - Af8DAAH/AwAB/wMAAf8IAAORAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wOiAf8DAAH/ - EAADMwFTCP8D/gH/A/4B/wP+Af8D/gH/A/4B/wP+Af8D/gH/A/4B/wP+Af8D/gH/A/4B/wP+Af8D/gH/ - A/4B/wP+Af8D/gH/A/4B/wP+Af8D/gX/AzcBWxwAA1EBnwG9AbsBuQH/AaQBoQGfAf8BogGfAZ0B/wGf - AZwBmgH/AZ0BmgGYAf8BmwGYAZYB/wEFAgMB/wMAAf8CAAECAf8BAAEKARYB/wErATQBOQH/AaoBpwGl - Af8BqAGlAaMB/wGmAaMBoQH/AaQBoQGfAf8BogGfAZ0B/wGhAZ4BnAH/AaEBngGcAf8BngGbAZkB/wGA - AU8BTgH/AYABTwFOAf8BgAFPAU4B/wGAAU8BTgH/AYABTwFOAf8BgAFPAU4B/wGMAYkBiAH/AacBpAGi - Af8DIQEwAY4BiwEAAf8BjgGLAQAB/wG7AbkBAAH/DAAC9QHoAf8BwgHAAQAB/wwAAvEB3wH/AcwBywGN - Af8B2wHaAa4B/xAAAboBuAEAAf8C3QGzAf8B1AHTAZ4B/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGO - AYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEA - Af8DAAH/A6IB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wPeAf8HAAH/AwAB/wMA - Af8DAAH/AwAB/wMAAf8DugH/BAADwAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DogH/ - AwAB/xAAAzMBUwT/A/4B/wP9Af8D/QH/A/0B/wP9Af8D/QH/A/0B/wP9Af8D/QH/A/0B/wP9Af8D/QH/ - A/0B/wP9Af8D/QH/A/0B/wP9Af8D/QH/A/0B/wP9Bf8DNwFbHAADXAHfAbYBtAGyAf8BpgGjAaEB/wGk - AaEBnwH/AaIBnwGdAf8BnwGcAZoB/wGdAZoBmAH/ASwBKgEpAf8DAAH/ARABjwG4Af8BCQGPAb0B/wE0 - AY0BpAH/AasBqAGmAf8BqQGmAaQB/wGnAaQBogH/AaUBogGgAf8BowGgAZ4B/wGhAZ4BnAH/AaEBngGc - Af8BjwGMAYoB/wGEAYEBgAH/AYQBgQGAAf8BgAFPAU4B/wGAAU8BTgH/AYABTwFOAf8BgAFPAU4B/wGA - AU8BTgH/AagBpQGjAf8DRwGAAY4BiwEAAf8BjgGLAQAB/wGfAZwBAAH/AbgBtgEAAf8BuAG2AQAB/wG4 - AbYBAAH/AbQBsgEAAf8BpAGhAQAB/wHLAcoBiwH/AcsBygGLAf8BywHKAYsB/wHIAccBgwH/Ab8BvgEA - Af8B2wHaAa0B/xAAAboBuAEAAf8C3QGzAf8C6gHQAf8BjgGLAQAB/wGRAY4BAAH/AcwBywGMAf8BlwGU - AQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/ - AwAB/wOiAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8EAAOSAf8DAAH/AwAB/wMA - Af8DAAH/AwAB/wMAAf8DnAH/BAADzgH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DogH/ - AwAB/xAAAzMBUwP+Af8D/QH/A/0B/wP9Af8D/QH/A/0B/wP9Af8D/QH/A/0B/wP9Af8D/QH/A/0B/wP9 - Af8D/QH/A/0B/wP9Af8D/QH/A/0B/wP9Af8D/QH/A/0F/wM3AVsYAAMMARABxAHBAcAB/wGyAa8BrQH/ - AakBpgGkAf8BpgGjAaEB/wGkAaEBnwH/AaIBnwGdAf8BnwGcAZoB/wGDAYABUAH/AwAB/wEbAaQBygH/ - AQkBkAG9Af8BNAGNAaQB/wGsAakBpwH/AaoBpwGlAf8BqAGlAaMB/wGmAaMBoQH/AaQBoQGfAf8BngGb - AZkB/wGRAY4BjQH/AZQBkQGPAf8BoQGeAZwB/wGgAZ0BmwH/AY8BjAGKAf8BgAFPAU4B/wGAAU8BTgH/ - AYABTwFOAf8BgAFPAU4B/wGfAZwBmgH/A1QBrwGOAYsBAAH/AY4BiwEAAf8BuwG5AQAB/wwAAvUB6AH/ - AbkBtgEAAf8B1AHTAZ4B/wHZAdgBqAH/AdkB2AGoAf8B2QHYAagB/wHFAcQBAAH/AaQBoQEAAf8BxQHD - AQAB/wHFAcMBAAH/AcUBwwEAAf8BxQHDAQAB/wG4AbYBAAH/At0BswH/AuoB0AH/AZEBjgEAAf8C3AGx - Af8EAAHrAeoB0QH/AZcBlAEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/ - AY4BiwEAAf8DAAH/A6IB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/A4cB/wPWAf8DAAH/ - AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/A9wB/wQAA7MB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8DAAH/A6IB/wMAAf8QAAMzAVMD/QH/A/0B/wP8Af8D/AH/A/wB/wP8Af8D/AH/A/wB/wP8Af8D/AH/ - A/wB/wP8Af8D/AH/A/wB/wP8Af8D/AH/A/wB/wP8Af8D/AH/A/wB/wP8Bf8DNwFbGAADKgFAAcQBwgHB - Af8BvgG7AboB/wG2AbMBsQH/AasBqAGmAf8BpgGjAaEB/wGkAaEBnwH/AaIBnwGdAf8BnwGcAZoB/wEh - AR8BHgH/AQkBgwGZAf8BFwGmAcoB/wE1AZIBpwH/Aa0BqgGoAf8BqwGoAaYB/wGlAaIBoAH/AZgBlQGT - Af8BjwGMAYsB/wGJAYYBhAH/AZEBjgGNAf8BoQGeAZwB/wGhAZ4BnAH/AaEBngGcAf8BnwGcAZoB/wGB - AVABTwH/AYABTwFOAf8BgAFPAU4B/wGAAU8BTgH/AZUBkgGQAf8DWQG/AY4BiwEAAf8BjgGLAQAB/wG7 - AbkBAAH/DAAC9QHoAf8ByAHGAYMB/wHWAdUBowH/AvIB4gH/AvIB4QH/AvIB4QH/AvIB4QH/Aa4BrAEA - Af8B2wHaAa0B/wL4Ae8B/wL4Ae8B/wL4Ae8B/wHWAdUBowH/AcUBxAEAAf8B4AHfAbkB/wHcAdsBsQH/ - DAAB6wHqAdEB/wGXAZQBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wMA - Af8DoQH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8DAAH/AwAB/wOpAf8LAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DoQH/AwAB/xAA - AzMBUwP8Af8D+wH/A/oB/wP6Af8D+gH/A/oB/wP6Af8D+gH/A/oB/wP6Af8D+gH/A/oB/wP6Af8D+gH/ - A/oB/wP6Af8D+gH/A/oB/wP6Af8D+gH/A/oB/wP+Af8DNwFbGAADKgFAAcUBwwHCAf8BxAHBAcAB/wHC - AcABvgH/Ab4BuwG6Af8BqgGnAaUB/wGmAaMBoQH/AaQBoQGfAf8BpAGhAZ8B/wGfAZwBmwH/AQABLwE6 - Af8BGgG9AdoB/wE3AZ4BrwH/Aa4BqwGpAf8BogGfAZ0B/wGSAY8BjQH/AZQBkQGPAf8BlAGRAZAB/wGL - AYgBhwH/AZ4BmwGZAf8BoQGeAZwB/wGhAZ4BnAH/AaEBngGcAf8BoQGeAZwB/wGGAYMBggH/AYABTwFO - Af8BgAFPAU4B/wGAAU8BTgH/AZUBkgGRAf8DYgHvAY4BiwEAAf8BjgGLAQAB/wG7AbkBAAH/DAAC9QHo - Af8ByAHGAYMB/wHZAdgBqQH/EAABvgG8AQAB/wHTAdIBnAH/AcwBygGLAf8B2wHaAa4B/wHbAdoBrgH/ - AdsB2gGuAf8BvwG+AQAB/wG7AboBAAH/Av4B/AH/EAABugG4AQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGL - AQAB/wGOAYsBAAH/AY4BiwEAAf8DAAH/A50B/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wOoAf8IAAOfAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8DAAH/AwAB/wMAAf8DnQH/AwAB/xAAAzMBUwP6Af8D+QH/A/kB/wP5Af8D+QH/A/kB/wP5Af8D+QH/ - A/kB/wP5Af8D+QH/A/kB/wP5Af8D+QH/A/kB/wP5Af8D+QH/A/kB/wP5Af8D+QH/A/kB/wP9Af8DNwFb - GAADKgFAAccBxQHDAf8BxQHDAcIB/wHDAcABvwH/Ab0CuwH/Aa8BrgGwAf8BrAGqAagB/wGmAaMBoQH/ - AagBpQGjAf8BtwG0AbIB/wErATMBNAH/AQ8BxAHfAf8BIAGpAb4B/wGOAaEBpgH/AZYBkwGRAf8BlAGR - AY8B/wGZAZYBlAH/AacBpAGiAf8BmwGYAZYB/wGjAaABngH/AaEBngGcAf8BoQGeAZwB/wGhAZ4BnAH/ - AaEBngGcAf8BhgGDAYIB/wGAAU8BTgH/AYABTwFOAf8BgAFPAU4B/wGWAZMBkQH/AasBqAGmAf8BjgGL - AQAB/wGOAYsBAAH/AbsBuQEAAf8MAAL1AegB/wHIAcYBgwH/AdkB2AGoAf8QAAG+AbwBAAH/AdYB1QGi - Af8B6AHnAcoB/wwAAdsB2gGuAf8B1wHWAaUB/wG2AbQBAAH/Av4B/AH/CAABwwHBAQAB/wGOAYsBAAH/ - AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wMAAf8DmAH/AwAB/wMAAf8DAAH/ - AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wOwAf8D6wH/CAADngH/AwAB/wMA - Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wOYAf8DAAH/EAADMwFTA/kB/wP5Af8D+AH/ - A/gB/wP4Af8D+AH/A/gB/wP4Af8D+AH/A/gB/wP4Af8D+AH/A/gB/wP4Af8D+AH/A/gB/wP4Af8D+AH/ - A/gB/wP4Af8D+AH/A/wB/wM3AVsYAAMqAUABqAHAAcUB/wFRAbIBwAH/AR8BogG8Af8BAAGaAbwB/wEA - AZcBugH/AUIBqQG5Af8BrgGrAakB/wGrAagBpgH/AbgBtQGzAf8BUQFOAU0B/wEDAY8BoQH/AQgBvwHb - Af8BCAGiAcEB/wFFAZEBnQH/AaABnQGbAf8BnwGcAZoB/wGmAaMBoQH/AaYBowGhAf8BpAGhAZ8B/wGi - AZ8BnQH/AaEBngGcAf8BoQGeAZwB/wGhAZ4BnAH/AYgBhQGEAf8BgAFPAU4B/wGAAU8BTgH/AYABTwFO - Af8BlgGTAZIB/wNZAb8BjgGLAQAB/wGOAYsBAAH/AZcBlAEAAf8BugG4AQAB/wG9AbwBAAH/Ab0BvAEA - Af8BuwG6AQAB/wHGAcQBAAH/AdkB2AGoAf8QAAG+AbwBAAH/AdYB1QGiAf8C5wHKAf8MAAHbAdoBrgH/ - AuoB0AH/AY4BiwEAAf8BtgG0AQAB/wH+Af0B/AH/AcMBwgEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEA - Af8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wMAAf8DlAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/A7AB/wgAA9UB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wOUAf8DAAH/EAADMwFTA/gB/wP3Af8D9gH/A/YB/wP2 - Af8D9gH/A/YB/wP2Af8D9gH/A/YB/wP2Af8D9gH/A/YB/wP2Af8D9gH/A/YB/wP2Af8D9gH/A/YB/wP2 - Af8D9gH/A/oB/wM3AVsQAAMyAVADVAGvAVgCYgHvAQABmgG8Af8BAAGmAcYB/wEPAbgB1AH/ASgBxgHf - Af8BJwHCAdwB/wEOAZoBuAH/AboBuAG3Af8BuQG2AbUB/wG1AbMBsgH/AUEBhAGKAf8BAAGEAZwB/wEH - AbsB1wH/AQABrgHPAf8BAAGVAb4B/wFRAZQBngH/AaoBpwGlAf8BqQGmAaQB/wGnAaQBogH/AaUBogGg - Af8BowGgAZ4B/wGhAZ4BnAH/AaEBngGcAf8BoAGdAZsB/wGGAYMBggH/AYIBUQFQAf8BgAFPAU4B/wGA - AU8BTgH/AaIBnwGeAf8DWQG/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/Aa4BrAEAAf8B3gHdAbQB/wHe - Ad0BtAH/Ad4B3QG0Af8BzwHOAZMB/wGpAacBAAH/Ab4BvAEAAf8BvgG8AQAB/wG+AbwBAAH/Ab4BvAEA - Af8BtgG0AQAB/wHWAdUBogH/AucBygH/DAAB2wHaAa4B/wLqAdAB/wGOAYsBAAH/AY4BiwEAAf8BoQGe - AQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/ - AY4BiwEAAf8DAAH/A48B/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/wPmAf8LAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ - A48B/wMAAf8QAAMzAVMD9gH/A/UB/wP1Af8D9QH/A/UB/wP1Af8D9QH/A/UB/wP1Af8D9QH/A/UB/wP1 - Af8D9QH/A/UB/wP1Af8D9QH/A/UB/wP1Af8D9QH/A/UB/wP1Af8D+QH/AzcBWxEAAZABvwH/AQABjAG3 - Af8BBwGyAdIB/wETAccB4QH/ASgByQHhAf8BgQHHAdcB/wGaAcQBzAH/ATsBygHhAf8BCAGhAcIB/wE8 - AZ0BsQH/ATUBmwGyAf8BCgGWAbYB/wEAAaABwgH/AQABrgHMAf8BAAG4AdYB/wEAAbMB0wH/AQABmgHB - Af8BIgGIAaUB/wGrAagBpgH/AaoBpwGlAf8BpwGkAaIB/wGmAaMBoQH/AaMBoAGeAf8BogGfAZ0B/wGh - AZ4BnAH/AZ4BmwGZAf8BhwGEAYIB/wGEAYEBgAH/AYIBUQFQAf8BgAFPAU4B/wGsAakBpwH/A0cBgAGO - AYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/Aa0BqwEAAf8C9gHsAf8C+QHxAf8C+QHxAf8B6wHq - AdEB/wHVAdQBoQH/AvkB8QH/AvkB8QH/AvkB8QH/AecB5gHJAf8BtgG0AQAB/wHKAckBhgH/AdoB2QGr - Af8B2gHZAasB/wHaAdkBqwH/AcQBwwEAAf8B6gHpAc8B/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGO - AYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEA - Af8DAAH/A4oB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DwgH/FAAD4AH/ - AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DigH/AwAB/xAAAzMBUwP1 - Af8D9QH/A/QB/wP0Af8D9AH/A/QB/wP0Af8D9AH/A/QB/wP0Af8D9AH/A/QB/wP0Af8D9AH/A/QB/wP0 - Af8D9AH/A/QB/wP0Af8D9AH/A/QB/wP3Af8DNwFbEAABWAJiAe8BBQGeAcUB/wFXAlwB3wNZAb8ByQHH - AcYB/wHHAcUBwwH/AcQBwgHBAf8BgQHGAdYB/wEgAbwB1gH/AQABogHDAf8BAAGuAc0B/wEAAbgB1QH/ - AQABugHXAf8BAAG6AdcB/wEAAboB1wH/AQABtQHVAf8BBgGhAccB/wEYAYsBrQH/AasBqAGmAf8BoQGe - AZwB/wGpAaYBpAH/AaMBoAGeAf8BnAGZAZcB/wGbAZgBlgH/AZwBmQGXAf8BjwGMAYsB/wGJAYYBhAH/ - AYcBhAGCAf8BhAGBAYAB/wGRAY4BjQH/AbABrQGrAf8DIQEwAY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/ - AY4BiwEAAf8BjgGLAQAB/wGcAZoBAAH/Ad8B3gG2Af8B4wHiAb8B/wHjAeIBvwH/Ad8B3gG2Af8BvwG9 - AQAB/wHjAeIBvwH/AeMB4gG/Af8B4wHiAb8B/wHcAdsBsAH/AcEBvwEAAf8B4wHiAb8B/wHjAeIBvwH/ - AeMB4gG/Af8B2wHaAa4B/wG1AbMBAAH/AY4BiwEAAf8BjgGLAQAB/wGXAZQBAAH/AbkBtwEAAf8BjgGL - AQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wMAAf8DhQH/ - AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/A9UB/xwAA/MB/wMAAf8DAAH/AwAB/wMA - Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DhQH/AwAB/xAAAzMBUwP0Af8D8wH/A/IB/wPyAf8D8gH/ - A/IB/wPyAf8D8gH/A/IB/wPyAf8D8gH/A/IB/wPyAf8D8gH/A/IB/wPxAf8D8QH/A/EB/wPxAf8D8QH/ - A/EB/wPzAf8DNwFbEAADUQGgARsBqQHOAf8BWgJdAdMDMgFQAcsByQHIAf8ByAHGAcQB/wHFAcMBwgH/ - AZgBwgHLAf8BOAHIAeAB/wEAAbsB2QH/AQABuwHYAf8BAAG7AdgB/wEAAbwB2QH/AQoBwAHbAf8BGQHF - Ad8B/wEdAcEB3QH/AQ0BlQG2Af8BGQFGAYsB/wGeAZsBmQH/AZsBmAGWAf8BoAGdAZsB/wGWAZMBkQH/ - AZQBkQGPAf8BkgGPAY0B/wGQAY0BiwH/AY0BigGJAf8BiwGIAYcB/wGJAYYBhAH/AYcBhAGCAf8BoQGe - AZwB/wNcAd8EAAGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGd - AZoBAAH/AaUBowEAAf8BpQGjAQAB/wGlAaMBAAH/AZwBmQEAAf8BowGhAQAB/wGlAaMBAAH/AaUBowEA - Af8BpQGjAQAB/wGbAZgBAAH/AaQBogEAAf8BpQGjAQAB/wGlAaMBAAH/AaUBowEAAf8BmQGXAQAB/wGO - AYsBAAH/AZcBlQEAAf8B6wHqAdIB/wQAAcEBwAEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGL - AQAB/wGOAYsBAAH/AY4BiwEAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ - A5gB/yQAA74B/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/EAADMwFT - A/IB/wPxAf8D8QH/A/EB/wPxAf8D8QH/A/EB/wPxAf8D8QH/A/EB/wPxAf8D8QH/A/EB/wPxAf8D8AH/ - A+0B/wPqAf8D6AH/A+gB/wPnAf8D5gH/A+cB/wM4AVwQAAM6AWABNAG0AdcB/wEDAZYBugH/AxwBJwNc - Ad8BygHIAccB/wHGAcQBwwH/AbsBwgHDAf8BNwHKAeEB/wEAAb4B2gH/AQ4BwQHdAf8BJgHHAeAB/wEo - AcgB4QH/ATEBwgHXAf8BKwGbAagB/wEAAQwBEgH/AwAB/wGEAYIBgAH/AaUBogGgAf8BqgGnAaUB/wGq - AacBpQH/AaABnQGbAf8BlgGTAZEB/wGUAZEBjwH/AZIBjwGNAf8BkAGNAYsB/wGNAYoBiQH/AYsBiAGH - Af8BkQGOAYwB/wGzAbABrgH/A0cBgAQAAY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGL - AQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/ - AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGPAYwBAAH/AZMBkAEAAf8BjgGL - AQAB/wGOAYsBAAH/AZcBlAEAAf8B6wHqAdIB/wwAAcEBwAEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEA - Af8BjgGLAQAB/wGOAYsBAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wPa - Af8rAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/xAAAzMBUwPxAf8D8QH/ - A/AB/wPwAf8D8AH/A/AB/wPwAf8D8AH/A/AB/wPwAf8D8AH/A/AB/wPwAf8D7wH/A+wB/wPkAf8D2AH/ - A9AB/wPPAf8D0AH/A8wB/wPIAf8DNQFXEAADDAEQAT4BtwHaAf8BEwGhAcUB/wNDAXcDMgFQAcsByQHI - Af8ByQHHAcUB/wHFAcMBwgH/AUwBxgHXAf8BEgG/AdsB/wEhAbIBzAH/AY4BvgHHAf8BqQG5AbwB/wG5 - AbcBtQH/AbcBtAGyAf8BpAGiAaAB/wGrAagBpgH/AbEBrwGtAf8BrwGsAaoB/wGtAaoBqAH/AasBqAGm - Af8BogGfAZ0B/wGYAZUBkwH/AZYBkwGRAf8BlAGRAY8B/wGSAY8BjQH/AZABjQGLAf8BjQGKAYkB/wGt - AaoBqAH/A1wB3wMMARAEAAGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGL - AQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/ - AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY8BjAEAAf8B1AHTAZ4B/wHkAeMBwQH/AZMBkAEAAf8BjgGL - AQAB/wHNAcwBjwH/EAAC/AH5Af8BnQGbAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/ - AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/y8AAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/EAADMwFTA/AB/wPvAf8D7gH/A+4B/wPuAf8D7gH/A+4B/wPu - Af8D7gH/A+4B/wPuAf8D7gH/A+4B/wPtAf8D6AH/A9YB/wO4Af8DpwH/A6IB/wOeAf8DngH/A2EB5gMU - ARsUAANUAa8BLgGwAdMB/wFaAl0B0wQAA1QBrwHLAckByAH/AccBxQHEAf8BkwHDAcwB/wEaAcMB3gH/ - AQUBmgG6Af8BvQG7AboB/wG8AboBuAH/AboBtwG2Af8BuAG2AbQB/wG2AbMBsgH/AbQBsgGwAf8BsgGv - Aa0B/wGwAa0BqwH/Aa4BqwGpAf8BqwGoAaYB/wGeAZsBmQH/AZsBmAGWAf8BmAGVAZMB/wGWAZMBkQH/ - AZQBkQGPAf8BkgGPAY0B/wGoAaUBowH/AbUBswGxAf8DKgFACAABjgGLAQAB/wGOAYsBAAH/AY4BiwEA Af8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGO - AYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjwGMAQAB/wHUAdMBngH/CAAB5AHj - AcIB/wGTAZABAAH/AZEBjgEAAf8B3gHdAbQB/wgAAvwB+QH/AbEBrwEAAf8BjgGLAQAB/wGOAYsBAAH/ - AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8QAAMzAVMD7gH/A+0B/wPtAf8D7QH/A+0B/wPt - Af8D7QH/A+0B/wPtAf8D7QH/A+0B/wPtAf8D7QH/A+wB/wPjAf8DygH/A50B/wODAf8DhgH/A5gB/wNi - Ae8DJwE7GAADOgFgAUQBugHdAf8BEgGTAboB/wMaASQDDAEQA1wBzwGNAbgBxAH/ARkBpQHAAf8BAQG5 - AdYB/wEAAZ4BvgH/AZgBtgG9Af8BvQG7AbkB/wG9AboBuQH/AbkBtwG1Af8BtwG0AbIB/wG1AbIBsQH/ - AbMBsAGuAf8BsQGvAa0B/wGtAaoBqAH/AaIBnwGdAf8BnwGcAZoB/wGdAZoBmAH/AZsBmAGWAf8BmAGV - AZMB/wGWAZMBkQH/AaQBoQGfAf8BuAG1AbMB/wNHAYAMAAGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGO AYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEA - Af8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wHTAdIBnAH/EAAB5AHjAcIB/wGSAY8BAAH/ - AZEBjgEAAf8B3gHdAbQB/wL8AfkB/wGxAa8BAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEA - Af8BjgGLAQAB/wGOAYsBAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/y8A - Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/EAADMwFTA+0B/wPtAf8D7AH/ - A+wB/wPsAf8D7AH/A+wB/wPsAf8D7AH/A+wB/wPsAf8D7AH/A+wB/wPrAf8D3wH/A8kB/wPtAf8D8AH/ - A/EB/wNnAfIDKwFCHAADDAEQAU8BwQHiAf8BIQGeAccB/wFYAloBwANRAaIBAQGYAbsB/wEAAaMBxAH/ - AQABtQHTAf8BDgHCAd4B/wEAAbEB0AH/AaEBtwG9Af8BvgG8AboB/wG9AbsBuQH/Ab0BugG5Af8BugG3 - AbUB/wG2AbMBsQH/AbIBrwGtAf8BrgGrAakB/wGmAaMBoQH/AaQBoQGfAf8BogGfAZ0B/wGfAZwBmgH/ - AZ0BmgGYAf8BnQGaAZgB/wGuAasBqQH/AbkBtwG1Af8DUQGfEAABjgGLAQAB/wGOAYsBAAH/AY4BiwEA - Af8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGO - AYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BugG4AQAB/wL+Af0B/wwAAc0BzAGP - Af8BjgGLAQAB/wGOAYsBAAH/AZEBjgEAAf8BqAGmAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGO - AYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA + Af8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8DYQHpAwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8QAAMzAVMD7AH/A+wB/wPrAf8D6wH/ - A+sB/wPrAf8D6wH/A+sB/wPrAf8D6wH/A+sB/wPrAf8D6wH/A+kB/wPcAf8DxwH/A/4F/wNnAfIDLAFE - JAADXAHPATwBtgHbAf8BGwGXAcIB/wEZAZ4BxgH/ASIBsQHUAf8BLgG9AdwB/wE1AcAB2wH/AVABwgHU - Af8BowHCAckB/wHCAcABvgH/Ab8BvAG7Af8BvQG7AbkB/wG7AbgBtwH/AboBtwG1Af8BtAGxAa8B/wGt - AaoBqAH/AasBqAGmAf8BqQGmAaQB/wGmAaMBoQH/AaQBoQGfAf8BogGfAZ0B/wGnAaQBogH/AbgBtgG0 - Af8BvAG5AbgB/wNAAXAUAAGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGL - AQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/ - AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AboBuAEAAf8C/gH9Af8EAAHNAcwBjwH/AY4BiwEAAf8BjgGL - AQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/ - AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8QAAMzAVMD6gH/A+oB/wPpAf8D6QH/A+kB/wPp - Af8D6QH/A+kB/wPpAf8D6QH/A+kB/wPpAf8D6QH/A+YB/wPYAf8DxgH/A/gB/wNnAfIDLQFFKAADQAFw - AYsBygHoAf8BSwG/AeEB/wFHAbsB3gH/A1QBrwM6AWADDAEQA0cBgANiAe8BywHJAcgB/wHGAcQBwwH/ - AcEBvwG9Af8BvAG5AbgB/wG6AbcBtgH/AbkBtgG0Af8BrwGsAaoB/wGtAaoBqAH/AasBqAGmAf8BrAGp - AacB/wGwAa0BrAH/AbsBuAG2Af8BvwG8AbsB/wNcAc8DIQEwGAABjgGLAQAB/wGOAYsBAAH/AY4BiwEA - Af8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGO - AYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AboBuAEA - Af8BzQHLAY4B/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGO - AYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AwAB/wMA - Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8QAAMzAVMD6QH/A+kB/wPpAf8D6QH/A+kB/wPpAf8D6QH/A+kB/wPpAf8D6QH/A+kB/wPpAf8D5gH/ - A+EB/wPQAf8DywH/A18B8wMtAUUsAAMMARADRwGAA0ABcAMXASAQAAMMARADRwGAA1wB3wHJAccBxgH/ - AcgBxgHFAf8BxQHDAcIB/wHDAcEBvwH/AcABvgG9Af8BvwG9AbsB/wHBAb4BvQH/AcMBwAG/Af8BwQG/ - Ab0B/wNZAb8DOgFgIAABjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEA - Af8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGO - AYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEA - Af8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGO - AYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/A2EB6QMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wNhAekQAAMzAVMD6QH/A+kB/wPoAf8D6AH/ - A+gB/wPoAf8D6AH/A+gB/wPoAf8D6AH/A+gB/wPnAf8D4wH/A9sB/wPOAf8DXwHzAy0BRlwAAyEBMANA - AXADRwGAA1kBvwNZAb8DUQGfA0cBgAMyAVADDAEQKAABjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGL - AQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/ + Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/A2EB6RAAAzMBUwPpAf8D6QH/A+gB/wPoAf8D6AH/ + A+gB/wPoAf8D6AH/A+gB/wPoAf8D6AH/A+cB/wPjAf8D2wH/A84B/wNfAfMDLQFGXAADIQEwA0ABcANH + AYADWQG/A1kBvwNRAZ8DRwGAAzIBUAMMARAoAAGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/ AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGL AQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/ - AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AzUBVgMAAf8DAAH/ + AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGL + AQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8DNQFWAwAB/wMAAf8DAAH/ AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMuAUcQAAM1 - AVUD7gH/A+4B/wPtAf8D7QH/A+0B/wPtAf8D7QH/A+0B/wPtAf8D7QH/A+0B/wPtAf8D6QH/A+EB/wNf - AegDLAFErAABjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGL - AQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/ + AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/Ay4BRxAAAzUBVQPu + Af8D7gH/A+0B/wPtAf8D7QH/A+0B/wPtAf8D7QH/A+0B/wPtAf8D7QH/A+0B/wPpAf8D4QH/A18B6AMs + AUSsAAGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/ AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGL AQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/ - AY4BiwEAAf8BjgGLAQAB/wNLAY4EAAMuAUcDXAHRA0AB/QMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA + AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGLAQAB/wGOAYsBAAH/AY4BiwEAAf8BjgGL + AQAB/wGOAYsBAAH/A0sBjgQAAy4BRwNcAdEDQAH9AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8DAAH/AwAB/wNAAf0DXAHRAy0BRRQAAx0BKgNMAZADTAGQA0wBkANMAZADTAGQA0wBkANMAZADTAGQ - A0wBkANMAZADTAGQA0wBkANMAZADRgF/Ax0BKf8AWQADBQEHAwkBDAMEAQU3AAQBAQIDAQECNwABAQMC - AQMDBAQFAQcDBgEIAwcBCQMHAQkDBgEIAwUBBwMEAQUDAgEDAwABAbgAAw0BEgMyAVEDPAFoAzsBZAM7 + Af8DAAH/A0AB/QNcAdEDLQFFFAADHQEqA0wBkANMAZADTAGQA0wBkANMAZADTAGQA0wBkANMAZADTAGQ + A0wBkANMAZADTAGQA0wBkANGAX8DHQEp/wBZAAMFAQcDCQEMAwQBBTcABAEBAgMBAQI3AAEBAwIBAwME + BAUBBwMGAQgDBwEJAwcBCQMGAQgDBQEHAwQBBQMCAQMDAAEBuAADDQESAzIBUQM8AWgDOwFkAzsBYwM7 AWMDOwFjAzsBYwM7AWMDOwFjAzsBYwM7AWMDOwFjAzsBYwM7AWMDOwFjAzsBYwM7AWMDOwFjAzsBYwM7 - AWMDOwFjAzwBZwM4AV0DGAEhOAADKwFDA0wBkgMmATgDCQEMAwEBAiwAAwcBCQMoATwDHwEsAwIBAycA - AQEDBAEFAwkBDAMOARMDEgEZAxYBHgMYASIDGgEkAxsBJgMbASYDGgElAxgBIgMWAR8DEgEZAw4BEwMJ - AQwDBAEGAwEBAqwAAyMBNAPiAf8EAAPxAf8D8QH/A/EB/wPxAf8D8QH/A/EB/wPxAf8D8QH/A/AB/wPw - Af8D8AH/A/AB/wPwAf8D7wH/A+8B/wPvAf8D7gH/A+4B/wPzAf8EAAM9AWooAAMKAQ0DHwEtAxYBHwMW - AR8DVwG6BAADXgHdA0IBdgMYASIDBAEGKAADIgEyA2QB7ANWAbMDAQECGwABAQMDAQQDBgEIAw0BEQMV - BB0BKgMkATYDKQE/Ay0BRQMvAUkDMAFNAzEBTwMxAU8DMAFNAy8BSgMtAUUDKQE/AyUBNwMeASsDFgEe - Aw0BEgMHAQkDAwEEAwABASwAAzQBVAMLAQ8wAAFQAVEBUAGfAVkBZwFZAfIBWQFnAVkB8gFZAWcBWQHy - AVkBZwFZAfIBWQFnAVkB8gNAAXEgAAMlATcD8gH/QAAClQL/Ap8C/wwAAz8BbCgAAysBQgNhAeQDXQHK - A1kBvgN/Af4BpAKjAf8DvAH/A9UB/wNaAcADNQFYAxIBGQMDAQQPAAEBEAADPAFmAYMBrQHHAf8DVQGy - AwABARQAAwIBAwMGAQgDCwEPAxIBGQMcASgDJwE7AzEBTgM4AV0DPQFqA0MBdwNGAYADSAGHA0oBigNK - AYoDSAGHA0YBgQNDAXgDPgFsAzgBXgMxAU8DKAE8Ax0BKQMTARoDDAEQAwcBCQMCAQMkAAMSARgDAAH/ - AUEBQgFBAXMwAANVAbUBAAGmAQAB/wEAAZwBAAH/AQABkwEAAf8BAAGNAQAB/wEAAYUBAAH/AUYBRwFG - AYAgAAMkATYD7gH/BAAD/gH/A/4B/wP+Af8D/gH/A/0B/wP9Af8D/QH/A/0B/wP9Af8D/AH/A/wB/wP8 - Af8D/AH/A/sB/wL2AfsB/wIAAv8CAAH9Af8D+gH/CAADPgFrKAADQAFxBAAB7gHwAfEB/wHuAvAB/wHR - AdIB0wH/AsYBxQH/A70B/wO1Af8DwAH/A20B9wNSAakDNAFUAxgBIgMHAQkDAAEBFAABSQJKAYkBigG1 - Ac4B/wM3AVoUAAMBAQIDBgEIAw0BEQMTARoDHQEpAygBPAM0AVQDPwFvA0sBkANZAb4DXAHfA2QB8QNq - AfkDagH5A2oB+QNqAfkDZwHyA1wB3wNZAb8DTAGSA0EBcgM1AVYDKQE+Ax4BKwMUARwDDQESAwcBCgMC - AQMgAANWAbMBAAGNAQAB/wFYAWIBWAHvAwEBAiwAAVIBUwFSAagBAAGlAQAB/wEAAZsBAAH/AQABkwEA - Af8BAAGNAQAB/wEAAYYBAAH/A0MBdyAAAyQBNgPuAf8EAAP+Af8D/QH/A/0B/wP9Af8D/QH/A/0B/wP9 - Af8D/AH/A/wB/wP8Af8D/AH/A/sB/wP7Af8D+wH/AqEB/AH/AqwB/AH/ApoB/AH/AtIB+QH/CAADPgFr - KAADUAGeAfUB9gH3Af8B3AHeAd8B/wHfAeIB4wH/AZwBngGgAf8BAAGAAYgB/wG1AbcBuAH/AtUB1AH/ - Ad4B4AHhAf8B4gHjAeQB/wHeAt8B/wNiAe8DWgG9A0kBiQM1AVcDIAEvAxABFgMHAQkDAAEBAwYBCAFZ - AloBvQNlAfQDFQEdAwIBAwMEAQUDAAEBCAADAwEEAwkBDAMQARYDGAQhATEDLQFGAz4BbANZAb4DXwHz - AdcBygHCAf8B2wHPAcgB/wHdAdIBygH/AeAB1QHNAf8B4wHaAdMB/wHfAdMBzAH/Ad4B0gHKAf8B5AHb - AdUB/wHfAdUBzgH/AdsB0AHJAf8DXwHzA1kBvwNAAXADLwFJAyIBMgMZASMDEgEYAwoBDgMEAQUcAAMm - ATgBAAGLAQAB/wEAAY0BAAH/AQABggEAAf8DSgGMLAABUgFTAVIBqAEAAakBAAH/AQABngEAAf8BAAGX - AQAB/wEAAZABAAH/AQABiQEAAf8DQwF3IAADJAE2A+0B/wQAA9MB/wPMAf8D4AH/A+wB/wPvAf8D7wH/ - A+4B/wPvAf8D6gH/A+4B/wPwAf8D7wH/AusB7AH/AvoB7QH/As8B6wH/AvcB8gH/AtsB9gH/AgAC/wLh - AfwB/wQAAz4BayQAAwcBCgNcAckB8QHyAfMB/wHhAeMB5AH/AeEC5AH/Ac8B0gHUAf8CAAGpAf8CAAGF - Af8BAAGHAZMB/wG7Ab0BuwH/AdMB1wHYAf8B2gHeAd8B/wHkAecB6AH/AesB7QHuAf8B5QHmAecB/wNN - AfoDXwHgA1gBuwNMAZADOwFkAzgBXgNfAfMBWAJaAcADKwFDA0ABcAM1AVYDAQECCAADAwEEAwgBCwMQ - ARUDFgEfAyABLgM+AWsDXAHfAdkBzQHGAf8B2wHPAccB/wHeAdIBywH/AeEB1gHOAf8B4gHYAdEB/wHl - AdwB1QH/AekB4QHbAf8B4wHZAdEB/wHmAd0B1gH/AfYB8wHwAf8B8AHrAeYB/wHhAdcB0AH/AdsB0AHI - Af8B2QHNAccB/wNfAeADQAFvAyEBMAMYASEDEQEXAwoBDQMDAQQcAAFeAWEBXgHaAQABmAEAAf8BAAGK - AQAB/wEAAYgBAAH/AwAB/wMTARooAAFSAVMBUgGoAQABqwEAAf8BAAGhAQAB/wEAAZoBAAH/AQABkwEA - Af8BAAGNAQAB/wNDAXcgAAMkATYD7AH/BAAD0wH/A7wB/wPDAf8D1AH/A8sB/wPCAf8D0QH/A8IB/wO4 - Af8DzwH/A8kB/wO/Af8DwgH/AsgBywH/AtoBvwH/At8B0gP/AeQB/wLRAdkB/wGjAaIB+AH/BAADPgFr - JAADGgEkA2AB6wHtAe4B7wH/AeQB5gHnAf8B4gHkAeUB/wHlAeYB4wH/AbcBugHUAf8BAAGUAdUB/wEA - AYcBwQH/AQABgQGVAf8BvwG9AbsB/wHSAdUB1gH/AdIB1gHYAf8B0AHUAdYB/wHQAdQB1gH/AdQB1wHY - Af8B1wLZAf8B1QHUAdMB/wHHAcUBwwH/AaUBpgGnAf8DbQH3AZgBlAGQAf8DZAHnA2QB7AGbAcsB+QH/ - A1sByAMGAQgLAAEBAwUBBwMLAQ8DEQEXAzoBYgNlAfQB2AHMAcYB/wHeAdMBzQH/Ad0B0QHKAf8B4gHY - AdAB/wHlAdsB1AH/AeYB3QHWAf8B6wHkAd4B/wHyAe4B6gH/Ae4B5wHiAf8B7QHnAeEB/wHqAeIB3AH/ - AeoB4gHcAf8B4AHUAcwB/wHbAc8BxwH/AdYByQHBAf8B1QHIAcAB/wNlAfQDOwFlAxIBGAMMARADBgEI - AwEBAhgAAzoBYgEAAZ0BAAH/AQABmAEAAf8BAAGNAQAB/wEAAYgBAAH/AQABhAEAAf8BVgFYAVYBuSgA - AVICUwGoAQABrgEAAf8BAAGlAQAB/wEAAZ0BAAH/AQABmAEAAf8BAAGQAQAB/wNDAXcgAAMkATYD6wH/ - BAADxAH/A7AB/wPDAf8DzQH/A8kB/wPEAf8DxQH/A8UB/wPAAf8DwwH/A8EB/wPBAf8DwQH/Ar4BwAH/ - As4BxAH/AswBvQH/AsIBvwH/AtwBrgH/AvoB7QH/BAADPgFrJAADLgFIA38B/gHsAu0B/wHoAekB6gH/ - AeYB5wHoAf8B5QLmAf8B3QHeAd0B/wGOAdsB7wH/AQABxgH8Af8BAAGIAcQB/wEAAYEBlQH/Ab8BvQG7 - Af8BzAHOAc8B/wHCAcMBwgH/ArEBrwH/AZ8BoQGgAf8BjQGVAZoB/wGAAZMBogH/AQABlwG2Af8BAAGM - AbIB/wEAAYgBiwH/AZ0BmQGRAf8BkgG9Ae8B/wGfAdAC/wGeAc0C/wNnAfIDHAEnDwABAQMEAQYDLgFH - A20B9wHOAb8BuAH/AeEB2AHSAf8B2gHOAcYB/wHfAdQBzAH/AeQB2gHTAf8B5wHeAdYB/wHoAeAB2AH/ - AfgB9gHzAf8EAAHvAeoB5AH/AegB3wHYAf8B5wHeAdcB/wHqAeIB3AH/AeYB3gHXAf8B3QHRAcoB/wHW - AcoBwgH/AdIBwwG8Af8B1wHLAcUB/wNcAfgDLwFKAwUBBwMBAQIYAAMDAQQBSAFiAVYB9gEAAaYBAAH/ - AQABmQEAAf8BAAGRAQAB/wEAAYoBAAH/AQABiAEAAf8DAAH/AygBPSQAAVICUwGoAQABsQEAAf8BAAGo - AQAB/wEAAaEBAAH/AQABnAEAAf8BAAGVAQAB/wNDAXcgAAMkATYD6wH/BAAD8wH/A/YB/wP2Af8D8gH/ - A/QB/wP2Af8D8gH/A/UB/wPzAf8D8gH/A/IB/wPzAf8C8QHyAf8C9wHwAf8C9wH0Af8D8wH/AvYB8gH/ - Au8B9QH/AvcB+QH/BAADPgFrJAADQwF3A/4B/wHtAu8B/wHsAu0B/wHqAusB/wHnAekB6gH/AegC5wH/ - AdMB2gHbAf8BjQHbAewB/wEAAcgB/AH/AQABigHHAf8CAAGSAf8BkQGSAZQB/wGBAZABoAH/AQABmQG3 - Af8BAAGlAdEB/wGDAbUB6QH/AYkBvwH5Af8BgQG1Ae8B/wEAAYQBswH/AgABkAH/AgABogH/AYsBvAHy - Af8BjgG+AfYB/wGTAbwB8QH/A2oB+QMoATwQAAMSARgDZQHlAcYBtQGuAf8B0gHFAb4B/wHeAdUBzwH/ - AdYBygHBAf8B3gHTAcsB/wHjAdoB0gH/AeYB3QHVAf8B6QHiAdsB/wH3AfQB8gH/AfkB9wH1Af8B6gHj - AdsB/wHoAeAB2QH/AegB3wHYAf8B5QHcAdQB/wHoAeAB2gH/Ad8B1QHOAf8B1QHHAcAB/wHNAb4BtwH/ - AdoBzgHJAf8B2gHOAcoB/wNkAecDEwEaHAADTAGSAQABrQEAAf8BAAGlAQAB/wEAAZwBAAH/AQABlgEA - Af8BAAGOAQAB/wEAAYgBAAH/AQABhQEAAf8BWgFgAVoB3iQAAVICUwGoAQABtAEAAf8BAAGrAQAB/wEA - AaQBAAH/AQABnwEAAf8BAAGZAQAB/wNDAXcgAAMkATYD6wH/BAAD+gH/A/oB/wP6Af8D+gH/A/kB/wP5 - Af8D+QH/A/gB/wP4Af8D+AH/AvcB+AH/A/cB/wP3Af8D9gH/A/YB/wLkAfcB/wP1Af8CggH6Af8C5QH5 - Af8EAAM+AWsgAAMCAQMDUwGqBAAB8ALxAf8B7gLwAf8B7QLuAf8B6wHsAe0B/wHdAd4B3wH/AbwBuAG2 - Af8BlAGdAaEB/wEAAc8B5gH/AQABzAH9Af8BAAGLAccB/wIAAY0B/wEAAYkBuQH/AQABsQHuAf8BgwG6 - AfoB/wGHAboB+AH/AQABtAHxAf8BAAGhAdMB/wIAAZwB/wIAAZsB/wIAAbEB/wGTAbcB2QH/A1wBzwM4 - AV4DHAEnAwQBBRAAA1QBpgG9AaoBpAH/AcIBsAGpAf8B1AHIAcIB/wHWAcoBxAH/AdMBxQG9Af8B2gHO - AccB/wHfAdUBzQH/AeQB2wHTAf8B7wHpAeQB/wHpAeEB2gH/Ae4B6AHjAf8B5wHfAdcB/wHmAd4B1gH/ - AeUB3AHUAf8B4gHYAdAB/wHfAdMBzAH/AeIB2QHTAf8B1QHIAcEB/wHJAbkBsgH/AeMB2wHXAf8B6AHh - Ad8B/wG8AakBogH/A1MBqBgAAxYBHgEAAagBAAH/AQABsgEAAf8BAAGlAQAB/wEAAZ8BAAH/AQABmQEA - Af8BAAGRAQAB/wEAAYoBAAH/AQABhwEAAf8DAAH/Az0BaSAAAVICUwGoAQABtwEAAf8BAAGtAQAB/wEA - AacBAAH/AQABogEAAf8BAAGcAQAB/wNDAXcgAAMkATYD6wH/BAAD+gH/A/kB/wP5Af8D+QH/AvkB+AH/ - A/gB/wP4Af8D+AH/A/cB/wP3Af8D9wH/A/YB/wP2Af8D9gH/AvEB9QH/AgAB+wH/AgAC/wGPAZAB+QH/ - AvMB+AH/BAADPgFrIAADGQEjA18B4wP9Af8D8wH/AfEC8gH/Ae8C8AH/A/EB/wHGAcsB0AH/AQABmgHF - Af8BAAGlAd0B/wEAAa0B5gH/AYMB2wH2Af8BAAHRAf4B/wEAAY8BzQH/AgABkAH/AQABhQGvAf8BAAGj - AdgB/wEAAagB4AH/AQABoAHTAf8BAAGQAasB/wIAAZEB/wIAAZ4B/wGCAYQBsAH/AfAB8gHrAf8DNgFY - GAADIgEyAa0BmQGTAf8BvQGqAaQB/wG9AaoBpAH/AdQByAHDAf8BzAG+AbcB/wHOAb8BtwH/AdUByAG/ - Af8B2gHNAcUB/wHpAeIB3AH/AeYB3gHXAf8B4QHXAc4B/wHqAeMB3QH/AeUB3AHVAf8B4gHYAc8B/wHg - AdYBzQH/Ad4B0gHKAf8B2AHMAcMB/wHSAcQBvAH/AeMB2wHXAf8B6gHkAeEB/wHIAbgBsgH/AcwBvgG5 - Af8BuwGoAaIB/wGuAZkBlAH/AyQBNRQAAVcCWQG/AQABugEAAf8BAAGuAQAB/wEAAagBAAH/AQABowEA - Af8BAAGcAQAB/wEAAZYBAAH/AQABjgEAAf8BAAGIAQAB/wEAAYYBAAH/AUEBagFBAfkDBgEIHAABUgJT - AagBAAG5AQAB/wEAAbABAAH/AQABqgEAAf8BAAGmAQAB/wEAAZ8BAAH/A0MBdyAAAyQBNgPrAf8EAAPX - Af8D0gH/A+QB/wPvAf8D8wH/A/EB/wPwAf8D8QH/A+4B/wPwAf8D8QH/A/EB/wPvAf8D8AH/AtQB8QH/ - AgAB+QH/AgAB+gH/ArUB9wH/AfUC9AH/BAADPgFrIAADRwGBA/oB/wP4Af8D9QH/A/MB/wLxAfIB/wPy - Af8B1QHZAdsB/wEAAaQB3QH/AQABqAHrAf8BAAGmAekB/wEAAaoB4AH/AQAB2wH0Af8BAAHUAv8BAAGQ - Ac4B/wIAAYsB/wEAAYQBmgH/AaABrgG+Af8BvQHFAcoB/wHCAcQBwgH/AgABnQH/AgABnQH/AbwBvwHN - Af8DYgHvAxcBIBgAA1EBoAGwAZwBlwH/AbcBpAGeAf8BuAGkAZ4B/wHRAcUBwAH/AcQBtAGtAf8ByAG4 - Aa8B/wHOAb4BtQH/AdwB0QHKAf8B5QHcAdYB/wHaAc4BxQH/AdwB0AHHAf8B4wHZAdIB/wHiAdgB0QH/ - AdoBzgHEAf8B2gHNAcQB/wHXAcoBwQH/AdIBwwG6Af8BzAG9AbQB/wHZAc4ByAH/AdYBygHFAf8BygG8 - AbYB/wHdAdQB0QH/Ab0BqwGlAf8BrwGaAZUB/wNSAaQQAAMsAUQBAAG3AQAB/wEAAboBAAH/AQABsAEA - Af8BAAGrAQAB/wEAAaYBAAH/AQABoAEAAf8BAAGaAQAB/wEAAZMBAAH/AQABiwEAAf8BAAGGAQAB/wEA - AYABAAH/A04BmRwAAVICUwGoAQABuwEAAf8BAAGyAQAB/wEAAawBAAH/AQABqQEAAf8BAAGiAQAB/wND - AXcgAAMkATYD6wH/BAADzwH/A70B/wPJAf8D1wH/A9IB/wPNAf8D1wH/A8sB/wPBAf8D1gH/A9IB/wPI - Af8DygH/A9MB/wK2Ac8B/wLBAeAB/wPvAf8CuQHqAf8D7QH/BAADPgFrHAADHAEnA2AB6wP3Af8D9gH/ - A/UB/wP0Af8B8gLzAf8D8gH/AewB6gHoAf8BigGpAdIB/wEAAZEBzQH/AQABlAHKAf8BAAGWAcQB/wGM - AacBwAH/AZkB5wHrAf8BAAHbAv8CAAGnAf8DAAH/Ab0BvgG7Af8B2wHeAdsB/wGyAbMBvwH/AgABlgH/ - AgABpgH/AeUB6AHlAf8DVwG4AwABARQAAxABFgNgAesBrwGaAZUB/wGxAZ0BlwH/AbQBnwGZAf8BzwHC - AbwB/wG/Aa0BpQH/AcMBsQGnAf8BygG5AbAB/wHfAdUBzgH/AdMBxAG7Af8B0QHCAbkB/wHSAcMBugH/ - AdoBzgHGAf8B8AHrAecB/wHfAdUBzgH/AdQBxQG8Af8B0wHFAbwB/wHQAcEBuAH/AdkBzQHGAf8BzQG+ - AbYB/wG+AawBpAH/AcQBtAGuAf8B8gHvAe4B/wHOAcEBvQH/AbUBoQGcAf8DYQHuAxIBGQwAAVoCYQHk - AQABxgEAAf8BAAG6AQAB/wEAAbQBAAH/AQABrQEAAf8BAAGpAQAB/wEAAaMBAAH/AQABnQEAAf8BAAGW - AQAB/wEAAZABAAH/AQABigEAAf8BAAGHAQAB/wMAAf8DGgEkGAADTgGYAQABvgEAAf8BAAG1AQAB/wEA - Aa8BAAH/AQABrAEAAf8BAAGnAQAB/wM4AV4gAAMkATYD6wH/BAADxQH/A6wB/wO5Af8DyAH/A8EB/wO6 - Af8DwAH/A7wB/wO0Af8DvQH/A7oB/wO2Af8DuAH/A7oB/wO6Af8DugH/A8QB/wOxAf8DzwH/BAADPgFr - HAADUQGcA/AB/wP0Af8D9AH/A/QB/wP0Af8B8wL0Af8B8gLzAf8B9QH0AfIB/wHAAcwB3AH/AaUBuAHR - Af8BxgHNAdQB/wHdAd4B3wH/AewB5wHmAf8B1wHhAeAB/wGfAd0B3wH/AcIBtwG5Af8BiwIAAf8BgAIA - Af8BwgHFAbwB/wKHAa0B/wIAAZUB/wIAAbYB/wH7Af4B9gH/A0EBchgAAzEBTQGWAYEBAAH/AakBlAGP - Af8BrAGWAZEB/wGvAZoBkwH/AcwBvgG5Af8BvQGpAaAB/wG7AaYBnAH/Ac8BwAG4Af8BzgG+AbUB/wHF - AbIBqAH/AcsBugGxAf8B0QHCAboB/wHoAeEB3QH/BAAB+QH3AfYB/wHcAdEBywH/AdYByQHBAf8B3QHS - AcwB/wHXAcoBwwH/AdIBxAG9Af8B0AHCAbsB/wHeAdUB0QH/A/4B/wHlAd4B2wH/AbcBpAGfAf8BmAGD - AQAB/wMyAVEIAANQAZ0BAAG9AQAB/wEAAcEBAAH/AQABuQEAAf8BAAG3AQAB/wEAAbEBAAH/AQABqwEA - Af8BAAGmAQAB/wEAAaABAAH/AQABmgEAAf8BAAGUAQAB/wEAAY4BAAH/AQABiAEAAf8BAAGCAQAB/wFT - AWABUwHxAwUBBwMLAQ8BSQJKAYkDRAF5A0QBeQNDAXgBWAJcAdEBAAG+AQAB/wEAAbYBAAH/AQABsQEA - Af8BAAGuAQAB/wEAAaoBAAH/AVUBVwFVAbcDQwF4A0QBeQNEAXkDQgF2EAADJAE2A+oB/wQAA+EB/wPg - Af8D5wH/A+IB/wPkAf8D5gH/A+AB/wPmAf8D4QH/A98B/wHhAeAB4QH/A+MB/wPgAf8D3gH/A+UB/wPg - Af8D3AH/A90B/wPmAf8EAAM+AWsYAAMpAT4DagH5A+AB/wP3Af8B9AH1AfQB/wP0Af8B8wL0Af8B8wL0 - Af8B8wL0Af8C8wH0Af8B9QH0AfIB/wH3AfUB8gH/AvMB8gH/A+4B/wHoAeoB6wH/AegC6QH/AdwC2AH/ - Ae0C3gH/AeIBzQHKAf8DAAH/AwAB/wIAAZ0B/wIAAZwB/wG4AbkBywH/A2oB+QMiATEYAANFAXwBkgIA - Af8BogGMAYcB/wGmAZABiwH/AaoBlAGNAf8ByQG5AbMB/wG5AaMBmQH/AcEBrgGlAf8B1wHLAcQB/wHM - AbsBswH/AdEBwwG7Af8B0gHEAbwB/wHMAb0BtAH/AdQBxwHAAf8B8wHwAe4B/wHmAd4B2gH/Ab0BqAGe - Af8BwAGtAaMB/wHJAbkBsAH/AbgBoQGWAf8BuAGhAZcB/wG3AaIBlwH/Ab4BrAGkAf8B4wHbAdkB/wHG - AbgBtAH/Ab8BrgGpAf8BoQGOAYoB/wNGAX4IAANBAXIDQgF1A0IBdANCAXQDUwGqAQABtQEAAf8BAAGw - AQAB/wEAAakBAAH/AQABpAEAAf8BAAGiAQAB/wFaAV8BWgHbA0IBdANCAXQDQgF0A0gBhQMKAQ4DBQEH - AU4CXQHwAQABywGDAf8BAAHFAQAB/wEAAcQBAAH/AQABwgEAAf8BAAG7AQAB/wEAAbgBAAH/AQABtAEA - Af8BAAGvAQAB/wEAAasBAAH/AQABqAEAAf8BAAGhAQAB/wEAAZ0BAAH/AQABkgEAAf8BTwFQAU8BmxAA - AyQBNgPpAf8EAAP2Af8D9gH/A/UB/wP1Af8D9QH/A/QB/wP0Af8D8wH/A/MB/wPzAf8D8gH/A/IB/wHy - AfEB8gH/A/EB/wPxAf8ChgH2Af8CAAH2Af8B6wHqAesB/wHtAewB7QH/A/4B/wM+AWsUAAMEAQYDWAG8 - A+oB/wPjAf8D9wH/AfMC9AH/AvMB9AH/AvMB9AH/A/MB/wHyAvMB/wHyAvMB/wPyAf8B8ALxAf8B7gLv - Af8B6wHsAe0B/wHpAeoB6wH/AecC6QH/AeUC6AH/Ad8B4AHaAf8BwgG7AeAB/wIAAcQB/wIAAZ0B/wIA - AZMB/wIAAacB/wHiAeUB4gH/A14BzgMEAQYYAANOAZgBjAIAAf8BmgGEAQAB/wGgAYkBhAH/AaQBjAGF - Af8BygG7AbUB/wHIAbcBsAH/Ae4B6QHnAf8B5QHdAdkB/wHDAbABpwH/AboBpAGbAf8BtgGfAZQB/wG1 - AZ4BkwH/AbYBnwGVAf8BvQGoAZ8B/wHNAb0BtgH/AbMBmwGRAf8BxgG0AawB/wG5AaMBmgH/AbQBnQGT - Af8BtAGdAZMB/wG5AaMBmAH/Aa8BmAGOAf8BvgGtAagB/wGgAYoBhAH/AaEBigGEAf8BlAGAAQAB/wNO - AZkYAAMuAUcBAAG0AQAB/wEAAbQBAAH/AQABrAEAAf8BAAGnAQAB/wEAAacBAAH/AVUBVgFVAbEYAAMY - ASIBAAG6AQAB/wEAAcwBgwH/AQABwgEAAf8BAAG/AQAB/wEAAbwBAAH/AQABugEAAf8BAAG2AQAB/wEA - AbIBAAH/AQABrQEAAf8BAAGpAQAB/wEAAaQBAAH/AQABpAEAAf8BXQFhAV0B4hQAAyQBNgPoAf8EAAPV - Af8D0AH/A+IB/wPtAf8D8QH/A+8B/wPuAf8D7wH/A+wB/wPuAf8D7wH/A+8B/wPtAf8D7gH/As0B7gH/ - AgAB+gH/AgAB/QH/AsYB8gH/AewB7QHsAf8B+wL6Af8DPgFrFAADNwFbBAAD1QH/A+0B/wP1Af8D8wH/ - AfIC8wH/AfIB8wHyAf8D8gH/AfEC8gH/AfEC8gH/AfAC8QH/Ae8C8AH/Ae4C7wH/AewB7QHuAf8B6gHr - AewB/wHnAekB6gH/AeUC5wH/AeUB6AHmAf8BzgHQAd0B/wGPAYwB5gH/AYwBiwHCAf8CAAGXAf8BgAEA - AbgB/wH4AfsB9AH/A0oBixwAA1EBoAGDAgAB/wGRAgAB/wGWAgAB/wGoAZEBiwH/AekB4gHgAf8B4QHY - AdUB/wHTAcUBvwH/AbkBowGaAf8BsQGYAY4B/wGwAZYBjQH/AbEBmAGOAf8BsQGYAY4B/wGxAZgBjwH/ - Aa4BlAGKAf8BwQGtAaUB/wHUAccBwgH/AcYBtAGtAf8BrgGUAYsB/wGxAZcBjgH/AbIBmAGOAf8BuwGi - AZYB/wGvAZcBjQH/AbwBqwGmAf8BmgGEAQAB/wGaAYMBAAH/AYYCAAH/A1EBoBgAAzsBYwEAAbYBAAH/ - AQABtgEAAf8BAAGuAQAB/wEAAaoBAAH/AQABqQEAAf8BVwFaAVcBvRwAAU4CTwGXAQAByAGBAf8BAAHD - AQAB/wEAAb8BAAH/AQABvgEAAf8BAAG7AQAB/wEAAbgBAAH/AQABtAEAAf8BAAGwAQAB/wEAAaoBAAH/ - AQABqgEAAf8BAAGcAQAB/wMrAUIUAAMkATYD5gH/BAADywH/A74B/wPPAf8D2gH/A9kB/wPZAf8D3QH/ - A9gB/wPMAf8D3AH/A9wB/wPUAf8D0wH/A9wB/wK+AdgB/wLhAeQB/wK9AfYB/wIAAf0B/wK6AfEB/wH2 - AfcB9gH/Az4BaxAAAwwBEANeAdgD7gH/A9YB/wPyAf8B8gLzAf8D8gH/AfEC8gH/AfEC8gH/AfAC8QH/ - AvAB8QH/Ae8C8AH/Ae4C7wH/Ae0B7gHvAf8B7QLuAf8B7AHtAe4B/wHqAuwB/wHnAekB6gH/AeUB5wHo - Af8B4wHlAeYB/wHjAeYB5QH/AesB7wHgAf8BmgGbAbcB/wIAAZ8B/wG4AbsBzAH/AfkB+wH4Af8DLQFF - HAABTgJNAZUDAAH/AYYCAAH/AaEBjQGIAf8BswGhAZsB/wG6AacBoQH/AcwBvAG3Af8BvgGpAaIB/wGq - AY4BhQH/Aa8BlQGLAf8BrAGRAYgB/wGsAZIBiQH/AawBkgGJAf8BrQGSAYkB/wGqAY4BhQH/AccBtQGw - Af8EAAHiAdkB1gH/AawBkQGJAf8BrAGRAYkB/wGtAZMBigH/AbQBmgGQAf8BqQGPAYcB/wG4AaUBoQH/ - AZECAAH/AY4CAAH/AwAB/wFOAk0BlhgAAzsBYwEAAbgBAAH/AQABuQEAAf8BAAGxAQAB/wEAAa0BAAH/ - AQABrQEAAf8BVwFaAVcBvRwAAwUBBwFBAmoB+QEAAcwBgwH/AQABwAEAAf8BAAG/AQAB/wEAAb0BAAH/ - AQABugEAAf8BAAG2AQAB/wEAAbIBAAH/AQABrwEAAf8BAAGvAQAB/wFWAVkBVgG+GAADJAE2A+QB/wQA - A8oB/wOuAf8DtQH/A8cB/wO+Af8DtQH/A78B/wO3Af8DrAH/A7wB/wO4Af8DsQH/A7QB/wO5Af8DtAH/ - A7wB/wPNAf8CAAHSAf8CAAH0Af8D8gH/Az4BaxAAA0YBfgQAA9wB/wPcAf8D9QH/AvEB8gH/AfAB8QHy - Af8B8ALxAf8B7wLwAf8B7gHvAfAB/wHuAu8B/wHtAe4B7wH/AewB7QHuAf8B7ALtAf8B6wHsAe0B/wHq - AuwB/wHpAusB/wHoAuoB/wHmAecB6AH/AeMB5QHmAf8B4QHjAeQB/wHnAeoB5AH/AYwBiwG8Af8CAAG1 - Af8B4QHkAeEB/wNhAeEDDAEQHAADQgF2AwAB/wGLAgAB/wGYAYMBAAH/AY0CAAH/AasBlAGOAf8B8wHw - Ae8B/wHVAcgBxAH/Aa0BkgGKAf8BsAGUAY0B/wGsAY8BiAH/AakBjAGFAf8BpwGJAYEB/wGnAYkBgQH/ - AaYBiAGAAf8BugGjAZ0B/wHxAe0B7AH/Ad4B0wHPAf8BqAGKAYMB/wGoAYoBgwH/AaoBjgGGAf8BqwGQ - AYYB/wGmAYwBhQH/Aa8BnQGYAf8BhQIAAf8BhwIAAf8DAAH/A0QBeRgAAzsBYwEAAboBAAH/AQABugEA - Af8BAAG0AQAB/wEAAa8BAAH/AQABsAEAAf8BVwFaAVcBvSAAATwCPQFoAQABwwEAAf8BAAHGAQAB/wEA - Ab8BAAH/AQABvgEAAf8BAAG7AQAB/wEAAbgBAAH/AQABtAEAAf8BAAG2AQAB/wEAAaMBAAH/AxYBHhgA - AyQBNgPjAf8EAAPXAf8D0gH/A90B/wPbAf8D3AH/A9wB/wPXAf8D3QH/A9gB/wPWAf8D1wH/A9oB/wPX - Af8D1AH/A9sB/wPUAf8DzwH/A88B/wPZAf8D6QH/Az4BaxAAAy4BSANcAcwD+wH/A+YB/wHzAvQB/wHv - AvAB/wHvAvAB/wHvAvAB/wHuAu8B/wHuAu8B/wHtAu4B/wHsAe0B7gH/AesC7QH/AesC7AH/AeoB6wHs - Af8B6AHqAesB/wHoAekB6gH/AecB6QHqAf8B5gLoAf8B5AHmAecB/wHiAeQB5QH/AeAC4wH/AdEB0wHb - Af8BzwHRAdgB/wHvAvEB/wNSAaQgAAMtAUUDAAH/AwAB/wMAAf8BjwIAAf8B0QHFAcMB/wQAAfMC7wH/ - AcABqwGlAf8BvQGnAaEB/wG+AakBogH/AcABqwGlAf8BvQGnAaEB/wG1AZwBlQH/AaoBjQGGAf8BqAGL - AYMB/wG4AaEBmwH/AbcBnwGYAf8BtwGfAZkB/wGhAYIBAAH/AaYBiQGAAf8BoAGDAQAB/wGmAY4BiAH/ - AaABjAGIAf8DAAH/AYECAAH/AwAB/wMvAUkYAAM7AWMBAAG7AQAB/wEAAb0BAAH/AQABtgEAAf8BAAGy - AQAB/wEAAbIBAAH/AVcBWgFXAb0kAAFaAmAB3gEAAcwBgwH/AQABwAEAAf8BAAG/AQAB/wEAAb0BAAH/ - AQABugEAAf8BAAG5AQAB/wEAAbYBAAH/A0wBkhwAAyQBNgPhAf8EAAPtAf8D7QH/A+wB/wPsAf8D7AH/ - A+sB/wPrAf8D6wH/AesC6gH/A+sB/wPqAf8D6AH/AuUB5gH/A+MB/wHhAeIB4QH/A98B/wPdAf8D2wH/ - A9gB/wPaAf8DPgFrFAADBQEHA0ABcQNZAfUC8wH0Af8B7gHvAfAB/wHuAu8B/wHtAu8B/wHsAu4B/wHs - Au0B/wHrAewB7QH/AeoB6wHsAf8B6QLrAf8B6AHqAesB/wHoAekB6gH/AecB6AHpAf8B5gLoAf8B5QLn - Af8B5AHmAecB/wHjAuYB/wHiAeQB5QH/Ad8B4gHjAf8B3wLiAf8B3ALfAf8B9wL5Af8DOAFcIAADDAEQ - A1oB5AMAAf8BgwIAAf8BlgGBAQAB/wGqAZgBlAH/AfQB8gHxAf8B2QHNAcoB/wGcAgAB/wGgAYEBAAH/ - AaEBgwEAAf8BpgGIAYEB/wGsAZEBigH/AbYBnQGXAf8BvQGoAaIB/wHSAcMBvwH/AcgBtgGyAf8BnQIA - Af8BuQGjAZwB/wGyAZkBkgH/AZkCAAH/AZQCAAH/AacBkwGNAf8BjwIAAf8DAAH/AwAB/wNcAecDDQES - GAADOwFjAQABvAEAAf8BAAG+AQAB/wEAAbgBAAH/AQABtAEAAf8BAAG1AQAB/wFXAVoBVwG9JAADKAE8 - AQABvQEAAf8BAAHIAYEB/wEAAb8BAAH/AQABvgEAAf8BAAG7AQAB/wEAAcEBAAH/AUgCYgH2AwQBBRwA - AyQBNgLeAd8B/wL+Af0B/wH0AfMB6gH/AuwB6wH/AuoB6wH/AecB5gHrAf8C9QHoAf8C9wHnAf8C5QHq - Af8D6gH/A+oB/wPpAf8D5wH/AeQC5QH/A98B/wPUAf8DywH/A8oB/wPMAf8DxwH/A7sB/wPQAf8DOgFi - GAADDgETA10B7QHxAfIB8wH/Ae0C7gH/AewB7QHuAf8B6wHsAe0B/wHqAuwB/wHqAesB7AH/AekC6wH/ - AegB6QHrAf8B5wLpAf8B5gLoAf8B5QHnAegB/wHkAeYB5wH/AeMC5gH/AeMB5QHmAf8B4gHkAeUB/wHh - AuQB/wHgAeIB4wH/Ad8C4gH/AdwB3wHgAf8B3QHgAeEB/wNdAfADFgEeJAADTAGRAwAB/wMAAf8DAAH/ - AwAB/wGvAZ0BmAH/AbwBqQGlAf8BnQIAAf8BnwGBAQAB/wGjAYUBAAH/AaYBiAGCAf8BpwGJAYMB/wGn - AYkBgwH/AaYBiQGCAf8BygG6AbYB/wHYAcwByQH/AboBowGeAf8BpAGHAYAB/wG4AaIBnAH/AaUBjQGH - Af8BjgIAAf8BpwGTAY4B/wMAAf8DAAH/AwAB/wNNAZUcAAM7AWMBAAG+AQAB/wEAAcABAAH/AQABuQEA - Af8BAAG2AQAB/wEAAbgBAAH/AVcBWgFXAb0oAAFWAlgBuQEAAcsBgwH/AQABwgEAAf8BAAG/AQAB/wEA - AcEBAAH/AQABuwEAAf8DOwFjIAADJAE2At8B3gH/AvYB/AH/AuIB6QH/AvEB6AH/AuYB6QP/AecB/wK5 - Ae0B/wKdAfAD/wHnAf8B6AHpAegB/wPnAf8B5QLmAf8D5AH/AeIC4QH/A9UB/wG4AbkBuAH/A5wB/wOU - Af8DlQH/A4oB/wOpAf8DYgHvAxUBHRgAAy0BRQP9Af8B7ALtAf8B6wHsAe0B/wHqAesB7AH/AekC6wH/ - AegB6QHrAf8B5wHpAeoB/wHnAegB6QH/AeYC6AH/AeUC5wH/AeQB5gHnAf8B4wHlAeYB/wHiAeQB5QH/ - AeEC5AH/AeAB4wHkAf8B3wHiAeMB/wHeAeEB4gH/Ad0B4AHhAf8B3QHgAeEB/wHbAd4B3wH/AekC7AH/ - A1gBuygAAxoBJQJNASkB+gMAAf8DAAH/AwAB/wGZAYUBgAH/AZoBhAEAAf8BtQGgAZsB/wGcAgAB/wGl - AYkBhAH/AakBjQGHAf8BqQGOAYgB/wGpAY4BiAH/AagBjAGGAf8BswGbAZYB/wGyAZoBlAH/AbUBnQGY - Af8BxgGzAa4B/wGkAYoBhAH/AakBlAGPAf8B4AHYAdYB/wG4AawBqgH/AwAB/wMAAf8BTQIpAfoDHAEo - HAADOwFjAQABvwEAAf8BAAHBAQAB/wEAAbsBAAH/AQABuQEAAf8BAAG6AQAB/wFXAloBvSgAAxMBGgEA - AbUBAAH/AQABygGCAf8BAAG/AQAB/wEAAccBAAH/AV4CYQHaJAADJAE2At8B3AP/AfoB/wIAAfQB/wLV - AegD/wHkA/8B4QH/AgAB9AH/AoMB8gP/AeQB/wLrAeYB/wHmAeUB5AH/AuIB4wH/A+EB/wPfAf8DzwH/ - A6EB/wMAAf8DAAH/AwAB/wOZAf8DvAH/Ay8BSRwAA0IBdAH+A/8B6QHqAesB/wHpAeoB6wH/AegC6gH/ - AecC6QH/AeYB6AHpAf8B5QLnAf8B5AHmAecB/wHjAuYB/wHjAuUB/wHiAeQB5QH/AeEB4wHkAf8B4AHi - AeMB/wHfAeEB4gH/Ad4B4QHiAf8B3QHgAeEB/wHcAd8B4AH/AdsB3gHfAf8B2gHdAd4B/wHYAdsB3AH/ - AfUB9wH4Af8DQgF1LAADSwGQAwAB/wMAAf8DAAH/AZMBgQEAAf8BgwIAAf8BuQGqAacB/wGpAZIBjgH/ - AZ8BhgGCAf8BpAGKAYYB/wGmAYsBhwH/AacBjAGHAf8BpwGLAYcB/wGzAZsBlgH/AbYBoAGbAf8BrAGQ - AYsB/wGxAZkBlAH/AbwBrQGpAf8BkgIAAf8B1QHNAcwB/wGzAagBpgH/AwAB/wMAAf8DTAGTIAADOwFj - AQABvwEAAf8BAAHCAQAB/wEAAb0BAAH/AQABugEAAf8BAAG9AQAB/wFXAloBvSwAA0oBjAEAAccBgAH/ - AQABywGDAf8BAAG7AQAB/wMmATgkAAMkATYD2wP/AfUB/wKGAfEB/wIAAfgB/wK/AesB/wKOAe8B/wIA - AfYB/wLjAeYB/wLhAeYB/wLYAeUB/wLfAeIB/wLiAeAB/wPfAf8D3AH/A8IB/wOaAf8DzAH/A90B/wPy - Af8D5wH/Ay8BSiAAA1IBpAH3AvkB/wHmAegB6QH/AeYB6AHpAf8B5gHnAegB/wHlAecB6AH/AeQB5gHn - Af8B4wHlAeYB/wHiAeUB5gH/AeIB5AHlAf8B4QHjAeQB/wHgAeIB4wH/Ad8C4gH/Ad4B4QHiAf8B3QHg - AeEB/wHcAd8B4AH/AdsB3gHfAf8B2gHdAd4B/wHZAd0B3gH/AdgB2wHcAf8B2AHcAd0B/wNfAfsDIgEx - LAADCgENA1wB1AMAAf8DAAH/AYkCAAH/AZcBhQGBAf8BpgGTAZAB/wHLAbwBuQH/AaIBjQGJAf8BowGM - AYgB/wGlAY0BiQH/AaUBjQGJAf8BpAGMAYgB/wGoAZMBjwH/AbUBogGfAf8BogGMAYkB/wGeAYoBhgH/ - AaIBkQGOAf8B0wHKAckB/wGgAZEBjwH/AwAB/wMAAf8DWwHWAwoBDiAAAzsBYwEAAcABAAH/AQABwwEA - Af8BAAG+AQAB/wEAAbwBAAH/AQABwAEAAf8BVwJaAb0sAAMBAQIBVAJhAe4BAAHSAYgB/wNWAbMoAAMk - ATYD2QP/AfUB/wLLAegB/wIAAfcB/wKXAe0B/wIAAfwB/wKuAesB/wLYAeYB/wIAAfMB/wIAAfAB/wLD - AeMB/wLuAdsB/wPbAf8D2QH/A7sB/wOYAf8D8gH/BAAD9QH/Ay8BSiAAAwUBBwNhAdoB8ALyAf8B5QLn - Af8B4wLmAf8B4wHlAeYB/wHjAeUB5gH/AeIC5QH/AeIB5AHlAf8B4QHjAeQB/wHgAeIB4wH/Ad8C4gH/ - Ad4B4QHiAf8B3QHgAeEB/wHcAd8B4AH/AdsB3gHfAf8B2gHdAd4B/wHZAdwB3QH/AdgB3AHdAf8B1wHb - AdwB/wHWAdkB2gH/AeAB4wHkAf8DXQHSAwQBBjAAAx0BKQNXAegDAAH/AwAB/wGpAZ0BmwH/AZ4BjQGL - Af8BuAGqAacB/wG+AbIBsAH/AZwBigGHAf8BnQGKAYcB/wGdAYoBhwH/AZwBiQGGAf8BogGPAYsB/wG3 - AacBpQH/AaABjwGNAf8BogGSAY8B/wGfAZABjQH/AeYC4QH/AZwBkAGOAf8DAAH/A1UB6gMeASskAAM+ - AWsBAAHGAYAB/wEAAcwBgwH/AQABxgEAAf8BAAHFAQAB/wEAAcgBAAH/AVkCXAHMMAABQQJCAXMBAAGo - AQAB/wMSARgoAAMkATYD2AH/AvUB9gH/AvkB4gH/AgAB8AH/AqUB6gH/AgAB8AH/AucB4wH/A+IB/wLU - AeIB/wLTAeAB/wLZAdwB/wLbAdoB/wPZAf8D1gH/A7EB/wOYAf8EAAPwAf8DMAFLJAADCwEPA1gBvANd - Ae0C/QH+Af8B+wH8Af0B/wH0AfUB9gH/AeoB7AHtAf8B4wHlAeYB/wHfAuIB/wHdAuAB/wHcAd8B4AH/ - AdwB3wHgAf8B2wHeAd8B/wHbAd4B3wH/AdoB3QHeAf8B2QHcAd0B/wHYAdsB3AH/AdcB2gHbAf8B1gHZ - AdsB/wHVAdkB2gH/AdIB1gHXAf8B7gHwAfEB/wNLAY44AAMiATEDWgHeAwAB/wGhAZUBkwH/AasBnwGd - Af8BpAGWAZQB/wG9AbEBrwH/Ab4BswGxAf8BoAGRAY4B/wGhAZEBjgH/AaYBlQGSAf8BpAGTAZAB/wGy - AaUBowH/Aa4BoQGfAf8BpQGXAZQB/wG9AbIBsAH/AaEBlgGTAf8DAAH/A18B4AMjATQoAAM4AV4BWQJn - AfIBWQJnAfIBWQJnAfIBWQJnAfIBWQJnAfIDVgGzMAADCwEPAzQBVCwAAyQBNgPXAf8C9AH1A/8B3wH/ - AroB6AH/AgAC/wKWAewD/wHcAf8D3wH/AuIB3QH/AuAB2wH/AtoB2QH/AtYB1wH/A9cB/wPQAf8DoAH/ - A7sB/wPvAf8DLwFKLwABAQMTARoDKQQ+AWsDUQGcA1wByQNkAewB+gL7Af8B9wL5Af8B7wHxAfIB/wHk - AecB6AH/AdwB3wHgAf8B2AHbAdwB/wHVAdkB2gH/AdQB2AHZAf8B1AHYAdoB/wHUAdgB2QH/AdMB1wHZ - Af8B0wHWAdgB/wHRAdUB1gH/AfcC+AH/Ay4BRzwAAxUBHQNVAbIDAAH/AZQBiAGGAf8BuAGtAasB/wGx - AaUBowH/AcEBtwG1Af8BxgG9AbsB/wGwAaIBoAH/AagBmgGYAf8BqAGcAZoB/wGuAaIBoAH/AcIBuAG2 - Af8BwQG3AbUB/wGqAaABngH/AwAB/wNVAbQDFgEerAADJQE3A9cB/wP0Af8C6AHiAf8C7AHiAf8CAAH2 - Af8CugHlAf8C8QHdAf8D3QH/A9oB/wPYAf8D1wH/A9UB/wPSAf8DwAH/A7UB/wPIAf8DMAFLSAADEgEY - AygBPAM+AWoDUAGbA1kBxwNcAeoB+AL5Af8B9AL2Af8B6gHtAe4B/wHeAeIB4wH/AdUB2QHbAf8B0QHV - AdYB/wHNAdIB0wH/AdQB2QHaAf8DZQHlAwwBEEQAAzUBWANZAckDAAH/AaMBmAGWAf8BvQGzAbEB/wHT - AcoByAH/Ad4B1gHVAf8B0wHKAckB/wHLAcEBwAH/AcIBtwG2Af8BtwGuAa0B/wGiApoB/wNaAcoDNwFa - tAADHwEtA6gB/QwAAv4C/xAAA/0B/wP7Af8D9gH/AekC6gH/A98B/wPFAf8DMAFMYAADEAEWAycBOgM9 - AWgDTgGZA1oBxQNiAekB9gH3AfgB/wHvAfIB8wH/AfUB9wH4Af8DVgGrTAADAQECAykBPwNIAYcDVwG9 - A1wB3ANgAesDYAHrA2EB3ANWAb4DSAGIAyoBQAMBAQK4AAMKAQ4DSAGDA04BlANKAYoDSgGKA0oBigNK - AYoDSgGKA0oBigNKAYoDSgGKA0oBigNKAYoDTAGQA0wBjwMfAS14AAMPARQDJgE4AzwBZgNRAZwDLgFI - /wA0AAEBAwABAVsAAQEDAAEBGwABAQMDAQQDAwEEAwMBBAMDAQQDAwEEAwMBBAMDAQQDAwEEAwMBBAMD - AQQDAwEEAwMBBAMDAQQDAwEEAwMBBAMDAQQDAwEEAwMBBAMDAQQDAwEEAwMBBAMDAQQDAwEEAwMBBAMA - AQE0AAMTARoDOAFcA1ABmwNZAccDXAHfA2AB6wNgAesDXAHfA1kBxwNRAZwDOAFcAxMBGigAAwMBBAMj - ATQDMgFRAzIBUAMyAVADMgFQAzIBUAMyAVADMgFQAzIBUAMyAVADMgFQAzIBUAMyAVADMgFQAzIBUAMy - AVADMgFQAzIBUAMyAVADMgFQAzIBUAMyAVADMgFQAzIBUAMyAVADMgFQAzIBUAMyAVADMgFRAyQBNQMD - AQQQAAMNARIDKQE/AycBOwMnAToDJwE6AycBOgMnAToDJwE6AycBOgMyAVEDTwGXA1sByANlAeUDXQHw - A2QB7ANeAdUDVAGsAz4BawMnAToDJwE6AycBOgMnATsDKQE/Aw4BEwMAAQETAAEBAw8BFAMhATADJwE6 + AWMDPAFnAzgBXQMYASE4AAMrAUMDTAGSAyYBOAMJAQwDAQECLAADBwEJAygBPAMfASwDAgEDJwABAQME + AQUDCQEMAw4BEwMSARkDFgEeAxgBIgMaASQDGwEmAxsBJgMaASUDGAEiAxYBHwMSARkDDgETAwkBDAME + AQYDAQECrAADIwE0A+IB/wQAA/EB/wPxAf8D8QH/A/EB/wPxAf8D8QH/A/EB/wPxAf8D8AH/A/AB/wPw + Af8D8AH/A/AB/wPvAf8D7wH/A+8B/wPuAf8D7gH/A/MB/wQAAz0BaigAAwoBDQMfAS0DFgEfAxYBHwNX + AboEAANeAd0DQgF2AxgBIgMEAQYoAAMiATIDZAHsA1YBswMBAQIbAAEBAwMBBAMGAQgDDQERAxUEHQEq + AyQBNgMpAT8DLQFFAy8BSQMwAU0DMQFPAzEBTwMwAU0DLwFKAy0BRQMpAT8DJQE3Ax4BKwMWAR4DDQES + AwcBCQMDAQQDAAEBLAADNAFUAwsBDzAAAVABUQFQAZ8BWQFnAVkB8gFZAWcBWQHyAVkBZwFZAfIBWQFn + AVkB8gFZAWcBWQHyA0ABcSAAAyUBNwPyAf9AAAKVAv8CnwL/DAADPwFsKAADKwFCA2EB5ANdAcoDWQG+ + A38B/gGkAqMB/wO8Af8D1QH/A1oBwAM1AVgDEgEZAwMBBA8AAQEQAAM8AWYBgwGtAccB/wNVAbIDAAEB + FAADAgEDAwYBCAMLAQ8DEgEZAxwBKAMnATsDMQFOAzgBXQM9AWoDQwF3A0YBgANIAYcDSgGKA0oBigNI + AYcDRgGBA0MBeAM+AWwDOAFeAzEBTwMoATwDHQEpAxMBGgMMARADBwEJAwIBAyQAAxIBGAMAAf8BQQFC + AUEBczAAA1UBtQEAAaYBAAH/AQABnAEAAf8BAAGTAQAB/wEAAY0BAAH/AQABhQEAAf8BRgFHAUYBgCAA + AyQBNgPuAf8EAAP+Af8D/gH/A/4B/wP+Af8D/QH/A/0B/wP9Af8D/QH/A/0B/wP8Af8D/AH/A/wB/wP8 + Af8D+wH/AvYB+wH/AgAC/wIAAf0B/wP6Af8IAAM+AWsoAANAAXEEAAHuAfAB8QH/Ae4C8AH/AdEB0gHT + Af8CxgHFAf8DvQH/A7UB/wPAAf8DbQH3A1IBqQM0AVQDGAEiAwcBCQMAAQEUAAFJAkoBiQGKAbUBzgH/ + AzcBWhQAAwEBAgMGAQgDDQERAxMBGgMdASkDKAE8AzQBVAM/AW8DSwGQA1kBvgNcAd8DZAHxA2oB+QNq + AfkDagH5A2oB+QNnAfIDXAHfA1kBvwNMAZIDQQFyAzUBVgMpAT4DHgErAxQBHAMNARIDBwEKAwIBAyAA + A1YBswEAAY0BAAH/AVgBYgFYAe8DAQECLAABUgFTAVIBqAEAAaUBAAH/AQABmwEAAf8BAAGTAQAB/wEA + AY0BAAH/AQABhgEAAf8DQwF3IAADJAE2A+4B/wQAA/4B/wP9Af8D/QH/A/0B/wP9Af8D/QH/A/0B/wP8 + Af8D/AH/A/wB/wP8Af8D+wH/A/sB/wP7Af8CoQH8Af8CrAH8Af8CmgH8Af8C0gH5Af8IAAM+AWsoAANQ + AZ4B9QH2AfcB/wHcAd4B3wH/Ad8B4gHjAf8BnAGeAaAB/wEAAYABiAH/AbUBtwG4Af8C1QHUAf8B3gHg + AeEB/wHiAeMB5AH/Ad4C3wH/A2IB7wNaAb0DSQGJAzUBVwMgAS8DEAEWAwcBCQMAAQEDBgEIAVkCWgG9 + A2UB9AMVAR0DAgEDAwQBBQMAAQEIAAMDAQQDCQEMAxABFgMYBCEBMQMtAUYDPgFsA1kBvgNfAfMB1wHK + AcIB/wHbAc8ByAH/Ad0B0gHKAf8B4AHVAc0B/wHjAdoB0wH/Ad8B0wHMAf8B3gHSAcoB/wHkAdsB1QH/ + Ad8B1QHOAf8B2wHQAckB/wNfAfMDWQG/A0ABcAMvAUkDIgEyAxkBIwMSARgDCgEOAwQBBRwAAyYBOAEA + AYsBAAH/AQABjQEAAf8BAAGCAQAB/wNKAYwsAAFSAVMBUgGoAQABqQEAAf8BAAGeAQAB/wEAAZcBAAH/ + AQABkAEAAf8BAAGJAQAB/wNDAXcgAAMkATYD7QH/BAAD0wH/A8wB/wPgAf8D7AH/A+8B/wPvAf8D7gH/ + A+8B/wPqAf8D7gH/A/AB/wPvAf8C6wHsAf8C+gHtAf8CzwHrAf8C9wHyAf8C2wH2Af8CAAL/AuEB/AH/ + BAADPgFrJAADBwEKA1wByQHxAfIB8wH/AeEB4wHkAf8B4QLkAf8BzwHSAdQB/wIAAakB/wIAAYUB/wEA + AYcBkwH/AbsBvQG7Af8B0wHXAdgB/wHaAd4B3wH/AeQB5wHoAf8B6wHtAe4B/wHlAeYB5wH/A00B+gNf + AeADWAG7A0wBkAM7AWQDOAFeA18B8wFYAloBwAMrAUMDQAFwAzUBVgMBAQIIAAMDAQQDCAELAxABFQMW + AR8DIAEuAz4BawNcAd8B2QHNAcYB/wHbAc8BxwH/Ad4B0gHLAf8B4QHWAc4B/wHiAdgB0QH/AeUB3AHV + Af8B6QHhAdsB/wHjAdkB0QH/AeYB3QHWAf8B9gHzAfAB/wHwAesB5gH/AeEB1wHQAf8B2wHQAcgB/wHZ + Ac0BxwH/A18B4ANAAW8DIQEwAxgBIQMRARcDCgENAwMBBBwAAV4BYQFeAdoBAAGYAQAB/wEAAYoBAAH/ + AQABiAEAAf8DAAH/AxMBGigAAVIBUwFSAagBAAGrAQAB/wEAAaEBAAH/AQABmgEAAf8BAAGTAQAB/wEA + AY0BAAH/A0MBdyAAAyQBNgPsAf8EAAPTAf8DvAH/A8MB/wPUAf8DywH/A8IB/wPRAf8DwgH/A7gB/wPP + Af8DyQH/A78B/wPCAf8CyAHLAf8C2gG/Af8C3wHSA/8B5AH/AtEB2QH/AaMBogH4Af8EAAM+AWskAAMa + ASQDYAHrAe0B7gHvAf8B5AHmAecB/wHiAeQB5QH/AeUB5gHjAf8BtwG6AdQB/wEAAZQB1QH/AQABhwHB + Af8BAAGBAZUB/wG/Ab0BuwH/AdIB1QHWAf8B0gHWAdgB/wHQAdQB1gH/AdAB1AHWAf8B1AHXAdgB/wHX + AtkB/wHVAdQB0wH/AccBxQHDAf8BpQGmAacB/wNtAfcBmAGUAZAB/wNkAecDZAHsAZsBywH5Af8DWwHI + AwYBCAsAAQEDBQEHAwsBDwMRARcDOgFiA2UB9AHYAcwBxgH/Ad4B0wHNAf8B3QHRAcoB/wHiAdgB0AH/ + AeUB2wHUAf8B5gHdAdYB/wHrAeQB3gH/AfIB7gHqAf8B7gHnAeIB/wHtAecB4QH/AeoB4gHcAf8B6gHi + AdwB/wHgAdQBzAH/AdsBzwHHAf8B1gHJAcEB/wHVAcgBwAH/A2UB9AM7AWUDEgEYAwwBEAMGAQgDAQEC + GAADOgFiAQABnQEAAf8BAAGYAQAB/wEAAY0BAAH/AQABiAEAAf8BAAGEAQAB/wFWAVgBVgG5KAABUgJT + AagBAAGuAQAB/wEAAaUBAAH/AQABnQEAAf8BAAGYAQAB/wEAAZABAAH/A0MBdyAAAyQBNgPrAf8EAAPE + Af8DsAH/A8MB/wPNAf8DyQH/A8QB/wPFAf8DxQH/A8AB/wPDAf8DwQH/A8EB/wPBAf8CvgHAAf8CzgHE + Af8CzAG9Af8CwgG/Af8C3AGuAf8C+gHtAf8EAAM+AWskAAMuAUgDfwH+AewC7QH/AegB6QHqAf8B5gHn + AegB/wHlAuYB/wHdAd4B3QH/AY4B2wHvAf8BAAHGAfwB/wEAAYgBxAH/AQABgQGVAf8BvwG9AbsB/wHM + Ac4BzwH/AcIBwwHCAf8CsQGvAf8BnwGhAaAB/wGNAZUBmgH/AYABkwGiAf8BAAGXAbYB/wEAAYwBsgH/ + AQABiAGLAf8BnQGZAZEB/wGSAb0B7wH/AZ8B0AL/AZ4BzQL/A2cB8gMcAScPAAEBAwQBBgMuAUcDbQH3 + Ac4BvwG4Af8B4QHYAdIB/wHaAc4BxgH/Ad8B1AHMAf8B5AHaAdMB/wHnAd4B1gH/AegB4AHYAf8B+AH2 + AfMB/wQAAe8B6gHkAf8B6AHfAdgB/wHnAd4B1wH/AeoB4gHcAf8B5gHeAdcB/wHdAdEBygH/AdYBygHC + Af8B0gHDAbwB/wHXAcsBxQH/A1wB+AMvAUoDBQEHAwEBAhgAAwMBBAFIAWIBVgH2AQABpgEAAf8BAAGZ + AQAB/wEAAZEBAAH/AQABigEAAf8BAAGIAQAB/wMAAf8DKAE9JAABUgJTAagBAAGxAQAB/wEAAagBAAH/ + AQABoQEAAf8BAAGcAQAB/wEAAZUBAAH/A0MBdyAAAyQBNgPrAf8EAAPzAf8D9gH/A/YB/wPyAf8D9AH/ + A/YB/wPyAf8D9QH/A/MB/wPyAf8D8gH/A/MB/wLxAfIB/wL3AfAB/wL3AfQB/wPzAf8C9gHyAf8C7wH1 + Af8C9wH5Af8EAAM+AWskAANDAXcD/gH/Ae0C7wH/AewC7QH/AeoC6wH/AecB6QHqAf8B6ALnAf8B0wHa + AdsB/wGNAdsB7AH/AQAByAH8Af8BAAGKAccB/wIAAZIB/wGRAZIBlAH/AYEBkAGgAf8BAAGZAbcB/wEA + AaUB0QH/AYMBtQHpAf8BiQG/AfkB/wGBAbUB7wH/AQABhAGzAf8CAAGQAf8CAAGiAf8BiwG8AfIB/wGO + Ab4B9gH/AZMBvAHxAf8DagH5AygBPBAAAxIBGANlAeUBxgG1Aa4B/wHSAcUBvgH/Ad4B1QHPAf8B1gHK + AcEB/wHeAdMBywH/AeMB2gHSAf8B5gHdAdUB/wHpAeIB2wH/AfcB9AHyAf8B+QH3AfUB/wHqAeMB2wH/ + AegB4AHZAf8B6AHfAdgB/wHlAdwB1AH/AegB4AHaAf8B3wHVAc4B/wHVAccBwAH/Ac0BvgG3Af8B2gHO + AckB/wHaAc4BygH/A2QB5wMTARocAANMAZIBAAGtAQAB/wEAAaUBAAH/AQABnAEAAf8BAAGWAQAB/wEA + AY4BAAH/AQABiAEAAf8BAAGFAQAB/wFaAWABWgHeJAABUgJTAagBAAG0AQAB/wEAAasBAAH/AQABpAEA + Af8BAAGfAQAB/wEAAZkBAAH/A0MBdyAAAyQBNgPrAf8EAAP6Af8D+gH/A/oB/wP6Af8D+QH/A/kB/wP5 + Af8D+AH/A/gB/wP4Af8C9wH4Af8D9wH/A/cB/wP2Af8D9gH/AuQB9wH/A/UB/wKCAfoB/wLlAfkB/wQA + Az4BayAAAwIBAwNTAaoEAAHwAvEB/wHuAvAB/wHtAu4B/wHrAewB7QH/Ad0B3gHfAf8BvAG4AbYB/wGU + AZ0BoQH/AQABzwHmAf8BAAHMAf0B/wEAAYsBxwH/AgABjQH/AQABiQG5Af8BAAGxAe4B/wGDAboB+gH/ + AYcBugH4Af8BAAG0AfEB/wEAAaEB0wH/AgABnAH/AgABmwH/AgABsQH/AZMBtwHZAf8DXAHPAzgBXgMc + AScDBAEFEAADVAGmAb0BqgGkAf8BwgGwAakB/wHUAcgBwgH/AdYBygHEAf8B0wHFAb0B/wHaAc4BxwH/ + Ad8B1QHNAf8B5AHbAdMB/wHvAekB5AH/AekB4QHaAf8B7gHoAeMB/wHnAd8B1wH/AeYB3gHWAf8B5QHc + AdQB/wHiAdgB0AH/Ad8B0wHMAf8B4gHZAdMB/wHVAcgBwQH/AckBuQGyAf8B4wHbAdcB/wHoAeEB3wH/ + AbwBqQGiAf8DUwGoGAADFgEeAQABqAEAAf8BAAGyAQAB/wEAAaUBAAH/AQABnwEAAf8BAAGZAQAB/wEA + AZEBAAH/AQABigEAAf8BAAGHAQAB/wMAAf8DPQFpIAABUgJTAagBAAG3AQAB/wEAAa0BAAH/AQABpwEA + Af8BAAGiAQAB/wEAAZwBAAH/A0MBdyAAAyQBNgPrAf8EAAP6Af8D+QH/A/kB/wP5Af8C+QH4Af8D+AH/ + A/gB/wP4Af8D9wH/A/cB/wP3Af8D9gH/A/YB/wP2Af8C8QH1Af8CAAH7Af8CAAL/AY8BkAH5Af8C8wH4 + Af8EAAM+AWsgAAMZASMDXwHjA/0B/wPzAf8B8QLyAf8B7wLwAf8D8QH/AcYBywHQAf8BAAGaAcUB/wEA + AaUB3QH/AQABrQHmAf8BgwHbAfYB/wEAAdEB/gH/AQABjwHNAf8CAAGQAf8BAAGFAa8B/wEAAaMB2AH/ + AQABqAHgAf8BAAGgAdMB/wEAAZABqwH/AgABkQH/AgABngH/AYIBhAGwAf8B8AHyAesB/wM2AVgYAAMi + ATIBrQGZAZMB/wG9AaoBpAH/Ab0BqgGkAf8B1AHIAcMB/wHMAb4BtwH/Ac4BvwG3Af8B1QHIAb8B/wHa + Ac0BxQH/AekB4gHcAf8B5gHeAdcB/wHhAdcBzgH/AeoB4wHdAf8B5QHcAdUB/wHiAdgBzwH/AeAB1gHN + Af8B3gHSAcoB/wHYAcwBwwH/AdIBxAG8Af8B4wHbAdcB/wHqAeQB4QH/AcgBuAGyAf8BzAG+AbkB/wG7 + AagBogH/Aa4BmQGUAf8DJAE1FAABVwJZAb8BAAG6AQAB/wEAAa4BAAH/AQABqAEAAf8BAAGjAQAB/wEA + AZwBAAH/AQABlgEAAf8BAAGOAQAB/wEAAYgBAAH/AQABhgEAAf8BQQFqAUEB+QMGAQgcAAFSAlMBqAEA + AbkBAAH/AQABsAEAAf8BAAGqAQAB/wEAAaYBAAH/AQABnwEAAf8DQwF3IAADJAE2A+sB/wQAA9cB/wPS + Af8D5AH/A+8B/wPzAf8D8QH/A/AB/wPxAf8D7gH/A/AB/wPxAf8D8QH/A+8B/wPwAf8C1AHxAf8CAAH5 + Af8CAAH6Af8CtQH3Af8B9QL0Af8EAAM+AWsgAANHAYED+gH/A/gB/wP1Af8D8wH/AvEB8gH/A/IB/wHV + AdkB2wH/AQABpAHdAf8BAAGoAesB/wEAAaYB6QH/AQABqgHgAf8BAAHbAfQB/wEAAdQC/wEAAZABzgH/ + AgABiwH/AQABhAGaAf8BoAGuAb4B/wG9AcUBygH/AcIBxAHCAf8CAAGdAf8CAAGdAf8BvAG/Ac0B/wNi + Ae8DFwEgGAADUQGgAbABnAGXAf8BtwGkAZ4B/wG4AaQBngH/AdEBxQHAAf8BxAG0Aa0B/wHIAbgBrwH/ + Ac4BvgG1Af8B3AHRAcoB/wHlAdwB1gH/AdoBzgHFAf8B3AHQAccB/wHjAdkB0gH/AeIB2AHRAf8B2gHO + AcQB/wHaAc0BxAH/AdcBygHBAf8B0gHDAboB/wHMAb0BtAH/AdkBzgHIAf8B1gHKAcUB/wHKAbwBtgH/ + Ad0B1AHRAf8BvQGrAaUB/wGvAZoBlQH/A1IBpBAAAywBRAEAAbcBAAH/AQABugEAAf8BAAGwAQAB/wEA + AasBAAH/AQABpgEAAf8BAAGgAQAB/wEAAZoBAAH/AQABkwEAAf8BAAGLAQAB/wEAAYYBAAH/AQABgAEA + Af8DTgGZHAABUgJTAagBAAG7AQAB/wEAAbIBAAH/AQABrAEAAf8BAAGpAQAB/wEAAaIBAAH/A0MBdyAA + AyQBNgPrAf8EAAPPAf8DvQH/A8kB/wPXAf8D0gH/A80B/wPXAf8DywH/A8EB/wPWAf8D0gH/A8gB/wPK + Af8D0wH/ArYBzwH/AsEB4AH/A+8B/wK5AeoB/wPtAf8EAAM+AWscAAMcAScDYAHrA/cB/wP2Af8D9QH/ + A/QB/wHyAvMB/wPyAf8B7AHqAegB/wGKAakB0gH/AQABkQHNAf8BAAGUAcoB/wEAAZYBxAH/AYwBpwHA + Af8BmQHnAesB/wEAAdsC/wIAAacB/wMAAf8BvQG+AbsB/wHbAd4B2wH/AbIBswG/Af8CAAGWAf8CAAGm + Af8B5QHoAeUB/wNXAbgDAAEBFAADEAEWA2AB6wGvAZoBlQH/AbEBnQGXAf8BtAGfAZkB/wHPAcIBvAH/ + Ab8BrQGlAf8BwwGxAacB/wHKAbkBsAH/Ad8B1QHOAf8B0wHEAbsB/wHRAcIBuQH/AdIBwwG6Af8B2gHO + AcYB/wHwAesB5wH/Ad8B1QHOAf8B1AHFAbwB/wHTAcUBvAH/AdABwQG4Af8B2QHNAcYB/wHNAb4BtgH/ + Ab4BrAGkAf8BxAG0Aa4B/wHyAe8B7gH/Ac4BwQG9Af8BtQGhAZwB/wNhAe4DEgEZDAABWgJhAeQBAAHG + AQAB/wEAAboBAAH/AQABtAEAAf8BAAGtAQAB/wEAAakBAAH/AQABowEAAf8BAAGdAQAB/wEAAZYBAAH/ + AQABkAEAAf8BAAGKAQAB/wEAAYcBAAH/AwAB/wMaASQYAANOAZgBAAG+AQAB/wEAAbUBAAH/AQABrwEA + Af8BAAGsAQAB/wEAAacBAAH/AzgBXiAAAyQBNgPrAf8EAAPFAf8DrAH/A7kB/wPIAf8DwQH/A7oB/wPA + Af8DvAH/A7QB/wO9Af8DugH/A7YB/wO4Af8DugH/A7oB/wO6Af8DxAH/A7EB/wPPAf8EAAM+AWscAANR + AZwD8AH/A/QB/wP0Af8D9AH/A/QB/wHzAvQB/wHyAvMB/wH1AfQB8gH/AcABzAHcAf8BpQG4AdEB/wHG + Ac0B1AH/Ad0B3gHfAf8B7AHnAeYB/wHXAeEB4AH/AZ8B3QHfAf8BwgG3AbkB/wGLAgAB/wGAAgAB/wHC + AcUBvAH/AocBrQH/AgABlQH/AgABtgH/AfsB/gH2Af8DQQFyGAADMQFNAZYBgQEAAf8BqQGUAY8B/wGs + AZYBkQH/Aa8BmgGTAf8BzAG+AbkB/wG9AakBoAH/AbsBpgGcAf8BzwHAAbgB/wHOAb4BtQH/AcUBsgGo + Af8BywG6AbEB/wHRAcIBugH/AegB4QHdAf8EAAH5AfcB9gH/AdwB0QHLAf8B1gHJAcEB/wHdAdIBzAH/ + AdcBygHDAf8B0gHEAb0B/wHQAcIBuwH/Ad4B1QHRAf8D/gH/AeUB3gHbAf8BtwGkAZ8B/wGYAYMBAAH/ + AzIBUQgAA1ABnQEAAb0BAAH/AQABwQEAAf8BAAG5AQAB/wEAAbcBAAH/AQABsQEAAf8BAAGrAQAB/wEA + AaYBAAH/AQABoAEAAf8BAAGaAQAB/wEAAZQBAAH/AQABjgEAAf8BAAGIAQAB/wEAAYIBAAH/AVMBYAFT + AfEDBQEHAwsBDwFJAkoBiQNEAXkDRAF5A0MBeAFYAlwB0QEAAb4BAAH/AQABtgEAAf8BAAGxAQAB/wEA + Aa4BAAH/AQABqgEAAf8BVQFXAVUBtwNDAXgDRAF5A0QBeQNCAXYQAAMkATYD6gH/BAAD4QH/A+AB/wPn + Af8D4gH/A+QB/wPmAf8D4AH/A+YB/wPhAf8D3wH/AeEB4AHhAf8D4wH/A+AB/wPeAf8D5QH/A+AB/wPc + Af8D3QH/A+YB/wQAAz4BaxgAAykBPgNqAfkD4AH/A/cB/wH0AfUB9AH/A/QB/wHzAvQB/wHzAvQB/wHz + AvQB/wLzAfQB/wH1AfQB8gH/AfcB9QHyAf8C8wHyAf8D7gH/AegB6gHrAf8B6ALpAf8B3ALYAf8B7QLe + Af8B4gHNAcoB/wMAAf8DAAH/AgABnQH/AgABnAH/AbgBuQHLAf8DagH5AyIBMRgAA0UBfAGSAgAB/wGi + AYwBhwH/AaYBkAGLAf8BqgGUAY0B/wHJAbkBswH/AbkBowGZAf8BwQGuAaUB/wHXAcsBxAH/AcwBuwGz + Af8B0QHDAbsB/wHSAcQBvAH/AcwBvQG0Af8B1AHHAcAB/wHzAfAB7gH/AeYB3gHaAf8BvQGoAZ4B/wHA + Aa0BowH/AckBuQGwAf8BuAGhAZYB/wG4AaEBlwH/AbcBogGXAf8BvgGsAaQB/wHjAdsB2QH/AcYBuAG0 + Af8BvwGuAakB/wGhAY4BigH/A0YBfggAA0EBcgNCAXUDQgF0A0IBdANTAaoBAAG1AQAB/wEAAbABAAH/ + AQABqQEAAf8BAAGkAQAB/wEAAaIBAAH/AVoBXwFaAdsDQgF0A0IBdANCAXQDSAGFAwoBDgMFAQcBTgJd + AfABAAHLAYMB/wEAAcUBAAH/AQABxAEAAf8BAAHCAQAB/wEAAbsBAAH/AQABuAEAAf8BAAG0AQAB/wEA + Aa8BAAH/AQABqwEAAf8BAAGoAQAB/wEAAaEBAAH/AQABnQEAAf8BAAGSAQAB/wFPAVABTwGbEAADJAE2 + A+kB/wQAA/YB/wP2Af8D9QH/A/UB/wP1Af8D9AH/A/QB/wPzAf8D8wH/A/MB/wPyAf8D8gH/AfIB8QHy + Af8D8QH/A/EB/wKGAfYB/wIAAfYB/wHrAeoB6wH/Ae0B7AHtAf8D/gH/Az4BaxQAAwQBBgNYAbwD6gH/ + A+MB/wP3Af8B8wL0Af8C8wH0Af8C8wH0Af8D8wH/AfIC8wH/AfIC8wH/A/IB/wHwAvEB/wHuAu8B/wHr + AewB7QH/AekB6gHrAf8B5wLpAf8B5QLoAf8B3wHgAdoB/wHCAbsB4AH/AgABxAH/AgABnQH/AgABkwH/ + AgABpwH/AeIB5QHiAf8DXgHOAwQBBhgAA04BmAGMAgAB/wGaAYQBAAH/AaABiQGEAf8BpAGMAYUB/wHK + AbsBtQH/AcgBtwGwAf8B7gHpAecB/wHlAd0B2QH/AcMBsAGnAf8BugGkAZsB/wG2AZ8BlAH/AbUBngGT + Af8BtgGfAZUB/wG9AagBnwH/Ac0BvQG2Af8BswGbAZEB/wHGAbQBrAH/AbkBowGaAf8BtAGdAZMB/wG0 + AZ0BkwH/AbkBowGYAf8BrwGYAY4B/wG+Aa0BqAH/AaABigGEAf8BoQGKAYQB/wGUAYABAAH/A04BmRgA + Ay4BRwEAAbQBAAH/AQABtAEAAf8BAAGsAQAB/wEAAacBAAH/AQABpwEAAf8BVQFWAVUBsRgAAxgBIgEA + AboBAAH/AQABzAGDAf8BAAHCAQAB/wEAAb8BAAH/AQABvAEAAf8BAAG6AQAB/wEAAbYBAAH/AQABsgEA + Af8BAAGtAQAB/wEAAakBAAH/AQABpAEAAf8BAAGkAQAB/wFdAWEBXQHiFAADJAE2A+gB/wQAA9UB/wPQ + Af8D4gH/A+0B/wPxAf8D7wH/A+4B/wPvAf8D7AH/A+4B/wPvAf8D7wH/A+0B/wPuAf8CzQHuAf8CAAH6 + Af8CAAH9Af8CxgHyAf8B7AHtAewB/wH7AvoB/wM+AWsUAAM3AVsEAAPVAf8D7QH/A/UB/wPzAf8B8gLz + Af8B8gHzAfIB/wPyAf8B8QLyAf8B8QLyAf8B8ALxAf8B7wLwAf8B7gLvAf8B7AHtAe4B/wHqAesB7AH/ + AecB6QHqAf8B5QLnAf8B5QHoAeYB/wHOAdAB3QH/AY8BjAHmAf8BjAGLAcIB/wIAAZcB/wGAAQABuAH/ + AfgB+wH0Af8DSgGLHAADUQGgAYMCAAH/AZECAAH/AZYCAAH/AagBkQGLAf8B6QHiAeAB/wHhAdgB1QH/ + AdMBxQG/Af8BuQGjAZoB/wGxAZgBjgH/AbABlgGNAf8BsQGYAY4B/wGxAZgBjgH/AbEBmAGPAf8BrgGU + AYoB/wHBAa0BpQH/AdQBxwHCAf8BxgG0Aa0B/wGuAZQBiwH/AbEBlwGOAf8BsgGYAY4B/wG7AaIBlgH/ + Aa8BlwGNAf8BvAGrAaYB/wGaAYQBAAH/AZoBgwEAAf8BhgIAAf8DUQGgGAADOwFjAQABtgEAAf8BAAG2 + AQAB/wEAAa4BAAH/AQABqgEAAf8BAAGpAQAB/wFXAVoBVwG9HAABTgJPAZcBAAHIAYEB/wEAAcMBAAH/ + AQABvwEAAf8BAAG+AQAB/wEAAbsBAAH/AQABuAEAAf8BAAG0AQAB/wEAAbABAAH/AQABqgEAAf8BAAGq + AQAB/wEAAZwBAAH/AysBQhQAAyQBNgPmAf8EAAPLAf8DvgH/A88B/wPaAf8D2QH/A9kB/wPdAf8D2AH/ + A8wB/wPcAf8D3AH/A9QB/wPTAf8D3AH/Ar4B2AH/AuEB5AH/Ar0B9gH/AgAB/QH/AroB8QH/AfYB9wH2 + Af8DPgFrEAADDAEQA14B2APuAf8D1gH/A/IB/wHyAvMB/wPyAf8B8QLyAf8B8QLyAf8B8ALxAf8C8AHx + Af8B7wLwAf8B7gLvAf8B7QHuAe8B/wHtAu4B/wHsAe0B7gH/AeoC7AH/AecB6QHqAf8B5QHnAegB/wHj + AeUB5gH/AeMB5gHlAf8B6wHvAeAB/wGaAZsBtwH/AgABnwH/AbgBuwHMAf8B+QH7AfgB/wMtAUUcAAFO + Ak0BlQMAAf8BhgIAAf8BoQGNAYgB/wGzAaEBmwH/AboBpwGhAf8BzAG8AbcB/wG+AakBogH/AaoBjgGF + Af8BrwGVAYsB/wGsAZEBiAH/AawBkgGJAf8BrAGSAYkB/wGtAZIBiQH/AaoBjgGFAf8BxwG1AbAB/wQA + AeIB2QHWAf8BrAGRAYkB/wGsAZEBiQH/Aa0BkwGKAf8BtAGaAZAB/wGpAY8BhwH/AbgBpQGhAf8BkQIA + Af8BjgIAAf8DAAH/AU4CTQGWGAADOwFjAQABuAEAAf8BAAG5AQAB/wEAAbEBAAH/AQABrQEAAf8BAAGt + AQAB/wFXAVoBVwG9HAADBQEHAUECagH5AQABzAGDAf8BAAHAAQAB/wEAAb8BAAH/AQABvQEAAf8BAAG6 + AQAB/wEAAbYBAAH/AQABsgEAAf8BAAGvAQAB/wEAAa8BAAH/AVYBWQFWAb4YAAMkATYD5AH/BAADygH/ + A64B/wO1Af8DxwH/A74B/wO1Af8DvwH/A7cB/wOsAf8DvAH/A7gB/wOxAf8DtAH/A7kB/wO0Af8DvAH/ + A80B/wIAAdIB/wIAAfQB/wPyAf8DPgFrEAADRgF+BAAD3AH/A9wB/wP1Af8C8QHyAf8B8AHxAfIB/wHw + AvEB/wHvAvAB/wHuAe8B8AH/Ae4C7wH/Ae0B7gHvAf8B7AHtAe4B/wHsAu0B/wHrAewB7QH/AeoC7AH/ + AekC6wH/AegC6gH/AeYB5wHoAf8B4wHlAeYB/wHhAeMB5AH/AecB6gHkAf8BjAGLAbwB/wIAAbUB/wHh + AeQB4QH/A2EB4QMMARAcAANCAXYDAAH/AYsCAAH/AZgBgwEAAf8BjQIAAf8BqwGUAY4B/wHzAfAB7wH/ + AdUByAHEAf8BrQGSAYoB/wGwAZQBjQH/AawBjwGIAf8BqQGMAYUB/wGnAYkBgQH/AacBiQGBAf8BpgGI + AYAB/wG6AaMBnQH/AfEB7QHsAf8B3gHTAc8B/wGoAYoBgwH/AagBigGDAf8BqgGOAYYB/wGrAZABhgH/ + AaYBjAGFAf8BrwGdAZgB/wGFAgAB/wGHAgAB/wMAAf8DRAF5GAADOwFjAQABugEAAf8BAAG6AQAB/wEA + AbQBAAH/AQABrwEAAf8BAAGwAQAB/wFXAVoBVwG9IAABPAI9AWgBAAHDAQAB/wEAAcYBAAH/AQABvwEA + Af8BAAG+AQAB/wEAAbsBAAH/AQABuAEAAf8BAAG0AQAB/wEAAbYBAAH/AQABowEAAf8DFgEeGAADJAE2 + A+MB/wQAA9cB/wPSAf8D3QH/A9sB/wPcAf8D3AH/A9cB/wPdAf8D2AH/A9YB/wPXAf8D2gH/A9cB/wPU + Af8D2wH/A9QB/wPPAf8DzwH/A9kB/wPpAf8DPgFrEAADLgFIA1wBzAP7Af8D5gH/AfMC9AH/Ae8C8AH/ + Ae8C8AH/Ae8C8AH/Ae4C7wH/Ae4C7wH/Ae0C7gH/AewB7QHuAf8B6wLtAf8B6wLsAf8B6gHrAewB/wHo + AeoB6wH/AegB6QHqAf8B5wHpAeoB/wHmAugB/wHkAeYB5wH/AeIB5AHlAf8B4ALjAf8B0QHTAdsB/wHP + AdEB2AH/Ae8C8QH/A1IBpCAAAy0BRQMAAf8DAAH/AwAB/wGPAgAB/wHRAcUBwwH/BAAB8wLvAf8BwAGr + AaUB/wG9AacBoQH/Ab4BqQGiAf8BwAGrAaUB/wG9AacBoQH/AbUBnAGVAf8BqgGNAYYB/wGoAYsBgwH/ + AbgBoQGbAf8BtwGfAZgB/wG3AZ8BmQH/AaEBggEAAf8BpgGJAYAB/wGgAYMBAAH/AaYBjgGIAf8BoAGM + AYgB/wMAAf8BgQIAAf8DAAH/Ay8BSRgAAzsBYwEAAbsBAAH/AQABvQEAAf8BAAG2AQAB/wEAAbIBAAH/ + AQABsgEAAf8BVwFaAVcBvSQAAVoCYAHeAQABzAGDAf8BAAHAAQAB/wEAAb8BAAH/AQABvQEAAf8BAAG6 + AQAB/wEAAbkBAAH/AQABtgEAAf8DTAGSHAADJAE2A+EB/wQAA+0B/wPtAf8D7AH/A+wB/wPsAf8D6wH/ + A+sB/wPrAf8B6wLqAf8D6wH/A+oB/wPoAf8C5QHmAf8D4wH/AeEB4gHhAf8D3wH/A90B/wPbAf8D2AH/ + A9oB/wM+AWsUAAMFAQcDQAFxA1kB9QLzAfQB/wHuAe8B8AH/Ae4C7wH/Ae0C7wH/AewC7gH/AewC7QH/ + AesB7AHtAf8B6gHrAewB/wHpAusB/wHoAeoB6wH/AegB6QHqAf8B5wHoAekB/wHmAugB/wHlAucB/wHk + AeYB5wH/AeMC5gH/AeIB5AHlAf8B3wHiAeMB/wHfAuIB/wHcAt8B/wH3AvkB/wM4AVwgAAMMARADWgHk + AwAB/wGDAgAB/wGWAYEBAAH/AaoBmAGUAf8B9AHyAfEB/wHZAc0BygH/AZwCAAH/AaABgQEAAf8BoQGD + AQAB/wGmAYgBgQH/AawBkQGKAf8BtgGdAZcB/wG9AagBogH/AdIBwwG/Af8ByAG2AbIB/wGdAgAB/wG5 + AaMBnAH/AbIBmQGSAf8BmQIAAf8BlAIAAf8BpwGTAY0B/wGPAgAB/wMAAf8DAAH/A1wB5wMNARIYAAM7 + AWMBAAG8AQAB/wEAAb4BAAH/AQABuAEAAf8BAAG0AQAB/wEAAbUBAAH/AVcBWgFXAb0kAAMoATwBAAG9 + AQAB/wEAAcgBgQH/AQABvwEAAf8BAAG+AQAB/wEAAbsBAAH/AQABwQEAAf8BSAJiAfYDBAEFHAADJAE2 + At4B3wH/Av4B/QH/AfQB8wHqAf8C7AHrAf8C6gHrAf8B5wHmAesB/wL1AegB/wL3AecB/wLlAeoB/wPq + Af8D6gH/A+kB/wPnAf8B5ALlAf8D3wH/A9QB/wPLAf8DygH/A8wB/wPHAf8DuwH/A9AB/wM6AWIYAAMO + ARMDXQHtAfEB8gHzAf8B7QLuAf8B7AHtAe4B/wHrAewB7QH/AeoC7AH/AeoB6wHsAf8B6QLrAf8B6AHp + AesB/wHnAukB/wHmAugB/wHlAecB6AH/AeQB5gHnAf8B4wLmAf8B4wHlAeYB/wHiAeQB5QH/AeEC5AH/ + AeAB4gHjAf8B3wLiAf8B3AHfAeAB/wHdAeAB4QH/A10B8AMWAR4kAANMAZEDAAH/AwAB/wMAAf8DAAH/ + Aa8BnQGYAf8BvAGpAaUB/wGdAgAB/wGfAYEBAAH/AaMBhQEAAf8BpgGIAYIB/wGnAYkBgwH/AacBiQGD + Af8BpgGJAYIB/wHKAboBtgH/AdgBzAHJAf8BugGjAZ4B/wGkAYcBgAH/AbgBogGcAf8BpQGNAYcB/wGO + AgAB/wGnAZMBjgH/AwAB/wMAAf8DAAH/A00BlRwAAzsBYwEAAb4BAAH/AQABwAEAAf8BAAG5AQAB/wEA + AbYBAAH/AQABuAEAAf8BVwFaAVcBvSgAAVYCWAG5AQABywGDAf8BAAHCAQAB/wEAAb8BAAH/AQABwQEA + Af8BAAG7AQAB/wM7AWMgAAMkATYC3wHeAf8C9gH8Af8C4gHpAf8C8QHoAf8C5gHpA/8B5wH/ArkB7QH/ + Ap0B8AP/AecB/wHoAekB6AH/A+cB/wHlAuYB/wPkAf8B4gLhAf8D1QH/AbgBuQG4Af8DnAH/A5QB/wOV + Af8DigH/A6kB/wNiAe8DFQEdGAADLQFFA/0B/wHsAu0B/wHrAewB7QH/AeoB6wHsAf8B6QLrAf8B6AHp + AesB/wHnAekB6gH/AecB6AHpAf8B5gLoAf8B5QLnAf8B5AHmAecB/wHjAeUB5gH/AeIB5AHlAf8B4QLk + Af8B4AHjAeQB/wHfAeIB4wH/Ad4B4QHiAf8B3QHgAeEB/wHdAeAB4QH/AdsB3gHfAf8B6QLsAf8DWAG7 + KAADGgElAk0BKQH6AwAB/wMAAf8DAAH/AZkBhQGAAf8BmgGEAQAB/wG1AaABmwH/AZwCAAH/AaUBiQGE + Af8BqQGNAYcB/wGpAY4BiAH/AakBjgGIAf8BqAGMAYYB/wGzAZsBlgH/AbIBmgGUAf8BtQGdAZgB/wHG + AbMBrgH/AaQBigGEAf8BqQGUAY8B/wHgAdgB1gH/AbgBrAGqAf8DAAH/AwAB/wFNAikB+gMcASgcAAM7 + AWMBAAG/AQAB/wEAAcEBAAH/AQABuwEAAf8BAAG5AQAB/wEAAboBAAH/AVcCWgG9KAADEwEaAQABtQEA + Af8BAAHKAYIB/wEAAb8BAAH/AQABxwEAAf8BXgJhAdokAAMkATYC3wHcA/8B+gH/AgAB9AH/AtUB6AP/ + AeQD/wHhAf8CAAH0Af8CgwHyA/8B5AH/AusB5gH/AeYB5QHkAf8C4gHjAf8D4QH/A98B/wPPAf8DoQH/ + AwAB/wMAAf8DAAH/A5kB/wO8Af8DLwFJHAADQgF0Af4D/wHpAeoB6wH/AekB6gHrAf8B6ALqAf8B5wLp + Af8B5gHoAekB/wHlAucB/wHkAeYB5wH/AeMC5gH/AeMC5QH/AeIB5AHlAf8B4QHjAeQB/wHgAeIB4wH/ + Ad8B4QHiAf8B3gHhAeIB/wHdAeAB4QH/AdwB3wHgAf8B2wHeAd8B/wHaAd0B3gH/AdgB2wHcAf8B9QH3 + AfgB/wNCAXUsAANLAZADAAH/AwAB/wMAAf8BkwGBAQAB/wGDAgAB/wG5AaoBpwH/AakBkgGOAf8BnwGG + AYIB/wGkAYoBhgH/AaYBiwGHAf8BpwGMAYcB/wGnAYsBhwH/AbMBmwGWAf8BtgGgAZsB/wGsAZABiwH/ + AbEBmQGUAf8BvAGtAakB/wGSAgAB/wHVAc0BzAH/AbMBqAGmAf8DAAH/AwAB/wNMAZMgAAM7AWMBAAG/ + AQAB/wEAAcIBAAH/AQABvQEAAf8BAAG6AQAB/wEAAb0BAAH/AVcCWgG9LAADSgGMAQABxwGAAf8BAAHL + AYMB/wEAAbsBAAH/AyYBOCQAAyQBNgPbA/8B9QH/AoYB8QH/AgAB+AH/Ar8B6wH/Ao4B7wH/AgAB9gH/ + AuMB5gH/AuEB5gH/AtgB5QH/At8B4gH/AuIB4AH/A98B/wPcAf8DwgH/A5oB/wPMAf8D3QH/A/IB/wPn + Af8DLwFKIAADUgGkAfcC+QH/AeYB6AHpAf8B5gHoAekB/wHmAecB6AH/AeUB5wHoAf8B5AHmAecB/wHj + AeUB5gH/AeIB5QHmAf8B4gHkAeUB/wHhAeMB5AH/AeAB4gHjAf8B3wLiAf8B3gHhAeIB/wHdAeAB4QH/ + AdwB3wHgAf8B2wHeAd8B/wHaAd0B3gH/AdkB3QHeAf8B2AHbAdwB/wHYAdwB3QH/A18B+wMiATEsAAMK + AQ0DXAHUAwAB/wMAAf8BiQIAAf8BlwGFAYEB/wGmAZMBkAH/AcsBvAG5Af8BogGNAYkB/wGjAYwBiAH/ + AaUBjQGJAf8BpQGNAYkB/wGkAYwBiAH/AagBkwGPAf8BtQGiAZ8B/wGiAYwBiQH/AZ4BigGGAf8BogGR + AY4B/wHTAcoByQH/AaABkQGPAf8DAAH/AwAB/wNbAdYDCgEOIAADOwFjAQABwAEAAf8BAAHDAQAB/wEA + Ab4BAAH/AQABvAEAAf8BAAHAAQAB/wFXAloBvSwAAwEBAgFUAmEB7gEAAdIBiAH/A1YBsygAAyQBNgPZ + A/8B9QH/AssB6AH/AgAB9wH/ApcB7QH/AgAB/AH/Aq4B6wH/AtgB5gH/AgAB8wH/AgAB8AH/AsMB4wH/ + Au4B2wH/A9sB/wPZAf8DuwH/A5gB/wPyAf8EAAP1Af8DLwFKIAADBQEHA2EB2gHwAvIB/wHlAucB/wHj + AuYB/wHjAeUB5gH/AeMB5QHmAf8B4gLlAf8B4gHkAeUB/wHhAeMB5AH/AeAB4gHjAf8B3wLiAf8B3gHh + AeIB/wHdAeAB4QH/AdwB3wHgAf8B2wHeAd8B/wHaAd0B3gH/AdkB3AHdAf8B2AHcAd0B/wHXAdsB3AH/ + AdYB2QHaAf8B4AHjAeQB/wNdAdIDBAEGMAADHQEpA1cB6AMAAf8DAAH/AakBnQGbAf8BngGNAYsB/wG4 + AaoBpwH/Ab4BsgGwAf8BnAGKAYcB/wGdAYoBhwH/AZ0BigGHAf8BnAGJAYYB/wGiAY8BiwH/AbcBpwGl + Af8BoAGPAY0B/wGiAZIBjwH/AZ8BkAGNAf8B5gLhAf8BnAGQAY4B/wMAAf8DVQHqAx4BKyQAAz4BawEA + AcYBgAH/AQABzAGDAf8BAAHGAQAB/wEAAcUBAAH/AQAByAEAAf8BWQJcAcwwAAFBAkIBcwEAAagBAAH/ + AxIBGCgAAyQBNgPYAf8C9QH2Af8C+QHiAf8CAAHwAf8CpQHqAf8CAAHwAf8C5wHjAf8D4gH/AtQB4gH/ + AtMB4AH/AtkB3AH/AtsB2gH/A9kB/wPWAf8DsQH/A5gB/wQAA/AB/wMwAUskAAMLAQ8DWAG8A10B7QL9 + Af4B/wH7AfwB/QH/AfQB9QH2Af8B6gHsAe0B/wHjAeUB5gH/Ad8C4gH/Ad0C4AH/AdwB3wHgAf8B3AHf + AeAB/wHbAd4B3wH/AdsB3gHfAf8B2gHdAd4B/wHZAdwB3QH/AdgB2wHcAf8B1wHaAdsB/wHWAdkB2wH/ + AdUB2QHaAf8B0gHWAdcB/wHuAfAB8QH/A0sBjjgAAyIBMQNaAd4DAAH/AaEBlQGTAf8BqwGfAZ0B/wGk + AZYBlAH/Ab0BsQGvAf8BvgGzAbEB/wGgAZEBjgH/AaEBkQGOAf8BpgGVAZIB/wGkAZMBkAH/AbIBpQGj + Af8BrgGhAZ8B/wGlAZcBlAH/Ab0BsgGwAf8BoQGWAZMB/wMAAf8DXwHgAyMBNCgAAzgBXgFZAmcB8gFZ + AmcB8gFZAmcB8gFZAmcB8gFZAmcB8gNWAbMwAAMLAQ8DNAFULAADJAE2A9cB/wL0AfUD/wHfAf8CugHo + Af8CAAL/ApYB7AP/AdwB/wPfAf8C4gHdAf8C4AHbAf8C2gHZAf8C1gHXAf8D1wH/A9AB/wOgAf8DuwH/ + A+8B/wMvAUovAAEBAxMBGgMpBD4BawNRAZwDXAHJA2QB7AH6AvsB/wH3AvkB/wHvAfEB8gH/AeQB5wHo + Af8B3AHfAeAB/wHYAdsB3AH/AdUB2QHaAf8B1AHYAdkB/wHUAdgB2gH/AdQB2AHZAf8B0wHXAdkB/wHT + AdYB2AH/AdEB1QHWAf8B9wL4Af8DLgFHPAADFQEdA1UBsgMAAf8BlAGIAYYB/wG4Aa0BqwH/AbEBpQGj + Af8BwQG3AbUB/wHGAb0BuwH/AbABogGgAf8BqAGaAZgB/wGoAZwBmgH/Aa4BogGgAf8BwgG4AbYB/wHB + AbcBtQH/AaoBoAGeAf8DAAH/A1UBtAMWAR6sAAMlATcD1wH/A/QB/wLoAeIB/wLsAeIB/wIAAfYB/wK6 + AeUB/wLxAd0B/wPdAf8D2gH/A9gB/wPXAf8D1QH/A9IB/wPAAf8DtQH/A8gB/wMwAUtIAAMSARgDKAE8 + Az4BagNQAZsDWQHHA1wB6gH4AvkB/wH0AvYB/wHqAe0B7gH/Ad4B4gHjAf8B1QHZAdsB/wHRAdUB1gH/ + Ac0B0gHTAf8B1AHZAdoB/wNlAeUDDAEQRAADNQFYA1kByQMAAf8BowGYAZYB/wG9AbMBsQH/AdMBygHI + Af8B3gHWAdUB/wHTAcoByQH/AcsBwQHAAf8BwgG3AbYB/wG3Aa4BrQH/AaICmgH/A1oBygM3AVq0AAMf + AS0DqAH9DAAC/gL/EAAD/QH/A/sB/wP2Af8B6QLqAf8D3wH/A8UB/wMwAUxgAAMQARYDJwE6Az0BaANO + AZkDWgHFA2IB6QH2AfcB+AH/Ae8B8gHzAf8B9QH3AfgB/wNWAatMAAMBAQIDKQE/A0gBhwNXAb0DXAHc + A2AB6wNgAesDYQHcA1YBvgNIAYgDKgFAAwEBArgAAwoBDgNIAYMDTgGUA0oBigNKAYoDSgGKA0oBigNK + AYoDSgGKA0oBigNKAYoDSgGKA0oBigNMAZADTAGPAx8BLXgAAw8BFAMmATgDPAFmA1EBnAMuAUj/ADQA + AQEDAAEBWwABAQMAAQEbAAEBAwMBBAMDAQQDAwEEAwMBBAMDAQQDAwEEAwMBBAMDAQQDAwEEAwMBBAMD + AQQDAwEEAwMBBAMDAQQDAwEEAwMBBAMDAQQDAwEEAwMBBAMDAQQDAwEEAwMBBAMDAQQDAwEEAwABATQA + AxMBGgM4AVwDUAGbA1kBxwNcAd8DYAHrA2AB6wNcAd8DWQHHA1EBnAM4AVwDEwEaKAADAwEEAyMBNAMy + AVEDMgFQAzIBUAMyAVADMgFQAzIBUAMyAVADMgFQAzIBUAMyAVADMgFQAzIBUAMyAVADMgFQAzIBUAMy + AVADMgFQAzIBUAMyAVADMgFQAzIBUAMyAVADMgFQAzIBUAMyAVADMgFQAzIBUAMyAVEDJAE1AwMBBBAA + Aw0BEgMpAT8DJwE7AycBOgMnAToDJwE6AycBOgMnAToDJwE6AzIBUQNPAZcDWwHIA2UB5QNdAfADZAHs + A14B1QNUAawDPgFrAycBOgMnAToDJwE6AycBOwMpAT8DDgETAwABARMAAQEDDwEUAyEBMAMnAToDJwE6 AycBOgMnAToDJwE6AycBOgMnAToDJwE6AycBOgMnAToDJwE6AycBOgMnAToDJwE6AycBOgMnAToDJwE6 - AycBOgMnAToDJwE6AycBOgMnAToDJwE6AycBOgMnAToDIQEwAw8BFAMAAQEkAAMgAS8DUQGcA10B7QHi - Aa8BAAH/AdUBnAEAAf8ByQGKAQAB/wHAAgAB/wG7AgAB/wG6AgAB/wG+AgAB/wHGAYcBAAH/AdMBmQEA - Af8B4QGuAQAB/wNdAe0DUAGdAyABLyAAAwUBBwNZAc8DkAH/A5IB/wOSAf8DkgH/A5IB/wORAf8DkQH/ + AycBOgMnAToDJwE6AycBOgMnAToDJwE6AycBOgMhATADDwEUAwABASQAAyABLwNRAZwDXQHtAeIBrwEA + Af8B1QGcAQAB/wHJAYoBAAH/AcACAAH/AbsCAAH/AboCAAH/Ab4CAAH/AcYBhwEAAf8B0wGZAQAB/wHh + Aa4BAAH/A10B7QNQAZ0DIAEvIAADBQEHA1kBzwOQAf8DkgH/A5IB/wOSAf8DkgH/A5EB/wORAf8DkQH/ A5EB/wORAf8DkQH/A5EB/wORAf8DkQH/A5EB/wORAf8DkQH/A5EB/wORAf8DkQH/A5EB/wORAf8DkQH/ - A5EB/wGRApIB/wOSAf8DkgH/A5IB/wOPAf8DWQHPAwYBCBAAAzMBUwQAA/gB/wP2Af8D9gH/A/YB/wP2 - Af8D9QH/A+YB/wPAAf8DlwH/A4kB/wMAAf8DAAH/AwAB/wMAAf8DjQH/A64B/wPeAf8D8AH/A/YB/wP3 - Af8EAAM3AVsUAAMUARsDUAGkA1kB8gMAAf8DbQH+A20B/gNtAf4DbQH+A20B/gNsAf4DZgH+A1IB/gM/ - Af4DfwH+A38B/gN/Af4DfQH+A38B/gN/Af4DfwH+A3gB/gN/Af4DewH+A38B/gN/Af4DfwH+AwAB/wNn - AfIDUAGkAxQBGxwAAwoBDQNKAYwCbQFkAfcB3AGmAQAB/wHFAYYBAAH/AbwCAAH/AbwCAAH/AbkCAAH/ - AbUCAAH/AawCAAH/AagCAAH/AagCAAH/AacCAAH/AagCAAH/Aa0CAAH/Ab0CAAH/AdgBoAEAAf8CbQFk - AfcDSgGMAwoBDRgAAwUBBwOdAf8B7wLwAf8D6wH/Ae8B8AHxAf8B7wLxAf8D6wH/A+oB/wPqAf8D6gH/ - A+oB/wPqAf8D6gH/A+oB/wPqAf8D6gH/A+oB/wPqAf8D6gH/A+oB/wPqAf8D6gH/A+oB/wPqAf8D6gH/ - AuoB6wH/Au8B8AH/A/EB/wLrAe0B/wPwAf8DnQH/AwYBCBAAAzMBUhQAA/gB/wPXAf8DpwH/AwAB/wOR - Af8DuQH/A64B/wOYAf8DAAH/AwAB/wMAAf8DAAH/A4AB/wPAAf8D8QH/CAADNwFaEAADBAEGA1ABmgMA - Af8BvAG9AbwB/wHHAsgB/wPCAf8DwgH/A8IB/wPCAf8DwgH/A8IB/wO3Af8DnAH/AwAB/wP7Af8LAAH/ - A8oB/wQAA/UB/wMAAf8DygH/AwAB/wPnAf8DAAH/A5QB/wMAAf8DpQH/A5QB/wNQAZoDBAEGFAADHgEr - A1wBzQHjAbABAAH/AcoBiwEAAf8BuQIAAf8BvQIAAf8BoQGHAQAB/wEAAY4BwwH/AQABiwG1Af8BhwGF - AQAB/wGtAgAB/wG3AgAB/wGrAgAB/wGrAgAB/wGrAgAB/wGqAgAB/wGoAgAB/wGpAgAB/wG9AgAB/wHg - Aa0BAAH/A1wBzQMeASsUAAMFAQcDogH/A+0B/wLpAeoB/wHNAcwBygH/AdIBzwHOAf8B6wHsAe0B/wPn - Af8D5QH/A+QB/wPkAf8D5AH/A+QB/wPkAf8D5AH/A+UB/wPmAf8D5gH/A+UB/wPlAf8D5QH/A+UB/wPk - Af8D5AH/A+UB/wLqAesB/wHUAdIB0QH/Ac0BywHJAf8D6wH/A+4B/wOiAf8DBgEIEAADMwFSEAAD+QH/ - A88B/wOeAf8DgQH/A5MB/wPIAf8DwAH/A70B/wPDAf8DsAH/A4kB/wMAAf8DAAH/AwAB/wMAAf8DtAH/ - A/AB/wQAAzcBWhAAAwwBEANIAfYDAAH/Ab0CvgH/AcIBwwHCAf8DvgH/A74B/wO+Af8DvgH/A74B/wO+ - Af8DtAH/A5cB/wMAAf8D9AH/A/4B/wcAAf8DiQH/BAADvAH/AwAB/wPnAf8DAAH/AwAB/wMAAf8B+gH7 - AfoB/wO7Af8DAAH/A4QB/wNiAfYDDAEQEAADJQE3A2QB5wHdAacBAAH/AcIBgAEAAf8BvAIAAf8BwQIA - Af8BqgGKAQAB/wEAAZAB8wH/AQABhgH9Af8BAAGEAfsB/wEAAYMB/QH/AQABhgHrAf8BAAGHAZoB/wG2 - AgAB/wGxAgAB/wGqAgAB/wGrAgAB/wGrAgAB/wGrAgAB/wGnAgAB/wGuAgAB/wHVAZwBAAH/A2QB5wMl - ATcQAAMFAQcDoAH/A/AB/wHTAdAB0QH/AaYBoQGbAf8DAAH/AcUBwgG/Af8C7QHvAf8D5QH/A+UB/wPl - Af8D5QH/A+UB/wPlAf8D5QH/A+UB/wPmAf8D4wH/A+AB/wPhAf8D5AH/A+YB/wPlAf8D5QH/A+oB/wHV - AtQB/wGcAZYBkQH/AYICAAH/AbcBsgGvAf8B8wL0Af8DoQH/AwYBCBAAAzMBUhAAA9UB/wOmAf8DlQH/ - A5EB/wOdAf8DygH/A78B/wO5Af8DsgH/A7gB/wPAAf8DsgH/A4oB/wMAAf8DAAH/AwAB/wO8Af8D9gH/ - AzcBWhAAAw0BEgMAAf8DAAH/Ab0CvAH/AcQBxQHEAf8DwQH/A8EB/wPBAf8BxAHCAb4B/wHEAcIBvgH/ - A78B/wO2Af8DmgH/AwAB/wP0Af8D/AH/BAAD0wH/AwAB/wMAAf8DAAH/A7AB/yAAA64B/wMNARIMAAMd - ASkDXwHoAdsBpAEAAf8BwwGBAQAB/wHAAgAB/wG/AgAB/wHIAgAB/wEAAZMBpwH/AQABiwL/AQABiAHx - Af8BAAGFAfEB/wEAAYMB8QH/AgAB8wH/AgAB/gH/AQABiAHGAf8BnwIAAf8BtgIAAf8BtAIAAf8BqwIA - Af8BqwIAAf8BqwIAAf8BqQIAAf8BqQIAAf8B0AGVAQAB/wNfAegDHQEpDAADBQEHA6EB/wPwAf8CxgHH - Af8C6AHpAf8BvwG8AboB/wGzAbABrQH/Ae4C8AH/A+YB/wPmAf8D5gH/A+YB/wPmAf8D5gH/A+cB/wPm - Af8D3wH/A9UB/wPOAf8D0gH/A9wB/wPlAf8D5gH/A+YB/wLrAewB/wLIAccB/wHmAucB/wG+AroB/wGm - AaIBnwH/AvQB9QH/A6IB/wMGAQgQAAMzAVIMAAPoAf8DuAH/A54B/wOfAf8DnQH/A6sB/wPHAf8DxwH/ - A7sB/wO3Af8DswH/A7IB/wO+Af8DuQH/AwAB/wMAAf8DAAH/AwAB/wPUAf8DNwFaEAADDQESATcBEgEl - Af4DAAH/Ab8CwQH/AcgCyQH/A8QB/wHKAcgBxAH/AdQB0gHDAf8BwQHCAcoB/wHBAcIBygH/AdQB0gHD - Af8BvgG8AbcB/wKbAZwB/wMAAf8D9AH/A/wB/wH6AvkB/wQAAvoB+wH/As8BzgH/A/EB/wQAA/oB/wP5 - Af8D+gH/AfsC+gH/AfYB+QH3Af8B9gH5AfcB/wL7AfwB/wQAA38B/gMNARIIAAMJAQwDXgHQAd4BqQEA - Af8BxQGFAQAB/wHEAYMBAAH/AcMBgQEAAf8BwAIAAf8ByAIAAf8BAAGTAa0B/wEAAY0B/AH/AQABigHy - Af8BAAGHAfEB/wEAAYQB8QH/AQABgQHwAf8CAAHwAf8CAAH4Af8BAAGDAfYB/wEAAYcBywH/AYYBgwGA - Af8BsgIAAf8BrQIAAf8BqwIAAf8BqwIAAf8BqgIAAf8BqQIAAf8B1QGcAQAB/wNeAdADCQEMCAADBQEH - A6EB/wPvAf8D3wH/A7UB/wG7AboBuQH/A+AB/wPqAf8D5wH/A+cB/wPnAf8D5wH/A+cB/wPoAf8D7gH/ - A+cB/wPTAf8DvQH/A7EB/wPAAf8D1QH/A+MB/wPoAf8D5wH/A+kB/wPiAf8DxQH/Ab4CvQH/AdcC2AH/ - A/EB/wOhAf8DBgEIEAADMwFSCAAD/QH/A8sB/wOrAf8DqAH/A6oB/wOPAf8DAAH/AwAB/wOCAf8DzAH/ - A7kB/wO0Af8DswH/A7UB/wO2Af8DAAH/AwAB/wMAAf8DAAH/A6EB/wNOAZkQAAMNARIBNgERASUB/gMA - Af8BwwLEAf8BywLNAf8CzQHIAf8CzgHJAf8BAAGBAeIB/wIAAfcB/wIAAfcB/wEAAYIB4AH/AcMBwgG9 - Af8BpAGjAZ8B/wMAAf8C9QH0Af8B/AH7AfwB/wHsAfUB9wH/AeoB9wH6Af8B7QH6Av8B9gP/AfwC/gH/ - A/kB/wP5Af8D+QH/AfcB+QH3Af8B7wH4AfAB/wHrAfsB8wH/AesB+wHzAf8B7wH5AfMB/wQAA38B/gMN - ARIIAANKAY0B5QGzAQAB/wHLAY0BAAH/AccBhwEAAf8BxgGFAQAB/wHDAYIBAAH/AcECAAH/AckCAAH/ - AQABlQGtAf8BAAGOAfwB/wEAAYsB8gH/AQABiAHxAf8BAAGFAfEB/wEAAYIB8QH/AgAB8AH/AgAB8AH/ - AgAB8QH/AgAB+AH/AQABgAL/AQABigHJAf8BrwIAAf8BrAIAAf8BqwIAAf8BqwIAAf8BqQIAAf8BrgIA - Af8B4AGsAQAB/wNKAY0IAAMFAQcDoQH/A+0B/wPrAf8D6QH/AekC6gH/A+sB/wPnAf8D5wH/A+cB/wPn - Af8D5wH/A+cB/wPrAf8D1gH/A8cB/wOrAf8BkQGSAZEB/wObAf8DtQH/A9IB/wPjAf8D5wH/A+cB/wPn - Af8D6gH/A+kB/wPpAf8D7QH/A+0B/wOhAf8DBgEIEAADMwFSCAAD7gH/A8AB/wOsAf8DrAH/A7kB/wMA - Af8DAAH/AwAB/wMAAf8DyAH/A70B/wO2Af8DswH/A8QB/wOgAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wNf - AdsDIAEvDAADDQESATQBEAEjAf4DAAH/A8UB/wHPAdEBzwH/Ad0B2QHJAf8CAAHQAf8CAAH8Af8BqwG7 - Af4B/wGtAbsB/gH/AgAB/AH/AgABxgH/AbEBrwGfAf8DgQH/AfYB9AH1Af8B7wH2AfkB/wHhAfAB9wH/ - AeoB+QL/AewB+AL/AeEB8AH3Af8B6gHwAfUB/wH6AvkB/wH6AfkB+gH/AfoC+QH/AeoB9QHuAf8B5AH3 - AesB/wHtAf8B9AH/Ae0B/wH0Af8B5QH4AesB/wHyAf0B+AH/A38B/gMNARIEAAMfASwCagFjAfkB1QGc - AQAB/wHJAYsBAAH/AckBigEAAf8BxgGGAQAB/wHFAYMBAAH/AcIBgAEAAf8BygIAAf8BAAGWAagB/wEA - AZAB/QH/AQABjQHyAf8BAAGKAfIB/wEAAYYB8QH/AQABhAHxAf8BAAGAAfAB/wIAAfAB/wIAAfAB/wIA - AfAB/wIAAfAB/wEAAYIC/wGXAgAB/wGwAgAB/wGrAgAB/wGrAgAB/wGrAgAB/wGnAgAB/wG9AgAB/wJq - AWQB+QMfASwEAAMFAQcDowH/A+8B/wPoAf8D6QH/A+kB/wPoAf8D6AH/A+kB/wPpAf8D6QH/A+kB/wPq - Af8D7wH/AZUBlgGVAf8BjgGPAY4B/wGUAZYBlQH/AwAB/wOIAf8DsAH/A9IB/wPnAf8D6gH/A+kB/wPp - Af8D6AH/A+kB/wPpAf8D6AH/A+4B/wOjAf8DBgEIEAADMwFSCAAD4QH/A7gB/wOsAf8DrgH/A7IB/wOR - Af8DAAH/AwAB/wMAAf8DxgH/A8QB/wPFAf8DuwH/A6AB/wOSAf8DsgH/A5UB/wMAAf8DAAH/AwAB/wMr - AfwDQQFyDAADDQESATEBDgEhAf4DAAH/A8gB/wLZAdQB/wHJAcgBxwH/AgABvQH/AgAB7wH/AgAB9QH/ - AgAB9QH/AgAB7wH/AgABswH/AaABnwGcAf8BhwGGAYUB/wLyAfQB/wHmAe4B8gH/Ad4B6wHyAf8B5wH1 - AfsB/wHkAfMB+QH/Ad4B6wHyAf8B5AHuAfIB/wH5AfcB+QH/A/wB/wH8Af4B/AH/AeYB9gHuAf8B4QH0 - AekB/wHmAfoB7QH/AeoB/AHwAf8B4AH1AegB/wHsAfsB8QH/A38B/gMNARIEAANQAZ4B4gGvAQAB/wHN - AZABAAH/AcwBjgEAAf8BygGLAQAB/wHHAYgBAAH/AcUBhQEAAf8BwwGBAQAB/wHLAgAB/wGEAZYBngH/ - AQABkgH+Af8BAAGOAfIB/wEAAYsB8gH/AQABiAHxAf8BAAGFAfEB/wEAAYIB8QH/AgAB8AH/AgAB8AH/ - AgAB8AH/AgAB8AH/AQABggH7Af8BlQIAAf8BsAIAAf8BqwIAAf8BqwIAAf8BqwIAAf8BqwIAAf8BqAIA - Af8B2AGgAQAB/wNRAZ8EAAMFAQcDpAH/A/AB/wPqAf8D6gH/A+oB/wPqAf8D6gH/A+oB/wPqAf8D6gH/ - A+oB/wPqAf8D9QH/AcsBygHLAf8DzwH/A9oB/wOuAf8DAAH/A64B/wPXAf8D6QH/A+sB/wPqAf8D6gH/ - A+oB/wPqAf8D6gH/A+oB/wPwAf8DpAH/AwYBCBAAAzMBUgQAA/4B/wPXAf8DzwH/A8EB/wOtAf8DqAH/ - A7sB/wMAAf8DAAH/AwAB/wPUAf8DuwH/A5kB/wMAAf8DAAH/A7wB/wPAAf8DvAH/AwAB/wMAAf8DAAH/ - A64B/wNPAZcMAAMNARIBLQENAR0B/gMAAf8BywLNAf8C2wHXAf8BzwHOAckB/wIAAY4B/wIAAcsB/wIA - AekB/wIAAekB/wIAAcoB/wIAAYUB/wKmAaEB/wGJAYgBhwH/AvIB9AH/AeUB7AHwAf8B4AHtAfEB/wHh - AfAB9QH/AeIB8gH5Af8B5wH1AfoB/wHnAe8B8QH/AfwB+wH8Af8EAAPsAf8BzQHYAdEB/wHhAfMB6AH/ - AesB/QHyAf8B6gH7AfAB/wHpAfwB8QH/AewB9wHwAf8DfwH+Aw0EEgEYA10B8AHYAaABAAH/Ac0BkQEA - Af8BzQGQAQAB/wHLAY0BAAH/AckBigEAAf8BxgGGAQAB/wHEAYMBAAH/AcwBgwEAAf8BAAGZAbgB/wEA - AZIB/AH/AQABjwHyAf8BAAGMAfIB/wEAAYoB8gH/AQABhgHxAf8BAAGEAfEB/wEAAYEB8AH/AgAB8AH/ - AgAB8AH/AgAB8QH/AQABhAH1Af8BoAIAAf8BrgIAAf8BqwIAAf8BqwIAAf8BqwIAAf8BqwIAAf8BqAIA - Af8BvQIAAf8DXQHwAxIBGAMFAQcDpAH/A/AB/wPqAf8D6gH/A+oB/wPqAf8D6gH/A+oB/wPqAf8D6gH/ - A+oB/wP1Af8DsgH/A74B/wgAA7sB/wMAAf8DuAH/A90B/wPrAf8D6gH/A+oB/wPqAf8D6gH/A+oB/wPq - Af8D6gH/A/AB/wOkAf8DBgEIEAADMwFSBAAD/QH/A+EB/wPyAf8D8gH/A9IB/wOsAf8DsgH/A7wB/wMA - Af8DAAH/A8AB/wMAAf8DgwH/A5kB/wOjAf8DvQH/A7MB/wO7Af8DhgH/AwAB/wMAAf8DqAH/A1EBogwA - Aw0BEgErAQwBHAH+AwAB/wHOAs8B/wPXAf8B7QHqAd4B/wMAAf8CAAHDAf8CAAH8Af8CAAH8Af8CAAHE - Af8DAAH/Ab4BvAGxAf8DhgH/A/UB/wHwAfQB9QH/AesB+AH8Af8DAAH/AeAB7QHyAf8B2wHmAesB/wMA - Af8D5QH/A5kB/wMAAf8DAAH/AdEB4QHYAf8BvQHLAcIB/wMAAf8B5gH2AesB/wMAAf8DfwH+Aw0BEgM4 - AVwB5gG1AQAB/wHTAZkBAAH/Ac8BlAEAAf8BzgGSAQAB/wHMAY4BAAH/AcoBiwEAAf8BxwGIAQAB/wHG - AYMBAAH/AccBigEAAf8BAAGbAdwB/wEAAZMB+AH/AQABkQHzAf8BAAGOAfIB/wEAAYsB8gH/AQABiAHx - Af8BAAGFAfEB/wEAAYIB8AH/AgAB8AH/AgAB8AH/AgAB/gH/AQABiAHFAf8BuAIAAf8BswIAAf8BrQIA - Af8BqwIAAf8BqwIAAf8BqwIAAf8BqgIAAf8BrQIAAf8B4QGuAQAB/wM4AVwDBQEHA6QB/wPxAf8D6wH/ - A+sB/wPrAf8D6wH/A+sB/wPrAf8D6wH/A+sB/wPrAf8D/AH/A5gB/wOjAf8IAAOpAf8DAAH/A8cB/wPk - Af8D7QH/A+sB/wPrAf8D6wH/A+sB/wPrAf8D6wH/A+sB/wPxAf8DpAH/AwYBCBAAAzMBUgQAA/wB/wPV - Af8DrgH/AwAB/wMAAf8DswH/A7oB/wPpAf8DAAH/AwAB/wMAAf8DkwH/A7AB/wPDAf8DugH/A7EB/wOz - Af8DugH/A4YB/wMAAf8DAAH/A64B/wNQAZoMAAMNARIBKgEPARwB/gMAAf8B0ALRAf8D2gH/AtsB2QH/ - AdwB2gHQAf8CAAGPAf8CAAGjAf8CAAGjAf8CAAGQAf8BzwHNAcQB/wKvAa0B/wOHAf8D9QH/Av4B/AH/ - AfoB/gL/AwAB/wHrAfEB9gH/AwAB/wMAAf8D0QH/AwAB/wOUAf8BvAK9Af8B9gH+AfkB/wEAAYIBgAH/ - AwAB/wGKAY4BiwH/AwAB/wN/Af4DDQESA1ABnQHhAa4BAAH/AdIBmAEAAf8B0QGWAQAB/wHOAZMBAAH/ - Ac0BkAEAAf8BywGNAQAB/wHIAYkBAAH/AcoBhAEAAf8BtgGTAQAB/wEAAZsB9QH/AQABlQH1Af8BAAGS - AfMB/wEAAY8B8gH/AQABjAHyAf8BAAGJAfEB/wEAAYYB8gH/AQABggH2Af8BAAGAAfsB/wEAAYAB/gH/ - AQABiAHSAf8BsgIAAf8BpQIAAf8BhQGCAQAB/wGoAgAB/wGvAgAB/wGrAgAB/wGrAgAB/wGrAgAB/wGo - AgAB/wHSAZkBAAH/A1ABnQMFAQcDpQH/A/IB/wPsAf8D7AH/A+wB/wPsAf8D7AH/A+wB/wPsAf8D7AH/ - A+wB/wP9Af8DoAH/A5gB/wP8Af8D/gH/A5oB/wMAAf8D1gH/A+oB/wPtAf8D7AH/A+wB/wPsAf8D7AH/ - A+wB/wPsAf8D7AH/A/IB/wOlAf8DBgEIEAADMwFSA7gB/wMAAf8DAAH/AwAB/wMAAf8DAAH/A4gB/wPq - Af8DtAH/AwAB/wMAAf8DAAH/AwAB/wPTAf8DwwH/A7oB/wO7Af8DuQH/A7wB/wOAAf8DAAH/AwAB/wN/ - Af4DQwF4DAADDQESASwBEQEeAf4DAAH/A9YB/wHaAtsB/wPVAf8B3wHdAdoB/wHqAecB2wH/AcUBwwHB - Af8BxQHEAcEB/wHoAecB2wH/AdMB0AHOAf8CqQGrAf8DhwH/A/YB/wsAAf8DAAH/AwAB/wMAAf8DywH/ - AwAB/wGXApYB/wMAAf8BzQLLAf8DAAH/AbYBtwG2Af8DAAH/A6YB/wN/Af4DDQESA1wByQHjAasBAAH/ - AdsBmgEAAf8B2AGWAQAB/wHPAZQBAAH/Ac4BkQEAAf8BzAGOAQAB/wHJAYsBAAH/AdABhwEAAf8BkQGb - AZgB/wEAAZoB/gH/AQABlwH0Af8BAAGTAfMB/wEAAZEB8wH/AQABjQHyAf8BAAGKAfoB/wEAAYsB+AH/ - AQABjAHbAf8BAAGKAawB/wGQAYMBAAH/AbwCAAH/AZkCAAH/AQABhQH0Af8CAAL/AQABiQHgAf8BqwIA - Af8BrQIAAf8BqwIAAf8BqwIAAf8BpwIAAf8BxgGHAQAB/wNcAckDBQEHA6YB/wPzAf8D7QH/A+0B/wPt - Af8D7QH/A+0B/wPtAf8D7QH/A+0B/wPtAf8EAAOiAf8DlQH/A/kB/wP7Af8DlgH/AwAB/wPjAf8D7gH/ - A+4B/wPtAf8D7QH/A+0B/wPtAf8D7QH/A+0B/wPtAf8D8wH/A6YB/wMGAQgQAAMzAVIDAAH/AwAB/wOX - Af8DsQH/A/AB/wODAf8DAAH/A4AB/wMAAf8DAAH/AwAB/wMAAf8DAAH/A6EB/wO+Af8DuQH/A6oB/wO0 - Af8DmgH/AwAB/wMAAf8DAAH/A18B4AMlATcMAAMNARIBLAETAR4B/gMAAf8BwQG8Ab4B/wHsAfMB8AH/ - A9wB/wHaAtwB/wPcAf8B4QHiAeAB/wHhAeIB4AH/AtsB3AH/A9AB/wGuAq8B/wOLAf8D9wH/CwAB/wMA - Af8D9wH/AwAB/wPWAf8DyAH/AwAB/wOPAf8D8gH/A4AB/wcAAf8D6gH/A38B/gMNARIDXwHgAZoBtQGw - Af8BgQGwAcEB/wG0AacBhQH/AdcBlwEAAf8BzgGSAQAB/wHNAZABAAH/AcoBjAEAAf8B0QGNAQAB/wEA - AaEByAH/AQABmwH8Af8BAAGYAfQB/wEAAZUB8wH/AQABkQH0Af8BAAGQAf0B/wEAAZMByQH/AaMBiAEA - Af8BvQIAAf8BwQIAAf8BuQIAAf8BrAIAAf8BAAGGAesB/wIAAfYB/wIAAfAB/wIAAv8BAAGEAZAB/wG1 - AgAB/wGrAgAB/wGrAgAB/wGoAgAB/wG+AgAB/wNfAeADBQEHA6YB/wP0Af8D7gH/A+4B/wPuAf8D7gH/ - A+4B/wPuAf8D7gH/A+4B/wPuAf8EAAOkAf8DAAH/A9gB/wPYAf8DAAH/AwAB/wPvAf8D8QH/A+4B/wPu - Af8D7gH/A+4B/wPuAf8D7gH/A+4B/wPuAf8D9AH/A6YB/wMGAQgQAAMzAVIDlQH/AwAB/wPzAf8D8QH/ - A/YB/wOzAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wOcAf8DmAH/AwAB/wMAAf8DAAH/ - AwAB/wMAAf8DnAH/A1EBohAAAw0BEgEpARQBHAH+AwAB/wMAAf8ByQHCAcUB/wHkAuUB/wHhAeAB4QH/ - AeEB4AHhAf8B4QHgAeEB/wHhAeAB4QH/AeEC4AH/AdUC1AH/AbQCswH/AYsBjQGLAf8D9gH/CwAB/wOd - Af8HAAH/A8sB/yAAA38B/gMNARICZAFeAewBAAG3AdkB/wEAAbQC/wEAAbMC/wGrAagBjwH/Ad0BkwEA - Af8BzgGQAQAB/wHMAY0BAAH/Ac0BkQEAAf8BAAGiAdkB/wEAAZwB+gH/AQABmQH0Af8BAAGWAfQB/wEA - AZQB+gH/AQABlgGtAf8BxAIAAf8BwAIAAf8BrAGAAQAB/wGqAgAB/wHEAgAB/wEAAYcBmQH/AgAB/gH/ - AgAB8AH/AgAB8AH/AgAB+wH/AQABhQGmAf8BtgIAAf8BqwIAAf8BqwIAAf8BqAIAAf8BugIAAf8DZAHs - AwUBBwOmAf8D9AH/A+8B/wPvAf8D7gH/A+4B/wPuAf8D7gH/A+4B/wPuAf8D7gH/BAADpQH/AwAB/wPF - Af8DxQH/AwAB/wOGAf8D9wH/A/IB/wPuAf8D7gH/A+4B/wPuAf8D7gH/A+4B/wPuAf8D7gH/A/QB/wOm - Af8DBgEIEAADMwFSA9sB/wMAAf8D4QH/A+wB/wPcAf8D3AH/AwAB/wMAAf8DAAH/A5gB/wOdAf8DAAH/ - A44B/wO5Af8DyAH/A7MB/wMAAf8DAAH/AwAB/wMAAf8DAAH/A84B/wM4AV0QAAMNARIBIgERARYB/gMA - Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wHmAeMB5QH/AfIB8AHx - Af8B7QLsAf8C6wHqAf8B9gH0AfUB/wHwAe0B7wH/AeoB6AHqAf8B7AHrAewB/wHtAesB7AH/AewB6gHr - Af8B7AHqAesB/wHrAeoB6wH/AewB6gHsAf8B7AHqAesB/wHtAewB7QH/AfUB9AH1Af8DfwH+Aw0BEgJk - AV4B7AEAAbgB1QH/AQABtQL/AQABsgH8Af8BAAGxAfIB/wGhAakBmgH/AdQBlgEAAf8BzwGMAQAB/wHJ - AZUBAAH/AQABowHkAf8BAAGdAfkB/wEAAZsB9AH/AQABmAH8Af8BAAGaAcMB/wHRAYABAAH/AcACAAH/ - AcICAAH/AaYBhAEAAf8BAAGSAdcB/wGnAYoBAAH/AQABhQHUAf8CAAH1Af8CAAHwAf8CAAHwAf8CAAH7 - Af8BAAGFAaYB/wG2AgAB/wGrAgAB/wGrAgAB/wGoAgAB/wG6AgAB/wNkAewDBQEHA6oB/wP5Af8D9AH/ - A/IB/wPyAf8D8QH/A/AB/wPwAf8D7wH/A+8B/wPvAf8EAAOhAf8DogH/CAADoQH/A5EB/wP+Af8D8QH/ - A+8B/wPvAf8D7wH/A+8B/wPvAf8D7wH/A+8B/wPvAf8D9QH/A6cB/wMGAQgQAAMzAVIHAAH/A5gB/wPy - Af8D2QH/BAADkAH/AwAB/wPWAf8D6QH/A+AB/wPdAf8D1wH/A9EB/wPOAf8DnQH/AwAB/wOAAf8DAAH/ - AwAB/wOzAf8D9AH/AzcBWhAAAw0BEgEbAQ4BEgH+AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8DAAH/AwAB/wMAAf8DAAH/AecB5QHmAf8D8QH/AewB5wHqAf8B8AHrAe0B/wHtAeoB7AH/AewB5wHq - Af8B8AHrAe0B/wHtAeoB7AH/AewB6gHrAf8B7AHqAesB/wHsAeoB7AH/Ae0B6wHsAf8B7QHrAe0B/wHv - AesB7QH/AfAB7QHvAf8B9wH1AfcB/wN/Af4DDQESA18B4AGEAbgBzAH/AQABtgL/AQABswH5Af8BAAGw - AfsB/wEAAbAC/wGMAaoBsQH/AdkBlAEAAf8B1AGUAQAB/wEAAaUB3wH/AQABngH6Af8BAAGcAfQB/wEA - AZkB+QH/AQABmQHaAf8BpAGRAQAB/wGwAYkBAAH/AaUBiQEAAf8BuAGHAQAB/wEAAY8BxQH/AQABhwH7 - Af8BAAGBAfEB/wIAAfAB/wIAAfAB/wIAAfAB/wIAAfsB/wEAAYQBpAH/AbYCAAH/AasCAAH/AasCAAH/ - AagCAAH/Ab4CAAH/A18B4AMFAQcDqgH/A/kB/wP0Af8D9AH/A/QB/wP0Af8D9AH/A/MB/wPzAf8D8wH/ - A/IB/wQAA6IB/wGqAqkB/wgAA6kB/wOdAf8EAAPxAf8D8AH/A/AB/wPwAf8D8AH/A/AB/wPwAf8D8AH/ - A/AB/wP2Af8DqAH/AwYBCBAAAzMBUgQAA4gB/wMAAf8D8AH/A+kB/wOqAf8DAAH/AwAB/wOuAf8D4wH/ - A8oB/wPLAf8DzgH/A8gB/wOdAf8DgQH/A4YB/wMAAf8DAAH/A6sB/wPnAf8EAAM3AVoQAAMNARIBEAEI - AQsB/gMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wLrAfAB/wL2 - Af4B/wLvAfQB/wHwAe8B9AH/AfAB7gH1Af8B8AHuAfUB/wHwAfEB9QH/AfAB8QH1Af8B8AHxAfUB/wLx - AfUB/wHxAfAB9wH/AfEB8gH3Af8C8gH2Af8C8gH5Af8B9AHyAfoB/wH7AfoC/wN/Af4DDQESAlwBWQHJ - AZcBuQG4Af8BAAG4Av8BAAG1AfkB/wEAAbIB+QH/AQABrwH5Af8BAAGtAf4B/wEAAaoBwwH/AZ0BpAGY - Af8BAAGkAe4B/wEAAaAB9wH/AQABnQH1Af8BAAGaAfMB/wEAAZcB+AH/AQABlgH6Af8BAAGVAfQB/wEA - AZIB+QH/AQABkAHxAf8BAAGJAfEB/wEAAYUB8wH/AQABgwHxAf8BAAGAAfAB/wIAAfAB/wIAAfAB/wIA - Af0B/wEAAYQBlQH/AbUCAAH/AasCAAH/AasCAAH/AacCAAH/AcYBhwEAAf8DXAHJAwUBBwOrAf8D+gH/ - A/QB/wP0Af8D9AH/A/QB/wP0Af8D9AH/A/QB/wP0Af8D9AH/BAADpgH/AwAB/wPEAf8DxAH/AwAB/wOk - Af8EAAPxAf8D8QH/A/EB/wPwAf8D8AH/A/AB/wPwAf8D8AH/A/AB/wP1Af8DpwH/AwYBCBAAAzMBUgQA - A8gB/wMAAf8DhwH/AwAB/wMAAf8DAAH/AwAB/wPLAf8D2wH/A88B/wPEAf8DrAH/A5oB/wOLAf8DhwH/ - AwAB/wOAAf8DtwH/A+cB/wPxAf8EAAM3AVoQAAMNARIBDQEHAQkB/gMAAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wHgAtwB/wHsAeoB6wH/AeYB4wHmAf8B5gHjAeYB/wHm - AeMB5gH/AeYB4wHmAf8B5gHjAeYB/wHmAeMB5gH/AeYB4wHmAf8B5wHjAeYB/wHnAuYB/wHnAeUB5gH/ - AecB5QHmAf8B5wHlAeYB/wHoAeYB6AH/AfEC7QH/A38B/gMNARIDUAGdAbUBugGZAf8BAAG5Av8BAAG2 - AfkB/wEAAbMB+QH/AQABsAH4Af8BAAGuAfgB/wEAAasB/gH/AQABqQL/AQABpAH3Af8BAAGiAfUB/wEA - AZ8B9QH/AQABnAH0Af8BAAGZAfQB/wEAAZYB9AH/AQABkgH0Af8BAAGQAfMB/wEAAYwB+gH/AQABjAH5 - Af8BAAGHAfAB/wEAAYMB9gH/AQABgQH7Af8CAAH5Af8CAAH4Af8BAAGDAf4B/wGXAgAB/wGwAgAB/wGr - AgAB/wGrAgAB/wGoAgAB/wHSAZkBAAH/A1ABnQMFAQcDqwH/A/sB/wP1Af8D9QH/A/UB/wP1Af8D9QH/ - A/UB/wP1Af8D9QH/A/UB/wQAA74B/wMAAf8DAAH/AwAB/wMAAf8DvgH/BAAD9gH/A/UB/wP1Af8D9AH/ - A/QB/wPzAf8D8wH/A/MB/wPyAf8D+AH/A6oB/wMGAQgQAAMzAVIEAAPuAf8DAAH/AwAB/wMAAf8DqAH/ - A9kB/wPwAf8D2QH/A88B/wPTAf8D0AH/A6AB/wOSAf8DlQH/A5gB/wOsAf8D1AH/A+gB/wPtAf8D7gH/ - BAADNwFaEAADDQESAXcBYQFjAf4B0QG5AbwB/wHKAbMBtgH/AckBsgG1Af8ByQGyAbUB/wHJAbIBtQH/ - AckBsgG1Af8ByQGyAbUB/wHJAbIBtQH/AckBsgG1Af8ByQGyAbUB/wHJAbQBuwH/AcYCrAH/AcwCAAH/ - AcoCAAH/AcoCAAH/AcoCAAH/AcoCAAH/AcoCAAH/AcoCAAH/AcoCAAH/AcoCAAH/AcoCAAH/AcoCAAH/ - AckCAAH/AckCAAH/AckCAAH/AcoCAAH/AdICAAH/AX0BJQEDAf4DDQESAzgBXAHXAbkBAAH/AQABugH2 - Af8BAAG3AfwB/wEAAbUB+QH/AQABsgH5Af8BAAGvAfgB/wEAAawB+AH/AQABqQH3Af8BAAGmAfYB/wEA - AaMB9gH/AQABoAH1Af8BAAGdAfUB/wEAAZoB9AH/AQABmAH0Af8BAAGUAfMB/wEAAZIB/QH/AQABkwHU - Af8BnQGUAQAB/wEAAY8B7AH/AQABiwHaAf8BAAGKAacB/wEAAYgBvwH/AQABhwHRAf8BAAGHAZsB/wGz - AgAB/wGrAgAB/wGrAgAB/wGqAgAB/wGtAgAB/wHhAa4BAAH/AzgBXAMFAQcDrAH/A/wB/wP2Af8D9gH/ - A/YB/wP2Af8D9gH/A/YB/wP2Af8D9gH/A/YB/wP4Af8D+wH/A/MB/wHxAvMB/wHxAvMB/wPzAf8D+wH/ - A/gB/wP2Af8D9gH/A/YB/wP2Af8D9gH/A/YB/wP2Af8D9gH/A/cB/wP8Af8DrAH/AwYBCBAAAzMBUgQA - A+0B/wPTAf8DygH/A+sB/wPrAf8D6wH/A+sB/wPkAf8D2gH/A9UB/wPOAf8DwgH/A8IB/wPLAf8D2gH/ - A+IB/wPjAf8D4wH/A+MB/wPjAf8D/gH/AzcBWxAAAw0BEgF1AVsBXQH+AcYBqgGsAf8BvwGjAaUB/wG+ - AaIBpAH/Ab4BogGkAf8BvgGiAaQB/wG+AaIBpAH/Ab4BogGkAf8BvgGiAaQB/wG+AaIBpAH/Ab4BogGj - Af8BvgGjAagB/wG+AaIBoQH/AdACAAH/AdACAAH/AdACAAH/AdACAAH/AdACAAH/AdACAAH/AdACAAH/ - AdACAAH/AdACAAH/AdACAAH/AdACAAH/AdACAAH/AdACAAH/AdACAAH/AdECAAH/AdgCAAH/AX8BJgED - Af4DDQQSARgCXQFcAfABhAG6Ac0B/wEAAbkC/wEAAbYB+QH/AQABswH5Af8BAAGwAfgB/wEAAa4B+AH/ - AQABqgH3Af8BAAGoAfcB/wEAAaQB9gH/AQABogH2Af8BAAGeAfUB/wEAAZwB9AH/AQABmQH0Af8BAAGW - AfwB/wEAAZgBtQH/AcMBggEAAf8BxQIAAf8BpAGLAQAB/wG1AgAB/wG/AgAB/wG8AgAB/wG5AgAB/wG2 - AgAB/wGrAgAB/wGrAgAB/wGrAgAB/wGoAgAB/wG9AgAB/wNdAfADEgEYAwUBBwOrAf8D/AH/A/cB/wP3 - Af8D9wH/A/cB/wP3Af8D9wH/A/cB/wP3Af8D9wH/A/cB/wP6Af8D/QH/A/4B/wP+Af8D/QH/A/oB/wP3 - Af8D9wH/A/cB/wP3Af8D9wH/A/cB/wP3Af8D9wH/A/cB/wP3Af8D/AH/A6sB/wMGAQgQAAMzAVIEAAPs - Af8D6gH/A+oB/wPqAf8D6gH/A+oB/wPqAf8D6gH/A+YB/wPgAf8D2gH/A9oB/wPdAf8D3wH/A9sB/wPP - Af8DxwH/A8UB/wPHAf8DwgH/A9cB/wM0AVUQAAMNARIBcwFZAVwB/gHFAacBqgH/Ab4BoAGkAf8BvQGf - AaMB/wG9AZ8BowH/Ab0BnwGjAf8BvQGfAaMB/wG9AZ8BowH/Ab0BnwGjAf8BvQGfAaMB/wG9AZ8BoQH/ - Ab0BoAGnAf8BvQGeAaAB/wHSAgAB/wHSAgAB/wHRAgAB/wHTAgAB/wHSAgAB/wHSAgAB/wHRAgAB/wHT - AgAB/wHRAgAB/wHTAgAB/wHRAgAB/wHPAgAB/wHVAgAB/wHWAgAB/wHTAgAB/wHbAgAB/wF/ASoBBAH+ - Aw0BEgQAA1EBnwHBAboBjAH/AQABugH+Af8BAAG3AfoB/wEAAbQB+QH/AQABsgH4Af8BAAGvAfgB/wEA - AawB+AH/AQABqQH3Af8BAAGmAfYB/wEAAaMB9gH/AQABoAH1Af8BAAGdAfUB/wEAAZoB+wH/AQABnAHL - Af8B0gGEAQAB/wHKAgAB/wG9AYEBAAH/AZoBjgEAAf8BtwIAAf8BtAIAAf8BsgIAAf8BsAIAAf8BrQIA - Af8BrAIAAf8BqwIAAf8BqwIAAf8BqAIAAf8B2AGgAQAB/wNRAZ8EAAMFAQcDrAH/A/wB/wP5Af8IAAP5 + AZECkgH/A5IB/wOSAf8DkgH/A48B/wNZAc8DBgEIEAADMwFTBAAD+AH/A/YB/wP2Af8D9gH/A/YB/wP1 + Af8D5gH/A8AB/wOXAf8DiQH/AwAB/wMAAf8DAAH/AwAB/wONAf8DrgH/A94B/wPwAf8D9gH/A/cB/wQA + AzcBWxQAAxQBGwNQAaQDWQHyAwAB/wNtAf4DbQH+A20B/gNtAf4DbQH+A2wB/gNmAf4DUgH+Az8B/gN/ + Af4DfwH+A38B/gN9Af4DfwH+A38B/gN/Af4DeAH+A38B/gN7Af4DfwH+A38B/gN/Af4DAAH/A2cB8gNQ + AaQDFAEbHAADCgENA0oBjAJtAWQB9wHcAaYBAAH/AcUBhgEAAf8BvAIAAf8BvAIAAf8BuQIAAf8BtQIA + Af8BrAIAAf8BqAIAAf8BqAIAAf8BpwIAAf8BqAIAAf8BrQIAAf8BvQIAAf8B2AGgAQAB/wJtAWQB9wNK + AYwDCgENGAADBQEHA50B/wHvAvAB/wPrAf8B7wHwAfEB/wHvAvEB/wPrAf8D6gH/A+oB/wPqAf8D6gH/ + A+oB/wPqAf8D6gH/A+oB/wPqAf8D6gH/A+oB/wPqAf8D6gH/A+oB/wPqAf8D6gH/A+oB/wPqAf8C6gHr + Af8C7wHwAf8D8QH/AusB7QH/A/AB/wOdAf8DBgEIEAADMwFSFAAD+AH/A9cB/wOnAf8DAAH/A5EB/wO5 + Af8DrgH/A5gB/wMAAf8DAAH/AwAB/wMAAf8DgAH/A8AB/wPxAf8IAAM3AVoQAAMEAQYDUAGaAwAB/wG8 + Ab0BvAH/AccCyAH/A8IB/wPCAf8DwgH/A8IB/wPCAf8DwgH/A7cB/wOcAf8DAAH/A/sB/wsAAf8DygH/ + BAAD9QH/AwAB/wPKAf8DAAH/A+cB/wMAAf8DlAH/AwAB/wOlAf8DlAH/A1ABmgMEAQYUAAMeASsDXAHN + AeMBsAEAAf8BygGLAQAB/wG5AgAB/wG9AgAB/wGhAYcBAAH/AQABjgHDAf8BAAGLAbUB/wGHAYUBAAH/ + Aa0CAAH/AbcCAAH/AasCAAH/AasCAAH/AasCAAH/AaoCAAH/AagCAAH/AakCAAH/Ab0CAAH/AeABrQEA + Af8DXAHNAx4BKxQAAwUBBwOiAf8D7QH/AukB6gH/Ac0BzAHKAf8B0gHPAc4B/wHrAewB7QH/A+cB/wPl + Af8D5AH/A+QB/wPkAf8D5AH/A+QB/wPkAf8D5QH/A+YB/wPmAf8D5QH/A+UB/wPlAf8D5QH/A+QB/wPk + Af8D5QH/AuoB6wH/AdQB0gHRAf8BzQHLAckB/wPrAf8D7gH/A6IB/wMGAQgQAAMzAVIQAAP5Af8DzwH/ + A54B/wOBAf8DkwH/A8gB/wPAAf8DvQH/A8MB/wOwAf8DiQH/AwAB/wMAAf8DAAH/AwAB/wO0Af8D8AH/ + BAADNwFaEAADDAEQA0gB9gMAAf8BvQK+Af8BwgHDAcIB/wO+Af8DvgH/A74B/wO+Af8DvgH/A74B/wO0 + Af8DlwH/AwAB/wP0Af8D/gH/BwAB/wOJAf8EAAO8Af8DAAH/A+cB/wMAAf8DAAH/AwAB/wH6AfsB+gH/ + A7sB/wMAAf8DhAH/A2IB9gMMARAQAAMlATcDZAHnAd0BpwEAAf8BwgGAAQAB/wG8AgAB/wHBAgAB/wGq + AYoBAAH/AQABkAHzAf8BAAGGAf0B/wEAAYQB+wH/AQABgwH9Af8BAAGGAesB/wEAAYcBmgH/AbYCAAH/ + AbECAAH/AaoCAAH/AasCAAH/AasCAAH/AasCAAH/AacCAAH/Aa4CAAH/AdUBnAEAAf8DZAHnAyUBNxAA + AwUBBwOgAf8D8AH/AdMB0AHRAf8BpgGhAZsB/wMAAf8BxQHCAb8B/wLtAe8B/wPlAf8D5QH/A+UB/wPl + Af8D5QH/A+UB/wPlAf8D5QH/A+YB/wPjAf8D4AH/A+EB/wPkAf8D5gH/A+UB/wPlAf8D6gH/AdUC1AH/ + AZwBlgGRAf8BggIAAf8BtwGyAa8B/wHzAvQB/wOhAf8DBgEIEAADMwFSEAAD1QH/A6YB/wOVAf8DkQH/ + A50B/wPKAf8DvwH/A7kB/wOyAf8DuAH/A8AB/wOyAf8DigH/AwAB/wMAAf8DAAH/A7wB/wP2Af8DNwFa + EAADDQESAwAB/wMAAf8BvQK8Af8BxAHFAcQB/wPBAf8DwQH/A8EB/wHEAcIBvgH/AcQBwgG+Af8DvwH/ + A7YB/wOaAf8DAAH/A/QB/wP8Af8EAAPTAf8DAAH/AwAB/wMAAf8DsAH/IAADrgH/Aw0BEgwAAx0BKQNf + AegB2wGkAQAB/wHDAYEBAAH/AcACAAH/Ab8CAAH/AcgCAAH/AQABkwGnAf8BAAGLAv8BAAGIAfEB/wEA + AYUB8QH/AQABgwHxAf8CAAHzAf8CAAH+Af8BAAGIAcYB/wGfAgAB/wG2AgAB/wG0AgAB/wGrAgAB/wGr + AgAB/wGrAgAB/wGpAgAB/wGpAgAB/wHQAZUBAAH/A18B6AMdASkMAAMFAQcDoQH/A/AB/wLGAccB/wLo + AekB/wG/AbwBugH/AbMBsAGtAf8B7gLwAf8D5gH/A+YB/wPmAf8D5gH/A+YB/wPmAf8D5wH/A+YB/wPf + Af8D1QH/A84B/wPSAf8D3AH/A+UB/wPmAf8D5gH/AusB7AH/AsgBxwH/AeYC5wH/Ab4CugH/AaYBogGf + Af8C9AH1Af8DogH/AwYBCBAAAzMBUgwAA+gB/wO4Af8DngH/A58B/wOdAf8DqwH/A8cB/wPHAf8DuwH/ + A7cB/wOzAf8DsgH/A74B/wO5Af8DAAH/AwAB/wMAAf8DAAH/A9QB/wM3AVoQAAMNARIBNwESASUB/gMA + Af8BvwLBAf8ByALJAf8DxAH/AcoByAHEAf8B1AHSAcMB/wHBAcIBygH/AcEBwgHKAf8B1AHSAcMB/wG+ + AbwBtwH/ApsBnAH/AwAB/wP0Af8D/AH/AfoC+QH/BAAC+gH7Af8CzwHOAf8D8QH/BAAD+gH/A/kB/wP6 + Af8B+wL6Af8B9gH5AfcB/wH2AfkB9wH/AvsB/AH/BAADfwH+Aw0BEggAAwkBDANeAdAB3gGpAQAB/wHF + AYUBAAH/AcQBgwEAAf8BwwGBAQAB/wHAAgAB/wHIAgAB/wEAAZMBrQH/AQABjQH8Af8BAAGKAfIB/wEA + AYcB8QH/AQABhAHxAf8BAAGBAfAB/wIAAfAB/wIAAfgB/wEAAYMB9gH/AQABhwHLAf8BhgGDAYAB/wGy + AgAB/wGtAgAB/wGrAgAB/wGrAgAB/wGqAgAB/wGpAgAB/wHVAZwBAAH/A14B0AMJAQwIAAMFAQcDoQH/ + A+8B/wPfAf8DtQH/AbsBugG5Af8D4AH/A+oB/wPnAf8D5wH/A+cB/wPnAf8D5wH/A+gB/wPuAf8D5wH/ + A9MB/wO9Af8DsQH/A8AB/wPVAf8D4wH/A+gB/wPnAf8D6QH/A+IB/wPFAf8BvgK9Af8B1wLYAf8D8QH/ + A6EB/wMGAQgQAAMzAVIIAAP9Af8DywH/A6sB/wOoAf8DqgH/A48B/wMAAf8DAAH/A4IB/wPMAf8DuQH/ + A7QB/wOzAf8DtQH/A7YB/wMAAf8DAAH/AwAB/wMAAf8DoQH/A04BmRAAAw0BEgE2AREBJQH+AwAB/wHD + AsQB/wHLAs0B/wLNAcgB/wLOAckB/wEAAYEB4gH/AgAB9wH/AgAB9wH/AQABggHgAf8BwwHCAb0B/wGk + AaMBnwH/AwAB/wL1AfQB/wH8AfsB/AH/AewB9QH3Af8B6gH3AfoB/wHtAfoC/wH2A/8B/AL+Af8D+QH/ + A/kB/wP5Af8B9wH5AfcB/wHvAfgB8AH/AesB+wHzAf8B6wH7AfMB/wHvAfkB8wH/BAADfwH+Aw0BEggA + A0oBjQHlAbMBAAH/AcsBjQEAAf8BxwGHAQAB/wHGAYUBAAH/AcMBggEAAf8BwQIAAf8ByQIAAf8BAAGV + Aa0B/wEAAY4B/AH/AQABiwHyAf8BAAGIAfEB/wEAAYUB8QH/AQABggHxAf8CAAHwAf8CAAHwAf8CAAHx + Af8CAAH4Af8BAAGAAv8BAAGKAckB/wGvAgAB/wGsAgAB/wGrAgAB/wGrAgAB/wGpAgAB/wGuAgAB/wHg + AawBAAH/A0oBjQgAAwUBBwOhAf8D7QH/A+sB/wPpAf8B6QLqAf8D6wH/A+cB/wPnAf8D5wH/A+cB/wPn + Af8D5wH/A+sB/wPWAf8DxwH/A6sB/wGRAZIBkQH/A5sB/wO1Af8D0gH/A+MB/wPnAf8D5wH/A+cB/wPq + Af8D6QH/A+kB/wPtAf8D7QH/A6EB/wMGAQgQAAMzAVIIAAPuAf8DwAH/A6wB/wOsAf8DuQH/AwAB/wMA + Af8DAAH/AwAB/wPIAf8DvQH/A7YB/wOzAf8DxAH/A6AB/wMAAf8DAAH/AwAB/wMAAf8DAAH/A18B2wMg + AS8MAAMNARIBNAEQASMB/gMAAf8DxQH/Ac8B0QHPAf8B3QHZAckB/wIAAdAB/wIAAfwB/wGrAbsB/gH/ + Aa0BuwH+Af8CAAH8Af8CAAHGAf8BsQGvAZ8B/wOBAf8B9gH0AfUB/wHvAfYB+QH/AeEB8AH3Af8B6gH5 + Av8B7AH4Av8B4QHwAfcB/wHqAfAB9QH/AfoC+QH/AfoB+QH6Af8B+gL5Af8B6gH1Ae4B/wHkAfcB6wH/ + Ae0B/wH0Af8B7QH/AfQB/wHlAfgB6wH/AfIB/QH4Af8DfwH+Aw0BEgQAAx8BLAJqAWMB+QHVAZwBAAH/ + AckBiwEAAf8ByQGKAQAB/wHGAYYBAAH/AcUBgwEAAf8BwgGAAQAB/wHKAgAB/wEAAZYBqAH/AQABkAH9 + Af8BAAGNAfIB/wEAAYoB8gH/AQABhgHxAf8BAAGEAfEB/wEAAYAB8AH/AgAB8AH/AgAB8AH/AgAB8AH/ + AgAB8AH/AQABggL/AZcCAAH/AbACAAH/AasCAAH/AasCAAH/AasCAAH/AacCAAH/Ab0CAAH/AmoBZAH5 + Ax8BLAQAAwUBBwOjAf8D7wH/A+gB/wPpAf8D6QH/A+gB/wPoAf8D6QH/A+kB/wPpAf8D6QH/A+oB/wPv + Af8BlQGWAZUB/wGOAY8BjgH/AZQBlgGVAf8DAAH/A4gB/wOwAf8D0gH/A+cB/wPqAf8D6QH/A+kB/wPo + Af8D6QH/A+kB/wPoAf8D7gH/A6MB/wMGAQgQAAMzAVIIAAPhAf8DuAH/A6wB/wOuAf8DsgH/A5EB/wMA + Af8DAAH/AwAB/wPGAf8DxAH/A8UB/wO7Af8DoAH/A5IB/wOyAf8DlQH/AwAB/wMAAf8DAAH/AysB/ANB + AXIMAAMNARIBMQEOASEB/gMAAf8DyAH/AtkB1AH/AckByAHHAf8CAAG9Af8CAAHvAf8CAAH1Af8CAAH1 + Af8CAAHvAf8CAAGzAf8BoAGfAZwB/wGHAYYBhQH/AvIB9AH/AeYB7gHyAf8B3gHrAfIB/wHnAfUB+wH/ + AeQB8wH5Af8B3gHrAfIB/wHkAe4B8gH/AfkB9wH5Af8D/AH/AfwB/gH8Af8B5gH2Ae4B/wHhAfQB6QH/ + AeYB+gHtAf8B6gH8AfAB/wHgAfUB6AH/AewB+wHxAf8DfwH+Aw0BEgQAA1ABngHiAa8BAAH/Ac0BkAEA + Af8BzAGOAQAB/wHKAYsBAAH/AccBiAEAAf8BxQGFAQAB/wHDAYEBAAH/AcsCAAH/AYQBlgGeAf8BAAGS + Af4B/wEAAY4B8gH/AQABiwHyAf8BAAGIAfEB/wEAAYUB8QH/AQABggHxAf8CAAHwAf8CAAHwAf8CAAHw + Af8CAAHwAf8BAAGCAfsB/wGVAgAB/wGwAgAB/wGrAgAB/wGrAgAB/wGrAgAB/wGrAgAB/wGoAgAB/wHY + AaABAAH/A1EBnwQAAwUBBwOkAf8D8AH/A+oB/wPqAf8D6gH/A+oB/wPqAf8D6gH/A+oB/wPqAf8D6gH/ + A+oB/wP1Af8BywHKAcsB/wPPAf8D2gH/A64B/wMAAf8DrgH/A9cB/wPpAf8D6wH/A+oB/wPqAf8D6gH/ + A+oB/wPqAf8D6gH/A/AB/wOkAf8DBgEIEAADMwFSBAAD/gH/A9cB/wPPAf8DwQH/A60B/wOoAf8DuwH/ + AwAB/wMAAf8DAAH/A9QB/wO7Af8DmQH/AwAB/wMAAf8DvAH/A8AB/wO8Af8DAAH/AwAB/wMAAf8DrgH/ + A08BlwwAAw0BEgEtAQ0BHQH+AwAB/wHLAs0B/wLbAdcB/wHPAc4ByQH/AgABjgH/AgABywH/AgAB6QH/ + AgAB6QH/AgABygH/AgABhQH/AqYBoQH/AYkBiAGHAf8C8gH0Af8B5QHsAfAB/wHgAe0B8QH/AeEB8AH1 + Af8B4gHyAfkB/wHnAfUB+gH/AecB7wHxAf8B/AH7AfwB/wQAA+wB/wHNAdgB0QH/AeEB8wHoAf8B6wH9 + AfIB/wHqAfsB8AH/AekB/AHxAf8B7AH3AfAB/wN/Af4DDQQSARgDXQHwAdgBoAEAAf8BzQGRAQAB/wHN + AZABAAH/AcsBjQEAAf8ByQGKAQAB/wHGAYYBAAH/AcQBgwEAAf8BzAGDAQAB/wEAAZkBuAH/AQABkgH8 + Af8BAAGPAfIB/wEAAYwB8gH/AQABigHyAf8BAAGGAfEB/wEAAYQB8QH/AQABgQHwAf8CAAHwAf8CAAHw + Af8CAAHxAf8BAAGEAfUB/wGgAgAB/wGuAgAB/wGrAgAB/wGrAgAB/wGrAgAB/wGrAgAB/wGoAgAB/wG9 + AgAB/wNdAfADEgEYAwUBBwOkAf8D8AH/A+oB/wPqAf8D6gH/A+oB/wPqAf8D6gH/A+oB/wPqAf8D6gH/ + A/UB/wOyAf8DvgH/CAADuwH/AwAB/wO4Af8D3QH/A+sB/wPqAf8D6gH/A+oB/wPqAf8D6gH/A+oB/wPq + Af8D8AH/A6QB/wMGAQgQAAMzAVIEAAP9Af8D4QH/A/IB/wPyAf8D0gH/A6wB/wOyAf8DvAH/AwAB/wMA + Af8DwAH/AwAB/wODAf8DmQH/A6MB/wO9Af8DswH/A7sB/wOGAf8DAAH/AwAB/wOoAf8DUQGiDAADDQES + ASsBDAEcAf4DAAH/Ac4CzwH/A9cB/wHtAeoB3gH/AwAB/wIAAcMB/wIAAfwB/wIAAfwB/wIAAcQB/wMA + Af8BvgG8AbEB/wOGAf8D9QH/AfAB9AH1Af8B6wH4AfwB/wMAAf8B4AHtAfIB/wHbAeYB6wH/AwAB/wPl + Af8DmQH/AwAB/wMAAf8B0QHhAdgB/wG9AcsBwgH/AwAB/wHmAfYB6wH/AwAB/wN/Af4DDQESAzgBXAHm + AbUBAAH/AdMBmQEAAf8BzwGUAQAB/wHOAZIBAAH/AcwBjgEAAf8BygGLAQAB/wHHAYgBAAH/AcYBgwEA + Af8BxwGKAQAB/wEAAZsB3AH/AQABkwH4Af8BAAGRAfMB/wEAAY4B8gH/AQABiwHyAf8BAAGIAfEB/wEA + AYUB8QH/AQABggHwAf8CAAHwAf8CAAHwAf8CAAH+Af8BAAGIAcUB/wG4AgAB/wGzAgAB/wGtAgAB/wGr + AgAB/wGrAgAB/wGrAgAB/wGqAgAB/wGtAgAB/wHhAa4BAAH/AzgBXAMFAQcDpAH/A/EB/wPrAf8D6wH/ + A+sB/wPrAf8D6wH/A+sB/wPrAf8D6wH/A+sB/wP8Af8DmAH/A6MB/wgAA6kB/wMAAf8DxwH/A+QB/wPt + Af8D6wH/A+sB/wPrAf8D6wH/A+sB/wPrAf8D6wH/A/EB/wOkAf8DBgEIEAADMwFSBAAD/AH/A9UB/wOu + Af8DAAH/AwAB/wOzAf8DugH/A+kB/wMAAf8DAAH/AwAB/wOTAf8DsAH/A8MB/wO6Af8DsQH/A7MB/wO6 + Af8DhgH/AwAB/wMAAf8DrgH/A1ABmgwAAw0BEgEqAQ8BHAH+AwAB/wHQAtEB/wPaAf8C2wHZAf8B3AHa + AdAB/wIAAY8B/wIAAaMB/wIAAaMB/wIAAZAB/wHPAc0BxAH/Aq8BrQH/A4cB/wP1Af8C/gH8Af8B+gH+ + Av8DAAH/AesB8QH2Af8DAAH/AwAB/wPRAf8DAAH/A5QB/wG8Ar0B/wH2Af4B+QH/AQABggGAAf8DAAH/ + AYoBjgGLAf8DAAH/A38B/gMNARIDUAGdAeEBrgEAAf8B0gGYAQAB/wHRAZYBAAH/Ac4BkwEAAf8BzQGQ + AQAB/wHLAY0BAAH/AcgBiQEAAf8BygGEAQAB/wG2AZMBAAH/AQABmwH1Af8BAAGVAfUB/wEAAZIB8wH/ + AQABjwHyAf8BAAGMAfIB/wEAAYkB8QH/AQABhgHyAf8BAAGCAfYB/wEAAYAB+wH/AQABgAH+Af8BAAGI + AdIB/wGyAgAB/wGlAgAB/wGFAYIBAAH/AagCAAH/Aa8CAAH/AasCAAH/AasCAAH/AasCAAH/AagCAAH/ + AdIBmQEAAf8DUAGdAwUBBwOlAf8D8gH/A+wB/wPsAf8D7AH/A+wB/wPsAf8D7AH/A+wB/wPsAf8D7AH/ + A/0B/wOgAf8DmAH/A/wB/wP+Af8DmgH/AwAB/wPWAf8D6gH/A+0B/wPsAf8D7AH/A+wB/wPsAf8D7AH/ + A+wB/wPsAf8D8gH/A6UB/wMGAQgQAAMzAVIDuAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DiAH/A+oB/wO0 + Af8DAAH/AwAB/wMAAf8DAAH/A9MB/wPDAf8DugH/A7sB/wO5Af8DvAH/A4AB/wMAAf8DAAH/A38B/gND + AXgMAAMNARIBLAERAR4B/gMAAf8D1gH/AdoC2wH/A9UB/wHfAd0B2gH/AeoB5wHbAf8BxQHDAcEB/wHF + AcQBwQH/AegB5wHbAf8B0wHQAc4B/wKpAasB/wOHAf8D9gH/CwAB/wMAAf8DAAH/AwAB/wPLAf8DAAH/ + AZcClgH/AwAB/wHNAssB/wMAAf8BtgG3AbYB/wMAAf8DpgH/A38B/gMNARIDXAHJAeMBqwEAAf8B2wGa + AQAB/wHYAZYBAAH/Ac8BlAEAAf8BzgGRAQAB/wHMAY4BAAH/AckBiwEAAf8B0AGHAQAB/wGRAZsBmAH/ + AQABmgH+Af8BAAGXAfQB/wEAAZMB8wH/AQABkQHzAf8BAAGNAfIB/wEAAYoB+gH/AQABiwH4Af8BAAGM + AdsB/wEAAYoBrAH/AZABgwEAAf8BvAIAAf8BmQIAAf8BAAGFAfQB/wIAAv8BAAGJAeAB/wGrAgAB/wGt + AgAB/wGrAgAB/wGrAgAB/wGnAgAB/wHGAYcBAAH/A1wByQMFAQcDpgH/A/MB/wPtAf8D7QH/A+0B/wPt + Af8D7QH/A+0B/wPtAf8D7QH/A+0B/wQAA6IB/wOVAf8D+QH/A/sB/wOWAf8DAAH/A+MB/wPuAf8D7gH/ + A+0B/wPtAf8D7QH/A+0B/wPtAf8D7QH/A+0B/wPzAf8DpgH/AwYBCBAAAzMBUgMAAf8DAAH/A5cB/wOx + Af8D8AH/A4MB/wMAAf8DgAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DoQH/A74B/wO5Af8DqgH/A7QB/wOa + Af8DAAH/AwAB/wMAAf8DXwHgAyUBNwwAAw0BEgEsARMBHgH+AwAB/wHBAbwBvgH/AewB8wHwAf8D3AH/ + AdoC3AH/A9wB/wHhAeIB4AH/AeEB4gHgAf8C2wHcAf8D0AH/Aa4CrwH/A4sB/wP3Af8LAAH/AwAB/wP3 + Af8DAAH/A9YB/wPIAf8DAAH/A48B/wPyAf8DgAH/BwAB/wPqAf8DfwH+Aw0BEgNfAeABmgG1AbAB/wGB + AbABwQH/AbQBpwGFAf8B1wGXAQAB/wHOAZIBAAH/Ac0BkAEAAf8BygGMAQAB/wHRAY0BAAH/AQABoQHI + Af8BAAGbAfwB/wEAAZgB9AH/AQABlQHzAf8BAAGRAfQB/wEAAZAB/QH/AQABkwHJAf8BowGIAQAB/wG9 + AgAB/wHBAgAB/wG5AgAB/wGsAgAB/wEAAYYB6wH/AgAB9gH/AgAB8AH/AgAC/wEAAYQBkAH/AbUCAAH/ + AasCAAH/AasCAAH/AagCAAH/Ab4CAAH/A18B4AMFAQcDpgH/A/QB/wPuAf8D7gH/A+4B/wPuAf8D7gH/ + A+4B/wPuAf8D7gH/A+4B/wQAA6QB/wMAAf8D2AH/A9gB/wMAAf8DAAH/A+8B/wPxAf8D7gH/A+4B/wPu + Af8D7gH/A+4B/wPuAf8D7gH/A+4B/wP0Af8DpgH/AwYBCBAAAzMBUgOVAf8DAAH/A/MB/wPxAf8D9gH/ + A7MB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/A5wB/wOYAf8DAAH/AwAB/wMAAf8DAAH/ + AwAB/wOcAf8DUQGiEAADDQESASkBFAEcAf4DAAH/AwAB/wHJAcIBxQH/AeQC5QH/AeEB4AHhAf8B4QHg + AeEB/wHhAeAB4QH/AeEB4AHhAf8B4QLgAf8B1QLUAf8BtAKzAf8BiwGNAYsB/wP2Af8LAAH/A50B/wcA + Af8DywH/IAADfwH+Aw0BEgJkAV4B7AEAAbcB2QH/AQABtAL/AQABswL/AasBqAGPAf8B3QGTAQAB/wHO + AZABAAH/AcwBjQEAAf8BzQGRAQAB/wEAAaIB2QH/AQABnAH6Af8BAAGZAfQB/wEAAZYB9AH/AQABlAH6 + Af8BAAGWAa0B/wHEAgAB/wHAAgAB/wGsAYABAAH/AaoCAAH/AcQCAAH/AQABhwGZAf8CAAH+Af8CAAHw + Af8CAAHwAf8CAAH7Af8BAAGFAaYB/wG2AgAB/wGrAgAB/wGrAgAB/wGoAgAB/wG6AgAB/wNkAewDBQEH + A6YB/wP0Af8D7wH/A+8B/wPuAf8D7gH/A+4B/wPuAf8D7gH/A+4B/wPuAf8EAAOlAf8DAAH/A8UB/wPF + Af8DAAH/A4YB/wP3Af8D8gH/A+4B/wPuAf8D7gH/A+4B/wPuAf8D7gH/A+4B/wPuAf8D9AH/A6YB/wMG + AQgQAAMzAVID2wH/AwAB/wPhAf8D7AH/A9wB/wPcAf8DAAH/AwAB/wMAAf8DmAH/A50B/wMAAf8DjgH/ + A7kB/wPIAf8DswH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DzgH/AzgBXRAAAw0BEgEiAREBFgH+AwAB/wMA + Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AeYB4wHlAf8B8gHwAfEB/wHt + AuwB/wLrAeoB/wH2AfQB9QH/AfAB7QHvAf8B6gHoAeoB/wHsAesB7AH/Ae0B6wHsAf8B7AHqAesB/wHs + AeoB6wH/AesB6gHrAf8B7AHqAewB/wHsAeoB6wH/Ae0B7AHtAf8B9QH0AfUB/wN/Af4DDQESAmQBXgHs + AQABuAHVAf8BAAG1Av8BAAGyAfwB/wEAAbEB8gH/AaEBqQGaAf8B1AGWAQAB/wHPAYwBAAH/AckBlQEA + Af8BAAGjAeQB/wEAAZ0B+QH/AQABmwH0Af8BAAGYAfwB/wEAAZoBwwH/AdEBgAEAAf8BwAIAAf8BwgIA + Af8BpgGEAQAB/wEAAZIB1wH/AacBigEAAf8BAAGFAdQB/wIAAfUB/wIAAfAB/wIAAfAB/wIAAfsB/wEA + AYUBpgH/AbYCAAH/AasCAAH/AasCAAH/AagCAAH/AboCAAH/A2QB7AMFAQcDqgH/A/kB/wP0Af8D8gH/ + A/IB/wPxAf8D8AH/A/AB/wPvAf8D7wH/A+8B/wQAA6EB/wOiAf8IAAOhAf8DkQH/A/4B/wPxAf8D7wH/ + A+8B/wPvAf8D7wH/A+8B/wPvAf8D7wH/A+8B/wP1Af8DpwH/AwYBCBAAAzMBUgcAAf8DmAH/A/IB/wPZ + Af8EAAOQAf8DAAH/A9YB/wPpAf8D4AH/A90B/wPXAf8D0QH/A84B/wOdAf8DAAH/A4AB/wMAAf8DAAH/ + A7MB/wP0Af8DNwFaEAADDQESARsBDgESAf4DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA + Af8DAAH/AwAB/wMAAf8B5wHlAeYB/wPxAf8B7AHnAeoB/wHwAesB7QH/Ae0B6gHsAf8B7AHnAeoB/wHw + AesB7QH/Ae0B6gHsAf8B7AHqAesB/wHsAeoB6wH/AewB6gHsAf8B7QHrAewB/wHtAesB7QH/Ae8B6wHt + Af8B8AHtAe8B/wH3AfUB9wH/A38B/gMNARIDXwHgAYQBuAHMAf8BAAG2Av8BAAGzAfkB/wEAAbAB+wH/ + AQABsAL/AYwBqgGxAf8B2QGUAQAB/wHUAZQBAAH/AQABpQHfAf8BAAGeAfoB/wEAAZwB9AH/AQABmQH5 + Af8BAAGZAdoB/wGkAZEBAAH/AbABiQEAAf8BpQGJAQAB/wG4AYcBAAH/AQABjwHFAf8BAAGHAfsB/wEA + AYEB8QH/AgAB8AH/AgAB8AH/AgAB8AH/AgAB+wH/AQABhAGkAf8BtgIAAf8BqwIAAf8BqwIAAf8BqAIA + Af8BvgIAAf8DXwHgAwUBBwOqAf8D+QH/A/QB/wP0Af8D9AH/A/QB/wP0Af8D8wH/A/MB/wPzAf8D8gH/ + BAADogH/AaoCqQH/CAADqQH/A50B/wQAA/EB/wPwAf8D8AH/A/AB/wPwAf8D8AH/A/AB/wPwAf8D8AH/ + A/YB/wOoAf8DBgEIEAADMwFSBAADiAH/AwAB/wPwAf8D6QH/A6oB/wMAAf8DAAH/A64B/wPjAf8DygH/ + A8sB/wPOAf8DyAH/A50B/wOBAf8DhgH/AwAB/wMAAf8DqwH/A+cB/wQAAzcBWhAAAw0BEgEQAQgBCwH+ + AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AusB8AH/AvYB/gH/ + Au8B9AH/AfAB7wH0Af8B8AHuAfUB/wHwAe4B9QH/AfAB8QH1Af8B8AHxAfUB/wHwAfEB9QH/AvEB9QH/ + AfEB8AH3Af8B8QHyAfcB/wLyAfYB/wLyAfkB/wH0AfIB+gH/AfsB+gL/A38B/gMNARICXAFZAckBlwG5 + AbgB/wEAAbgC/wEAAbUB+QH/AQABsgH5Af8BAAGvAfkB/wEAAa0B/gH/AQABqgHDAf8BnQGkAZgB/wEA + AaQB7gH/AQABoAH3Af8BAAGdAfUB/wEAAZoB8wH/AQABlwH4Af8BAAGWAfoB/wEAAZUB9AH/AQABkgH5 + Af8BAAGQAfEB/wEAAYkB8QH/AQABhQHzAf8BAAGDAfEB/wEAAYAB8AH/AgAB8AH/AgAB8AH/AgAB/QH/ + AQABhAGVAf8BtQIAAf8BqwIAAf8BqwIAAf8BpwIAAf8BxgGHAQAB/wNcAckDBQEHA6sB/wP6Af8D9AH/ + A/QB/wP0Af8D9AH/A/QB/wP0Af8D9AH/A/QB/wP0Af8EAAOmAf8DAAH/A8QB/wPEAf8DAAH/A6QB/wQA + A/EB/wPxAf8D8QH/A/AB/wPwAf8D8AH/A/AB/wPwAf8D8AH/A/UB/wOnAf8DBgEIEAADMwFSBAADyAH/ + AwAB/wOHAf8DAAH/AwAB/wMAAf8DAAH/A8sB/wPbAf8DzwH/A8QB/wOsAf8DmgH/A4sB/wOHAf8DAAH/ + A4AB/wO3Af8D5wH/A/EB/wQAAzcBWhAAAw0BEgENAQcBCQH+AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ + AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AeAC3AH/AewB6gHrAf8B5gHjAeYB/wHmAeMB5gH/AeYB4wHm + Af8B5gHjAeYB/wHmAeMB5gH/AeYB4wHmAf8B5gHjAeYB/wHnAeMB5gH/AecC5gH/AecB5QHmAf8B5wHl + AeYB/wHnAeUB5gH/AegB5gHoAf8B8QLtAf8DfwH+Aw0BEgNQAZ0BtQG6AZkB/wEAAbkC/wEAAbYB+QH/ + AQABswH5Af8BAAGwAfgB/wEAAa4B+AH/AQABqwH+Af8BAAGpAv8BAAGkAfcB/wEAAaIB9QH/AQABnwH1 + Af8BAAGcAfQB/wEAAZkB9AH/AQABlgH0Af8BAAGSAfQB/wEAAZAB8wH/AQABjAH6Af8BAAGMAfkB/wEA + AYcB8AH/AQABgwH2Af8BAAGBAfsB/wIAAfkB/wIAAfgB/wEAAYMB/gH/AZcCAAH/AbACAAH/AasCAAH/ + AasCAAH/AagCAAH/AdIBmQEAAf8DUAGdAwUBBwOrAf8D+wH/A/UB/wP1Af8D9QH/A/UB/wP1Af8D9QH/ + A/UB/wP1Af8D9QH/BAADvgH/AwAB/wMAAf8DAAH/AwAB/wO+Af8EAAP2Af8D9QH/A/UB/wP0Af8D9AH/ + A/MB/wPzAf8D8wH/A/IB/wP4Af8DqgH/AwYBCBAAAzMBUgQAA+4B/wMAAf8DAAH/AwAB/wOoAf8D2QH/ + A/AB/wPZAf8DzwH/A9MB/wPQAf8DoAH/A5IB/wOVAf8DmAH/A6wB/wPUAf8D6AH/A+0B/wPuAf8EAAM3 + AVoQAAMNARIBdwFhAWMB/gHRAbkBvAH/AcoBswG2Af8ByQGyAbUB/wHJAbIBtQH/AckBsgG1Af8ByQGy + AbUB/wHJAbIBtQH/AckBsgG1Af8ByQGyAbUB/wHJAbIBtQH/AckBtAG7Af8BxgKsAf8BzAIAAf8BygIA + Af8BygIAAf8BygIAAf8BygIAAf8BygIAAf8BygIAAf8BygIAAf8BygIAAf8BygIAAf8BygIAAf8ByQIA + Af8ByQIAAf8ByQIAAf8BygIAAf8B0gIAAf8BfQElAQMB/gMNARIDOAFcAdcBuQEAAf8BAAG6AfYB/wEA + AbcB/AH/AQABtQH5Af8BAAGyAfkB/wEAAa8B+AH/AQABrAH4Af8BAAGpAfcB/wEAAaYB9gH/AQABowH2 + Af8BAAGgAfUB/wEAAZ0B9QH/AQABmgH0Af8BAAGYAfQB/wEAAZQB8wH/AQABkgH9Af8BAAGTAdQB/wGd + AZQBAAH/AQABjwHsAf8BAAGLAdoB/wEAAYoBpwH/AQABiAG/Af8BAAGHAdEB/wEAAYcBmwH/AbMCAAH/ + AasCAAH/AasCAAH/AaoCAAH/Aa0CAAH/AeEBrgEAAf8DOAFcAwUBBwOsAf8D/AH/A/YB/wP2Af8D9gH/ + A/YB/wP2Af8D9gH/A/YB/wP2Af8D9gH/A/gB/wP7Af8D8wH/AfEC8wH/AfEC8wH/A/MB/wP7Af8D+AH/ + A/YB/wP2Af8D9gH/A/YB/wP2Af8D9gH/A/YB/wP2Af8D9wH/A/wB/wOsAf8DBgEIEAADMwFSBAAD7QH/ + A9MB/wPKAf8D6wH/A+sB/wPrAf8D6wH/A+QB/wPaAf8D1QH/A84B/wPCAf8DwgH/A8sB/wPaAf8D4gH/ + A+MB/wPjAf8D4wH/A+MB/wP+Af8DNwFbEAADDQESAXUBWwFdAf4BxgGqAawB/wG/AaMBpQH/Ab4BogGk + Af8BvgGiAaQB/wG+AaIBpAH/Ab4BogGkAf8BvgGiAaQB/wG+AaIBpAH/Ab4BogGkAf8BvgGiAaMB/wG+ + AaMBqAH/Ab4BogGhAf8B0AIAAf8B0AIAAf8B0AIAAf8B0AIAAf8B0AIAAf8B0AIAAf8B0AIAAf8B0AIA + Af8B0AIAAf8B0AIAAf8B0AIAAf8B0AIAAf8B0AIAAf8B0AIAAf8B0QIAAf8B2AIAAf8BfwEmAQMB/gMN + BBIBGAJdAVwB8AGEAboBzQH/AQABuQL/AQABtgH5Af8BAAGzAfkB/wEAAbAB+AH/AQABrgH4Af8BAAGq + AfcB/wEAAagB9wH/AQABpAH2Af8BAAGiAfYB/wEAAZ4B9QH/AQABnAH0Af8BAAGZAfQB/wEAAZYB/AH/ + AQABmAG1Af8BwwGCAQAB/wHFAgAB/wGkAYsBAAH/AbUCAAH/Ab8CAAH/AbwCAAH/AbkCAAH/AbYCAAH/ + AasCAAH/AasCAAH/AasCAAH/AagCAAH/Ab0CAAH/A10B8AMSARgDBQEHA6sB/wP8Af8D9wH/A/cB/wP3 + Af8D9wH/A/cB/wP3Af8D9wH/A/cB/wP3Af8D9wH/A/oB/wP9Af8D/gH/A/4B/wP9Af8D+gH/A/cB/wP3 + Af8D9wH/A/cB/wP3Af8D9wH/A/cB/wP3Af8D9wH/A/cB/wP8Af8DqwH/AwYBCBAAAzMBUgQAA+wB/wPq + Af8D6gH/A+oB/wPqAf8D6gH/A+oB/wPqAf8D5gH/A+AB/wPaAf8D2gH/A90B/wPfAf8D2wH/A88B/wPH + Af8DxQH/A8cB/wPCAf8D1wH/AzQBVRAAAw0BEgFzAVkBXAH+AcUBpwGqAf8BvgGgAaQB/wG9AZ8BowH/ + Ab0BnwGjAf8BvQGfAaMB/wG9AZ8BowH/Ab0BnwGjAf8BvQGfAaMB/wG9AZ8BowH/Ab0BnwGhAf8BvQGg + AacB/wG9AZ4BoAH/AdICAAH/AdICAAH/AdECAAH/AdMCAAH/AdICAAH/AdICAAH/AdECAAH/AdMCAAH/ + AdECAAH/AdMCAAH/AdECAAH/Ac8CAAH/AdUCAAH/AdYCAAH/AdMCAAH/AdsCAAH/AX8BKgEEAf4DDQES + BAADUQGfAcEBugGMAf8BAAG6Af4B/wEAAbcB+gH/AQABtAH5Af8BAAGyAfgB/wEAAa8B+AH/AQABrAH4 + Af8BAAGpAfcB/wEAAaYB9gH/AQABowH2Af8BAAGgAfUB/wEAAZ0B9QH/AQABmgH7Af8BAAGcAcsB/wHS + AYQBAAH/AcoCAAH/Ab0BgQEAAf8BmgGOAQAB/wG3AgAB/wG0AgAB/wGyAgAB/wGwAgAB/wGtAgAB/wGs + AgAB/wGrAgAB/wGrAgAB/wGoAgAB/wHYAaABAAH/A1EBnwQAAwUBBwOsAf8D/AH/A/kB/wgAA/kB/wP4 Af8D+AH/A/gB/wP4Af8D+AH/A/gB/wP4Af8D+AH/A/gB/wP4Af8D+AH/A/gB/wP4Af8D+AH/A/gB/wP4 - Af8D+AH/A/gB/wP4Af8D+QH/Av4C/wQAAfkC+wH/A/wB/wOsAf8DBgEIEAADMwFSBAAD6gH/A+gB/wPo - Af8D6AH/A+gB/wPoAf8D6AH/A+gB/wPoAf8D6AH/A+gB/wPoAf8D6QH/A+IB/wPMAf8DowH/A4sB/wOH - Af8DAAH/A4wB/wNiAe8DCAELEAADDQESAXQBXAFeAf4BxgGrAa0B/wG/AaQBpgH/Ab4BowGlAf8BvgGj - AaUB/wG+AaMBpQH/Ab4BowGlAf8BvgGjAaUB/wG+AaMBpQH/Ab4BowGlAf8BvgGjAaUB/wG+AaQBqQH/ - Ab8CowH/AdgCAAH/AdkCAAH/AdcCAAH/AfkB4wHKAf8B4gGQAQAB/wHWAgAB/wHbAgAB/wH6AegB1AH/ - AdsCAAH/AfYB3gHDAf8B3QIAAf8B6QGsAQAB/wH3AdkBuAH/AfEBwgGMAf8B4AGCAQAB/wHhAgAB/wF/ - AS4BBAH+Aw0BEgQAAx8BLAJqAV0B+QGDAboBzwH/AQABuQL/AQABtgH5Af8BAAGzAfkB/wEAAbAB+AH/ - AQABrQH4Af8BAAGqAfcB/wEAAagB9wH/AQABpAH2Af8BAAGhAfUB/wEAAZ4B9QH/AQABmwH6Af8BAAGc - AcwB/wGYAZQBhQH/AY8BlAGNAf8BAAGVAc8B/wEAAZAC/wGSAY0BAAH/Ab0CAAH/AbMCAAH/AbECAAH/ - Aa8CAAH/Aa0CAAH/AasCAAH/AacCAAH/Ab0CAAH/AmoBZAH5Ax8BLAQAAwUBBwOuAf8D/AH/BAAB4gHf - Ad4B/wHkAeIB4AH/BAAD+gH/A/kB/wP5Af8D+QH/A/kB/wP5Af8D+QH/A/kB/wP5Af8D+QH/A/kB/wP5 - Af8D+QH/A/kB/wP5Af8D+QH/A/kB/wP6Af8EAAHkAeMB4QH/AeAB3gHbAf8EAAP8Af8DrgH/AwYBCBAA - AzMBUgQAA+gB/wPmAf8D5gH/A+YB/wPmAf8D5gH/A+YB/wPmAf8D5gH/A+YB/wPmAf8D5gH/A+cB/wPe - Af8DvwH/AwAB/wMAAf8DAAH/A5AB/wOiAf8DIQEwFAADDQESAXcBXwFhAf4BygGuAbAB/wHDAacBqQH/ - AcIBpgGoAf8BwgGmAagB/wHCAaYBqAH/AcIBpgGoAf8BwgGmAagB/wHCAaYBqAH/AcIBpgGoAf8BwgGm - AagB/wHCAacBrQH/AcMBpQGmAf8B3gIAAf8B4AIAAf8B3QIAAf8B/gHyAeYB/wHrAZ0BAAH/Ad4CAAH/ - AeICAAH/Af4B+wH2Af8B4AIAAf8B+wHsAdoB/wHoAZIBAAP/Af4B/wHsAawBAAH/AecBlwEAAf8B5AIA - Af8B6AIAAf8BfwEyAQQB/gMNARIIAANKAY0B1QG5AQAB/wEAAbkB8gH/AQABtwH9Af8BAAG0AfkB/wEA - AbEB+AH/AQABrgH4Af8BAAGsAfcB/wEAAakB9wH/AQABpgH2Af8BAAGjAfYB/wEAAaAB9QH/AQABnQH0 - Af8BAAGaAfgB/wEAAZgC/wEAAZUB/gH/AQABkAL/AQABkwH8Af8BpgGJAQAB/wG7AgAB/wG0AgAB/wGy - AgAB/wGwAgAB/wGuAgAB/wGqAgAB/wGuAgAB/wHgAawBAAH/A0oBjQgAAwUBBwOvAf8D/AH/Ad8B3gHd - Af8BqwGlAaAB/wMAAf8B0wHPAc0B/wQAA/oB/wP6Af8D+gH/A/oB/wP6Af8D+gH/A/oB/wP6Af8D+gH/ - A/oB/wP6Af8D+gH/A/oB/wP6Af8D+gH/A/oB/wQAAegB5wHoAf8BuwG1AbEB/wMAAf8BwwG9AbsB/wP8 - Af8DrwH/AwYBCBAAAzMBUgQAA+cB/wPlAf8D5QH/A+UB/wPlAf8D5QH/A+UB/wPlAf8D5QH/A+UB/wPl - Af8D5gH/A+YB/wPXAf8DtgH/A+YB/wPtAf8EAAPsAf8DJQE3GAADDQESAXsBZAFmAf4BzwG0AbYB/wHI - Aa0BrwH/AcYBrAGuAf8BxgGsAa4B/wHGAawBrgH/AcYBrAGuAf8BxgGsAa4B/wHGAawBrgH/AcYBrAGu - Af8BxgGsAa4B/wHFAa0BsgH/AcYBqwGsAf8B6AIAAf8B6AIAAf8B5wIAAf8B+wHqAdUB/wH6AeEBwQH/ - AfUBwQGEAf8B6QIAAf8B/gH/Af4B/wHoAgAB/wH6AeoB0gH/Ae0BkQEAAf8B/AH0AeoB/wHyAbEBAAH/ - BAAB7gGWAQAB/wHwAgAB/wF/ATYBBgH+Aw0BEggAAwkBDAJeAVsB0AG6AbkBkwH/AQABuAH9Af8BAAG2 - AfwB/wEAAbMB+QH/AQABsAH4Af8BAAGtAfgB/wEAAaoB9wH/AQABpwH3Af8BAAGkAfsB/wEAAaEB9gH/ - AQABngH1Af8BAAGbAfQB/wEAAZgB9AH/AQABlAH8Af8BAAGYAeQB/wGeAZEBAAH/AcACAAH/AbcCAAH/ - AbUCAAH/AbMCAAH/AbECAAH/Aa4CAAH/AasCAAH/AdUBnAEAAf8DXgHQAwkBDAgAAwUBBwOwAf8D/AH/ - A8kB/wHVAdQB1QH/AbIBsQGuAf8BuQG2AbMB/wQAA/sB/wP7Af8D+wH/A/sB/wP7Af8D+wH/A/sB/wP7 - Af8D+wH/A/sB/wP7Af8D+wH/A/sB/wP7Af8D+wH/A/sB/wQAA9kB/wHMAc0BzAH/AckBxwHFAf8BtQGy - Aa4B/wP8Af8DsAH/AwYBCBAAAzMBUgQAA+YB/wPkAf8D5AH/A+QB/wPkAf8D5AH/A+QB/wPkAf8D5AH/ - A+QB/wPkAf8D5QH/A+MB/wPTAf8DsgH/A/kB/wQAA+kB/wMnATscAAMNARIBfwFqAWwB/gHUAbsBvQH/ - AcwBtAG2Af8BywGzAbUB/wHLAbMBtQH/AcsBswG1Af8BywGzAbUB/wHLAbMBtQH/AcsBswG1Af8BywGz - AbUB/wHLAbMBtQH/AcoBtAG7Af8BywKzAf8B8AIAAf8B8QIAAf8B7gIAAf8B/gHyAeYB/wHyAZoBAAH/ - Ae0CAAH/Ae4CAAH/AfoBxwGLAf8B8AIAAf8B/AHvAd4B/wHxAYwBAAH/AfIBmQEAAf8B+QHQAZ4B/wH3 - Ab0BAAH/AfECAAH/AfgBgwEAAf8BfwE7AQYB/gMNARIMAAMdASkDXwHoAbABuQGfAf8BAAG3Af0B/wEA - AbQB/QH/AQABsQH4Af8BAAGuAfgB/wEAAasB/QH/AQABrAHFAf8BAAGpAb0B/wEAAaMB+gH/AQABoAL/ - AQABngL/AQABnAL/AQABnQHbAf8BugGNAQAB/wHGAgAB/wG6AgAB/wG4AgAB/wG2AgAB/wG0AgAB/wGx - AgAB/wGuAgAB/wHRAZcBAAH/A18B6AMdASkMAAMFAQcDsQH/A/0B/wP1Af8BzwHRAdAB/wLUAdUB/wP1 - Af8EAAP8Af8D/AH/A/wB/wP8Af8D/AH/A/wB/wP8Af8D/AH/A/wB/wP8Af8D/AH/A/wB/wP8Af8D/AH/ - A/wB/wP8Af8EAAP4Af8BwwLEAf8C0gHRAf8D8QH/A/0B/wOxAf8DBgEIEAADMwFSA/0B/wPkAf8D4gH/ - A+IB/wPiAf8D4gH/A+IB/wPiAf8D4gH/A+IB/wPiAf8D4gH/A+MB/wPhAf8DzgH/A7IB/wQAA+QB/wMo - ATwgAAMMARABhgIAAf8B2QHCAcMB/wHQAboBvAH/AdABuQG7Af8B0AG5AbsB/wHQAbkBuwH/AdABuQG7 - Af8B0AG5AbsB/wHQAbkBuwH/AdABuQG7Af8B0AG5AbsB/wHPAboBwAH/AdABuQG4Af8B9gGCAQAB/wH3 - AYEBAAH/AfYCAAH/AfwB4AG9Af8B/AHgAb4B/wH8AdcBqwH/AfcBmwEAAf8B+gHIAY0B/wH3AYIBAAH/ - Af4B9QHuAf8B+AGcAQAB/wH2AgAB/wH2AgAB/wH2AgAB/wH3AYEBAAL/AYoBAAH/AakCAAH/AwwBEBAA - AyUBNwJkAVwB5wG5AbgBkwH/AQABtgHyAf8BAAGyAv8BAAGvAfkB/wEAAa0B+gH/AQABqgHtAf8BlgGs - AakB/wGkAaoBmAH/AZsBoQGVAf8BkAGcAZoB/wGhAZgBggH/AcMBigEAAf8BxAIAAf8BvQIAAf8BvAIA - Af8BuQIAAf8BtwIAAf8BsgIAAf8BtQIAAf8B1wGfAQAB/wNkAecDJQE3EAADBAEFA64B/wP4Af8D/AH/ + Af8D+AH/A/gB/wP5Af8C/gL/BAAB+QL7Af8D/AH/A6wB/wMGAQgQAAMzAVIEAAPqAf8D6AH/A+gB/wPo + Af8D6AH/A+gB/wPoAf8D6AH/A+gB/wPoAf8D6AH/A+gB/wPpAf8D4gH/A8wB/wOjAf8DiwH/A4cB/wMA + Af8DjAH/A2IB7wMIAQsQAAMNARIBdAFcAV4B/gHGAasBrQH/Ab8BpAGmAf8BvgGjAaUB/wG+AaMBpQH/ + Ab4BowGlAf8BvgGjAaUB/wG+AaMBpQH/Ab4BowGlAf8BvgGjAaUB/wG+AaMBpQH/Ab4BpAGpAf8BvwKj + Af8B2AIAAf8B2QIAAf8B1wIAAf8B+QHjAcoB/wHiAZABAAH/AdYCAAH/AdsCAAH/AfoB6AHUAf8B2wIA + Af8B9gHeAcMB/wHdAgAB/wHpAawBAAH/AfcB2QG4Af8B8QHCAYwB/wHgAYIBAAH/AeECAAH/AX8BLgEE + Af4DDQESBAADHwEsAmoBXQH5AYMBugHPAf8BAAG5Av8BAAG2AfkB/wEAAbMB+QH/AQABsAH4Af8BAAGt + AfgB/wEAAaoB9wH/AQABqAH3Af8BAAGkAfYB/wEAAaEB9QH/AQABngH1Af8BAAGbAfoB/wEAAZwBzAH/ + AZgBlAGFAf8BjwGUAY0B/wEAAZUBzwH/AQABkAL/AZIBjQEAAf8BvQIAAf8BswIAAf8BsQIAAf8BrwIA + Af8BrQIAAf8BqwIAAf8BpwIAAf8BvQIAAf8CagFkAfkDHwEsBAADBQEHA64B/wP8Af8EAAHiAd8B3gH/ + AeQB4gHgAf8EAAP6Af8D+QH/A/kB/wP5Af8D+QH/A/kB/wP5Af8D+QH/A/kB/wP5Af8D+QH/A/kB/wP5 + Af8D+QH/A/kB/wP5Af8D+QH/A/oB/wQAAeQB4wHhAf8B4AHeAdsB/wQAA/wB/wOuAf8DBgEIEAADMwFS + BAAD6AH/A+YB/wPmAf8D5gH/A+YB/wPmAf8D5gH/A+YB/wPmAf8D5gH/A+YB/wPmAf8D5wH/A94B/wO/ + Af8DAAH/AwAB/wMAAf8DkAH/A6IB/wMhATAUAAMNARIBdwFfAWEB/gHKAa4BsAH/AcMBpwGpAf8BwgGm + AagB/wHCAaYBqAH/AcIBpgGoAf8BwgGmAagB/wHCAaYBqAH/AcIBpgGoAf8BwgGmAagB/wHCAaYBqAH/ + AcIBpwGtAf8BwwGlAaYB/wHeAgAB/wHgAgAB/wHdAgAB/wH+AfIB5gH/AesBnQEAAf8B3gIAAf8B4gIA + Af8B/gH7AfYB/wHgAgAB/wH7AewB2gH/AegBkgEAA/8B/gH/AewBrAEAAf8B5wGXAQAB/wHkAgAB/wHo + AgAB/wF/ATIBBAH+Aw0BEggAA0oBjQHVAbkBAAH/AQABuQHyAf8BAAG3Af0B/wEAAbQB+QH/AQABsQH4 + Af8BAAGuAfgB/wEAAawB9wH/AQABqQH3Af8BAAGmAfYB/wEAAaMB9gH/AQABoAH1Af8BAAGdAfQB/wEA + AZoB+AH/AQABmAL/AQABlQH+Af8BAAGQAv8BAAGTAfwB/wGmAYkBAAH/AbsCAAH/AbQCAAH/AbICAAH/ + AbACAAH/Aa4CAAH/AaoCAAH/Aa4CAAH/AeABrAEAAf8DSgGNCAADBQEHA68B/wP8Af8B3wHeAd0B/wGr + AaUBoAH/AwAB/wHTAc8BzQH/BAAD+gH/A/oB/wP6Af8D+gH/A/oB/wP6Af8D+gH/A/oB/wP6Af8D+gH/ + A/oB/wP6Af8D+gH/A/oB/wP6Af8D+gH/BAAB6AHnAegB/wG7AbUBsQH/AwAB/wHDAb0BuwH/A/wB/wOv + Af8DBgEIEAADMwFSBAAD5wH/A+UB/wPlAf8D5QH/A+UB/wPlAf8D5QH/A+UB/wPlAf8D5QH/A+UB/wPm + Af8D5gH/A9cB/wO2Af8D5gH/A+0B/wQAA+wB/wMlATcYAAMNARIBewFkAWYB/gHPAbQBtgH/AcgBrQGv + Af8BxgGsAa4B/wHGAawBrgH/AcYBrAGuAf8BxgGsAa4B/wHGAawBrgH/AcYBrAGuAf8BxgGsAa4B/wHG + AawBrgH/AcUBrQGyAf8BxgGrAawB/wHoAgAB/wHoAgAB/wHnAgAB/wH7AeoB1QH/AfoB4QHBAf8B9QHB + AYQB/wHpAgAB/wH+Af8B/gH/AegCAAH/AfoB6gHSAf8B7QGRAQAB/wH8AfQB6gH/AfIBsQEAAf8EAAHu + AZYBAAH/AfACAAH/AX8BNgEGAf4DDQESCAADCQEMAl4BWwHQAboBuQGTAf8BAAG4Af0B/wEAAbYB/AH/ + AQABswH5Af8BAAGwAfgB/wEAAa0B+AH/AQABqgH3Af8BAAGnAfcB/wEAAaQB+wH/AQABoQH2Af8BAAGe + AfUB/wEAAZsB9AH/AQABmAH0Af8BAAGUAfwB/wEAAZgB5AH/AZ4BkQEAAf8BwAIAAf8BtwIAAf8BtQIA + Af8BswIAAf8BsQIAAf8BrgIAAf8BqwIAAf8B1QGcAQAB/wNeAdADCQEMCAADBQEHA7AB/wP8Af8DyQH/ + AdUB1AHVAf8BsgGxAa4B/wG5AbYBswH/BAAD+wH/A/sB/wP7Af8D+wH/A/sB/wP7Af8D+wH/A/sB/wP7 + Af8D+wH/A/sB/wP7Af8D+wH/A/sB/wP7Af8D+wH/BAAD2QH/AcwBzQHMAf8ByQHHAcUB/wG1AbIBrgH/ + A/wB/wOwAf8DBgEIEAADMwFSBAAD5gH/A+QB/wPkAf8D5AH/A+QB/wPkAf8D5AH/A+QB/wPkAf8D5AH/ + A+QB/wPlAf8D4wH/A9MB/wOyAf8D+QH/BAAD6QH/AycBOxwAAw0BEgF/AWoBbAH+AdQBuwG9Af8BzAG0 + AbYB/wHLAbMBtQH/AcsBswG1Af8BywGzAbUB/wHLAbMBtQH/AcsBswG1Af8BywGzAbUB/wHLAbMBtQH/ + AcsBswG1Af8BygG0AbsB/wHLArMB/wHwAgAB/wHxAgAB/wHuAgAB/wH+AfIB5gH/AfIBmgEAAf8B7QIA + Af8B7gIAAf8B+gHHAYsB/wHwAgAB/wH8Ae8B3gH/AfEBjAEAAf8B8gGZAQAB/wH5AdABngH/AfcBvQEA + Af8B8QIAAf8B+AGDAQAB/wF/ATsBBgH+Aw0BEgwAAx0BKQNfAegBsAG5AZ8B/wEAAbcB/QH/AQABtAH9 + Af8BAAGxAfgB/wEAAa4B+AH/AQABqwH9Af8BAAGsAcUB/wEAAakBvQH/AQABowH6Af8BAAGgAv8BAAGe + Av8BAAGcAv8BAAGdAdsB/wG6AY0BAAH/AcYCAAH/AboCAAH/AbgCAAH/AbYCAAH/AbQCAAH/AbECAAH/ + Aa4CAAH/AdEBlwEAAf8DXwHoAx0BKQwAAwUBBwOxAf8D/QH/A/UB/wHPAdEB0AH/AtQB1QH/A/UB/wQA A/wB/wP8Af8D/AH/A/wB/wP8Af8D/AH/A/wB/wP8Af8D/AH/A/wB/wP8Af8D/AH/A/wB/wP8Af8D/AH/ - A/wB/wP8Af8D/AH/A/wB/wP8Af8D/AH/A/wB/wP8Af8D/AH/A/wB/wP4Af8DrgH/AwQBBhAAAzMBUgP7 - Af8D4wH/A+EB/wPhAf8D4QH/A+EB/wPhAf8D4QH/A+EB/wPhAf8D4QH/A+EB/wPfAf8D2wH/A7wB/wPN - Af8D6gH/AycBOyQAAwQBBgNZAfUB4gHNAc8B/wHZAcEBwwH/AdIBvAG+Af8B0gG8Ab4B/wHSAbwBvgH/ - AdIBvAG+Af8B0gG8Ab4B/wHSAbwBvgH/AdIBvAG+Af8B0gG8Ab4B/wHRAb4BxAH/AdQBvAG7Af8B/AGD - AQAC/wGCAQAB/wH8AYIBAAH/AfwBgQEAAf8B/QGGAQAB/wH9AYoBAAH/AfwBhAEAAf8B/QGVAQAB/wH8 - AYIBAAH/Af0BmQEAAf8B/QGJAQAB/wH8AYIBAAH/AfwBgwEAAf8B/AGDAQAC/wGJAQAC/wGTAQAB/wFZ - AkIB9QMEAQYUAAMeASsCXAFaAc0B1QG4AQAB/wEAAbUBzQH/AQABsQH+Af8BAAGuAv8BAAGrAfsB/wEA - AagB/gH/AQABpwHvAf8BmgGiAZcB/wHVAYoBAAH/AcwBggEAAf8BxQGAAQAB/wHBAgAB/wG/AgAB/wG8 - AgAB/wG4AgAB/wG2AgAB/wHFAYQBAAH/AeIBrgEAAf8DXAHNAx4BKxgAA1kBwgPDAf8DwgH/A8IB/wPC + A/wB/wQAA/gB/wHDAsQB/wLSAdEB/wPxAf8D/QH/A7EB/wMGAQgQAAMzAVID/QH/A+QB/wPiAf8D4gH/ + A+IB/wPiAf8D4gH/A+IB/wPiAf8D4gH/A+IB/wPiAf8D4wH/A+EB/wPOAf8DsgH/BAAD5AH/AygBPCAA + AwwBEAGGAgAB/wHZAcIBwwH/AdABugG8Af8B0AG5AbsB/wHQAbkBuwH/AdABuQG7Af8B0AG5AbsB/wHQ + AbkBuwH/AdABuQG7Af8B0AG5AbsB/wHQAbkBuwH/Ac8BugHAAf8B0AG5AbgB/wH2AYIBAAH/AfcBgQEA + Af8B9gIAAf8B/AHgAb0B/wH8AeABvgH/AfwB1wGrAf8B9wGbAQAB/wH6AcgBjQH/AfcBggEAAf8B/gH1 + Ae4B/wH4AZwBAAH/AfYCAAH/AfYCAAH/AfYCAAH/AfcBgQEAAv8BigEAAf8BqQIAAf8DDAEQEAADJQE3 + AmQBXAHnAbkBuAGTAf8BAAG2AfIB/wEAAbIC/wEAAa8B+QH/AQABrQH6Af8BAAGqAe0B/wGWAawBqQH/ + AaQBqgGYAf8BmwGhAZUB/wGQAZwBmgH/AaEBmAGCAf8BwwGKAQAB/wHEAgAB/wG9AgAB/wG8AgAB/wG5 + AgAB/wG3AgAB/wGyAgAB/wG1AgAB/wHXAZ8BAAH/A2QB5wMlATcQAAMEAQUDrgH/A/gB/wP8Af8D/AH/ + A/wB/wP8Af8D/AH/A/wB/wP8Af8D/AH/A/wB/wP8Af8D/AH/A/wB/wP8Af8D/AH/A/wB/wP8Af8D/AH/ + A/wB/wP8Af8D/AH/A/wB/wP8Af8D/AH/A/wB/wP8Af8D/AH/A/gB/wOuAf8DBAEGEAADMwFSA/sB/wPj + Af8D4QH/A+EB/wPhAf8D4QH/A+EB/wPhAf8D4QH/A+EB/wPhAf8D4QH/A98B/wPbAf8DvAH/A80B/wPq + Af8DJwE7JAADBAEGA1kB9QHiAc0BzwH/AdkBwQHDAf8B0gG8Ab4B/wHSAbwBvgH/AdIBvAG+Af8B0gG8 + Ab4B/wHSAbwBvgH/AdIBvAG+Af8B0gG8Ab4B/wHSAbwBvgH/AdEBvgHEAf8B1AG8AbsB/wH8AYMBAAL/ + AYIBAAH/AfwBggEAAf8B/AGBAQAB/wH9AYYBAAH/Af0BigEAAf8B/AGEAQAB/wH9AZUBAAH/AfwBggEA + Af8B/QGZAQAB/wH9AYkBAAH/AfwBggEAAf8B/AGDAQAB/wH8AYMBAAL/AYkBAAL/AZMBAAH/AVkCQgH1 + AwQBBhQAAx4BKwJcAVoBzQHVAbgBAAH/AQABtQHNAf8BAAGxAf4B/wEAAa4C/wEAAasB+wH/AQABqAH+ + Af8BAAGnAe8B/wGaAaIBlwH/AdUBigEAAf8BzAGCAQAB/wHFAYABAAH/AcECAAH/Ab8CAAH/AbwCAAH/ + AbgCAAH/AbYCAAH/AcUBhAEAAf8B4gGuAQAB/wNcAc0DHgErGAADWQHCA8MB/wPCAf8DwgH/A8IB/wPC Af8DwgH/A8IB/wPCAf8DwgH/A8IB/wPCAf8DwgH/A8IB/wPCAf8DwgH/A8IB/wPCAf8DwgH/A8IB/wPC - Af8DwgH/A8IB/wPCAf8DwgH/A8IB/wPCAf8DwgH/A8IB/wPDAf8DWwHEFAADMwFSA/oB/wPiAf8D4AH/ - A+AB/wPgAf8D4AH/A+AB/wPgAf8D4AH/A+AB/wPgAf8D4AH/A9sB/wPPAf8DzAH/A8wB/wMnATssAANI - AYMBtAKhAf8B7wHeAd8B/wHsAdoB3QH/AewB2gHcAf8B7AHaAdwB/wHsAdoB3AH/AewB2gHcAf8B7AHa - AdwB/wHsAdoB3AH/AewB2gHcAf8B6wHdAeIB/wHrAdkB1wL/AaABAAL/AZ0BAAL/AZ8BAAL/AZ0BAAL/ - AZ0BAAL/AZ0BAAL/AZ0BAAL/AZoBAAL/AZ4BAAL/AZkBAAL/AZ0BAAL/AZ4BAAL/AZ8BAAL/AaABAAL/ - AaMBAAH/AdECAAH/AUgCRwGDHAADCgENA0oBjAJtAVEB9wG/AbcBjAH/AQABsgHMAf8BAAGtAfMB/wEA - AakC/wEAAaUC/wEAAacB9gH/AcMBkgEAAf8BxgGCAQAB/wHCAYABAAH/Ab8CAAH/Ab4CAAH/Ab8CAAH/ - AckBigEAAf8B3AGlAQAB/wJtAWQB9wNKAYwDCgENqAADMwFTOAADyAH/AycBOjQAA0cBggNdAe0BlAGF - AYYB/wN/Af4DfwH+A38B/gN/Af4DfwH+A38B/gN/Af4DfwH+A38B/gF/AUkBCwH+AX8BRgEJAf4BfwFI - AQoB/gF/AUgBCgH+AX8BSAEKAf4BfwFIAQoB/gF/AUgBCgH+AX8BSAEKAf4BfwFIAQoB/gF/AUgBCgH+ - AX8BSAEKAf4BfwFIAQoB/gF/AUgBCwH+AbACAAH/A10B7QNHAYIoAAMgAS8DUAGdA10B7QHWAbgBAAH/ - Aa8BtAGYAf8BjQGwAbcB/wGyAasBigH/AdQBmAEAAf8BzwGSAQAB/wHQAZQBAAH/AdMBmQEAAf8B2gGj - AQAB/wHkAbEBAAH/A10B7QNQAZ0DIAEvsAADGgElA0wBkwNIAYQDSAGDA0gBgwNIAYMDSAGDA0gBgwNI - AYMDSAGDA0gBgwNIAYMDSAGDA0kBiANHAYEDFwEg2AADEwEaAzgBXANRAZwDWQHHA1wB3wNgAesDYAHr - A1wB3wNZAccDUQGcAzgBXAMUARsoAAFCAU0BPgcAAT4DAAEoAwABgAMAAYADAAEBAQABAQYAAQgWAAP/ - /wD/AAMABP8EAAGAAgABAQX/AfgBBwH/CAAB8AIAAQ8B/wHgAQAB/wgAAfACAAEPAf8BgAEAAT8IAAHw - AgABDwH+AgABHwEcAecGAAHwAgABDwH8AgABDwEcAecGAAHwAgABDwH8AgABBwEcAecGAAHwAgABDwH4 - AgABAwgAAfACAAEPAfACAAEDARwB4AMAAQEB4AEAAfACAAEPAfACAAEBARwB4AMAAQYBMAEAAfACAAEP - AeACAAEBARwB4wHAAgABDAEYAQAB8AIAAQ8B4AMAARwB4wHAAgACCAEAAfACAAEPAeAEAAEDAcACAAEQ - AQgBAAHwAgABDwHAAwABHAEAAQEDAAEIAQAB8AIAAQ8BwAMAARwBAAEDAYACAAEYAQAB8AIAAQ8BwAMA - ARwBeAEDAcACAAEwAQAB8AIAAQ8BwAMAARwBeAHhAYACAAFgAQAB8AIAAQ8BwAQAAXgB4AIAAQEBgAEA - AfACAAEPBgAB4AIAAQEBgAEAAfACAAEPCQABBwHAAQAB8AIAAQ8JAAEPAeABAAHwAgABDwMAAQEDAAGA - AQABHwHwAQAB8AIAAQ8DAAEBAgABAQHAAQABHwH4AQAB8AIAAQ8DAAEBAgABAwHAAQABPwH4AQAB8AIA - AQ8BiAIAAQMCAAFhAYAEAAHwAgABHwGAAgABBwIAAfACAAE/AfgBAAHwAgABPwGAAgABDwIAAXAFAAHw - AgABfwHAAgABHwIAASAFAAHwAgAB/wHAAgABPwgAAfABAAEBAf8BwwHAAQAB/wgAAfABAAEDAv8B+AED - Af8IAAHwAQABBwX/BAABgAIAAQEB8AEAAQ8K/wHHAf8BxwH/AcABAwX/AfACAAEPAf8BwQH/AcMB/gIA - AX8E/wHyAgABLwH8ARAB/wHDAfACAAEPAf4BfwH4AQ8B8wH/AfwB7wH8AQABOwHDAeACAAEHAfwBfwH4 - AQ8B8gIAAW8B/QEAAQcBxwHAAgABAwH8AT8B+AEPAfICAAFvAfwDAAHAAgABAwH4AT8B+AEPAfICAAEv - AfgDAAHAAgABAwH4AR8B+AEPAfICAAEvAfgDAAHAAgABAwHwAR8B+AEPAfICAAEvAfgDAAHgAQEBAAEH - AeABDwH4AQ8B8gIAAS8B+AMAAfACAAEPAeABDwH4AQ8B8gIAAS8B8gMAAfACAAEPAcABBwH4AQ8B8gIA - AS8B8AIAAQcB4AIAAQcBwAEDAfgBDwHyAgABLwHwAgABBwHgAgABBwGAAQMB+AEPAfICAAEvAeACAAEH - AcACAAEDAYABAQH4AQ8B8gIAAS8B4AIAAQ8BwAEAAYABAwQAAfICAAEvAcACAAEPAcACAAEDBAAB8gIA - AQ8BgAIAAQ8BwAIAAQMB8AEfAYABAQHyAgABDwGgAgABHwHAAgABAwHwAR8BwAEBAfICAAEPAwABHwHA - AQABIAEDAfABHwHAAQMB8gIAAQ8BQAIAAR8BwAIAAQMB8AEfAeABAwHyAgABDwMAAT8BwAGAAQABAwHw - AR8B8AEHAfICAAEPAYACAAE/AcACAAEDAfABHwHwAQcB8AIAAQ8BwAIAAT8B4AIAAQcB8AEfAfgBDwHw - AgABDwHAAgABfwHgAgABBwHwAR8B+AEfAfACAAEfAcACAAF/AfACAAEPAfABHwH8AR8B8AIAAT8BwAIA - AX8B8AIAAQ8B8AEfAfwBPwHwAQABAgF/AYACAAF/AfgCAAEfAfABHwH+AT8B8AEAAQQB/wGAAgAB/wH8 - AgABPwHwAR8B/gF/AfABAAEBAf8BwAIAAf8B/gIAAX8E/wHwAQABAwL/AgAC/wGAAQEF/wHzAbwBBwL/ - AfgBAQL/AcABAwX/AfABAAEPA/8BwQn/AecC/wHnAeACAAEHAf8BwAEDAf8EAAHwAgABBwGAAgABAQH/ - AgAB/wQAAfQCAAEvAYACAAEBAfwCAAE/BAAB9wHAAQABbwEAAQEBkAEAAfgCAAEfBAAB9wGAAQABLwIA - AZABAAHwAgABDwQAAfcBgAEAAQ8CAAGDAfwB4AIAAQcEAAH3AgABDwIAAUQBBAHAAgABAwQAAfYCAAEP - AwABBAHAAgABAwQAAfYCAAEHBAABgAIAAQEEAAH2AgABBwQAAYACAAEBBAAB9AIAAQcCAAECBgABAQGA - AQAB9AIAAQcJAAEBAYABAAH0AgABBwwAAfACAAEHAQABAQGABgABCAIAAfACAAEHAQABAQGAARAFAAEI - AgAB8AIAAQ8BAAEBAZMB/AUAAQgCAAHwAgABDwkAAQkBgAEAAfQBIAEAAQ8JAAEJAZABAAH0AgABLwkA - AQgBEAEAAfQCAAEvCQABCAEQAQAB9AIAAS8MAAH0AgABDwwAAfQCAAEPBAABgAIAAQEBDAIAARAB9AIA - AQ8EAAGAAgABAQESAgABSAH0AgABHwQAAcACAAEDAQECAAGAAfQBAAEBAT8DAAEQAcACAAEDAQECAAGA - AfQBAAECAX8EAAHgAgABBwEBAgABgAHwAQABBAH/BAAB8AIAAQ8EAAHwAQABAQH/BAAB+AIAAR8BgAIA - AQEB8AEAAQMB/wGAAgABAQH8AgABPwT/AfcB/wHnAf8BwAIAAQMB/wIABf8B8AEAAQ8G/wHAAQMB/ws= + Af8DwgH/A8IB/wPCAf8DwgH/A8IB/wPCAf8DwgH/A8MB/wNbAcQUAAMzAVID+gH/A+IB/wPgAf8D4AH/ + A+AB/wPgAf8D4AH/A+AB/wPgAf8D4AH/A+AB/wPgAf8D2wH/A88B/wPMAf8DzAH/AycBOywAA0gBgwG0 + AqEB/wHvAd4B3wH/AewB2gHdAf8B7AHaAdwB/wHsAdoB3AH/AewB2gHcAf8B7AHaAdwB/wHsAdoB3AH/ + AewB2gHcAf8B7AHaAdwB/wHrAd0B4gH/AesB2QHXAv8BoAEAAv8BnQEAAv8BnwEAAv8BnQEAAv8BnQEA + Av8BnQEAAv8BnQEAAv8BmgEAAv8BngEAAv8BmQEAAv8BnQEAAv8BngEAAv8BnwEAAv8BoAEAAv8BowEA + Af8B0QIAAf8BSAJHAYMcAAMKAQ0DSgGMAm0BUQH3Ab8BtwGMAf8BAAGyAcwB/wEAAa0B8wH/AQABqQL/ + AQABpQL/AQABpwH2Af8BwwGSAQAB/wHGAYIBAAH/AcIBgAEAAf8BvwIAAf8BvgIAAf8BvwIAAf8ByQGK + AQAB/wHcAaUBAAH/Am0BZAH3A0oBjAMKAQ2oAAMzAVM4AAPIAf8DJwE6NAADRwGCA10B7QGUAYUBhgH/ + A38B/gN/Af4DfwH+A38B/gN/Af4DfwH+A38B/gN/Af4DfwH+AX8BSQELAf4BfwFGAQkB/gF/AUgBCgH+ + AX8BSAEKAf4BfwFIAQoB/gF/AUgBCgH+AX8BSAEKAf4BfwFIAQoB/gF/AUgBCgH+AX8BSAEKAf4BfwFI + AQoB/gF/AUgBCgH+AX8BSAELAf4BsAIAAf8DXQHtA0cBgigAAyABLwNQAZ0DXQHtAdYBuAEAAf8BrwG0 + AZgB/wGNAbABtwH/AbIBqwGKAf8B1AGYAQAB/wHPAZIBAAH/AdABlAEAAf8B0wGZAQAB/wHaAaMBAAH/ + AeQBsQEAAf8DXQHtA1ABnQMgAS+wAAMaASUDTAGTA0gBhANIAYMDSAGDA0gBgwNIAYMDSAGDA0gBgwNI + AYMDSAGDA0gBgwNIAYMDSQGIA0cBgQMXASDYAAMTARoDOAFcA1EBnANZAccDXAHfA2AB6wNgAesDXAHf + A1kBxwNRAZwDOAFcAxQBGygAAUIBTQE+BwABPgMAASgDAAGAAwABgAMAAQEBAAEBBgABCBYAA///AP8A + AwAE/wQAAYACAAEBBf8B+AEHAf8IAAHwAgABDwH/AeABAAH/CAAB8AIAAQ8B/wGAAQABPwgAAfACAAEP + Af4CAAEfARwB5wYAAfACAAEPAfwCAAEPARwB5wYAAfACAAEPAfwCAAEHARwB5wYAAfACAAEPAfgCAAED + CAAB8AIAAQ8B8AIAAQMBHAHgAwABAQHgAQAB8AIAAQ8B8AIAAQEBHAHgAwABBgEwAQAB8AIAAQ8B4AIA + AQEBHAHjAcACAAEMARgBAAHwAgABDwHgAwABHAHjAcACAAIIAQAB8AIAAQ8B4AQAAQMBwAIAARABCAEA + AfACAAEPAcADAAEcAQABAQMAAQgBAAHwAgABDwHAAwABHAEAAQMBgAIAARgBAAHwAgABDwHAAwABHAF4 + AQMBwAIAATABAAHwAgABDwHAAwABHAF4AeEBgAIAAWABAAHwAgABDwHABAABeAHgAgABAQGAAQAB8AIA + AQ8GAAHgAgABAQGAAQAB8AIAAQ8JAAEHAcABAAHwAgABDwkAAQ8B4AEAAfACAAEPAwABAQMAAYABAAEf + AfABAAHwAgABDwMAAQECAAEBAcABAAEfAfgBAAHwAgABDwMAAQECAAEDAcABAAE/AfgBAAHwAgABDwGI + AgABAwIAAWEBgAQAAfACAAEfAYACAAEHAgAB8AIAAT8B+AEAAfACAAE/AYACAAEPAgABcAUAAfACAAF/ + AcACAAEfAgABIAUAAfACAAH/AcACAAE/CAAB8AEAAQEB/wHDAcABAAH/CAAB8AEAAQMC/wH4AQMB/wgA + AfABAAEHBf8EAAGAAgABAQHwAQABDwr/AccB/wHHAf8BwAEDBf8B8AIAAQ8B/wHBAf8BwwH+AgABfwT/ + AfICAAEvAfwBEAH/AcMB8AIAAQ8B/gF/AfgBDwHzAf8B/AHvAfwBAAE7AcMB4AIAAQcB/AF/AfgBDwHy + AgABbwH9AQABBwHHAcACAAEDAfwBPwH4AQ8B8gIAAW8B/AMAAcACAAEDAfgBPwH4AQ8B8gIAAS8B+AMA + AcACAAEDAfgBHwH4AQ8B8gIAAS8B+AMAAcACAAEDAfABHwH4AQ8B8gIAAS8B+AMAAeABAQEAAQcB4AEP + AfgBDwHyAgABLwH4AwAB8AIAAQ8B4AEPAfgBDwHyAgABLwHyAwAB8AIAAQ8BwAEHAfgBDwHyAgABLwHw + AgABBwHgAgABBwHAAQMB+AEPAfICAAEvAfACAAEHAeACAAEHAYABAwH4AQ8B8gIAAS8B4AIAAQcBwAIA + AQMBgAEBAfgBDwHyAgABLwHgAgABDwHAAQABgAEDBAAB8gIAAS8BwAIAAQ8BwAIAAQMEAAHyAgABDwGA + AgABDwHAAgABAwHwAR8BgAEBAfICAAEPAaACAAEfAcACAAEDAfABHwHAAQEB8gIAAQ8DAAEfAcABAAEg + AQMB8AEfAcABAwHyAgABDwFAAgABHwHAAgABAwHwAR8B4AEDAfICAAEPAwABPwHAAYABAAEDAfABHwHw + AQcB8gIAAQ8BgAIAAT8BwAIAAQMB8AEfAfABBwHwAgABDwHAAgABPwHgAgABBwHwAR8B+AEPAfACAAEP + AcACAAF/AeACAAEHAfABHwH4AR8B8AIAAR8BwAIAAX8B8AIAAQ8B8AEfAfwBHwHwAgABPwHAAgABfwHw + AgABDwHwAR8B/AE/AfABAAECAX8BgAIAAX8B+AIAAR8B8AEfAf4BPwHwAQABBAH/AYACAAH/AfwCAAE/ + AfABHwH+AX8B8AEAAQEB/wHAAgAB/wH+AgABfwT/AfABAAEDAv8CAAL/AYABAQX/AfMBvAEHAv8B+AEB + Av8BwAEDBf8B8AEAAQ8D/wHBCf8B5wL/AecB4AIAAQcB/wHAAQMB/wQAAfACAAEHAYACAAEBAf8CAAH/ + BAAB9AIAAS8BgAIAAQEB/AIAAT8EAAH3AcABAAFvAQABAQGQAQAB+AIAAR8EAAH3AYABAAEvAgABkAEA + AfACAAEPBAAB9wGAAQABDwIAAYMB/AHgAgABBwQAAfcCAAEPAgABRAEEAcACAAEDBAAB9gIAAQ8DAAEE + AcACAAEDBAAB9gIAAQcEAAGAAgABAQQAAfYCAAEHBAABgAIAAQEEAAH0AgABBwIAAQIGAAEBAYABAAH0 + AgABBwkAAQEBgAEAAfQCAAEHDAAB8AIAAQcBAAEBAYAGAAEIAgAB8AIAAQcBAAEBAYABEAUAAQgCAAHw + AgABDwEAAQEBkwH8BQABCAIAAfACAAEPCQABCQGAAQAB9AEgAQABDwkAAQkBkAEAAfQCAAEvCQABCAEQ + AQAB9AIAAS8JAAEIARABAAH0AgABLwwAAfQCAAEPDAAB9AIAAQ8EAAGAAgABAQEMAgABEAH0AgABDwQA + AYACAAEBARICAAFIAfQCAAEfBAABwAIAAQMBAQIAAYAB9AEAAQEBPwMAARABwAIAAQMBAQIAAYAB9AEA + AQIBfwQAAeACAAEHAQECAAGAAfABAAEEAf8EAAHwAgABDwQAAfABAAEBAf8EAAH4AgABHwGAAgABAQHw + AQABAwH/AYACAAEBAfwCAAE/BP8B9wH/AecB/wHAAgABAwH/AgAF/wHwAQABDwb/AcABAwH/Cw==