From 3cf7ec181618bc8d3e11eb09964e5dde8be4ebd2 Mon Sep 17 00:00:00 2001 From: lempamo Date: Sun, 15 Oct 2017 23:13:55 -0400 Subject: more fuel for the hype train --- Histacom2/OS/WinXPBad/WinXPBad.cs | 569 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 569 insertions(+) create mode 100644 Histacom2/OS/WinXPBad/WinXPBad.cs (limited to 'Histacom2/OS/WinXPBad/WinXPBad.cs') diff --git a/Histacom2/OS/WinXPBad/WinXPBad.cs b/Histacom2/OS/WinXPBad/WinXPBad.cs new file mode 100644 index 0000000..91feba3 --- /dev/null +++ b/Histacom2/OS/WinXPBad/WinXPBad.cs @@ -0,0 +1,569 @@ +using System; +using System.Collections.Generic; +using System.Drawing; +using System.IO; +using System.Media; +using System.Windows.Forms; +using Histacom2.Engine; +using Histacom2.Engine.Template; +using Histacom2.Engine.Template.Taskbars; +using Histacom2.OS.Win95.Win95Apps; +using Histacom2.OS.Win95.Win95Apps.Story; +using static Histacom2.Engine.SaveSystem; +using Histacom2.OS.Win98.Win98Apps; +using Histacom2.GlobalPrograms; + +namespace Histacom2.OS.WinXPBad +{ + public partial class WindowsXPBad : Form + { + private SoundPlayer startsound; + public WindowManager wm = new WindowManager(); + + public List nonimportantapps = new List(); + public WebChat1999 webchat; + public WinClassic ie; + + public TaskBarController tb = new TaskBarController(); + + public int currentappcount = 0; + + public bool webchatInstalled = false; + + public bool hiddenpadamsFound = false; + private WinClassicTimeDistorter2 distort; + + // Init the form + public WindowsXPBad() + { + InitializeComponent(); + startmenu.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); + ProgramsToolStripMenuItem.DropDown.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); + AccessoriesToolStripMenuItem.DropDown.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); + CommunicationsToolStripMenuItem.DropDown.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); + MultimediaToolStripMenuItem.DropDown.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); + SystemToolsToolStripMenuItem.DropDown.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); + StartUpToolStripMenuItem.DropDown.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); + MSDOSPromptToolStripMenuItem.DropDown.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); + DocumentsToolStripMenuItem.DropDown.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); + SettingsToolStripMenuItem.DropDown.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); + FindToolStripMenuItem.DropDown.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); + SetStyle(ControlStyles.SupportsTransparentBackColor, true); + BackgroundImage = currentTheme.defaultWallpaper; + foreach (ToolStripMenuItem item in startmenuitems.Items) + { + item.MouseEnter += new EventHandler(MenuItem_MouseEnter); + item.MouseLeave += new EventHandler(MenuItem_MouseLeave); + } + foreach (ToolStripMenuItem item in ProgramsToolStripMenuItem.DropDown.Items) + { + item.MouseEnter += new EventHandler(MenuItem_MouseEnter); + item.MouseLeave += new EventHandler(MenuItem_MouseLeave); + } + } + + private void MenuItem_MouseEnter(object sender, EventArgs e) + { + //((ToolStripMenuItem)sender).ForeColor = Color.White; + } + + private void MenuItem_MouseLeave(object sender, EventArgs e) + { + //((ToolStripMenuItem)sender).ForeColor = Color.Black; + } + + // When New Game is clicked in TitleScreen.cs + private void Desktop_Load(object sender, EventArgs e) + { + UpgradeFileSystem( "98"); + + if (currentTheme.defaultWallpaper != null) desktopicons.BackgroundImage = new Bitmap(currentTheme.defaultWallpaper, Width, Height); + //Start Menu Color - Commented until it works reliably + //startmenuitems.Renderer = new MyRenderer(); + //ProgramsToolStripMenuItem.DropDown.Renderer = new MyRenderer(); + + // Make Font Mandatory + fontLoad(); + + // Play Windows 95 Start Sound + Stream audio = currentTheme.startSound; + startsound = new SoundPlayer(audio); + startsound.Play(); + + // Hide the Startmenu + startmenu.Hide(); + + // Check for and set VM Mode + if (this.FormBorderStyle != FormBorderStyle.None) + { + this.Text = "Histacom2 - VM Mode"; + } + + // Start the ClockTimer + clockTimer.Start(); + + // Set the StartMenu seperator + startmenuitems.Items.Insert(6, new ToolStripSeparator()); + + //nonimportantapps.Capacity = 100; + this.SendToBack(); + + // Update the taskbar + UpdateTaskbar(); + + // Bring to this the front + this.BringToFront(); + + // Update the desktop Icons! + + DesktopController.RefreshDesktopIcons(new ListViewItem[] { new System.Windows.Forms.ListViewItem("My Computer", 0), + new System.Windows.Forms.ListViewItem("Network Neighborhood", 5), + new System.Windows.Forms.ListViewItem("Inbox", 3), + new System.Windows.Forms.ListViewItem("Recycle Bin", 7), + new System.Windows.Forms.ListViewItem("Internet Explorer", 2), + new System.Windows.Forms.ListViewItem("Online Services", 1), + new System.Windows.Forms.ListViewItem("Set Up The Microsoft Network", 4), + new System.Windows.Forms.ListViewItem("Outlook Express", 6) }, ref desktopicons, Path.Combine(ProfileWindowsDirectory, "Desktop")); + } + + private void fontLoad() + { + this.taskbartime.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))); + this.ProgramsToolStripMenuItem.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))); + this.DocumentsToolStripMenuItem.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))); + this.SettingsToolStripMenuItem.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))); + this.FindToolStripMenuItem.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))); + this.HelpToolStripMenuItem.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))); + this.RunToolStripMenuItem.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))); + this.SuspendToolStripMenuItem.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))); + this.ShutdownToolStripMenuItem.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))); + this.desktopicons.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))); + } + + #region StartMenu + + // StartButton Click + private void startbutton_Click(object sender, EventArgs e) + { + startmenu.Show(); + startmenu.BringToFront(); + if (taskbar.Visible) taskbar.BringToFront(); + } + + // Shutdown button + private void ShutdownToolStripMenuItem_Click(object sender, EventArgs e) + { + SaveGame(); + Program.ShutdownApplication(currentTheme.stopSound); + } + + #endregion //Region + + // Give Year Code - NYI + private void taskbartime_Click(object sender, EventArgs e) + { + + } + + // Set the Clock + private void clockTimer_Tick(object sender, EventArgs e) + { + taskbartime.Text = DateTime.Now.ToString("h:mm tt"); + } + + // On Desktop MouseDown + private void desktop_mousedown(object sender, MouseEventArgs e) + { + if (e.Button == MouseButtons.Right) + { + // Check if an item is selected and if so show the Delete option + + if (desktopicons.FocusedItem != null) + { + deleteToolStripMenuItem.Visible = true; + } + else + { + deleteToolStripMenuItem.Visible = false; + } + + desktopupdate_Tick(null, null); // Update the Desktop Icons + + rightclickbackproperties.Show(); + rightclickbackproperties.BringToFront(); + rightclickbackproperties.Location = MousePosition; + } + + // If + else if (e.Button == MouseButtons.Left) + { + rightclickbackproperties.Hide(); + startmenu.Hide(); + } + + else if (e.Button == MouseButtons.Middle) + { + rightclickbackproperties.Hide(); + } + } + + private void NotePadToolStripMenuItem_Click(object sender, EventArgs e) + { + WinClassicNotepad wp = new WinClassicNotepad(); + WinClassic app = wm.Init(wp, "Notepad", Properties.Resources.Win95IconNotepad, true, true); + AddTaskBarItem(app, app.Tag.ToString(), "Notepad", Properties.Resources.Win95IconNotepad); + + nonimportantapps.Add(app); + nonimportantapps[nonimportantapps.Count - 1].BringToFront(); + nonimportantapps[nonimportantapps.Count - 1].FormClosing += new FormClosingEventHandler(NonImportantApp_Closing); + + app.BringToFront(); + startmenu.Hide(); + } + private void downloaderTestToolStripMenuItem_Click(object sender, EventArgs e) + { + WinClassicDownloader opendownload = new WinClassicDownloader(); + WinClassic app = wm.Init(opendownload, "Downloader", null, false, true); + opendownload.appName.Text = "Downloading: Survive The Day"; + + AddTaskBarItem(app, app.Tag.ToString(), "Downloader", null); + + app.BringToFront(); + startmenu.Hide(); + } + + private void installerTestToolStripMenuItem_Click(object sender, EventArgs e) + { + WinClassicInstaller openinstaller = new WinClassicInstaller("Testing"); + WinClassic app = wm.Init(openinstaller, "Installer", null, false, true); + + AddTaskBarItem(app, app.Tag.ToString(), "Installer", null); + + app.BringToFront(); + startmenu.Hide(); + } + + private void InternetExplorerToolStripMenuItem_Click(object sender, EventArgs e) + { + if (ie != null) { wm.StartInfobox95("Error Opening Internet Explorer", "An instance of Internet Explorer 4 is already open.", InfoboxType.Warning, InfoboxButtons.OK); return; } + ie = wm.Init(new WinClassicIE4(), "Internet Explorer 4", Properties.Resources.Win95IconIE4, true, true); + AddTaskBarItem(ie, ie.Tag.ToString(), "Internet Explorer 4", Properties.Resources.Win95IconIE4); + ie.BringToFront(); + ie.FormClosing += new FormClosingEventHandler(InternetExplorer4_Closing); + startmenu.Hide(); + } + + private void desktopicons_DoubleClick(object sender, EventArgs e) + { + Point objDrawingPoint = desktopicons.PointToClient(Cursor.Position); + ListViewItem objListViewItem; + + if (objDrawingPoint != null) + { + objListViewItem = desktopicons.GetItemAt(objDrawingPoint.X, objDrawingPoint.Y); + if (objListViewItem != null) + { + if (objListViewItem.Text == "Internet Explorer") + { + if (ie != null) { wm.StartInfobox95("Error Opening Internet Explorer", "An instance of Internet Explorer 4 is already open.", InfoboxType.Warning, InfoboxButtons.OK); return; } + ie = wm.Init(new WinClassicIE4(), "Internet Explorer 4", Properties.Resources.Win95IconIE4, true, true); + AddTaskBarItem(ie, ie.Tag.ToString(), "Internet Explorer 4", Properties.Resources.Win95IconIE4); + ie.BringToFront(); + ie.FormClosing += new FormClosingEventHandler(InternetExplorer4_Closing); + startmenu.Hide(); + } + else if (objListViewItem.Text == "My Computer") + { + WinClassic app = wm.Init(new Win95WindowsExplorer(), "Windows Explorer", Properties.Resources.WinClassicFileExplorer, true, true); + AddTaskBarItem(app, app.Tag.ToString(), "Windows Explorer", Properties.Resources.WinClassicFileExplorer); + app.BringToFront(); + startmenu.Hide(); + } + else if (objListViewItem.Text == "Network Neighborhood") + { + // Alex's TODO here + + } + else if (objListViewItem.Text == "Recycle Bin") + { + // Another thing you may need to digital poke Alex about doing. + + } + else if (objListViewItem.Text == "Set Up The Microsoft Network") + { + wm.StartInfobox95("Microsoft Network", "The Microsoft Network is already set up!", InfoboxType.Info, InfoboxButtons.OK); + } + else if (objListViewItem.Text == "Outlook Express") + { + //wm.StartInfobox95("Win32 Application", "That is not a valid Win32 Application.", Properties.Resources.Win95Error); + } + else if (objListViewItem.Text == "Inbox") + { + //wm.StartInfobox95("Win32 Application", "That is not a valid Win32 Application.", Properties.Resources.Win95Error); + } + else + { + // It is an actual file on the disk + WinClassicWindowsExplorer we = new WinClassicWindowsExplorer(); + + // If it is a directory + if (Directory.Exists(objListViewItem.Tag.ToString())) + { + we.CurrentDirectory = objListViewItem.Tag.ToString(); + + WinClassic app = wm.Init(we, "Windows Explorer", Properties.Resources.WinClassicFileExplorer, true, true); + AddTaskBarItem(app, app.Tag.ToString(), "Windows Explorer", Properties.Resources.WinClassicFileExplorer); + app.BringToFront(); + startmenu.Hide(); + } + else we.OpenFile(objListViewItem.Tag.ToString()); // Just open the file... + } + } + } + } + + private void infoboxTestToolStripMenuItem_Click(object sender, EventArgs e) + { + WinClassic app = wm.StartInfobox95("AShifter's Infobox", "This is the very first Histacom2 Infobox. It's really easy to call, too! \n Just use wm.startInfobox95(string title, string text, InfoboxType type, InfoboxButtons btns)!", InfoboxType.Info, InfoboxButtons.OK); + + app.BringToFront(); + startmenu.Hide(); + } + private void WebChatToolStripMenuItem_Click(object sender, EventArgs e) + { + if (webchat != null) return; + webchat = new WebChat1999(); + WinClassic app = wm.Init(webchat, "Web Chat 1999", null, true, true); + + AddTaskBarItem(app, app.Tag.ToString(), "Web Chat 1999", null); + + app.BringToFront(); + startmenu.Hide(); + + app.FormClosing += (s, fe) => webchat = null; + } + public void NonImportantApp_Closing(object sender, FormClosingEventArgs e) + { + nonimportantapps.Remove((WinClassic)sender); + } + public void InternetExplorer4_Closing(object sender, FormClosingEventArgs e) + { + ie = null; + } + + private void WordPadToolStripMenuItem_Click(object sender, EventArgs e) + { + WinClassicWordPad wp = new WinClassicWordPad(); + WinClassic app = wm.Init(wp, "Wordpad", Properties.Resources.Win95IconWordpad, true, true); + AddTaskBarItem(app, app.Tag.ToString(), "Wordpad", Properties.Resources.Win95IconWordpad); + + nonimportantapps.Add(app); + nonimportantapps[nonimportantapps.Count - 1].BringToFront(); + nonimportantapps[nonimportantapps.Count - 1].FormClosing += new FormClosingEventHandler(NonImportantApp_Closing); + + app.BringToFront(); + startmenu.Hide(); + } + + public void AddTaskBarItem(Form Application, string ApplicationID, string ApplicationName, Image ApplicationIcon) + { + taskbarItems = tb.AddTaskbarItem95(ApplicationID, ApplicationName, ApplicationIcon, (UserControl)new Win95TaskBarItem(), taskbarItems); + Application.FormClosed += new FormClosedEventHandler(UpdateTaskbarFromClosedApplication); + } + + public void UpdateTaskbarFromClosedApplication(object sender, FormClosedEventArgs e) + { + UpdateTaskbar(); + } + + public void UpdateTaskbar() + { + // Clears out all the items on the taskbar + taskbarItems.Controls.Clear(); + + // Loops through all the Applications which are open + + foreach (Form form in tb.GetAllOpenApps()) + { + // Calls that "AddToTaskbar" thing + taskbarItems = tb.AddTaskbarItem95(form.Tag.ToString(), form.Text.ToString(), (Image)form.Icon.ToBitmap(), (UserControl)new Win95TaskBarItem(), taskbarItems); + } + } + + private void AddressBookToolStripMenuItem_Click(object sender, EventArgs e) + { + + WinClassic app = wm.Init(new WinClassicAddressBook(), "Address Book", Properties.Resources.WinClassicAddressBook, true, true); + Program.AddTaskbarItem(app, app.Tag.ToString(), "Address Book", Properties.Resources.WinClassicAddressBook); + + Program.nonimportantapps.Add(app); + Program.nonimportantapps[Program.nonimportantapps.Count - 1].BringToFront(); + Program.nonimportantapps[Program.nonimportantapps.Count - 1].FormClosing += new FormClosingEventHandler(Program.NonImportantApp_Closing); + + app.BringToFront(); + } + + private void WindowsExplorerToolStripMenuItem1_Click(object sender, EventArgs e) + { + FileDialogBoxManager.IsInOpenDialog = false; + FileDialogBoxManager.IsInSaveDialog = false; + WinClassic app = wm.Init(new WinClassicWindowsExplorer(), "Windows Explorer", Properties.Resources.WinClassicFileExplorer, true, true); + AddTaskBarItem(app, app.Tag.ToString(), "Windows Explorer", Properties.Resources.WinClassicFileExplorer); + + nonimportantapps.Add(app); + nonimportantapps[nonimportantapps.Count - 1].BringToFront(); + nonimportantapps[nonimportantapps.Count - 1].FormClosing += new FormClosingEventHandler(NonImportantApp_Closing); + + app.BringToFront(); + startmenu.Hide(); + } + + private void storyTest1ToolStripMenuItem_Click(object sender, EventArgs e) + { + Hack1.StartObjective(); + } + + private void temp_for_std(object sender, EventArgs e) + { + Win2K.Win2KApps.SurviveTheDay std = new Win2K.Win2KApps.SurviveTheDay(); + WinClassic app = wm.Init(std, "Survive The Day", null, false, false); + AddTaskBarItem(app, app.Tag.ToString(), "Survive The Day", null); + + nonimportantapps.Add(app); + nonimportantapps[nonimportantapps.Count - 1].BringToFront(); + nonimportantapps[nonimportantapps.Count - 1].FormClosing += new FormClosingEventHandler(NonImportantApp_Closing); + + app.BringToFront(); + startmenu.Hide(); + } + + private void MSDOSPromptToolStripMenuItem1_Click(object sender, EventArgs e) + { + WinClassicTerminal msdos = new WinClassicTerminal(false); + WinClassic app = wm.Init(msdos, "MS-DOS Prompt", Properties.Resources.MSDOSPromptToolStripMenuItem1_Image, true, true, false); + + AddTaskBarItem(app, app.Tag.ToString(), "MS-DOS Prompt", Properties.Resources.MSDOSPromptToolStripMenuItem1_Image); + app.BringToFront(); + startmenu.Hide(); + } + + private void PropertiesToolStripMenuItem1_Click(object sender, EventArgs e) + { + WinClassicThemePanel theme = new WinClassicThemePanel(); + WinClassic app = wm.Init(theme, "Themes", null, false, true, false); + + AddTaskBarItem(app, app.Tag.ToString(), "Themes", null); + app.BringToFront(); + startmenu.Hide(); + } + + private void TimeDistorterToolStripMenuItem_Click(object sender, EventArgs e) + { + if (distort != null) return; + distort = new WinClassicTimeDistorter2(); + WinClassic app = wm.Init(distort, "Time Distorter", null, false, false, false); + AddTaskBarItem(app, app.Tag.ToString(), "Time Distorter", null); + app.BringToFront(); + startmenu.Hide(); + } + + private void FTPClientToolStripMenuItem_Click(object sender, EventArgs e) + { + WinClassic app = wm.Init(new WinClassicFTPClient(), "FTP Client", null, true, true); + + AddTaskBarItem(app, app.Tag.ToString(), "FTP Client", null); + app.BringToFront(); + startmenu.Hide(); + } + + private void CalculatorToolStripMenuItem_Click(object sender, EventArgs e) + { + WinClassic app = wm.Init(new WinClassicCalculator(), "Calculator", Properties.Resources.WinClassicCalc, false, false); + AddTaskBarItem(app, app.Tag.ToString(), "Calculator", Properties.Resources.WinClassicCalc); + + nonimportantapps.Add(app); + nonimportantapps[nonimportantapps.Count - 1].BringToFront(); + nonimportantapps[nonimportantapps.Count - 1].FormClosing += new FormClosingEventHandler(NonImportantApp_Closing); + + app.BringToFront(); + startmenu.Hide(); + } + + private void desktopupdate_Tick(object sender, EventArgs e) + { + DesktopController.RefreshDesktopIcons(new ListViewItem[] { new System.Windows.Forms.ListViewItem("My Computer", 0), + new System.Windows.Forms.ListViewItem("Network Neighborhood", 5), + new System.Windows.Forms.ListViewItem("Inbox", 3), + new System.Windows.Forms.ListViewItem("Recycle Bin", 7), + new System.Windows.Forms.ListViewItem("Internet Explorer", 2), + new System.Windows.Forms.ListViewItem("Online Services", 1), + new System.Windows.Forms.ListViewItem("Set Up The Microsoft Network", 4), + new System.Windows.Forms.ListViewItem("Outlook Express", 6) }, ref desktopicons, Path.Combine(ProfileWindowsDirectory, "Desktop")); + } + + private void FolderToolStripMenuItem_Click(object sender, EventArgs e) + { + if (Directory.Exists(Path.Combine(ProfileWindowsDirectory, "Desktop", "New Folder"))) + { + wm.StartAboutBox95("Windows Explorer", "A folder called New Folder already exists - please rename it.", Properties.Resources.Win95Error); + } + else + { + SaveDirectoryInfo(Path.Combine(ProfileWindowsDirectory, "Desktop"), "New Folder", false, "New folder", true); + } + } + + private void TextDocumentToolStripMenuItem_Click(object sender, EventArgs e) + { + if (File.Exists(Path.Combine(ProfileWindowsDirectory, "Desktop", "New Text Document.txt"))) + { + wm.StartAboutBox95("Windows Explorer", "A folder called New Text Document already exists - please rename it.", Properties.Resources.Win95Error); + } + else + { + File.Create(Path.Combine(ProfileWindowsDirectory, "Desktop", "New Text Document.txt")); + } + + desktopupdate_Tick(null, null); // Update the Desktop Icons + } + + private void deleteToolStripMenuItem_Click(object sender, EventArgs e) + { + Point objDrawingPoint = desktopicons.PointToClient(Cursor.Position); + ListViewItem objListViewItem; + + if (objDrawingPoint != null) + { + objListViewItem = desktopicons.GetItemAt(objDrawingPoint.X, objDrawingPoint.Y); + if (objListViewItem != null) + { + if (objListViewItem.Tag != null) + { + if (Directory.Exists(objListViewItem.Tag.ToString())) + { + Directory.Delete(objListViewItem.Tag.ToString(), true); + desktopupdate_Tick(null, null); // Update the desktop Icons + } + else + { + if (File.Exists(objListViewItem.Tag.ToString())) + { + File.Delete(objListViewItem.Tag.ToString()); + desktopupdate_Tick(null, null); // Update the desktop Icons + } + else + { + wm.StartInfobox95("Windows Explorer", "This object cannot be deleted.", InfoboxType.Error, InfoboxButtons.OK); + } + } + } + else + { + wm.StartInfobox95("Windows Explorer", "This object cannot be deleted.", InfoboxType.Error, InfoboxButtons.OK); + } + } + } + } + } +} + -- cgit v1.2.3 From 70c63256ccab2b3cfc6a0dc1b0591b26932a2d10 Mon Sep 17 00:00:00 2001 From: lempamo Date: Fri, 20 Oct 2017 16:35:53 -0400 Subject: badxp start menu stuff --- Histacom2.Engine/Histacom2.Engine.csproj | 5 +- Histacom2.Engine/Properties/Resources.Designer.cs | 19 + Histacom2.Engine/Properties/Resources.resx | 6 + Histacom2.Engine/Resources/WinBadXPStart.wav | Bin 0 -> 2184344 bytes Histacom2.Engine/Resources/WinXPWallpaper.png | Bin 0 -> 4766855 bytes Histacom2.Engine/SaveSystem.cs | 11 +- Histacom2.Engine/Theme.cs | 11 + Histacom2/Histacom2.csproj | 13 + Histacom2/OS/WinXPBad/WinXPBad.Designer.cs | 1050 ++++---------------- Histacom2/OS/WinXPBad/WinXPBad.cs | 42 - Histacom2/OS/WinXPBad/WinXPBad.resx | 260 +---- Histacom2/Properties/Resources.resx | 39 + Histacom2/Properties/Resources1.Designer.cs | 130 +++ .../WinClassic/WinXPStartMenuBottomCenter.png | Bin 0 -> 144 bytes .../WinClassic/WinXPStartMenuBottomCenter2.png | Bin 0 -> 2343 bytes .../WinClassic/WinXPStartMenuBottomLeft.png | Bin 0 -> 170 bytes .../WinClassic/WinXPStartMenuBottomLeft2.png | Bin 0 -> 186 bytes .../WinClassic/WinXPStartMenuBottomRight.png | Bin 0 -> 169 bytes .../WinClassic/WinXPStartMenuBottomRight2.png | Bin 0 -> 223 bytes .../Resources/WinClassic/WinXPStartMenuLeft.png | Bin 0 -> 177 bytes .../WinClassic/WinXPStartMenuLeftGradient.png | Bin 0 -> 548 bytes .../Resources/WinClassic/WinXPStartMenuRight.png | Bin 0 -> 188 bytes .../WinClassic/WinXPStartMenuRightGradient.png | Bin 0 -> 733 bytes .../WinClassic/WinXPStartMenuTopCenter.png | Bin 0 -> 6876 bytes .../Resources/WinClassic/WinXPStartMenuTopLeft.png | Bin 0 -> 1238 bytes .../WinClassic/WinXPStartMenuTopRight.png | Bin 0 -> 1452 bytes .../Resources/WinClassic/WinXPTaskbarTime.png | Bin 1747 -> 1819 bytes Histacom2/TitleScreen.cs | 16 + 28 files changed, 454 insertions(+), 1148 deletions(-) create mode 100644 Histacom2.Engine/Resources/WinBadXPStart.wav create mode 100644 Histacom2.Engine/Resources/WinXPWallpaper.png create mode 100644 Histacom2/Resources/WinClassic/WinXPStartMenuBottomCenter.png create mode 100644 Histacom2/Resources/WinClassic/WinXPStartMenuBottomCenter2.png create mode 100644 Histacom2/Resources/WinClassic/WinXPStartMenuBottomLeft.png create mode 100644 Histacom2/Resources/WinClassic/WinXPStartMenuBottomLeft2.png create mode 100644 Histacom2/Resources/WinClassic/WinXPStartMenuBottomRight.png create mode 100644 Histacom2/Resources/WinClassic/WinXPStartMenuBottomRight2.png create mode 100644 Histacom2/Resources/WinClassic/WinXPStartMenuLeft.png create mode 100644 Histacom2/Resources/WinClassic/WinXPStartMenuLeftGradient.png create mode 100644 Histacom2/Resources/WinClassic/WinXPStartMenuRight.png create mode 100644 Histacom2/Resources/WinClassic/WinXPStartMenuRightGradient.png create mode 100644 Histacom2/Resources/WinClassic/WinXPStartMenuTopCenter.png create mode 100644 Histacom2/Resources/WinClassic/WinXPStartMenuTopLeft.png create mode 100644 Histacom2/Resources/WinClassic/WinXPStartMenuTopRight.png (limited to 'Histacom2/OS/WinXPBad/WinXPBad.cs') diff --git a/Histacom2.Engine/Histacom2.Engine.csproj b/Histacom2.Engine/Histacom2.Engine.csproj index ec3fad8..f41ee36 100644 --- a/Histacom2.Engine/Histacom2.Engine.csproj +++ b/Histacom2.Engine/Histacom2.Engine.csproj @@ -138,13 +138,12 @@ WinXP.cs - - ClassicLabel.cs - + + diff --git a/Histacom2.Engine/Properties/Resources.Designer.cs b/Histacom2.Engine/Properties/Resources.Designer.cs index 949a91c..cef46fa 100644 --- a/Histacom2.Engine/Properties/Resources.Designer.cs +++ b/Histacom2.Engine/Properties/Resources.Designer.cs @@ -286,6 +286,15 @@ namespace Histacom2.Engine.Properties { } } + /// + /// Looks up a localized resource of type System.IO.UnmanagedMemoryStream similar to System.IO.MemoryStream. + /// + public static System.IO.UnmanagedMemoryStream WinBadXPStart { + get { + return ResourceManager.GetStream("WinBadXPStart", resourceCulture); + } + } + /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// @@ -535,5 +544,15 @@ namespace Histacom2.Engine.Properties { return ((System.Drawing.Bitmap)(obj)); } } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap WinXPWallpaper { + get { + object obj = ResourceManager.GetObject("WinXPWallpaper", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } } } diff --git a/Histacom2.Engine/Properties/Resources.resx b/Histacom2.Engine/Properties/Resources.resx index a6faf66..61982fa 100644 --- a/Histacom2.Engine/Properties/Resources.resx +++ b/Histacom2.Engine/Properties/Resources.resx @@ -265,4 +265,10 @@ ..\resources\winxp\window\winxp_trcorner.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\WinBadXPStart.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\WinXPWallpaper.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + \ No newline at end of file diff --git a/Histacom2.Engine/Resources/WinBadXPStart.wav b/Histacom2.Engine/Resources/WinBadXPStart.wav new file mode 100644 index 0000000..73d2768 Binary files /dev/null and b/Histacom2.Engine/Resources/WinBadXPStart.wav differ diff --git a/Histacom2.Engine/Resources/WinXPWallpaper.png b/Histacom2.Engine/Resources/WinXPWallpaper.png new file mode 100644 index 0000000..627f8b7 Binary files /dev/null and b/Histacom2.Engine/Resources/WinXPWallpaper.png differ diff --git a/Histacom2.Engine/SaveSystem.cs b/Histacom2.Engine/SaveSystem.cs index 48fec8a..3c54aaf 100644 --- a/Histacom2.Engine/SaveSystem.cs +++ b/Histacom2.Engine/SaveSystem.cs @@ -129,7 +129,13 @@ namespace Histacom2.Engine save.ExperiencedStories = new List(); if (DevMode == true) { - if (ProfileName == "98") + if (ProfileName == "xpbad") + { + save.CurrentOS = "xpbad"; + save.ThemeName = "badxp"; + currentTheme = new BadXPTheme(); + } + else if (ProfileName == "98") { save.CurrentOS = "98"; save.ThemeName = "default98"; @@ -717,6 +723,9 @@ namespace Histacom2.Engine case "insidepc": currentTheme = new InsideComputerTheme(); break; + case "badxp": + currentTheme = new BadXPTheme(); + break; } } } diff --git a/Histacom2.Engine/Theme.cs b/Histacom2.Engine/Theme.cs index 2d4633f..fa3d334 100644 --- a/Histacom2.Engine/Theme.cs +++ b/Histacom2.Engine/Theme.cs @@ -166,4 +166,15 @@ namespace Histacom2.Engine themeName = "insidepc"; } } + + public class BadXPTheme: Theme + { + public BadXPTheme() + { + startSound = Properties.Resources.WinBadXPStart; + + defaultWallpaper = Properties.Resources.WinXPWallpaper; + themeName = "badxp"; + } + } } diff --git a/Histacom2/Histacom2.csproj b/Histacom2/Histacom2.csproj index 552f19a..f6bc36d 100644 --- a/Histacom2/Histacom2.csproj +++ b/Histacom2/Histacom2.csproj @@ -650,6 +650,19 @@ + + + + + + + + + + + + + diff --git a/Histacom2/OS/WinXPBad/WinXPBad.Designer.cs b/Histacom2/OS/WinXPBad/WinXPBad.Designer.cs index 31b9bbc..7713f56 100644 --- a/Histacom2/OS/WinXPBad/WinXPBad.Designer.cs +++ b/Histacom2/OS/WinXPBad/WinXPBad.Designer.cs @@ -40,65 +40,18 @@ namespace Histacom2.OS.WinXPBad this.taskbarItems = new System.Windows.Forms.Panel(); this.startbutton = new System.Windows.Forms.PictureBox(); this.startmenu = new System.Windows.Forms.Panel(); - this.startmenuitems = new System.Windows.Forms.MenuStrip(); - this.ProgramsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.AccessoriesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.CommunicationsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.InternetConnectionWizardToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.NetMeetingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.MultimediaToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.CDPlayerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SoundRecorderToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.VolumeControlToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.WindowsMediaPlayerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SystemToolsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.DiskDefragmenterToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ScanDiskToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.AddressBookToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.CalculatorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.HyperTerminalToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ImagingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.NotePadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.OnlineRegistrationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.PaintToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.PhoneDialerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.WordPadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.StartUpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.AOLInternetFREETrialToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ATTWorldNetSignupToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SetupCompuServe30ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SetupWOWFromCompuServeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.MSDOSPromptToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.EmptyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.InternetExplorerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.MSDOSPromptToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); - this.OutlookExpressToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.WindowsExplorerToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); - this.GuessTheNumberToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.StartRunnerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ErrorBlasterToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SkindowsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.WebChatToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.TimeDistorterToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.DocumentsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.downloaderTestToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.installerTestToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.storyTest1ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ControlPanelToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.PrintersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.TaskbarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.FindToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.FilesOrFoldersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ComputerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.OnTheInternetToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.PeopleToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.HelpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.RunToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SuspendToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ShutdownToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ossidestartmenu = new System.Windows.Forms.Panel(); - this.osimage = new System.Windows.Forms.PictureBox(); + this.pictureBox11 = new System.Windows.Forms.PictureBox(); + this.pictureBox10 = new System.Windows.Forms.PictureBox(); + this.pictureBox9 = new System.Windows.Forms.PictureBox(); + this.pictureBox8 = new System.Windows.Forms.PictureBox(); + this.pictureBox7 = new System.Windows.Forms.PictureBox(); + this.pictureBox6 = new System.Windows.Forms.PictureBox(); + this.pictureBox5 = new System.Windows.Forms.PictureBox(); + this.pictureBox4 = new System.Windows.Forms.PictureBox(); + this.panel3 = new System.Windows.Forms.Panel(); + this.pictureBox3 = new System.Windows.Forms.PictureBox(); + this.pictureBox2 = new System.Windows.Forms.PictureBox(); + this.pictureBox1 = new System.Windows.Forms.PictureBox(); this.clockTimer = new System.Windows.Forms.Timer(this.components); this.desktopImages = new System.Windows.Forms.ImageList(this.components); this.desktopicons = new System.Windows.Forms.ListView(); @@ -109,15 +62,26 @@ namespace Histacom2.OS.WinXPBad this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.PropertiesToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); this.desktopupdate = new System.Windows.Forms.Timer(this.components); + this.pictureBox12 = new System.Windows.Forms.PictureBox(); this.panel1.SuspendLayout(); this.taskbar.SuspendLayout(); this.clockPanel.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.startbutton)).BeginInit(); this.startmenu.SuspendLayout(); - this.startmenuitems.SuspendLayout(); - this.ossidestartmenu.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.osimage)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox8)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit(); + this.panel3.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); this.rightclickbackproperties.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox12)).BeginInit(); this.SuspendLayout(); // // panel1 @@ -126,9 +90,9 @@ namespace Histacom2.OS.WinXPBad | System.Windows.Forms.AnchorStyles.Right))); this.panel1.AutoSize = true; this.panel1.Controls.Add(this.panel2); - this.panel1.Location = new System.Drawing.Point(0, 451); + this.panel1.Location = new System.Drawing.Point(0, 571); this.panel1.Name = "panel1"; - this.panel1.Size = new System.Drawing.Size(640, 29); + this.panel1.Size = new System.Drawing.Size(800, 29); this.panel1.TabIndex = 0; // // panel2 @@ -146,17 +110,18 @@ namespace Histacom2.OS.WinXPBad this.taskbar.Controls.Add(this.taskbarItems); this.taskbar.Controls.Add(this.startbutton); this.taskbar.Dock = System.Windows.Forms.DockStyle.Bottom; - this.taskbar.Location = new System.Drawing.Point(0, 450); + this.taskbar.Location = new System.Drawing.Point(0, 570); this.taskbar.Name = "taskbar"; - this.taskbar.Size = new System.Drawing.Size(640, 30); + this.taskbar.Size = new System.Drawing.Size(800, 30); this.taskbar.TabIndex = 2; // // clockPanel // this.clockPanel.BackgroundImage = global::Histacom2.Properties.Resources.WinXPTaskbarTime; + this.clockPanel.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; this.clockPanel.Controls.Add(this.taskbartime); this.clockPanel.Dock = System.Windows.Forms.DockStyle.Right; - this.clockPanel.Location = new System.Drawing.Point(575, 0); + this.clockPanel.Location = new System.Drawing.Point(735, 0); this.clockPanel.Name = "clockPanel"; this.clockPanel.Size = new System.Drawing.Size(65, 30); this.clockPanel.TabIndex = 4; @@ -196,720 +161,144 @@ namespace Histacom2.OS.WinXPBad // startmenu // this.startmenu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.startmenu.BackColor = System.Drawing.Color.Silver; - this.startmenu.Controls.Add(this.startmenuitems); - this.startmenu.Controls.Add(this.ossidestartmenu); - this.startmenu.Location = new System.Drawing.Point(0, 160); + this.startmenu.BackColor = System.Drawing.Color.White; + this.startmenu.Controls.Add(this.pictureBox12); + this.startmenu.Controls.Add(this.pictureBox11); + this.startmenu.Controls.Add(this.pictureBox10); + this.startmenu.Controls.Add(this.pictureBox9); + this.startmenu.Controls.Add(this.pictureBox8); + this.startmenu.Controls.Add(this.pictureBox7); + this.startmenu.Controls.Add(this.pictureBox6); + this.startmenu.Controls.Add(this.pictureBox5); + this.startmenu.Controls.Add(this.pictureBox4); + this.startmenu.Controls.Add(this.panel3); + this.startmenu.Location = new System.Drawing.Point(0, 133); this.startmenu.Name = "startmenu"; - this.startmenu.Size = new System.Drawing.Size(161, 295); + this.startmenu.Size = new System.Drawing.Size(380, 438); this.startmenu.TabIndex = 3; // - // startmenuitems - // - this.startmenuitems.AutoSize = false; - this.startmenuitems.BackColor = System.Drawing.Color.Silver; - this.startmenuitems.Dock = System.Windows.Forms.DockStyle.None; - this.startmenuitems.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.ProgramsToolStripMenuItem, - this.DocumentsToolStripMenuItem, - this.SettingsToolStripMenuItem, - this.FindToolStripMenuItem, - this.HelpToolStripMenuItem, - this.RunToolStripMenuItem, - this.SuspendToolStripMenuItem, - this.ShutdownToolStripMenuItem}); - this.startmenuitems.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.VerticalStackWithOverflow; - this.startmenuitems.Location = new System.Drawing.Point(22, 2); - this.startmenuitems.Margin = new System.Windows.Forms.Padding(0, 0, 5, 0); - this.startmenuitems.Name = "startmenuitems"; - this.startmenuitems.Padding = new System.Windows.Forms.Padding(6, 2, 0, 0); - this.startmenuitems.RenderMode = System.Windows.Forms.ToolStripRenderMode.System; - this.startmenuitems.Size = new System.Drawing.Size(137, 309); - this.startmenuitems.TabIndex = 0; - this.startmenuitems.Text = "StartMenu"; - // - // ProgramsToolStripMenuItem - // - this.ProgramsToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.ProgramsToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.ProgramsToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.ProgramsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.AccessoriesToolStripMenuItem, - this.StartUpToolStripMenuItem, - this.MSDOSPromptToolStripMenuItem, - this.InternetExplorerToolStripMenuItem, - this.MSDOSPromptToolStripMenuItem1, - this.OutlookExpressToolStripMenuItem, - this.WindowsExplorerToolStripMenuItem1, - this.GuessTheNumberToolStripMenuItem, - this.StartRunnerToolStripMenuItem, - this.ErrorBlasterToolStripMenuItem, - this.SkindowsToolStripMenuItem, - this.WebChatToolStripMenuItem, - this.TimeDistorterToolStripMenuItem}); - this.ProgramsToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicPrograms; - this.ProgramsToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.ProgramsToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.ProgramsToolStripMenuItem.Name = "ProgramsToolStripMenuItem"; - this.ProgramsToolStripMenuItem.Padding = new System.Windows.Forms.Padding(4, 0, 25, 0); - this.ProgramsToolStripMenuItem.Size = new System.Drawing.Size(130, 36); - this.ProgramsToolStripMenuItem.Text = "Programs"; - // - // AccessoriesToolStripMenuItem - // - this.AccessoriesToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.AccessoriesToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.AccessoriesToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.AccessoriesToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.CommunicationsToolStripMenuItem, - this.MultimediaToolStripMenuItem, - this.SystemToolsToolStripMenuItem, - this.AddressBookToolStripMenuItem, - this.CalculatorToolStripMenuItem, - this.HyperTerminalToolStripMenuItem, - this.ImagingToolStripMenuItem, - this.NotePadToolStripMenuItem, - this.OnlineRegistrationToolStripMenuItem, - this.PaintToolStripMenuItem, - this.PhoneDialerToolStripMenuItem, - this.WordPadToolStripMenuItem}); - this.AccessoriesToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicProgramItem; - this.AccessoriesToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.AccessoriesToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.AccessoriesToolStripMenuItem.Name = "AccessoriesToolStripMenuItem"; - this.AccessoriesToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.AccessoriesToolStripMenuItem.Text = "Accessories"; - // - // CommunicationsToolStripMenuItem - // - this.CommunicationsToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.CommunicationsToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.CommunicationsToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.CommunicationsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.InternetConnectionWizardToolStripMenuItem, - this.NetMeetingToolStripMenuItem}); - this.CommunicationsToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicProgramItem; - this.CommunicationsToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.CommunicationsToolStripMenuItem.Name = "CommunicationsToolStripMenuItem"; - this.CommunicationsToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.CommunicationsToolStripMenuItem.Text = "Communications"; - // - // InternetConnectionWizardToolStripMenuItem - // - this.InternetConnectionWizardToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.InternetConnectionWizardToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.InternetConnectionWizardToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.InternetConnectionWizardToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("InternetConnectionWizardToolStripMenuItem.Image"))); - this.InternetConnectionWizardToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.InternetConnectionWizardToolStripMenuItem.Name = "InternetConnectionWizardToolStripMenuItem"; - this.InternetConnectionWizardToolStripMenuItem.Size = new System.Drawing.Size(219, 22); - this.InternetConnectionWizardToolStripMenuItem.Text = "Internet Connection Wizard"; - this.InternetConnectionWizardToolStripMenuItem.Click += new System.EventHandler(this.temp_for_std); - // - // NetMeetingToolStripMenuItem - // - this.NetMeetingToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.NetMeetingToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.NetMeetingToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.NetMeetingToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("NetMeetingToolStripMenuItem.Image"))); - this.NetMeetingToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.NetMeetingToolStripMenuItem.Name = "NetMeetingToolStripMenuItem"; - this.NetMeetingToolStripMenuItem.Size = new System.Drawing.Size(219, 22); - this.NetMeetingToolStripMenuItem.Text = "NetMeeting"; - this.NetMeetingToolStripMenuItem.Click += new System.EventHandler(this.WebChatToolStripMenuItem_Click); - // - // MultimediaToolStripMenuItem - // - this.MultimediaToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.MultimediaToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.MultimediaToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.MultimediaToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.CDPlayerToolStripMenuItem, - this.SoundRecorderToolStripMenuItem, - this.VolumeControlToolStripMenuItem, - this.WindowsMediaPlayerToolStripMenuItem}); - this.MultimediaToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicProgramItem; - this.MultimediaToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.MultimediaToolStripMenuItem.Name = "MultimediaToolStripMenuItem"; - this.MultimediaToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.MultimediaToolStripMenuItem.Text = "Multimedia"; - // - // CDPlayerToolStripMenuItem - // - this.CDPlayerToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.CDPlayerToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.CDPlayerToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.CDPlayerToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("CDPlayerToolStripMenuItem.Image"))); - this.CDPlayerToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.CDPlayerToolStripMenuItem.Name = "CDPlayerToolStripMenuItem"; - this.CDPlayerToolStripMenuItem.Size = new System.Drawing.Size(194, 22); - this.CDPlayerToolStripMenuItem.Text = "CD Player"; - // - // SoundRecorderToolStripMenuItem - // - this.SoundRecorderToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.SoundRecorderToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.SoundRecorderToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.SoundRecorderToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("SoundRecorderToolStripMenuItem.Image"))); - this.SoundRecorderToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.SoundRecorderToolStripMenuItem.Name = "SoundRecorderToolStripMenuItem"; - this.SoundRecorderToolStripMenuItem.Size = new System.Drawing.Size(194, 22); - this.SoundRecorderToolStripMenuItem.Text = "Sound Recorder"; - // - // VolumeControlToolStripMenuItem - // - this.VolumeControlToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.VolumeControlToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.VolumeControlToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.VolumeControlToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("VolumeControlToolStripMenuItem.Image"))); - this.VolumeControlToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.VolumeControlToolStripMenuItem.Name = "VolumeControlToolStripMenuItem"; - this.VolumeControlToolStripMenuItem.Size = new System.Drawing.Size(194, 22); - this.VolumeControlToolStripMenuItem.Text = "Volume Control"; - // - // WindowsMediaPlayerToolStripMenuItem - // - this.WindowsMediaPlayerToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.WindowsMediaPlayerToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.WindowsMediaPlayerToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.WindowsMediaPlayerToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("WindowsMediaPlayerToolStripMenuItem.Image"))); - this.WindowsMediaPlayerToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.WindowsMediaPlayerToolStripMenuItem.Name = "WindowsMediaPlayerToolStripMenuItem"; - this.WindowsMediaPlayerToolStripMenuItem.Size = new System.Drawing.Size(194, 22); - this.WindowsMediaPlayerToolStripMenuItem.Text = "Windows Media Player"; - // - // SystemToolsToolStripMenuItem - // - this.SystemToolsToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.SystemToolsToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.SystemToolsToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.SystemToolsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.DiskDefragmenterToolStripMenuItem, - this.ScanDiskToolStripMenuItem}); - this.SystemToolsToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicProgramItem; - this.SystemToolsToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.SystemToolsToolStripMenuItem.Name = "SystemToolsToolStripMenuItem"; - this.SystemToolsToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.SystemToolsToolStripMenuItem.Text = "System Tools"; - // - // DiskDefragmenterToolStripMenuItem - // - this.DiskDefragmenterToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.DiskDefragmenterToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.DiskDefragmenterToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.DiskDefragmenterToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("DiskDefragmenterToolStripMenuItem.Image"))); - this.DiskDefragmenterToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.DiskDefragmenterToolStripMenuItem.Name = "DiskDefragmenterToolStripMenuItem"; - this.DiskDefragmenterToolStripMenuItem.Size = new System.Drawing.Size(172, 22); - this.DiskDefragmenterToolStripMenuItem.Text = "Disk Defragmenter"; - // - // ScanDiskToolStripMenuItem - // - this.ScanDiskToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.ScanDiskToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.ScanDiskToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.ScanDiskToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("ScanDiskToolStripMenuItem.Image"))); - this.ScanDiskToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.ScanDiskToolStripMenuItem.Name = "ScanDiskToolStripMenuItem"; - this.ScanDiskToolStripMenuItem.Size = new System.Drawing.Size(172, 22); - this.ScanDiskToolStripMenuItem.Text = "ScanDisk"; - // - // AddressBookToolStripMenuItem - // - this.AddressBookToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.AddressBookToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.AddressBookToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.AddressBookToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("AddressBookToolStripMenuItem.Image"))); - this.AddressBookToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.AddressBookToolStripMenuItem.Name = "AddressBookToolStripMenuItem"; - this.AddressBookToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.AddressBookToolStripMenuItem.Text = "Address Book"; - this.AddressBookToolStripMenuItem.Click += new System.EventHandler(this.AddressBookToolStripMenuItem_Click); - // - // CalculatorToolStripMenuItem - // - this.CalculatorToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.CalculatorToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.CalculatorToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.CalculatorToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("CalculatorToolStripMenuItem.Image"))); - this.CalculatorToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.CalculatorToolStripMenuItem.Name = "CalculatorToolStripMenuItem"; - this.CalculatorToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.CalculatorToolStripMenuItem.Text = "Calculator"; - // - // HyperTerminalToolStripMenuItem - // - this.HyperTerminalToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.HyperTerminalToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.HyperTerminalToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.HyperTerminalToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicFolderSmall; - this.HyperTerminalToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.HyperTerminalToolStripMenuItem.Name = "HyperTerminalToolStripMenuItem"; - this.HyperTerminalToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.HyperTerminalToolStripMenuItem.Text = "HyperTerminal"; - // - // ImagingToolStripMenuItem - // - this.ImagingToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.ImagingToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.ImagingToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.ImagingToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("ImagingToolStripMenuItem.Image"))); - this.ImagingToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.ImagingToolStripMenuItem.Name = "ImagingToolStripMenuItem"; - this.ImagingToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.ImagingToolStripMenuItem.Text = "Imaging"; - // - // NotePadToolStripMenuItem - // - this.NotePadToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.NotePadToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.NotePadToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.NotePadToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("NotePadToolStripMenuItem.Image"))); - this.NotePadToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.NotePadToolStripMenuItem.Name = "NotePadToolStripMenuItem"; - this.NotePadToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.NotePadToolStripMenuItem.Text = "Notepad"; - this.NotePadToolStripMenuItem.Click += new System.EventHandler(this.NotePadToolStripMenuItem_Click); - // - // OnlineRegistrationToolStripMenuItem - // - this.OnlineRegistrationToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.OnlineRegistrationToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.OnlineRegistrationToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.OnlineRegistrationToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("OnlineRegistrationToolStripMenuItem.Image"))); - this.OnlineRegistrationToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.OnlineRegistrationToolStripMenuItem.Name = "OnlineRegistrationToolStripMenuItem"; - this.OnlineRegistrationToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.OnlineRegistrationToolStripMenuItem.Text = "Online Registration"; - // - // PaintToolStripMenuItem - // - this.PaintToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.PaintToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.PaintToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.PaintToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("PaintToolStripMenuItem.Image"))); - this.PaintToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.PaintToolStripMenuItem.Name = "PaintToolStripMenuItem"; - this.PaintToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.PaintToolStripMenuItem.Text = "Paintbrush"; - // - // PhoneDialerToolStripMenuItem - // - this.PhoneDialerToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.PhoneDialerToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.PhoneDialerToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.PhoneDialerToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("PhoneDialerToolStripMenuItem.Image"))); - this.PhoneDialerToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.PhoneDialerToolStripMenuItem.Name = "PhoneDialerToolStripMenuItem"; - this.PhoneDialerToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.PhoneDialerToolStripMenuItem.Text = "Phone Dialer"; - // - // WordPadToolStripMenuItem - // - this.WordPadToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.WordPadToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.WordPadToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.WordPadToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("WordPadToolStripMenuItem.Image"))); - this.WordPadToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.WordPadToolStripMenuItem.Name = "WordPadToolStripMenuItem"; - this.WordPadToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.WordPadToolStripMenuItem.Text = "WordPad"; - this.WordPadToolStripMenuItem.Click += new System.EventHandler(this.WordPadToolStripMenuItem_Click); - // - // StartUpToolStripMenuItem - // - this.StartUpToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.StartUpToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.StartUpToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.StartUpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.AOLInternetFREETrialToolStripMenuItem, - this.ATTWorldNetSignupToolStripMenuItem, - this.SetupCompuServe30ToolStripMenuItem, - this.SetupWOWFromCompuServeToolStripMenuItem}); - this.StartUpToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicProgramItem; - this.StartUpToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.StartUpToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.StartUpToolStripMenuItem.Name = "StartUpToolStripMenuItem"; - this.StartUpToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.StartUpToolStripMenuItem.Text = "Online Services"; - // - // AOLInternetFREETrialToolStripMenuItem - // - this.AOLInternetFREETrialToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.AOLInternetFREETrialToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.AOLInternetFREETrialToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.AOLInternetFREETrialToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.AOLInternetFREETrialToolStripMenuItem.Name = "AOLInternetFREETrialToolStripMenuItem"; - this.AOLInternetFREETrialToolStripMenuItem.Size = new System.Drawing.Size(241, 22); - this.AOLInternetFREETrialToolStripMenuItem.Text = "AOL & Internet FREE Trial!"; - // - // ATTWorldNetSignupToolStripMenuItem - // - this.ATTWorldNetSignupToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.ATTWorldNetSignupToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.ATTWorldNetSignupToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.ATTWorldNetSignupToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.ATTWorldNetSignupToolStripMenuItem.Name = "ATTWorldNetSignupToolStripMenuItem"; - this.ATTWorldNetSignupToolStripMenuItem.Size = new System.Drawing.Size(241, 22); - this.ATTWorldNetSignupToolStripMenuItem.Text = "AT&T WorldNet Signup"; - // - // SetupCompuServe30ToolStripMenuItem - // - this.SetupCompuServe30ToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.SetupCompuServe30ToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.SetupCompuServe30ToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.SetupCompuServe30ToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.SetupCompuServe30ToolStripMenuItem.Name = "SetupCompuServe30ToolStripMenuItem"; - this.SetupCompuServe30ToolStripMenuItem.Size = new System.Drawing.Size(241, 22); - this.SetupCompuServe30ToolStripMenuItem.Text = "Setup CompuServe 3.0"; - // - // SetupWOWFromCompuServeToolStripMenuItem - // - this.SetupWOWFromCompuServeToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.SetupWOWFromCompuServeToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.SetupWOWFromCompuServeToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.SetupWOWFromCompuServeToolStripMenuItem.Name = "SetupWOWFromCompuServeToolStripMenuItem"; - this.SetupWOWFromCompuServeToolStripMenuItem.Size = new System.Drawing.Size(241, 22); - this.SetupWOWFromCompuServeToolStripMenuItem.Text = "Setup WOW! from CompuServe"; - // - // MSDOSPromptToolStripMenuItem - // - this.MSDOSPromptToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.MSDOSPromptToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.MSDOSPromptToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.MSDOSPromptToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.EmptyToolStripMenuItem}); - this.MSDOSPromptToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicProgramItem; - this.MSDOSPromptToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.MSDOSPromptToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.MSDOSPromptToolStripMenuItem.Name = "MSDOSPromptToolStripMenuItem"; - this.MSDOSPromptToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.MSDOSPromptToolStripMenuItem.Text = "StartUp"; - // - // EmptyToolStripMenuItem - // - this.EmptyToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.EmptyToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.EmptyToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.EmptyToolStripMenuItem.Name = "EmptyToolStripMenuItem"; - this.EmptyToolStripMenuItem.Size = new System.Drawing.Size(116, 22); - this.EmptyToolStripMenuItem.Text = "(Empty)"; - // - // InternetExplorerToolStripMenuItem - // - this.InternetExplorerToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.InternetExplorerToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.InternetExplorerToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.InternetExplorerToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("InternetExplorerToolStripMenuItem.Image"))); - this.InternetExplorerToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.InternetExplorerToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.InternetExplorerToolStripMenuItem.Name = "InternetExplorerToolStripMenuItem"; - this.InternetExplorerToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.InternetExplorerToolStripMenuItem.Text = "Internet Explorer"; - this.InternetExplorerToolStripMenuItem.Click += new System.EventHandler(this.InternetExplorerToolStripMenuItem_Click); - // - // MSDOSPromptToolStripMenuItem1 - // - this.MSDOSPromptToolStripMenuItem1.BackColor = System.Drawing.Color.Silver; - this.MSDOSPromptToolStripMenuItem1.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.MSDOSPromptToolStripMenuItem1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.MSDOSPromptToolStripMenuItem1.Image = ((System.Drawing.Image)(resources.GetObject("MSDOSPromptToolStripMenuItem1.Image"))); - this.MSDOSPromptToolStripMenuItem1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.MSDOSPromptToolStripMenuItem1.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.MSDOSPromptToolStripMenuItem1.Name = "MSDOSPromptToolStripMenuItem1"; - this.MSDOSPromptToolStripMenuItem1.Size = new System.Drawing.Size(181, 28); - this.MSDOSPromptToolStripMenuItem1.Text = "MS-DOS Prompt"; - this.MSDOSPromptToolStripMenuItem1.Click += new System.EventHandler(this.MSDOSPromptToolStripMenuItem1_Click); - // - // OutlookExpressToolStripMenuItem - // - this.OutlookExpressToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.OutlookExpressToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.OutlookExpressToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.OutlookExpressToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("OutlookExpressToolStripMenuItem.Image"))); - this.OutlookExpressToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.OutlookExpressToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.OutlookExpressToolStripMenuItem.Name = "OutlookExpressToolStripMenuItem"; - this.OutlookExpressToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.OutlookExpressToolStripMenuItem.Text = "Outlook Express"; - // - // WindowsExplorerToolStripMenuItem1 - // - this.WindowsExplorerToolStripMenuItem1.BackColor = System.Drawing.Color.Silver; - this.WindowsExplorerToolStripMenuItem1.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.WindowsExplorerToolStripMenuItem1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.WindowsExplorerToolStripMenuItem1.Image = ((System.Drawing.Image)(resources.GetObject("WindowsExplorerToolStripMenuItem1.Image"))); - this.WindowsExplorerToolStripMenuItem1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.WindowsExplorerToolStripMenuItem1.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.WindowsExplorerToolStripMenuItem1.Name = "WindowsExplorerToolStripMenuItem1"; - this.WindowsExplorerToolStripMenuItem1.Size = new System.Drawing.Size(181, 28); - this.WindowsExplorerToolStripMenuItem1.Text = "Windows Explorer"; - this.WindowsExplorerToolStripMenuItem1.Click += new System.EventHandler(this.WindowsExplorerToolStripMenuItem1_Click); - // - // GuessTheNumberToolStripMenuItem - // - this.GuessTheNumberToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.GuessTheNumberToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.GuessTheNumberToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.GuessTheNumberToolStripMenuItem.Name = "GuessTheNumberToolStripMenuItem"; - this.GuessTheNumberToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.GuessTheNumberToolStripMenuItem.Text = "Guess The Number"; - this.GuessTheNumberToolStripMenuItem.Visible = false; - // - // StartRunnerToolStripMenuItem - // - this.StartRunnerToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.StartRunnerToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.StartRunnerToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.StartRunnerToolStripMenuItem.Name = "StartRunnerToolStripMenuItem"; - this.StartRunnerToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.StartRunnerToolStripMenuItem.Text = "Start Runner"; - this.StartRunnerToolStripMenuItem.Visible = false; - // - // ErrorBlasterToolStripMenuItem - // - this.ErrorBlasterToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.ErrorBlasterToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.ErrorBlasterToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.ErrorBlasterToolStripMenuItem.Name = "ErrorBlasterToolStripMenuItem"; - this.ErrorBlasterToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.ErrorBlasterToolStripMenuItem.Text = "Error Blaster"; - this.ErrorBlasterToolStripMenuItem.Visible = false; - // - // SkindowsToolStripMenuItem - // - this.SkindowsToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.SkindowsToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.SkindowsToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.SkindowsToolStripMenuItem.Name = "SkindowsToolStripMenuItem"; - this.SkindowsToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.SkindowsToolStripMenuItem.Text = "Skindows 95"; - this.SkindowsToolStripMenuItem.Visible = false; - // - // WebChatToolStripMenuItem - // - this.WebChatToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.WebChatToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.WebChatToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.WebChatToolStripMenuItem.Name = "WebChatToolStripMenuItem"; - this.WebChatToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.WebChatToolStripMenuItem.Text = "Web Chat"; - this.WebChatToolStripMenuItem.Visible = false; - // - // TimeDistorterToolStripMenuItem - // - this.TimeDistorterToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.TimeDistorterToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.TimeDistorterToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.TimeDistorterToolStripMenuItem.Name = "TimeDistorterToolStripMenuItem"; - this.TimeDistorterToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.TimeDistorterToolStripMenuItem.Text = "Time Distorter"; - this.TimeDistorterToolStripMenuItem.Visible = false; - this.TimeDistorterToolStripMenuItem.Click += new System.EventHandler(this.TimeDistorterToolStripMenuItem_Click); - // - // DocumentsToolStripMenuItem - // - this.DocumentsToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.DocumentsToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.DocumentsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.downloaderTestToolStripMenuItem, - this.installerTestToolStripMenuItem, - this.storyTest1ToolStripMenuItem}); - this.DocumentsToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicDocuments; - this.DocumentsToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.DocumentsToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.DocumentsToolStripMenuItem.Name = "DocumentsToolStripMenuItem"; - this.DocumentsToolStripMenuItem.Padding = new System.Windows.Forms.Padding(4, 0, 25, 0); - this.DocumentsToolStripMenuItem.Size = new System.Drawing.Size(130, 36); - this.DocumentsToolStripMenuItem.Text = "Documents"; - // - // downloaderTestToolStripMenuItem - // - this.downloaderTestToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.downloaderTestToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("downloaderTestToolStripMenuItem.BackgroundImage"))); - this.downloaderTestToolStripMenuItem.Name = "downloaderTestToolStripMenuItem"; - this.downloaderTestToolStripMenuItem.Size = new System.Drawing.Size(159, 22); - this.downloaderTestToolStripMenuItem.Text = "DownloaderTest"; - this.downloaderTestToolStripMenuItem.Click += new System.EventHandler(this.downloaderTestToolStripMenuItem_Click); - // - // installerTestToolStripMenuItem - // - this.installerTestToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.installerTestToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("installerTestToolStripMenuItem.BackgroundImage"))); - this.installerTestToolStripMenuItem.Name = "installerTestToolStripMenuItem"; - this.installerTestToolStripMenuItem.Size = new System.Drawing.Size(159, 22); - this.installerTestToolStripMenuItem.Text = "InstallerTest"; - this.installerTestToolStripMenuItem.Click += new System.EventHandler(this.installerTestToolStripMenuItem_Click); - // - // storyTest1ToolStripMenuItem - // - this.storyTest1ToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.storyTest1ToolStripMenuItem.Name = "storyTest1ToolStripMenuItem"; - this.storyTest1ToolStripMenuItem.Size = new System.Drawing.Size(159, 22); - this.storyTest1ToolStripMenuItem.Text = "StoryTest1"; - this.storyTest1ToolStripMenuItem.Click += new System.EventHandler(this.storyTest1ToolStripMenuItem_Click); - // - // SettingsToolStripMenuItem - // - this.SettingsToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.SettingsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.ControlPanelToolStripMenuItem, - this.PrintersToolStripMenuItem, - this.TaskbarToolStripMenuItem}); - this.SettingsToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicSettings; - this.SettingsToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.SettingsToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.SettingsToolStripMenuItem.Name = "SettingsToolStripMenuItem"; - this.SettingsToolStripMenuItem.Padding = new System.Windows.Forms.Padding(4, 0, 25, 0); - this.SettingsToolStripMenuItem.Size = new System.Drawing.Size(130, 36); - this.SettingsToolStripMenuItem.Text = "Settings"; - // - // ControlPanelToolStripMenuItem - // - this.ControlPanelToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.ControlPanelToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("ControlPanelToolStripMenuItem.BackgroundImage"))); - this.ControlPanelToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.ControlPanelToolStripMenuItem.Name = "ControlPanelToolStripMenuItem"; - this.ControlPanelToolStripMenuItem.Size = new System.Drawing.Size(152, 22); - this.ControlPanelToolStripMenuItem.Text = "Control Panel"; - // - // PrintersToolStripMenuItem - // - this.PrintersToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.PrintersToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("PrintersToolStripMenuItem.BackgroundImage"))); - this.PrintersToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.PrintersToolStripMenuItem.Name = "PrintersToolStripMenuItem"; - this.PrintersToolStripMenuItem.Size = new System.Drawing.Size(152, 22); - this.PrintersToolStripMenuItem.Text = "Printers"; - // - // TaskbarToolStripMenuItem - // - this.TaskbarToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.TaskbarToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("TaskbarToolStripMenuItem.BackgroundImage"))); - this.TaskbarToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.TaskbarToolStripMenuItem.Name = "TaskbarToolStripMenuItem"; - this.TaskbarToolStripMenuItem.Size = new System.Drawing.Size(152, 22); - this.TaskbarToolStripMenuItem.Text = "Taskbar"; - // - // FindToolStripMenuItem - // - this.FindToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.FindToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("FindToolStripMenuItem.BackgroundImage"))); - this.FindToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.FilesOrFoldersToolStripMenuItem, - this.ComputerToolStripMenuItem, - this.OnTheInternetToolStripMenuItem, - this.PeopleToolStripMenuItem}); - this.FindToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicFind; - this.FindToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.FindToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.FindToolStripMenuItem.Name = "FindToolStripMenuItem"; - this.FindToolStripMenuItem.Padding = new System.Windows.Forms.Padding(4, 0, 25, 0); - this.FindToolStripMenuItem.RightToLeft = System.Windows.Forms.RightToLeft.No; - this.FindToolStripMenuItem.Size = new System.Drawing.Size(130, 36); - this.FindToolStripMenuItem.Text = "Find"; - // - // FilesOrFoldersToolStripMenuItem - // - this.FilesOrFoldersToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.FilesOrFoldersToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("FilesOrFoldersToolStripMenuItem.BackgroundImage"))); - this.FilesOrFoldersToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.FilesOrFoldersToolStripMenuItem.Name = "FilesOrFoldersToolStripMenuItem"; - this.FilesOrFoldersToolStripMenuItem.Size = new System.Drawing.Size(163, 22); - this.FilesOrFoldersToolStripMenuItem.Text = "Files or Folders..."; - // - // ComputerToolStripMenuItem - // - this.ComputerToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.ComputerToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("ComputerToolStripMenuItem.BackgroundImage"))); - this.ComputerToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.ComputerToolStripMenuItem.Name = "ComputerToolStripMenuItem"; - this.ComputerToolStripMenuItem.Size = new System.Drawing.Size(163, 22); - this.ComputerToolStripMenuItem.Text = "Computer..."; - // - // OnTheInternetToolStripMenuItem - // - this.OnTheInternetToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.OnTheInternetToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("OnTheInternetToolStripMenuItem.BackgroundImage"))); - this.OnTheInternetToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.OnTheInternetToolStripMenuItem.Name = "OnTheInternetToolStripMenuItem"; - this.OnTheInternetToolStripMenuItem.Size = new System.Drawing.Size(163, 22); - this.OnTheInternetToolStripMenuItem.Text = "On the Internet..."; - // - // PeopleToolStripMenuItem - // - this.PeopleToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.PeopleToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("PeopleToolStripMenuItem.BackgroundImage"))); - this.PeopleToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.PeopleToolStripMenuItem.Name = "PeopleToolStripMenuItem"; - this.PeopleToolStripMenuItem.Size = new System.Drawing.Size(163, 22); - this.PeopleToolStripMenuItem.Text = "People..."; - // - // HelpToolStripMenuItem - // - this.HelpToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.HelpToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicHelp; - this.HelpToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.HelpToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.HelpToolStripMenuItem.Name = "HelpToolStripMenuItem"; - this.HelpToolStripMenuItem.Padding = new System.Windows.Forms.Padding(4, 0, 25, 0); - this.HelpToolStripMenuItem.RightToLeft = System.Windows.Forms.RightToLeft.No; - this.HelpToolStripMenuItem.Size = new System.Drawing.Size(130, 36); - this.HelpToolStripMenuItem.Text = "Help"; - // - // RunToolStripMenuItem - // - this.RunToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.RunToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicRun; - this.RunToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.RunToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.RunToolStripMenuItem.Name = "RunToolStripMenuItem"; - this.RunToolStripMenuItem.Padding = new System.Windows.Forms.Padding(4, 0, 25, 0); - this.RunToolStripMenuItem.RightToLeft = System.Windows.Forms.RightToLeft.No; - this.RunToolStripMenuItem.Size = new System.Drawing.Size(130, 36); - this.RunToolStripMenuItem.Text = "Run..."; - // - // SuspendToolStripMenuItem - // - this.SuspendToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.SuspendToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicSuspend; - this.SuspendToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.SuspendToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.SuspendToolStripMenuItem.Name = "SuspendToolStripMenuItem"; - this.SuspendToolStripMenuItem.Padding = new System.Windows.Forms.Padding(4, 0, 25, 0); - this.SuspendToolStripMenuItem.Size = new System.Drawing.Size(130, 36); - this.SuspendToolStripMenuItem.Text = "Suspend"; - // - // ShutdownToolStripMenuItem - // - this.ShutdownToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.ShutdownToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicShutdown; - this.ShutdownToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.ShutdownToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.ShutdownToolStripMenuItem.Name = "ShutdownToolStripMenuItem"; - this.ShutdownToolStripMenuItem.Padding = new System.Windows.Forms.Padding(4, 0, 25, 0); - this.ShutdownToolStripMenuItem.Size = new System.Drawing.Size(130, 36); - this.ShutdownToolStripMenuItem.Text = "Shut Down..."; - this.ShutdownToolStripMenuItem.Click += new System.EventHandler(this.ShutdownToolStripMenuItem_Click); - // - // ossidestartmenu - // - this.ossidestartmenu.Controls.Add(this.osimage); - this.ossidestartmenu.Location = new System.Drawing.Point(0, 0); - this.ossidestartmenu.Name = "ossidestartmenu"; - this.ossidestartmenu.Size = new System.Drawing.Size(21, 297); - this.ossidestartmenu.TabIndex = 4; - // - // osimage - // - this.osimage.Dock = System.Windows.Forms.DockStyle.Fill; - this.osimage.Image = global::Histacom2.Properties.Resources.Win98SideBar; - this.osimage.Location = new System.Drawing.Point(0, 0); - this.osimage.Name = "osimage"; - this.osimage.Size = new System.Drawing.Size(21, 297); - this.osimage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.osimage.TabIndex = 0; - this.osimage.TabStop = false; + // pictureBox11 + // + this.pictureBox11.BackgroundImage = global::Histacom2.Properties.Resources.WinXPStartMenuBottomLeft; + this.pictureBox11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox11.Location = new System.Drawing.Point(2, 396); + this.pictureBox11.Name = "pictureBox11"; + this.pictureBox11.Size = new System.Drawing.Size(188, 1); + this.pictureBox11.TabIndex = 8; + this.pictureBox11.TabStop = false; + // + // pictureBox10 + // + this.pictureBox10.BackgroundImage = global::Histacom2.Properties.Resources.WinXPStartMenuBottomCenter2; + this.pictureBox10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox10.Location = new System.Drawing.Point(2, 397); + this.pictureBox10.Name = "pictureBox10"; + this.pictureBox10.Size = new System.Drawing.Size(376, 41); + this.pictureBox10.TabIndex = 7; + this.pictureBox10.TabStop = false; + // + // pictureBox9 + // + this.pictureBox9.BackgroundImage = global::Histacom2.Properties.Resources.WinXPStartMenuBottomRight2; + this.pictureBox9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox9.Location = new System.Drawing.Point(378, 397); + this.pictureBox9.Name = "pictureBox9"; + this.pictureBox9.Size = new System.Drawing.Size(2, 41); + this.pictureBox9.TabIndex = 6; + this.pictureBox9.TabStop = false; + // + // pictureBox8 + // + this.pictureBox8.BackgroundImage = global::Histacom2.Properties.Resources.WinXPStartMenuBottomLeft2; + this.pictureBox8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox8.Location = new System.Drawing.Point(0, 397); + this.pictureBox8.Name = "pictureBox8"; + this.pictureBox8.Size = new System.Drawing.Size(2, 41); + this.pictureBox8.TabIndex = 5; + this.pictureBox8.TabStop = false; + // + // pictureBox7 + // + this.pictureBox7.BackgroundImage = global::Histacom2.Properties.Resources.WinXPStartMenuRightGradient; + this.pictureBox7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox7.Location = new System.Drawing.Point(190, 63); + this.pictureBox7.Name = "pictureBox7"; + this.pictureBox7.Size = new System.Drawing.Size(188, 3); + this.pictureBox7.TabIndex = 4; + this.pictureBox7.TabStop = false; + // + // pictureBox6 + // + this.pictureBox6.BackgroundImage = global::Histacom2.Properties.Resources.WinXPStartMenuRight; + this.pictureBox6.Location = new System.Drawing.Point(378, 63); + this.pictureBox6.Name = "pictureBox6"; + this.pictureBox6.Size = new System.Drawing.Size(2, 334); + this.pictureBox6.TabIndex = 3; + this.pictureBox6.TabStop = false; + // + // pictureBox5 + // + this.pictureBox5.BackgroundImage = global::Histacom2.Properties.Resources.WinXPStartMenuLeftGradient; + this.pictureBox5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox5.Location = new System.Drawing.Point(2, 63); + this.pictureBox5.Name = "pictureBox5"; + this.pictureBox5.Size = new System.Drawing.Size(188, 3); + this.pictureBox5.TabIndex = 2; + this.pictureBox5.TabStop = false; + // + // pictureBox4 + // + this.pictureBox4.BackgroundImage = global::Histacom2.Properties.Resources.WinXPStartMenuLeft; + this.pictureBox4.Location = new System.Drawing.Point(0, 63); + this.pictureBox4.Name = "pictureBox4"; + this.pictureBox4.Size = new System.Drawing.Size(2, 334); + this.pictureBox4.TabIndex = 1; + this.pictureBox4.TabStop = false; + // + // panel3 + // + this.panel3.Controls.Add(this.pictureBox3); + this.panel3.Controls.Add(this.pictureBox2); + this.panel3.Controls.Add(this.pictureBox1); + this.panel3.Dock = System.Windows.Forms.DockStyle.Top; + this.panel3.Location = new System.Drawing.Point(0, 0); + this.panel3.Name = "panel3"; + this.panel3.Size = new System.Drawing.Size(380, 63); + this.panel3.TabIndex = 0; + // + // pictureBox3 + // + this.pictureBox3.BackColor = System.Drawing.Color.Blue; + this.pictureBox3.BackgroundImage = global::Histacom2.Properties.Resources.WinXPStartMenuTopCenter; + this.pictureBox3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox3.Dock = System.Windows.Forms.DockStyle.Fill; + this.pictureBox3.Location = new System.Drawing.Point(8, 0); + this.pictureBox3.Name = "pictureBox3"; + this.pictureBox3.Size = new System.Drawing.Size(364, 63); + this.pictureBox3.TabIndex = 2; + this.pictureBox3.TabStop = false; + // + // pictureBox2 + // + this.pictureBox2.BackColor = System.Drawing.Color.SkyBlue; + this.pictureBox2.BackgroundImage = global::Histacom2.Properties.Resources.WinXPStartMenuTopRight; + this.pictureBox2.Dock = System.Windows.Forms.DockStyle.Right; + this.pictureBox2.Location = new System.Drawing.Point(372, 0); + this.pictureBox2.Name = "pictureBox2"; + this.pictureBox2.Size = new System.Drawing.Size(8, 63); + this.pictureBox2.TabIndex = 1; + this.pictureBox2.TabStop = false; + // + // pictureBox1 + // + this.pictureBox1.BackColor = System.Drawing.Color.SkyBlue; + this.pictureBox1.BackgroundImage = global::Histacom2.Properties.Resources.WinXPStartMenuTopLeft; + this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Left; + this.pictureBox1.Location = new System.Drawing.Point(0, 0); + this.pictureBox1.Name = "pictureBox1"; + this.pictureBox1.Size = new System.Drawing.Size(8, 63); + this.pictureBox1.TabIndex = 0; + this.pictureBox1.TabStop = false; // // clockTimer // @@ -943,7 +332,7 @@ namespace Histacom2.OS.WinXPBad this.desktopicons.LargeImageList = this.desktopImages; this.desktopicons.Location = new System.Drawing.Point(0, 0); this.desktopicons.Name = "desktopicons"; - this.desktopicons.Size = new System.Drawing.Size(640, 480); + this.desktopicons.Size = new System.Drawing.Size(800, 600); this.desktopicons.TabIndex = 6; this.desktopicons.UseCompatibleStateImageBehavior = false; this.desktopicons.DoubleClick += new System.EventHandler(this.desktopicons_DoubleClick); @@ -1006,12 +395,22 @@ namespace Histacom2.OS.WinXPBad this.desktopupdate.Interval = 5000; this.desktopupdate.Tick += new System.EventHandler(this.desktopupdate_Tick); // + // pictureBox12 + // + this.pictureBox12.BackgroundImage = global::Histacom2.Properties.Resources.WinXPStartMenuBottomCenter; + this.pictureBox12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox12.Location = new System.Drawing.Point(189, 396); + this.pictureBox12.Name = "pictureBox12"; + this.pictureBox12.Size = new System.Drawing.Size(1, 1); + this.pictureBox12.TabIndex = 9; + this.pictureBox12.TabStop = false; + // // WindowsXPBad // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.Teal; - this.ClientSize = new System.Drawing.Size(640, 480); + this.BackColor = System.Drawing.Color.DodgerBlue; + this.ClientSize = new System.Drawing.Size(800, 600); this.Controls.Add(this.startmenu); this.Controls.Add(this.taskbar); this.Controls.Add(this.panel1); @@ -1028,11 +427,20 @@ namespace Histacom2.OS.WinXPBad this.clockPanel.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.startbutton)).EndInit(); this.startmenu.ResumeLayout(false); - this.startmenuitems.ResumeLayout(false); - this.startmenuitems.PerformLayout(); - this.ossidestartmenu.ResumeLayout(false); - ((System.ComponentModel.ISupportInitialize)(this.osimage)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox8)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit(); + this.panel3.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); this.rightclickbackproperties.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox12)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); @@ -1046,62 +454,6 @@ namespace Histacom2.OS.WinXPBad internal System.Windows.Forms.PictureBox startbutton; internal System.Windows.Forms.Label taskbartime; internal System.Windows.Forms.Panel startmenu; - internal System.Windows.Forms.MenuStrip startmenuitems; - internal System.Windows.Forms.ToolStripMenuItem ProgramsToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem AccessoriesToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem CommunicationsToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem InternetConnectionWizardToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem NetMeetingToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem MultimediaToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem CDPlayerToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem SoundRecorderToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem VolumeControlToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem WindowsMediaPlayerToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem SystemToolsToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem DiskDefragmenterToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem ScanDiskToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem AddressBookToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem CalculatorToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem HyperTerminalToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem ImagingToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem NotePadToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem OnlineRegistrationToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem PaintToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem PhoneDialerToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem WordPadToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem StartUpToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem AOLInternetFREETrialToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem ATTWorldNetSignupToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem SetupCompuServe30ToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem SetupWOWFromCompuServeToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem MSDOSPromptToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem EmptyToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem InternetExplorerToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem MSDOSPromptToolStripMenuItem1; - internal System.Windows.Forms.ToolStripMenuItem OutlookExpressToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem WindowsExplorerToolStripMenuItem1; - internal System.Windows.Forms.ToolStripMenuItem GuessTheNumberToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem StartRunnerToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem ErrorBlasterToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem SkindowsToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem WebChatToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem TimeDistorterToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem DocumentsToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem SettingsToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem ControlPanelToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem PrintersToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem TaskbarToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem FindToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem FilesOrFoldersToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem ComputerToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem OnTheInternetToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem PeopleToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem HelpToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem RunToolStripMenuItem; - internal System.Windows.Forms.Panel ossidestartmenu; - internal System.Windows.Forms.PictureBox osimage; - internal System.Windows.Forms.ToolStripMenuItem ShutdownToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem SuspendToolStripMenuItem; private System.Windows.Forms.Panel clockPanel; private System.Windows.Forms.Timer clockTimer; private System.Windows.Forms.ImageList desktopImages; @@ -1112,11 +464,21 @@ namespace Histacom2.OS.WinXPBad internal System.Windows.Forms.ToolStripMenuItem TextDocumentToolStripMenuItem; internal System.Windows.Forms.ToolStripMenuItem PropertiesToolStripMenuItem1; internal System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Windows95)); - private System.Windows.Forms.ToolStripMenuItem downloaderTestToolStripMenuItem; - private System.Windows.Forms.ToolStripMenuItem installerTestToolStripMenuItem; private System.Windows.Forms.Panel taskbarItems; - private System.Windows.Forms.ToolStripMenuItem storyTest1ToolStripMenuItem; private System.Windows.Forms.Timer desktopupdate; private System.Windows.Forms.ToolStripMenuItem deleteToolStripMenuItem; + private System.Windows.Forms.Panel panel3; + private System.Windows.Forms.PictureBox pictureBox1; + private System.Windows.Forms.PictureBox pictureBox2; + private System.Windows.Forms.PictureBox pictureBox3; + private System.Windows.Forms.PictureBox pictureBox4; + private System.Windows.Forms.PictureBox pictureBox5; + private System.Windows.Forms.PictureBox pictureBox6; + private System.Windows.Forms.PictureBox pictureBox7; + private System.Windows.Forms.PictureBox pictureBox8; + private System.Windows.Forms.PictureBox pictureBox9; + private System.Windows.Forms.PictureBox pictureBox10; + private System.Windows.Forms.PictureBox pictureBox11; + private System.Windows.Forms.PictureBox pictureBox12; } } \ No newline at end of file diff --git a/Histacom2/OS/WinXPBad/WinXPBad.cs b/Histacom2/OS/WinXPBad/WinXPBad.cs index 91feba3..4968684 100644 --- a/Histacom2/OS/WinXPBad/WinXPBad.cs +++ b/Histacom2/OS/WinXPBad/WinXPBad.cs @@ -37,39 +37,8 @@ namespace Histacom2.OS.WinXPBad public WindowsXPBad() { InitializeComponent(); - startmenu.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); - ProgramsToolStripMenuItem.DropDown.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); - AccessoriesToolStripMenuItem.DropDown.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); - CommunicationsToolStripMenuItem.DropDown.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); - MultimediaToolStripMenuItem.DropDown.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); - SystemToolsToolStripMenuItem.DropDown.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); - StartUpToolStripMenuItem.DropDown.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); - MSDOSPromptToolStripMenuItem.DropDown.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); - DocumentsToolStripMenuItem.DropDown.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); - SettingsToolStripMenuItem.DropDown.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); - FindToolStripMenuItem.DropDown.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); SetStyle(ControlStyles.SupportsTransparentBackColor, true); BackgroundImage = currentTheme.defaultWallpaper; - foreach (ToolStripMenuItem item in startmenuitems.Items) - { - item.MouseEnter += new EventHandler(MenuItem_MouseEnter); - item.MouseLeave += new EventHandler(MenuItem_MouseLeave); - } - foreach (ToolStripMenuItem item in ProgramsToolStripMenuItem.DropDown.Items) - { - item.MouseEnter += new EventHandler(MenuItem_MouseEnter); - item.MouseLeave += new EventHandler(MenuItem_MouseLeave); - } - } - - private void MenuItem_MouseEnter(object sender, EventArgs e) - { - //((ToolStripMenuItem)sender).ForeColor = Color.White; - } - - private void MenuItem_MouseLeave(object sender, EventArgs e) - { - //((ToolStripMenuItem)sender).ForeColor = Color.Black; } // When New Game is clicked in TitleScreen.cs @@ -102,9 +71,6 @@ namespace Histacom2.OS.WinXPBad // Start the ClockTimer clockTimer.Start(); - // Set the StartMenu seperator - startmenuitems.Items.Insert(6, new ToolStripSeparator()); - //nonimportantapps.Capacity = 100; this.SendToBack(); @@ -129,14 +95,6 @@ namespace Histacom2.OS.WinXPBad private void fontLoad() { this.taskbartime.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))); - this.ProgramsToolStripMenuItem.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))); - this.DocumentsToolStripMenuItem.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))); - this.SettingsToolStripMenuItem.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))); - this.FindToolStripMenuItem.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))); - this.HelpToolStripMenuItem.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))); - this.RunToolStripMenuItem.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))); - this.SuspendToolStripMenuItem.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))); - this.ShutdownToolStripMenuItem.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))); this.desktopicons.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))); } diff --git a/Histacom2/OS/WinXPBad/WinXPBad.resx b/Histacom2/OS/WinXPBad/WinXPBad.resx index 9161525..f997f6a 100644 --- a/Histacom2/OS/WinXPBad/WinXPBad.resx +++ b/Histacom2/OS/WinXPBad/WinXPBad.resx @@ -117,263 +117,6 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 17, 17 - - - 17, 17 - - - - - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAALRJREFUOE+N - kgEOwCAIA3m6T/NnG6UwBZ1bk6pTemIy2am1dlX70VlR3Hu/IBE1wr5/BOEQymFZLRvIHMZtGjUjEHOG - mIdS214UkGi92qM5zDnCENfYn+0AQvAxC2/nHsNe+HgLwCbEmW1HmLOOZtYuAB0SJKAsivAPgBXpOgNQ - PPwCyDcF4M0TAIZw84CUgq1TF2xvhP+oACBCAoBW9dg6szWLzeUZs9Y/7mQNVMCjOPywyA3MF+cOKQF9 - RAAAAABJRU5ErkJggg== - - - - - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAKpJREFUOE/N - UskNgDAMy+gdrZsVO3cL/HhgySKJD/WB/BdjjNXpZ9wFu+R+QwTmnDAtY5UsbErOGuiIIKmBoJYwwEJ7 - QZbEk066qCHbo8R0Qj0OPbA1vrxpCKxSm3dPIYWtwMNED28Fp5Ai7lWwe17DFNKwFRBHmKj2EDCZ4eEF - pxeIdj+AnH33gtIeGO11jAJQw20X+5nAG7SE5GykuTO1V5yGHur3LyFyAZP8TrljsWNAAAAAAElFTkSu - QmCC - - - - - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6 - JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAB3RJTUUH4QQIFCcwxstlzQAAALVJREFU - OE+dj4ERwyAMAxmd0diMImMZYaC9q3xOIJaeUP5Q936r1tpz+wgi4ATR3Huxbq1FC4ihHWDDEWM4A9jD - ukJczzBqRl8AD+iVMgB1B7j5BGATpqgJ4XfbeTi8vt8ANnCAn2JvnZuH4RvADKgx5MnHfAHm/bMB0j8A - KnueAEjX+Bs+1RcAiBBITWYUACEjssIQAFAOmzmissoAKF9FARvkFqYAySACxvh7WEXQWP4IlvIBh1rl - tmCAq4kAAAAASUVORK5CYII= - - - - - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6 - JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAB3RJTUUH4QQIFCcZhHn9oQAAAJ9JREFU - OE+VkAEOxCAIBH26P6s/8zrgeqTS05uEKMouaNnQR/zPdZVeazWDsZ6DuHfv3lqz8JsDJKYrgRiyKZYz - ieFOpxhiscxH6sIojuMLCV669lD8nYAQi1CosxusE7DCoQG44L6SyPL4hBic2ftJnhMQQsVvWHH8SPLs - E3dME/aZwYnRfBIholB3I00xE1amIDLBscmu8Bdm4NuMUj70z1LCUTedOwAAAABJRU5ErkJggg== - - - - - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6 - JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAB3RJTUUH4QQIFCcbanecjQAAAItJREFU - OE+VjgEOhCAMBHk6T+Nn2iFuXEEtTLLBbNu5K6LWeuzkOruhXCXWvwWttd9cv74miLrHu1TASyQAHSr0 - /chh4PiBz/iO9W+B/mpUj6hPBbxEEtChQt+PHAbOKBCpgGUl6qlLBbxkFKgn9P3IYeCMApEKWFaEd1uC - t6QC3iyxPgsCDVYTlHICH5QKXtIjRNoAAAAASUVORK5CYII= - - - - - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6 - JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAB3RJTUUH4QQIFCgUfVCd0wAAAHpJREFU - OE+djgsOgDAIQzn6bubRlF+zOZV1vqRBGK0IS2vthHK0ZjQBHdcBhcllc9t7UJnsvSSM4tKWM03cAvLM - Ve3YwNBPuqYCJONxVbGvCnABSx2QfwJjK0c03wHYzjq1RICB7WRsf10AeU9dQPAasCu19YAEww2JXJGJ - 13tFDjjJAAAAAElFTkSuQmCC - - - - - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAMFJREFUOE+V - kAsShDAIQzk6R/Nm3SSU2g/uaJxMi5Bnq81yt0b38pCbnz03hGDtEaYq0HVdraF9QBiORoAyXIFKyAhO - IG6m8P+TRDDMPV4JkBDWGkSNYe0JcS8AGoArAEPYDcjQAcgheL9CCVkAU1iP3sd9887L8akDkE//OoMo - ByhSkxYAl3x0EgTg6QTk3FZ/B6TRpLSiHoAOpXWVR8D4wgYopMad7KAPgJQGIh3WMbEu/+CFNEhAhKPu - /qQXQbMf8nZYxbrHLzUAAAAASUVORK5CYII= - - - - - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - vwAADr8BOAVTJAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAACmSURBVDhPnZFR - EsQgCEM9ukfzZl0CREmrO7uNw0ghL360ndR7v7L9X4BfBxDeVVrOmsaLQqd1DKowK7QmYwxvza4hC66H - UpiV6IJlm+UQOnvxvg7aBAPkIWpY87rICtpkX/4SX5MgmkvnxzD4JIC3BCUGzZCEfWb9I4D3M2gDp3xY - oXsQ9vRAYAJVbYNqAARf2M+aQa3Hr2QAdmH5TTPoDVz1BW7tA7ajvYP7sMmIAAAAAElFTkSuQmCC - - - - - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAG1JREFUOE/N - j1sOgCAQAzk6N/exdqRsAuqH0THNrm2DWP5DrXVxyQ5mWRc6FLO/Wa5WYBKyZyLfn9EBoMJwl65vwA4p - e+EGDkXneJ8coODcM+TSvV9wwmfu5C8jPOZA7YCMleT0KAu68kN9TikrCNOnE4xyRLMAAAAASUVORK5C - YII= - - - - - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - vAAADrwBlbxySQAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAABzSURBVDhPxZBR - DsAgCEM9ukfzZowW9UdFmUtG8mR0UtiSiFwxFSPYkbO8gb31gXahDBOdb9MhsHCoUzsJ4J0WdNRiFaUU - 36BtgIsrXAPEcGHHsAFF+4yT/M8GCP4Pa2z5iw26EEUNMNyc4rAXxw1T8RxJD2E2VfJhfZIbAAAAAElF - TkSuQmCC - - - - - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAH9JREFUOE+l - jgESgCAIBHk6T/NnxjFCVlBKzJyhc7sTEXH/FzmYqJSLYHdCAc40AMaOqQmGBJMKmOVx7B6UeUGgsMQk - +jV4RQDYAri1dsKTBPMqcBilG/z5BwZbIgkmFNxhl0ww7trdESDo2K7dTJBGOrZrNxLszENQiQvq4X4A - JbFDpxtWNlIAAAAASUVORK5CYII= - - - - - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - vAAADrwBlbxySQAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAACFSURBVDhPpZNB - DsAgCAR9uk/zZ1S0i6CoDTUZQ5EdTk1EtFAPX0dkFoU0aivnTOnFrZVkCZvGjjpXSuki02c7F9g0gzdP - YD7mIDMGW3gV6KEdPOMJjOmECltBYLsIxHJjCg9BYDufIejXFYQ17Q1LwG7YIyTA4Tok0PwStB/LE0Dy - BSJKDySVfIiSNKD1AAAAAElFTkSuQmCC - - - - - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - vwAADr8BOAVTJAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAACzSURBVDhPhZJR - EsUgCAN7dI7mzawRl1KLU2fygMimfryr9/6rcUY53FVmluDWmpoxFveViQSZuU4h72GMyMwm5AF2DPnA - QPTM9FIOCTiMBarSI1712qeZwwbkkApejBuqLLK8h7Cb5T8HGI8QBLPq8+wdzr722FUNL7+gEsuE06MI - qELk6T7DOhNcwTNAcuMJAZYAdQgiJAIk/kAZdr8OmCHD+5UWeRkBfKgEduUAYL/r1w0ie5EGNPvMCQAA - AABJRU5ErkJggg== - - - - - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - vAAADrwBlbxySQAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAADBSURBVDhPhZAB - GoUgCIM9ukfrZj02mBJhb32U5v6JjpfmuGP0pQ8PAg4h0/6jbKj1xgcDniYEMGTDGpR0CLCJAIPnfV2X - 5lve4hTMXbirjVETQHQQtaX23LFN9mIRXtMCh14BIirctm/yiyGNkB7mHvxXAgTj/Os4jegzmHeVQ3KA - TWlAq7UUQOgUYE3KxCDMXd5drEGnADfz/Qj6d4QC569ZukoKUwfrq3ugewmgnmgP5eCztGaVFK0HnJUB - VdEYP35ybB/eOVN7AAAAAElFTkSuQmCC - - - - - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAK5JREFUOE+V - kAESwyAIBH06T/Nnlju8FNFJ7c0w0sBuTVqNWRu15uh3sDzGXleiDJsZlnleiyTwloXgzGLVUTIfcqH3 - zhO/UZrlG20S/RNg9JLodSSUAD045gR/JUj0vsoeM/SEkRAosVBhQTgPgvy1lfVWBazw8KGxsiiDGdbr - gKfAWwJIFp3AuFF8WPAUaOBPwuJJSwuomjNmWcqiF/CBczbRLVjziP4Fay7A1j6MmatnPf0QdQAAAABJ - RU5ErkJggg== - - - - - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - vAAADrwBlbxySQAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAACMSURBVDhPnZAB - DsAgCAN9Ok/zZ4yiEINsMkkKRNezWWNmlZSM84wabVwyEX3ODNLCZXWiyUrsgEr13h2gZlmvAGZGKQAX - VRlAzfcJIAB+/gMiM5smIMbMBLO8uUMqCcxsOzww4/AIiGZ7eR4OQBYZ2uIGswOyWj72ArQMyOoVsMY+ - aQNok1HVambm9gBAYeI/oBSQZwAAAABJRU5ErkJggg== - - - - - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wgAADsIBFShKgAAAAJVJREFUOE+VkQsSxCAMQj16bu4GFU3YdO2+Gaqi0F/7j96zfqKHqYiuByYBFfYJ - 1okT9uuef4slmG9gWjdzN4Wnf9bRT1RhaCN+KriGieyvkjr8Rl7AMMbywE0zCBiIBS9Awbn7tUD29xME - Q0rM8IHhPbziKRhMU0pqjVIfcgHAfB2oiugnuEnG/EkZ/4fLZEksutHaB6sGQO/gf7MbAAAAAElFTkSu - QmCC - - - - - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wgAADsIBFShKgAAAALtJREFUOE91TwESBCEI6un9vBPRYqljhtEIyUZhzTkXKo8J1ZI4P3xjlAjsqpoN - upcBf0zA6+7r8QAxA9170IEPm6l7PWu9A1CLwNaVpSfWNEKLWCECDnkvAdFtMgBDLeHFaNaXEpQu22B9 - NsFA96i2yQlo00wejQG9VfuSCQ0IXAFAVAb468AVwJB3AHpsBFKn2uYkemh9hllezf4KcDKwtqkBpX5j - Dyj5DRIeDDh3wD3c5AYkh2QwOMYPtAJqglssjE8AAAAASUVORK5CYII= - - - - - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wgAADsIBFShKgAAAAJVJREFUOE+VkIESgCAIQ/10/pwasJrlkb27nUZsoqPHPbWNlYHCN9gKMTc7O31I - gIa0PM2EE32ErE9WNQEw1y6azbZGvkFAhnBcKMmwrQnCVI0MofA+a6UniIDYqKTx7JhBDeVaQd5fVT9m - M4JvowbwzjNlu4C5DVBgVyll4Zo8AzrK0gfo6ZBSFq7J6g0+ePWj8EPDD0i7RXV30HOWAAAAAElFTkSu - QmCC - - - - - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wgAADsIBFShKgAAAAJJJREFUOE+tkYEOgCAIRP10/tzk4FISZ7ZuuzDwnq4KJSL1aR/txc21llBfQVbh - EZJZZ5C+nEoEcIN0QDyxLVGzm6WAsMYTvRSSAqaw2jRBloApbJUBhLVub4ABqwMY1poCuEYzhPWjRkgK - 6EP7A+obqOc2EzIBeELmtqNFDECI9R3gYmPhCPH+qX6HfAJAQ7iUCwlxft5LSoDNAAAAAElFTkSuQmCC - - - - - iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wAAADsABataJCQAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw - 4AAABIQCQUtXaBsAAAAASUVORK5CYII= - - - - - iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wAAADsABataJCQAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw - 4AAABIQCQUtXaBsAAAAASUVORK5CYII= - - - - - iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wAAADsABataJCQAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw - 4AAABIQCQUtXaBsAAAAASUVORK5CYII= - - - - - iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wAAADsABataJCQAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw - 4AAABIQCQUtXaBsAAAAASUVORK5CYII= - - - - - iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wAAADsABataJCQAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw - 4AAABIQCQUtXaBsAAAAASUVORK5CYII= - - - - - iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wAAADsABataJCQAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw - 4AAABIQCQUtXaBsAAAAASUVORK5CYII= - - - - - iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wAAADsABataJCQAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw - 4AAABIQCQUtXaBsAAAAASUVORK5CYII= - - - - - iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wAAADsABataJCQAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw - 4AAABIQCQUtXaBsAAAAASUVORK5CYII= - - - - - iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wAAADsABataJCQAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw - 4AAABIQCQUtXaBsAAAAASUVORK5CYII= - - - - - iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wAAADsABataJCQAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw - 4AAABIQCQUtXaBsAAAAASUVORK5CYII= - - 153, 17 @@ -385,7 +128,7 @@ AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAADq - ggAAAk1TRnQBSQFMAgEBDAEAAcABAQHAAQEBIAEAASABAAT/ASEBAAj/AUIBTQE2BwABNgMAASgDAAGA + ggAAAk1TRnQBSQFMAgEBDAEAARgBAgEYAQIBIAEAASABAAT/ASEBAAj/AUIBTQE2BwABNgMAASgDAAGA AwABgAMAAQEBAAEgBwABAf8A/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/AP8AXAAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/x8AAf8DAAH/ @@ -955,6 +698,7 @@ 63 + AAABAAUAEBAAAAAAIABoBAAAVgAAACAgAAAAACAAqBAAAL4EAAAwMAAAAAAgAKglAABmFQAAQEAAAAAA diff --git a/Histacom2/Properties/Resources.resx b/Histacom2/Properties/Resources.resx index 4fbf3b4..7db7ddf 100644 --- a/Histacom2/Properties/Resources.resx +++ b/Histacom2/Properties/Resources.resx @@ -1960,6 +1960,45 @@ ..\Resources\WinClassic\WinClassicInstallSidebar.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\WinClassic\WinXPStartMenuBottomCenter.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\WinClassic\WinXPStartMenuBottomCenter2.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\WinClassic\WinXPStartMenuBottomLeft.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\WinClassic\WinXPStartMenuBottomLeft2.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\WinClassic\WinXPStartMenuBottomRight.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\WinClassic\WinXPStartMenuBottomRight2.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\WinClassic\WinXPStartMenuLeft.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\WinClassic\WinXPStartMenuLeftGradient.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\WinClassic\WinXPStartMenuRight.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\WinClassic\WinXPStartMenuRightGradient.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\WinClassic\WinXPStartMenuTopCenter.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\WinClassic\WinXPStartMenuTopLeft.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\WinClassic\WinXPStartMenuTopRight.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\Resources\WinClassic\WinXPTaskbarBG.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a diff --git a/Histacom2/Properties/Resources1.Designer.cs b/Histacom2/Properties/Resources1.Designer.cs index 16d362c..4a3cf7a 100644 --- a/Histacom2/Properties/Resources1.Designer.cs +++ b/Histacom2/Properties/Resources1.Designer.cs @@ -2043,6 +2043,136 @@ namespace Histacom2.Properties { } } + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap WinXPStartMenuBottomCenter { + get { + object obj = ResourceManager.GetObject("WinXPStartMenuBottomCenter", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap WinXPStartMenuBottomCenter2 { + get { + object obj = ResourceManager.GetObject("WinXPStartMenuBottomCenter2", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap WinXPStartMenuBottomLeft { + get { + object obj = ResourceManager.GetObject("WinXPStartMenuBottomLeft", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap WinXPStartMenuBottomLeft2 { + get { + object obj = ResourceManager.GetObject("WinXPStartMenuBottomLeft2", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap WinXPStartMenuBottomRight { + get { + object obj = ResourceManager.GetObject("WinXPStartMenuBottomRight", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap WinXPStartMenuBottomRight2 { + get { + object obj = ResourceManager.GetObject("WinXPStartMenuBottomRight2", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap WinXPStartMenuLeft { + get { + object obj = ResourceManager.GetObject("WinXPStartMenuLeft", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap WinXPStartMenuLeftGradient { + get { + object obj = ResourceManager.GetObject("WinXPStartMenuLeftGradient", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap WinXPStartMenuRight { + get { + object obj = ResourceManager.GetObject("WinXPStartMenuRight", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap WinXPStartMenuRightGradient { + get { + object obj = ResourceManager.GetObject("WinXPStartMenuRightGradient", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap WinXPStartMenuTopCenter { + get { + object obj = ResourceManager.GetObject("WinXPStartMenuTopCenter", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap WinXPStartMenuTopLeft { + get { + object obj = ResourceManager.GetObject("WinXPStartMenuTopLeft", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap WinXPStartMenuTopRight { + get { + object obj = ResourceManager.GetObject("WinXPStartMenuTopRight", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// diff --git a/Histacom2/Resources/WinClassic/WinXPStartMenuBottomCenter.png b/Histacom2/Resources/WinClassic/WinXPStartMenuBottomCenter.png new file mode 100644 index 0000000..18dc206 Binary files /dev/null and b/Histacom2/Resources/WinClassic/WinXPStartMenuBottomCenter.png differ diff --git a/Histacom2/Resources/WinClassic/WinXPStartMenuBottomCenter2.png b/Histacom2/Resources/WinClassic/WinXPStartMenuBottomCenter2.png new file mode 100644 index 0000000..10fb3bf Binary files /dev/null and b/Histacom2/Resources/WinClassic/WinXPStartMenuBottomCenter2.png differ diff --git a/Histacom2/Resources/WinClassic/WinXPStartMenuBottomLeft.png b/Histacom2/Resources/WinClassic/WinXPStartMenuBottomLeft.png new file mode 100644 index 0000000..5430c02 Binary files /dev/null and b/Histacom2/Resources/WinClassic/WinXPStartMenuBottomLeft.png differ diff --git a/Histacom2/Resources/WinClassic/WinXPStartMenuBottomLeft2.png b/Histacom2/Resources/WinClassic/WinXPStartMenuBottomLeft2.png new file mode 100644 index 0000000..9579756 Binary files /dev/null and b/Histacom2/Resources/WinClassic/WinXPStartMenuBottomLeft2.png differ diff --git a/Histacom2/Resources/WinClassic/WinXPStartMenuBottomRight.png b/Histacom2/Resources/WinClassic/WinXPStartMenuBottomRight.png new file mode 100644 index 0000000..c4e30f1 Binary files /dev/null and b/Histacom2/Resources/WinClassic/WinXPStartMenuBottomRight.png differ diff --git a/Histacom2/Resources/WinClassic/WinXPStartMenuBottomRight2.png b/Histacom2/Resources/WinClassic/WinXPStartMenuBottomRight2.png new file mode 100644 index 0000000..2df1891 Binary files /dev/null and b/Histacom2/Resources/WinClassic/WinXPStartMenuBottomRight2.png differ diff --git a/Histacom2/Resources/WinClassic/WinXPStartMenuLeft.png b/Histacom2/Resources/WinClassic/WinXPStartMenuLeft.png new file mode 100644 index 0000000..5dca1f2 Binary files /dev/null and b/Histacom2/Resources/WinClassic/WinXPStartMenuLeft.png differ diff --git a/Histacom2/Resources/WinClassic/WinXPStartMenuLeftGradient.png b/Histacom2/Resources/WinClassic/WinXPStartMenuLeftGradient.png new file mode 100644 index 0000000..1bcf1bf Binary files /dev/null and b/Histacom2/Resources/WinClassic/WinXPStartMenuLeftGradient.png differ diff --git a/Histacom2/Resources/WinClassic/WinXPStartMenuRight.png b/Histacom2/Resources/WinClassic/WinXPStartMenuRight.png new file mode 100644 index 0000000..b687a0d Binary files /dev/null and b/Histacom2/Resources/WinClassic/WinXPStartMenuRight.png differ diff --git a/Histacom2/Resources/WinClassic/WinXPStartMenuRightGradient.png b/Histacom2/Resources/WinClassic/WinXPStartMenuRightGradient.png new file mode 100644 index 0000000..9c67cc2 Binary files /dev/null and b/Histacom2/Resources/WinClassic/WinXPStartMenuRightGradient.png differ diff --git a/Histacom2/Resources/WinClassic/WinXPStartMenuTopCenter.png b/Histacom2/Resources/WinClassic/WinXPStartMenuTopCenter.png new file mode 100644 index 0000000..521c3d4 Binary files /dev/null and b/Histacom2/Resources/WinClassic/WinXPStartMenuTopCenter.png differ diff --git a/Histacom2/Resources/WinClassic/WinXPStartMenuTopLeft.png b/Histacom2/Resources/WinClassic/WinXPStartMenuTopLeft.png new file mode 100644 index 0000000..7b24763 Binary files /dev/null and b/Histacom2/Resources/WinClassic/WinXPStartMenuTopLeft.png differ diff --git a/Histacom2/Resources/WinClassic/WinXPStartMenuTopRight.png b/Histacom2/Resources/WinClassic/WinXPStartMenuTopRight.png new file mode 100644 index 0000000..604d062 Binary files /dev/null and b/Histacom2/Resources/WinClassic/WinXPStartMenuTopRight.png differ diff --git a/Histacom2/Resources/WinClassic/WinXPTaskbarTime.png b/Histacom2/Resources/WinClassic/WinXPTaskbarTime.png index 5a88844..c8489c8 100644 Binary files a/Histacom2/Resources/WinClassic/WinXPTaskbarTime.png and b/Histacom2/Resources/WinClassic/WinXPTaskbarTime.png differ diff --git a/Histacom2/TitleScreen.cs b/Histacom2/TitleScreen.cs index 37539d9..f9c6896 100644 --- a/Histacom2/TitleScreen.cs +++ b/Histacom2/TitleScreen.cs @@ -11,6 +11,7 @@ using Histacom2.SaveDialogs; using System.Runtime.InteropServices; using System.Reflection; using System.ComponentModel; +using Histacom2.OS.WinXPBad; namespace Histacom2 { @@ -20,6 +21,7 @@ namespace Histacom2 public static Windows95 frm95; public static Windows98 frm98; + public static WindowsXPBad frmBadXP; public static string username; public static string progress = "95"; @@ -89,6 +91,20 @@ namespace Histacom2 frm98.Show(); Hide(); + break; + case "xpbad": + frmBadXP = new WindowsXPBad(); + frmBadXP.TopMost = true; + frmBadXP.FormBorderStyle = FormBorderStyle.None; + frmBadXP.WindowState = FormWindowState.Maximized; + //if (vm_mode.Checked == true) + //{ + // frm98.Size = new Size(Convert.ToInt32(VM_Width.Text), Convert.ToInt32(VM_Height.Text)); + // frm98.FormBorderStyle = FormBorderStyle.Fixed3D; + //} + frmBadXP.Show(); + Hide(); + break; default: MessageBox.Show("WARNING! It looks like this save is corrupt!"); -- cgit v1.2.3 From 54a3e8fe71f936580339e4a4a6fb650d57fbb5d1 Mon Sep 17 00:00:00 2001 From: lempamo Date: Sat, 21 Oct 2017 00:51:46 -0400 Subject: more xp start things --- Histacom2.Engine/UI/ClassicLabel.cs | 18 +- Histacom2.Engine/UI/ClassicStartMenuItem.cs | 2 +- Histacom2/Histacom2.csproj | 2 + Histacom2/OS/WinXPBad/WinXPBad.Designer.cs | 119 +++- Histacom2/OS/WinXPBad/WinXPBad.cs | 17 +- Histacom2/OS/WinXPBad/WinXPBad.resx | 737 +++++++++++---------- Histacom2/Properties/Resources.resx | 6 + Histacom2/Properties/Resources1.Designer.cs | 20 + .../WinClassic/WinXPStartMenuCenterDivider.png | Bin 0 -> 148 bytes .../Resources/WinClassic/WinXPStartMenuPlaces.png | Bin 0 -> 184 bytes 10 files changed, 533 insertions(+), 388 deletions(-) create mode 100644 Histacom2/Resources/WinClassic/WinXPStartMenuCenterDivider.png create mode 100644 Histacom2/Resources/WinClassic/WinXPStartMenuPlaces.png (limited to 'Histacom2/OS/WinXPBad/WinXPBad.cs') diff --git a/Histacom2.Engine/UI/ClassicLabel.cs b/Histacom2.Engine/UI/ClassicLabel.cs index c7007bd..4ef1201 100644 --- a/Histacom2.Engine/UI/ClassicLabel.cs +++ b/Histacom2.Engine/UI/ClassicLabel.cs @@ -12,8 +12,11 @@ namespace Histacom2.Engine.UI { public class ClassicLabel : Control { + public bool DropShadow { get; set; } + public ClassicLabel() { + SetStyle(ControlStyles.SupportsTransparentBackColor, true); TextChanged += (s, e) => Invalidate(); } @@ -21,11 +24,24 @@ namespace Histacom2.Engine.UI { base.OnPaint(e); var gfx = e.Graphics; - gfx.Clear(BackColor); + if (BackColor != Color.Transparent) gfx.Clear(BackColor); gfx.TextRenderingHint = System.Drawing.Text.TextRenderingHint.SingleBitPerPixelGridFit; gfx.DrawString(Text, Font, new SolidBrush(ForeColor), ClientRectangle); Height = (int)gfx.MeasureString(Text, Font, ClientRectangle.Width).Height; } + + private const int CS_DROPSHADOW = 0x00020000; + protected override CreateParams CreateParams + { + get + { + // add the drop shadow flag for automatically drawing + // a drop shadow around the form + CreateParams cp = base.CreateParams; + if (DropShadow) cp.ClassStyle |= CS_DROPSHADOW; + return cp; + } + } } } diff --git a/Histacom2.Engine/UI/ClassicStartMenuItem.cs b/Histacom2.Engine/UI/ClassicStartMenuItem.cs index 49aecd9..e009a35 100644 --- a/Histacom2.Engine/UI/ClassicStartMenuItem.cs +++ b/Histacom2.Engine/UI/ClassicStartMenuItem.cs @@ -33,7 +33,7 @@ namespace Histacom2.Engine.UI e.Graphics.DrawImage(Image, 0 + Padding.Left - Padding.Right, 0); if (!Selected) { - e.Graphics.DrawString(Text, new Font("Microsoft Sans Serif", 8.25F, FontStyle.Regular), Brushes.Black, 38, 11, sf); + if (SaveSystem.currentTheme != null) { e.Graphics.DrawString(Text, new Font("Microsoft Sans Serif", 8.25F, FontStyle.Regular), Brushes.Black, 38, 11, sf); } if (DropDownItems.Count > 0) { diff --git a/Histacom2/Histacom2.csproj b/Histacom2/Histacom2.csproj index f6bc36d..0697068 100644 --- a/Histacom2/Histacom2.csproj +++ b/Histacom2/Histacom2.csproj @@ -650,6 +650,8 @@ + + diff --git a/Histacom2/OS/WinXPBad/WinXPBad.Designer.cs b/Histacom2/OS/WinXPBad/WinXPBad.Designer.cs index 7713f56..9c05a91 100644 --- a/Histacom2/OS/WinXPBad/WinXPBad.Designer.cs +++ b/Histacom2/OS/WinXPBad/WinXPBad.Designer.cs @@ -36,10 +36,15 @@ namespace Histacom2.OS.WinXPBad this.panel2 = new System.Windows.Forms.Panel(); this.taskbar = new System.Windows.Forms.Panel(); this.clockPanel = new System.Windows.Forms.Panel(); - this.taskbartime = new System.Windows.Forms.Label(); + this.taskbartime = new Histacom2.Engine.UI.ClassicLabel(); this.taskbarItems = new System.Windows.Forms.Panel(); this.startbutton = new System.Windows.Forms.PictureBox(); this.startmenu = new System.Windows.Forms.Panel(); + this.listView1 = new System.Windows.Forms.ListView(); + this.pictureBox14 = new System.Windows.Forms.PictureBox(); + this.panel4 = new System.Windows.Forms.Panel(); + this.pictureBox13 = new System.Windows.Forms.PictureBox(); + this.pictureBox12 = new System.Windows.Forms.PictureBox(); this.pictureBox11 = new System.Windows.Forms.PictureBox(); this.pictureBox10 = new System.Windows.Forms.PictureBox(); this.pictureBox9 = new System.Windows.Forms.PictureBox(); @@ -49,7 +54,8 @@ namespace Histacom2.OS.WinXPBad this.pictureBox5 = new System.Windows.Forms.PictureBox(); this.pictureBox4 = new System.Windows.Forms.PictureBox(); this.panel3 = new System.Windows.Forms.Panel(); - this.pictureBox3 = new System.Windows.Forms.PictureBox(); + this.classicLabel1 = new Histacom2.Engine.UI.ClassicLabel(); + this.pictureBox3 = new System.Windows.Forms.Panel(); this.pictureBox2 = new System.Windows.Forms.PictureBox(); this.pictureBox1 = new System.Windows.Forms.PictureBox(); this.clockTimer = new System.Windows.Forms.Timer(this.components); @@ -62,12 +68,14 @@ namespace Histacom2.OS.WinXPBad this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.PropertiesToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); this.desktopupdate = new System.Windows.Forms.Timer(this.components); - this.pictureBox12 = new System.Windows.Forms.PictureBox(); this.panel1.SuspendLayout(); this.taskbar.SuspendLayout(); this.clockPanel.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.startbutton)).BeginInit(); this.startmenu.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox14)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox13)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox12)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).BeginInit(); @@ -77,11 +85,10 @@ namespace Histacom2.OS.WinXPBad ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit(); this.panel3.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit(); + this.pictureBox3.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); this.rightclickbackproperties.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox12)).BeginInit(); this.SuspendLayout(); // // panel1 @@ -129,12 +136,13 @@ namespace Histacom2.OS.WinXPBad // taskbartime // this.taskbartime.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.taskbartime.AutoSize = true; this.taskbartime.BackColor = System.Drawing.Color.Transparent; + this.taskbartime.DropShadow = false; + this.taskbartime.Font = new System.Drawing.Font("Tahoma", 8.25F); this.taskbartime.ForeColor = System.Drawing.Color.White; - this.taskbartime.Location = new System.Drawing.Point(18, 9); + this.taskbartime.Location = new System.Drawing.Point(9, 8); this.taskbartime.Name = "taskbartime"; - this.taskbartime.Size = new System.Drawing.Size(26, 13); + this.taskbartime.Size = new System.Drawing.Size(53, 14); this.taskbartime.TabIndex = 2; this.taskbartime.Text = "time"; this.taskbartime.Click += new System.EventHandler(this.taskbartime_Click); @@ -162,6 +170,10 @@ namespace Histacom2.OS.WinXPBad // this.startmenu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.startmenu.BackColor = System.Drawing.Color.White; + this.startmenu.Controls.Add(this.listView1); + this.startmenu.Controls.Add(this.pictureBox14); + this.startmenu.Controls.Add(this.panel4); + this.startmenu.Controls.Add(this.pictureBox13); this.startmenu.Controls.Add(this.pictureBox12); this.startmenu.Controls.Add(this.pictureBox11); this.startmenu.Controls.Add(this.pictureBox10); @@ -177,6 +189,55 @@ namespace Histacom2.OS.WinXPBad this.startmenu.Size = new System.Drawing.Size(380, 438); this.startmenu.TabIndex = 3; // + // listView1 + // + this.listView1.BackColor = System.Drawing.Color.White; + this.listView1.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.listView1.Location = new System.Drawing.Point(2, 66); + this.listView1.Name = "listView1"; + this.listView1.Size = new System.Drawing.Size(188, 330); + this.listView1.TabIndex = 13; + this.listView1.UseCompatibleStateImageBehavior = false; + this.listView1.View = System.Windows.Forms.View.Tile; + // + // pictureBox14 + // + this.pictureBox14.BackgroundImage = global::Histacom2.Properties.Resources.WinXPStartMenuCenterDivider; + this.pictureBox14.Location = new System.Drawing.Point(190, 66); + this.pictureBox14.Name = "pictureBox14"; + this.pictureBox14.Size = new System.Drawing.Size(1, 330); + this.pictureBox14.TabIndex = 12; + this.pictureBox14.TabStop = false; + // + // panel4 + // + this.panel4.BackgroundImage = global::Histacom2.Properties.Resources.WinXPStartMenuPlaces; + this.panel4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.panel4.Location = new System.Drawing.Point(191, 66); + this.panel4.Name = "panel4"; + this.panel4.Size = new System.Drawing.Size(187, 330); + this.panel4.TabIndex = 11; + // + // pictureBox13 + // + this.pictureBox13.BackgroundImage = global::Histacom2.Properties.Resources.WinXPStartMenuBottomLeft; + this.pictureBox13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox13.Location = new System.Drawing.Point(191, 396); + this.pictureBox13.Name = "pictureBox13"; + this.pictureBox13.Size = new System.Drawing.Size(187, 1); + this.pictureBox13.TabIndex = 10; + this.pictureBox13.TabStop = false; + // + // pictureBox12 + // + this.pictureBox12.BackgroundImage = global::Histacom2.Properties.Resources.WinXPStartMenuBottomCenter; + this.pictureBox12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox12.Location = new System.Drawing.Point(190, 396); + this.pictureBox12.Name = "pictureBox12"; + this.pictureBox12.Size = new System.Drawing.Size(1, 1); + this.pictureBox12.TabIndex = 9; + this.pictureBox12.TabStop = false; + // // pictureBox11 // this.pictureBox11.BackgroundImage = global::Histacom2.Properties.Resources.WinXPStartMenuBottomLeft; @@ -266,17 +327,29 @@ namespace Histacom2.OS.WinXPBad this.panel3.Size = new System.Drawing.Size(380, 63); this.panel3.TabIndex = 0; // + // classicLabel1 + // + this.classicLabel1.BackColor = System.Drawing.Color.Transparent; + this.classicLabel1.DropShadow = true; + this.classicLabel1.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.classicLabel1.ForeColor = System.Drawing.Color.White; + this.classicLabel1.Location = new System.Drawing.Point(6, 24); + this.classicLabel1.Name = "classicLabel1"; + this.classicLabel1.Size = new System.Drawing.Size(91, 19); + this.classicLabel1.TabIndex = 3; + this.classicLabel1.Text = "Username"; + // // pictureBox3 // this.pictureBox3.BackColor = System.Drawing.Color.Blue; this.pictureBox3.BackgroundImage = global::Histacom2.Properties.Resources.WinXPStartMenuTopCenter; this.pictureBox3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox3.Controls.Add(this.classicLabel1); this.pictureBox3.Dock = System.Windows.Forms.DockStyle.Fill; this.pictureBox3.Location = new System.Drawing.Point(8, 0); this.pictureBox3.Name = "pictureBox3"; this.pictureBox3.Size = new System.Drawing.Size(364, 63); this.pictureBox3.TabIndex = 2; - this.pictureBox3.TabStop = false; // // pictureBox2 // @@ -315,7 +388,7 @@ namespace Histacom2.OS.WinXPBad this.desktopImages.Images.SetKeyName(4, "WinClassicMSN.png"); this.desktopImages.Images.SetKeyName(5, "WinClassicNetworking.png"); this.desktopImages.Images.SetKeyName(6, "WinClassicOutlook.png"); - this.desktopImages.Images.SetKeyName(7, "WinClassicRecycle.png"); + this.desktopImages.Images.SetKeyName(7, "WinXPRecycleBin.png"); this.desktopImages.Images.SetKeyName(8, "WinClassicSetup.png"); this.desktopImages.Images.SetKeyName(9, "WinClassicSetup.png"); this.desktopImages.Images.SetKeyName(10, "WinClassicSetup.png"); @@ -395,16 +468,6 @@ namespace Histacom2.OS.WinXPBad this.desktopupdate.Interval = 5000; this.desktopupdate.Tick += new System.EventHandler(this.desktopupdate_Tick); // - // pictureBox12 - // - this.pictureBox12.BackgroundImage = global::Histacom2.Properties.Resources.WinXPStartMenuBottomCenter; - this.pictureBox12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; - this.pictureBox12.Location = new System.Drawing.Point(189, 396); - this.pictureBox12.Name = "pictureBox12"; - this.pictureBox12.Size = new System.Drawing.Size(1, 1); - this.pictureBox12.TabIndex = 9; - this.pictureBox12.TabStop = false; - // // WindowsXPBad // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); @@ -424,9 +487,11 @@ namespace Histacom2.OS.WinXPBad this.panel1.ResumeLayout(false); this.taskbar.ResumeLayout(false); this.clockPanel.ResumeLayout(false); - this.clockPanel.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.startbutton)).EndInit(); this.startmenu.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox14)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox13)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox12)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).EndInit(); @@ -436,11 +501,10 @@ namespace Histacom2.OS.WinXPBad ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit(); this.panel3.ResumeLayout(false); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit(); + this.pictureBox3.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); this.rightclickbackproperties.ResumeLayout(false); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox12)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); @@ -452,7 +516,7 @@ namespace Histacom2.OS.WinXPBad private System.Windows.Forms.Panel panel2; internal System.Windows.Forms.Panel taskbar; internal System.Windows.Forms.PictureBox startbutton; - internal System.Windows.Forms.Label taskbartime; + internal Histacom2.Engine.UI.ClassicLabel taskbartime; internal System.Windows.Forms.Panel startmenu; private System.Windows.Forms.Panel clockPanel; private System.Windows.Forms.Timer clockTimer; @@ -470,7 +534,7 @@ namespace Histacom2.OS.WinXPBad private System.Windows.Forms.Panel panel3; private System.Windows.Forms.PictureBox pictureBox1; private System.Windows.Forms.PictureBox pictureBox2; - private System.Windows.Forms.PictureBox pictureBox3; + private System.Windows.Forms.Panel pictureBox3; private System.Windows.Forms.PictureBox pictureBox4; private System.Windows.Forms.PictureBox pictureBox5; private System.Windows.Forms.PictureBox pictureBox6; @@ -480,5 +544,10 @@ namespace Histacom2.OS.WinXPBad private System.Windows.Forms.PictureBox pictureBox10; private System.Windows.Forms.PictureBox pictureBox11; private System.Windows.Forms.PictureBox pictureBox12; + private System.Windows.Forms.PictureBox pictureBox13; + private System.Windows.Forms.Panel panel4; + private System.Windows.Forms.PictureBox pictureBox14; + private System.Windows.Forms.ListView listView1; + private Engine.UI.ClassicLabel classicLabel1; } } \ No newline at end of file diff --git a/Histacom2/OS/WinXPBad/WinXPBad.cs b/Histacom2/OS/WinXPBad/WinXPBad.cs index 4968684..67985be 100644 --- a/Histacom2/OS/WinXPBad/WinXPBad.cs +++ b/Histacom2/OS/WinXPBad/WinXPBad.cs @@ -82,19 +82,15 @@ namespace Histacom2.OS.WinXPBad // Update the desktop Icons! - DesktopController.RefreshDesktopIcons(new ListViewItem[] { new System.Windows.Forms.ListViewItem("My Computer", 0), - new System.Windows.Forms.ListViewItem("Network Neighborhood", 5), - new System.Windows.Forms.ListViewItem("Inbox", 3), - new System.Windows.Forms.ListViewItem("Recycle Bin", 7), - new System.Windows.Forms.ListViewItem("Internet Explorer", 2), - new System.Windows.Forms.ListViewItem("Online Services", 1), - new System.Windows.Forms.ListViewItem("Set Up The Microsoft Network", 4), - new System.Windows.Forms.ListViewItem("Outlook Express", 6) }, ref desktopicons, Path.Combine(ProfileWindowsDirectory, "Desktop")); + ListViewItem lv = new ListViewItem("Recycle Bin", 7); + desktopicons.Items.Add(lv); + lv.Position = new Point(20, 20); + desktopicons.Invalidate(); + //DesktopController.RefreshDesktopIcons(new ListViewItem[] { new System.Windows.Forms.ListViewItem("Recycle Bin", 7) }, ref desktopicons, Path.Combine(ProfileWindowsDirectory, "Desktop")); } private void fontLoad() { - this.taskbartime.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))); this.desktopicons.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))); } @@ -449,6 +445,8 @@ namespace Histacom2.OS.WinXPBad private void desktopupdate_Tick(object sender, EventArgs e) { + desktopicons.Items[0].Position = new Point(this.Width - 50, this.Height - 80); + /* DesktopController.RefreshDesktopIcons(new ListViewItem[] { new System.Windows.Forms.ListViewItem("My Computer", 0), new System.Windows.Forms.ListViewItem("Network Neighborhood", 5), new System.Windows.Forms.ListViewItem("Inbox", 3), @@ -457,6 +455,7 @@ namespace Histacom2.OS.WinXPBad new System.Windows.Forms.ListViewItem("Online Services", 1), new System.Windows.Forms.ListViewItem("Set Up The Microsoft Network", 4), new System.Windows.Forms.ListViewItem("Outlook Express", 6) }, ref desktopicons, Path.Combine(ProfileWindowsDirectory, "Desktop")); + */ } private void FolderToolStripMenuItem_Click(object sender, EventArgs e) diff --git a/Histacom2/OS/WinXPBad/WinXPBad.resx b/Histacom2/OS/WinXPBad/WinXPBad.resx index f997f6a..a6256b2 100644 --- a/Histacom2/OS/WinXPBad/WinXPBad.resx +++ b/Histacom2/OS/WinXPBad/WinXPBad.resx @@ -127,8 +127,8 @@ AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 - ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAADq - ggAAAk1TRnQBSQFMAgEBDAEAARgBAgEYAQIBIAEAASABAAT/ASEBAAj/AUIBTQE2BwABNgMAASgDAAGA + ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAACG + igAAAk1TRnQBSQFMAgEBDAEAAUABAgFAAQIBIAEAASABAAT/ASEBAAj/AUIBTQE2BwABNgMAASgDAAGA AwABgAMAAQEBAAEgBwABAf8A/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/AP8AXAAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/x8AAf8DAAH/ @@ -309,384 +309,417 @@ Af8DgAH/A4AB/wOAAf8DgAH/FwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA Af8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOE Af8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf+DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8DAAH/AwAB/wwAAYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/fwAB/wMAAf8DAAH/LAADhCX/ + Af8DAAH/AwAB/wwAAYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/tAADhCX/AwAB/wMAAf8DAAH/ AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/A4QB/zMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wgAA4Ql/wMAAf8IAAGEAgAC/wIA - Av8CAAL/AgAC/wIAAv8CAAH/AYQCAAL/AgAB/28AAf8DAAH/A4QB/wOEAf8DhAH/AwAB/wMAAf8kAAOE - Df8DABX/AwAB/wIAAYQB/wEAAYQBAAH/AgABhAH/AYQCAAH/AgABhAH/AYQCAAH/AgABhAH/AYQCAAH/ - AYQCAAH/A4QB/wIAAYQB/wOEAf8BhAIAAf8BhAIAAf8BhAIABf8BhAIAAf8DAAH/A4QB/wMAAf8DhAH/ - LAADhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOE - Af8DhAH/A4QB/wOEAf8DhAH/AwAB/wQAA4QN/wMAFf8DAAH/BAAB/wIAAf8BhAIAAf8BhAIAAf8BhAIA - Av8CAAL/AgAG/wIABv8CAAH/YwAB/wMAAf8DhAH/A4QB/wPGAf8DhAH/A4QB/wOEAf8DhAH/AwAB/wMA - Af8cAAOECf8DABn/AwAB/wEAAYQBAAH/AgABhAH/AQABhAEAAf8CAAGEAf8BhAIAAf8CAAGEAf8BAAGE - AQAB/wGEAgAB/wGEAgAB/wIAAYQB/wOEAf8CAAGEAf8BhAIAAf8BhAIAAf8BhAIAAf8BhAIAAf8DAAH/ - AwAB/wOEAf8DAAH/A4QB/xMAAf8DAAH/AwAB/wMAAf8DAAH/CAADhAX/A8YB/wEAAYQBAAH/AQABhAEA - Af8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A4QB/wOE - Af8DAAH/A4QJ/wMAGf8DAAH/BAABhAIACv8CAAL/AgAG/wIAEf9XAAH/AwAB/wOEAf8DhAH/A8YB/wPG - Af8DxgH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/AwAB/xgAA4QJ/wMAAf8DABX/AwAB/wIAAYQB/wEA - AoQB/wIAAYQB/wEAAYQBAAH/AgABhAH/AQABhAEAAf8CAAGEAf8BhAIAAf8BAAKEAf8DhAH/AgABhAH/ - AYQCAAH/AYQCAAH/AYQCAAH/AgABhAH/AQABhAEAAf8BhAIAAf8DAAH/A4QB/wMAAf8DhAH/AwAB/wMA - Af8DAAH/AwAB/wEAAoQF/wEAA/8BAAKEAf8DAAH/AwAB/wMAAf8DhAX/A8YB/wEAAf8BAAH/AQAB/wEA - Af8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DxgH/A4QB/wOE - Af8DAAH/A4QJ/wMAAf8DABX/AwAC/wIABf8BhAIAAf8MAAH/AgAZ/wwAAYQCAAH/OwAB/wMAAf8DhAH/ - A4QB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/AwAB/xgAA4QJ/wMA - Af8DAAH/AwAF/wMACf8DAAH/AQAChAH/AgABhAH/A4QB/wIAAYQB/wEAAYQBAAH/AYQCAAH/AYQCAAH/ - AgABhAH/A4QB/wIAAYQB/wEAAoQB/wIAAYQB/wEAAoQB/wIAAYQF/wIAAYQF/wMAAf8DhAH/AwAB/wOE - Af8DxgH/A8YB/wPGAf8DxgH/AQAChAX/AQAD/wEAAoQB/wMAAf8DxgH/A8YB/wOEBf8DxgH/A8YB/wPG - Af8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DxgH/A4QB/wOE - Af8DAAH/A4QJ/wMAAf8DAAH/AwAF/wMACf8DAAL/AgAB/wGEAgAB/xQAAf8CAAv/AQAH/wEAAf8BhAIA - Af8EAAGEAgAB/wGEAgAB/zMAAf8DAAH/A4QB/wOEAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/ - A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/AwAB/xgAA4QN/wMAAf8DAAH/AwAB/wMACf8DAAH/AgABhAH/ - AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/A4QF/wOEAf8DhAH/AgABhAH/A4QB/wIAAYQB/wOE - Af8CAAGEBf8DAAH/AwAB/wOEAf8DAAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8BAAKEAf8BAAKEAf8BAAKE - Af8BAAKEAf8DAAH/A4QB/wOEAf8DhEX/A4QB/wOEAf8DAAH/A4QN/wMAAf8DAAH/AwAB/wMACf8DAAH/ - AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAv8CAAP/AQAH/wEAB/8BAAH/AYQCAAP/AQAB/wGE - AgAB/wMAAf8DAAH/AwAB/wMAAf8bAAH/AwAB/wOEAf8DhAH/A8YB/wPGAf8DhAH/A8YB/wPGAf8DxgH/ - A8YB/wPGAf8DxgH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/AwAB/xgAA4QR/wMAAf8DAAH/AwAJ/wMA - Af8BhAIABf8BhAIAAf8BhAIAAf8BhAIAAf8DhAH/AYQCAAH/A4QB/wOEAf8DhAH/A4QJ/wIAAYQF/wIA - AYQB/wMAAf8DxgH/A4QB/wMAAf8DhAH/FAADhAH/A8YB/wMAAf8QAAOEAf8DhAH/A4QB/wOEAf8DhAH/ - A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A8YB/wOEAf8DAAH/ - A4QR/wMAAf8DAAH/AwAJ/wMAAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAv8CAAP/ - AQAD/wEAA/8BAAP/AQAD/wEAA/8BAAH/AYQCAAH/A4QB/wOEAf8DhAH/AwAB/xQAA4QB/wOEAf8DhAH/ - A8YB/wPGAf8DxgH/A4QB/wEAAYQBAAH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A4QB/wOEAf8DhAH/ - A4QB/wOEAf8DhAH/A4QB/wMAAf8UAAOEDf8DAAH/AwAB/wMAAf8DAAn/AwAB/wOEAf8BhAIABf8BhAIA + AwAB/wMAAf8DAAH/A4QB/zMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ + AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wgAA4Ql/wMAAf8IAAGEAgAC/wIAAv8CAAL/AgAC/wIA + Av8CAAH/AYQCAAL/AgAB/0wAAwMBBAMMARADFQEdAxoBJQMfASwDHwEsAxsBJgMYASEDEwEaAwwBEAMF + AQcDAAEBMAADhA3/AwAV/wMAAf8CAAGEAf8BAAGEAQAB/wIAAYQB/wGEAgAB/wIAAYQB/wGEAgAB/wIA + AYQB/wGEAgAB/wGEAgAB/wOEAf8CAAGEAf8DhAH/AYQCAAH/AYQCAAH/AYQCAAX/AYQCAAH/AwAB/wOE + Af8DAAH/A4QB/ywAA4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/ + A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wMAAf8EAAOEDf8DABX/AwAB/wQAAf8CAAH/AYQCAAH/ + AYQCAAH/AYQCAAL/AgAC/wIABv8CAAb/AgAB/0AAAwMBBAMNAREDHwEtAzIBUAM+AWsDRAF8A0kBiQNJ + AYkDRQF9A0EBcwM7AWUDMwFSAygBPQMdASoDEgEZAwcBCgMBAQIkAAOECf8DABn/AwAB/wEAAYQBAAH/ + AgABhAH/AQABhAEAAf8CAAGEAf8BhAIAAf8CAAGEAf8BAAGEAQAB/wGEAgAB/wGEAgAB/wIAAYQB/wOE + Af8CAAGEAf8BhAIAAf8BhAIAAf8BhAIAAf8BhAIAAf8DAAH/AwAB/wOEAf8DAAH/A4QB/xMAAf8DAAH/ + AwAB/wMAAf8DAAH/CAADhAX/A8YB/wEAAYQBAAH/AQABhAEAAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPG + Af8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A4QB/wOEAf8DAAH/A4QJ/wMAGf8DAAH/BAABhAIA + Cv8CAAL/AgAG/wIAEf84AAMBAQIDEQEXAy8BSQNXAa4ChgF+AeACmQGKAeoB/wH+AdwD/wHeAf8CngGP + Ae4CnQGOAe0CdQFwAd0CYAFdAcoDUgGsA0wBlANGAYADOwFkAysBQwMaASUDCgEOAwIBAxwAA4QJ/wMA + Af8DABX/AwAB/wIAAYQB/wEAAoQB/wIAAYQB/wEAAYQBAAH/AgABhAH/AQABhAEAAf8CAAGEAf8BhAIA + Af8BAAKEAf8DhAH/AgABhAH/AYQCAAH/AYQCAAH/AYQCAAH/AgABhAH/AQABhAEAAf8BhAIAAf8DAAH/ + A4QB/wMAAf8DhAH/AwAB/wMAAf8DAAH/AwAB/wEAAoQF/wEAA/8BAAKEAf8DAAH/AwAB/wMAAf8DhAX/ + A8YB/wEAAf8BAAH/AQAB/wEAAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DAAH/AwAB/wMAAf8DAAH/ + AwAB/wMAAf8DxgH/A4QB/wOEAf8DAAH/A4QJ/wMAAf8DABX/AwAC/wIABf8BhAIAAf8MAAH/AgAZ/wwA + AYQCAAH/JAADCAELA0QBewG4AbYBowHwAf8B+AHVAv8B7gHIAv8B6QG/Av8B5AG5Av8B4gG3Av8B4gG3 + Av8B5AG5Av8B6QHBAv8B8QHLAv8B+QHVAf8CyAGxAfcCdQFuAd8DVAG5A0wBlANBAXMDLwFJAxgBIgMH + AQkDAAEBFAADhAn/AwAB/wMAAf8DAAX/AwAJ/wMAAf8BAAKEAf8CAAGEAf8DhAH/AgABhAH/AQABhAEA + Af8BhAIAAf8BhAIAAf8CAAGEAf8DhAH/AgABhAH/AQAChAH/AgABhAH/AQAChAH/AgABhAX/AgABhAX/ + AwAB/wOEAf8DAAH/A4QB/wPGAf8DxgH/A8YB/wPGAf8BAAKEBf8BAAP/AQAChAH/AwAB/wPGAf8DxgH/ + A4QF/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wOEAf8DhAH/A4QB/wOEAf8DhAH/ + A4QB/wPGAf8DhAH/A4QB/wMAAf8DhAn/AwAB/wMAAf8DAAX/AwAJ/wMAAv8CAAH/AYQCAAH/FAAB/wIA + C/8BAAf/AQAB/wGEAgAB/wQAAYQCAAH/AYQCAAH/JAADLgFHAf8B/QHcAv8B8QHLAv8B7QHFAv8B6QG/ + Av8B4wG5Av8B4gG3Av8B3wGzAv8B3QGwAv8B3gGxAv8B4AG0Av8B4QG2Av8B4gG4Av8B6QHAAv8B8QHL + Av8B+wHYAf8CngGPAe4CWQFYAcQDTQGXAz0BagMjATMDCQEMAwABARAAA4QN/wMAAf8DAAH/AwAB/wMA + Cf8DAAH/AgABhAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/A4QF/wOEAf8DhAH/AgABhAH/ + A4QB/wIAAYQB/wOEAf8CAAGEBf8DAAH/AwAB/wOEAf8DAAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8BAAKE + Af8BAAKEAf8BAAKEAf8BAAKEAf8DAAH/A4QB/wOEAf8DhEX/A4QB/wOEAf8DAAH/A4QN/wMAAf8DAAH/ + AwAB/wMACf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAv8CAAP/AQAH/wEAB/8BAAH/ + AYQCAAP/AQAB/wGEAgAB/wMAAf8DAAH/AwAB/wMAAf8QAAMCAQMCXgFdAbEB/wH4AdQC/wHwAcoC/wHp + AcEC/wHlAboC/wHiAbcC/wHeAbEC/wHbAa0C/wHaAasC/wHnAcIC/wHvAc8C/wHhAbUC/wHhAbUC/wHq + AcIC/wHsAcUC/wHtAcUC/wH0Ac8C/wH9AdwB/wKPAYMB6gNRAa0DQgF2AyMBNAMHAQoQAAOEEf8DAAH/ + AwAB/wMACf8DAAH/AYQCAAX/AYQCAAH/AYQCAAH/AYQCAAH/A4QB/wGEAgAB/wOEAf8DhAH/A4QB/wOE + Cf8CAAGEBf8CAAGEAf8DAAH/A8YB/wOEAf8DAAH/A4QB/xQAA4QB/wPGAf8DAAH/EAADhAH/A4QB/wOE + Af8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wPG + Af8DhAH/AwAB/wOEEf8DAAH/AwAB/wMACf8DAAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOE + Af8DhAL/AgAD/wEAA/8BAAP/AQAD/wEAA/8BAAP/AQAB/wGEAgAB/wOEAf8DhAH/A4QB/wMAAf8QAAMJ + AQwByAG3AZYB9AH/AfoB2AL/Ae4ByAL/AekBwAL/AeIBuAL/AeEBtQL/AdsBrQL/AdcBqAL/AdMBowL/ + AfEB2gH/AVwBvgFYAv8B8wHQAv8B+wHeA/8B6wP/AfMC/wH9AfMC/wH3AeAC/wH3AdIC/wH8AdkB/wKx + AaAB8wNRAa4DPwFtAxoBJAMCAQMMAAOEDf8DAAH/AwAB/wMAAf8DAAn/AwAB/wOEAf8BhAIABf8BhAIA Bf8BhAIAAf8DhAX/A8YB/wOEAf8DxgH/A4QJ/wIAAYQF/wMABf8DhAH/AwAB/wOEAf8UAAOEAf8DxgH/ AwAB/xQAA4QB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA Af8DAAH/A4QB/wOEAf8DxgH/AwAB/wOEDf8DAAH/AwAB/wMAAf8DAAn/AwAN/wEAD/8BAAf/AQAE/wIA - A/8BAAP/AQAD/wEAA/8BAAP/AQAB/wGEAgAF/wEAA/8DhAH/AwAB/xQAA4QB/wPGAf8DxgH/A8YB/wPG - Af8DhAH/AQABhAEAAf8BAAGEAQAB/wEAAYQBAAH/AQABhAEAAf8BAAGEAQAB/wPGAf8DxgH/A8YB/wOE - Af8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DAAH/FAADhCX/AwAB/wGEAgAB/wOEAf8BhAIABf8BhAIA - Af8DhAL/AgAB/wPGBf8DxgX/A8YJ/wPGAf8DAAX/A8YB/wOEAf8DAAH/A4QB/xQAA4QB/wPGAf8DAAH/ - FAADhAH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wOE - Af8DAAH/A4QB/wOEAf8EAAOEJf8DAAH/AQAT/wEAE/8BAAT/AgAD/wEAA/8BAAP/AQAD/wEAAf8BhAIA - Af8BAAf/A4QB/wMAAf8UAAOEAf8DxgH/A8YB/wEAAYQBAAH/A8YB/wEAAYQBAAH/AQABhAEAAf8BAAGE - AQAB/wEAAYQBAAH/AQABhAEAAf8BAAGEAQAB/wEAAYQBAAH/A8YB/wPGAf8DhAH/A4QB/wOEAf8DhAH/ - A4QB/wOEAf8DhAH/AwAB/xQAA4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wMA - Av8CAAL/AgAB/wOEAv8CAAb/AgAB/wPGBf8DxgX/A8YR/wMACf8DhAH/AwAB/wOEAf8UAAOEAf8DxgH/ - AwAB/xQAA4Qx/wPGAf8DhAH/A4QB/wMAAf8IAAOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/ - A4QB/wOEAf8DAB3/AQAM/wIAA/8BAAP/AQAD/wEAA/8BAAP/AQAB/wGEAgAF/wEAA/8DhAH/AwAB/xQA - A4QB/wPGAf8BAAGEAQAB/wOEAf8DxgH/A8YB/wEAAYQBAAH/AQABhAEAAf8DxgH/A8YB/wOEAf8BAAGE - AQAB/wPGAf8DxgH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wMAAf8XAAH/A8YN/wOEAf8DxgX/ - A8YF/wPGBf8DhAP/AQAB/wPGAv8CAAH/A8YC/wIAAf8DxgL/AgAB/wPGEf8DAAn/A8YB/wOEAf8DAAH/ - A4QB/wcAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wOEBf8DhAH/ - A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAX/A8YB/wOEAf8DhAH/AwAB/wgAA4QB/wPG - Kf8BhAIAAf8BhAIAAf8BhAIAAf8BhAIAAf8BhAIAAf8BhAIAAf8BhAIAAf8BhAIAAv8CAAL/AgAC/wIA - Av8CAAL/AgAC/wIAAv8CAAH/AYQCAAH/AQAH/wOEAf8DAAH/EAADhAH/A8YB/wEAAYQBAAH/AQABhAEA - Af8DxgH/A8YB/wPGAf8DxgH/AQABhAEAAf8DxgH/A8YB/wPGAf8BAAGEAQAB/wPGAf8DxgH/A4QB/wOE - Af8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DAAH/EwAB/wPGEf8DhAH/A8YF/wPGBf8DxgX/A8YD/wEA - Af8DxgP/AQAB/wPGAv8CAAH/A8YF/wPGCf8DABH/A4QB/wMAAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOE - Af8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEBf8DhAH/AwAd/wOEBf8DxgH/A4QB/wOE - Af8DAAH/CAADhAH/A8ZN/wEAE/8BAAv/AQAD/wOEAf8DAAH/EAADhAH/A8YB/wEAAYQBAAH/AQABhAEA - Af8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wEAAYQBAAH/A8YB/wPGAf8DhAH/A4QB/wOE - Af8DhAH/A4QB/wOEAf8DhAH/A4QB/wMAAf8TAAH/A8YV/wOEAf8DhAX/A8YF/wPGA/8BAAH/A8YD/wEA - Af8DxgP/AQAB/wPGA/8BAAH/A8YF/wMAAf8DABH/A8YB/wOEAf8DAAH/A4QB/wOEBf8DxgH/AQABhAEA - Af8BAAGEAQAB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A4QF/wOEAf8DAB3/A4QF/wPG - Af8DhAH/A4QB/wMAAf8IAAOEAf8Dxin/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/ + A/8BAAP/AQAD/wEAA/8BAAP/AQAB/wGEAgAF/wEAA/8DhAH/AwAB/xAAAzMBUwHuAbYBagH/AfoB6wHA + Av8B9QHQAv8B6QHAAv8B4gG3Av8B3wGyAv8B2wGtAv8B0wGjAv8B0QGgAv8B8QHaAf8BAAGZAQAB/wGA + AcsBeAH/ATwBswE8Af8BAAGZAQAB/wEAAZkBAAH/AUwBuQFMAf8BzwHsAc0C/wH8AeUC/wH6AdcD/wHe + Af8CngGPAe4DTAGUAyoBQQMHAQoMAAOEJf8DAAH/AYQCAAH/A4QB/wGEAgAF/wGEAgAB/wOEAv8CAAH/ + A8YF/wPGBf8Dxgn/A8YB/wMABf8DxgH/A4QB/wMAAf8DhAH/FAADhAH/A8YB/wMAAf8UAAOEAf8DxgH/ + A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A4QB/wMAAf8DhAH/ + A4QB/wQAA4Ql/wMAAf8BABP/AQAT/wEABP8CAAP/AQAD/wEAA/8BAAP/AQAB/wGEAgAB/wEAB/8DhAH/ + AwAB/w8AAQEBVQFUAVMBoAHvAbMBZwH/AfABuAFuAf8B+gHnAboC/wH6AdcC/wHpAcEC/wHfAbIC/wHb + Aa0C/wHTAaMC/wHWAaYC/wHxAdoB/wEAAZkBAAH/AQABmQEAAf8BAAGZAQAB/wEAAZkBAAH/AQABmQEA + Af8BAAGZAQAB/wEAAZkBAAH/AZ8B2QGbAv8B/gHhA/8B3gP/Ad4B/wJYAVYBuQMzAVMDDQESDAADhAH/ + A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/AwAC/wIAAv8CAAH/A4QC/wIABv8CAAH/ + A8YF/wPGBf8DxhH/AwAJ/wOEAf8DAAH/A4QB/xQAA4QB/wPGAf8DAAH/FAADhDH/A8YB/wOEAf8DhAH/ + AwAB/wgAA4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wMAHf8BAAz/AgAD/wEA + A/8BAAP/AQAD/wEAA/8BAAH/AYQCAAX/AQAD/wOEAf8DAAH/DAADBAEFAYYBeQFpAdkB8gG4AXAB/wHy + AbgBcAH/AfIBuAFwAf8B9gHKAZAB/wH8Ae4BxAL/AfkB1gL/AesBwgL/AdsBrgL/AdcBpwL/AfEB2gH/ + AQABmQEAAf8BAAGZAQAB/wEAAZkBAAH/AQABmQEAAf8BAAGZAQAB/wEAAZkBAAH/AQABmQEAAf8BDAGf + AQwB/wHfAfIB0QL/Af4B3QH/AfwB7gHEAf8CXwFeAckDOgFiAxIBGQ8AAf8Dxg3/A4QB/wPGBf8DxgX/ + A8YF/wOEA/8BAAH/A8YC/wIAAf8DxgL/AgAB/wPGAv8CAAH/A8YR/wMACf8DxgH/A4QB/wMAAf8DhAH/ + BwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/A4QF/wOEAf8DhAH/ + A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEBf8DxgH/A4QB/wOEAf8DAAH/CAADhAH/A8Yp/wGE + AgAB/wGEAgAB/wGEAgAB/wGEAgAB/wGEAgAB/wGEAgAB/wGEAgAB/wGEAgAC/wIAAv8CAAL/AgAC/wIA + Av8CAAL/AgAC/wIAAf8BhAIAAf8BAAf/A4QB/wMAAf8MAAMVAR0B+AHIAY8B/wH1AbwBeQH/AfUBvAF5 + Af8B9QG8AXkB/wH1AbwBeQH/AfUBvAF5Af8B9wHFAYkB/wH6AdsBqgH/Af0B7wHHAv8B9QHQAv8B8QHa + Af8BAAGZAQAB/wEAAZkBAAH/AQABmQEAAf8BHAGmARwB/wHvAfkB6AH/Ae8B+QHsAf8BgAHMAYAB/wEA + AZkBAAH/ATwBswE8Av8B9wHXAf8B9gHAAYMB/wFtAWcBYQHYA0EBcwMYASEPAAH/A8YR/wOEAf8DxgX/ + A8YF/wPGBf8DxgP/AQAB/wPGA/8BAAH/A8YC/wIAAf8DxgX/A8YJ/wMAEf8DhAH/AwAB/wOEAf8DhAH/ + A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QF/wOEAf8DAB3/ + A4QF/wPGAf8DhAH/A4QB/wMAAf8IAAOEAf8Dxk3/AQAT/wEAC/8BAAP/A4QB/wMAAf8MAAM6AWIB+AHB + AYUB/wH3Ab8BggH/AfcBvwGCAf8B9wG/AYIB/wH3Ab8BggH/AfcBvwGCAf8B9wG/AYIB/wH3Ab8BggH/ + AfcBvwGCAf8B+gHMAZUC/wHxAdoB/wEAAZkBAAH/AQABmQEAAf8BAAGZAQAB/wEAAZkBAAH/Aa8B3wGr + A/8B7gH/Af4B/AHrAf8BzwHsAcoB/wEMAZ8BDAH/Ad8B6QG/Af8B+QHHAY0B/wGdAZIBfwHtA0YBgAMc + ASgPAAH/A8YV/wOEAf8DhAX/A8YF/wPGA/8BAAH/A8YD/wEAAf8DxgP/AQAB/wPGA/8BAAH/A8YF/wMA + Af8DABH/A8YB/wOEAf8DAAH/A4QB/wOEBf8DxgH/AQABhAEAAf8BAAGEAQAB/wPGAf8DxgH/A8YB/wPG + Af8DxgH/A8YB/wPGAf8DxgH/A4QF/wOEAf8DAB3/A4QF/wPGAf8DhAH/A4QB/wMAAf8IAAOEAf8Dxin/ AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/ - AQAH/wOEAf8DAAH/EAADhAH/A8YB/wEAAYQBAAH/AQABhAEAAf8DxgH/AQABhAEAAf8DxgH/A8YB/wPG - Af8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wMA - Af8TAAH/A8Yd/wOEAf8DhAH/A8YF/wPGBf8DxgX/A8YF/wPGAf8DAAH/AwAd/wOEAf8DAAH/A4QB/wOE - Bf8DxgH/AQAB/wEAAf8BAAH/AQAB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wMAAf8DAAH/A4QF/wOE - Af8DAAf/AQAV/wOEBf8DxgH/A4QB/wOEAf8DAAH/CAADhAH/A8Y5/wEAJ/8BAAv/AQAD/wOEAf8DAAH/ - EAADhAH/A8YB/wEAAYQBAAH/AQABhAEAAf8BAAGEAQAB/wEAAYQBAAH/A8YB/wPGAf8DxgH/AQABhAEA - Af8BAAGEAQAB/wEAAYQBAAH/AQABhAEAAf8DxgH/A8YB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOE - Af8DhAH/AwAB/xMAAf8DxiX/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhCH/A8YB/wOE - Af8DAAH/A4QB/wOEBf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DhAH/A4QB/wOE - Bf8DhAH/AwAH/wEAFf8DhAX/A8YB/wOEAf8DhAH/AwAB/wgAA4QB/wPGKf8BhAIAAf8BhAIAAf8BhAIA - Af8BhAIAAf8BhAIAAf8BhAIAAf8BhAIAAf8BhAIAAf8BhAIAAf8BhAIAAf8BhAIAAf8BhAIAAf8BhAIA - Af8BhAIAAf8BhAIAAf8BhAIACf8DhAH/AwAB/wwAA4QB/wPGAf8DxgH/A8YB/wEAAYQBAAH/AQABhAEA - Af8BAAGEAQAB/wPGAf8DxgH/A8YB/wPGAf8BAAGEAQAB/wEAAYQBAAH/AQABhAEAAf8DxgH/A8YB/wOE - Af8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wMAAf8PAAH/A8Zt/wOEAf8DAAH/A4QB/wOE - Mf8DhAX/A4QB/wMAHf8DhAX/A8YB/wOEAf8DhAH/AwAB/wgAA4QB/wPGQf8BABP/AQAT/wEAB/8DhAH/ - AwAB/wwAA4QB/wPGAf8DxgH/AQABhAEAAf8BAAGEAQAB/wEAAYQBAAH/AQABhAEAAf8DxgH/A8YB/wPG - Af8BAAGEAQAB/wEAAYQBAAH/AQABhAEAAf8BAAGEAQAB/wPGAf8DxgH/A4QB/wOEAf8DhAH/A4QB/wOE - Af8DhAH/A4QB/wOEAf8DhAH/AwAB/w8AAf8Dxmn/A8YB/wOEAf8DAAH/A4QB/wQAA4QB/wOEAf8DhAH/ - A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QF/wOEAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/wMAAf8DAAH/AwAB/wOEBf8DxgH/A4QB/wOEAf8DAAH/CAADhAH/A8ZN/wEAC/8BAAv/AQAH/wEA - A/8DhAH/AwAB/wwAA4QB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wEAAYQBAAH/AQABhAEAAf8BAAGE - AQAB/wEAAYQBAAH/AQABhAEAAf8DxgH/AQABhAEAAf8DxgH/A8YB/wOEAf8DhAH/A4QB/wOEAf8DhAH/ - A4QB/wOEAf8DhAH/A4QB/wMAAf8PAAH/A8Zt/wOEAf8DAAH/A4QB/wgAA4QB/wMAAf8DAAH/AwAB/wMA - Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DhAX/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOE - Af8DhAH/A4QF/wPGAf8DhAH/A4QB/wMAAf8IAAOEAf8Dxkn/AQAT/wIAAv8CAAGEAf8CAAGEAf8CAAGE - Bf8DhAH/AwAB/wwAA4QB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DhAH/AQABhAEAAf8BAAGE - AQAB/wPGAf8DxhX/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wMAAf8PAAH/A8YJ/wMAAf8DAAX/ - AwAB/wMABf8DAAH/AwAJ/wMAAf8DAAn/AgAC/wIAAv8CAAb/AgAC/wIAAv8CAAL/AwAB/wMABf8DxgH/ - A4QB/wMAAf8DhAH/CAADhAH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wOE - Nf8DhAH/A4QB/wMAAf8IAAOEAf8Dxgn/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/ - AYQCAAH/AYQCADH/AQAD/wIAAv8CAAL/AgABhAH/AgABhAH/AQAD/wOEAf8DAAH/CAADhAH/A8YB/wPG - Af8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGCf8DhAH/A4QB/wPGAf8DxgH/A8YN/wOE - Af8DhAH/A4QB/wOEAf8DhAH/AwAB/wsAAf8Dxgn/AwAB/wMABf8DAAH/AwAF/wMAAf8DAAX/AwAB/wMA + AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/AQAH/wOEAf8DAAH/CwABAQFVAVQBUwGg + AfsBxgGOAf8B+wHGAY4B/wH7AcYBjgH/AfsBxgGOAf8B+wHGAY4B/wH7AcYBjgH/AfsBxgGOAf8B+wHG + AY4B/wH7AcYBjgL/AecBwgL/AfQB4wH/ATwBswE8Af8BAAGZAQAB/wEAAZkBAAH/AQABmQEAAf8BDAGf + AQwB/wHvAfkB7QH/AfwB9gHXAf8B/AH2AdkB/wGPAdIBjAH/AY8BzQF7Af8B/QHWAaQB/wGxAZ8BhAHz + A0oBjAMhATADAAEBCwAB/wPGHf8DhAH/A4QB/wPGBf8DxgX/A8YF/wPGBf8DxgH/AwAB/wMAHf8DhAH/ + AwAB/wOEAf8DhAX/A8YB/wEAAf8BAAH/AQAB/wEAAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DAAH/ + AwAB/wOEBf8DhAH/AwAH/wEAFf8DhAX/A8YB/wOEAf8DhAH/AwAB/wgAA4QB/wPGOf8BACf/AQAL/wEA + A/8DhAH/AwAB/wgAAwMBBAGHAXwBbwHZAf4BywGWAf8B/gHLAZYB/wH+AcsBlgH/Af4BywGWAf8B/gHL + AZYB/wH+AcsBlgH/Af4BywGWAf8B/gHLAZYB/wH+AcsBlgL/AfEB2gH/Aa8B1gGYAf8B/gHuAc4B/wH+ + AfUB2AL/AfwB6AH/Ac8B7AHHAf8BvwHmAb0B/wHfAfIB3gP/AfsB/wH+AfoB4gP/AewB/wGAAcwBgAL/ + AdsBqwL/AdsBrQH/A00BlQMnATsDBAEGCwAB/wPGJf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/ + A4QB/wOEIf8DxgH/A4QB/wMAAf8DhAH/A4QF/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/ + A8YB/wOEAf8DhAH/A4QF/wOEAf8DAAf/AQAV/wOEBf8DxgH/A4QB/wOEAf8DAAH/CAADhAH/A8Yp/wGE + AgAB/wGEAgAB/wGEAgAB/wGEAgAB/wGEAgAB/wGEAgAB/wGEAgAB/wGEAgAB/wGEAgAB/wGEAgAB/wGE + AgAB/wGEAgAB/wGEAgAB/wGEAgAB/wGEAgAB/wGEAgAJ/wOEAf8DAAH/CAADFAEcAf8B0AGeAv8BzAGZ + Av8BzAGZAv8BzAGZAv8BzAGZAv8BzAGZAv8BzAGZAv8BzAGZAv8BzAGZAv8BzAGZAv8B7QHQAf8BTAG5 + AUwC/wHtAcoB/wH7Ae8BxQL/AfwB2wH/AWwBxgFqAf8BPAGzATwB/wE8AbMBPAH/AWwBxgFsAf8BgAHM + AXkB/wGvAd8BpgH/Ac8B6AG9Av8B3QGuAv8B2QGqAf8DUAGoAy4BRwMJAQwLAAH/A8Zt/wOEAf8DAAH/ + A4QB/wOEMf8DhAX/A4QB/wMAHf8DhAX/A8YB/wOEAf8DhAH/AwAB/wgAA4QB/wPGQf8BABP/AQAT/wEA + B/8DhAH/AwAB/wgAAzIBUQH/AdQBpQL/AdQBpAL/AdQBpAL/AdQBpAL/AdQBpAL/AdQBpAL/AdQBpAL/ + AdQBpAL/AdQBpAL/AdQBpAL/AeEBuAH/AUwBuQFMAf8BjwHOAYMB/wH+AfEBygH/Af0B+AHTA/8B6QH/ + ASwBrAEsAf8BAAGZAQAB/wEAAZkBAAH/AQABmQEAAf8BPAGzATwC/wHxAcoC/wHVAaYC/wHUAaQB/wJY + AVYBuQMzAVMDDQESCwAB/wPGaf8DxgH/A4QB/wMAAf8DhAH/BAADhAH/A4QB/wOEAf8DhAH/A4QB/wOE + Af8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAX/A4QB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA + Af8DAAH/A4QF/wPGAf8DhAH/A4QB/wMAAf8IAAOEAf8Dxk3/AQAL/wEAC/8BAAf/AQAD/wOEAf8DAAH/ + CAADTQGRAf8B2wGuAv8B2wGuAv8B2wGuAv8B2wGuAv8B2wGuAv8B2wGuAv8B2wGuAv8B2wGuAv8B2wGu + Av8B2wGuAv8B3gGxAf8BnwHSAY0B/wEAAZkBAAH/AY8B0QGJAv8B+gHfAv8B/QHeAf8BzwHsAccB/wEA + AZkBAAH/AQABmQEAAf8BAAGZAQAB/wE8AbMBPAL/AfEBygL/AdsBrgL/AdsBrgH/AmABXQHIAzkBXwMR + ARcLAAH/A8Zt/wOEAf8DAAH/A4QB/wgAA4QB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ + AwAB/wMAAf8DhAX/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QF/wPGAf8DhAH/ + A4QB/wMAAf8IAAOEAf8Dxkn/AQAT/wIAAv8CAAGEAf8CAAGEAf8CAAGEBf8DhAH/AwAB/wcAAQEBdAFv + AWgBygH/AeABtQL/AeABtQL/AeABtQL/AeABtQL/AeABtQL/AeABtQL/AeABtQL/AeABtQL/AeABtQL/ + AeABtQL/AeABtQL/AekBxwH/ASwBrAEsAf8BAAGZAQAB/wEcAaYBHAH/AYABzAGAAf8BPAGzATwB/wEA + AZkBAAH/AQABmQEAAf8BAAGZAQAB/wE8AbMBPAL/AfIBzAL/AeABtQL/AeABtQH/AW0BawFkAdYDPgFr + AxUBHQsAAf8Dxgn/AwAB/wMABf8DAAH/AwAF/wMAAf8DAAn/AwAB/wMACf8CAAL/AgAC/wIABv8CAAL/ + AgAC/wIAAv8DAAH/AwAF/wPGAf8DhAH/AwAB/wOEAf8IAAOEAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPG + Af8DxgH/A8YB/wPGAf8DxgH/A4Q1/wOEAf8DhAH/AwAB/wgAA4QB/wPGCf8BhAIAAf8BhAIAAf8BhAIA + Af8BhAIAAf8BhAIAAf8BhAIAAf8BhAIAAf8BhAIAMf8BAAP/AgAC/wIAAv8CAAGEAf8CAAGEAf8BAAP/ + A4QB/wMAAf8EAAMDAQQByAGxAZUB8gH/AesBwgL/AesBwgL/AesBwgL/AesBwgL/AesBwgL/AesBwgL/ + AesBwgL/AesBwgL/AesBwgL/AesBwgL/AesBwgL/AekBvwH/Ac8B5AG3Af8BDAGfAQwB/wEAAZkBAAH/ + AQABmQEAAf8BAAGZAQAB/wEAAZkBAAH/AQABmQEAAf8BAAGZAQAB/wE8AbMBPAL/AfUBzwL/AesBwgL/ + AesBwgH/AYABfwFzAeIDQgF2AxgBIgsAAf8Dxgn/AwAB/wMABf8DAAH/AwAF/wMAAf8DAAX/AwAB/wMA Af8DAAH/AwAF/wIAAv8CAAL/AgAG/wIAAv8CAAL/AgAC/wMAAf8DAAn/A4QB/wMAAf8DhAH/CAADhC3/ A4QB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DhAH/ AwAB/wgAA4QB/wPGCv8CAAH/AYQCAAH/AYQCAAL/AgAC/wIAAv8CAAH/AYQCAC3/AQAL/wIAAv8CAAL/ - AgAC/wIAAYQF/wOEAf8DAAH/CAADhAH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8Dxgn/ - A4QB/wOEAf8DhAH/A4QB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YN/wOEAf8DhAH/AwAB/wsAAf8Dxgn/ - AwAB/wMABf8DAAH/AwAF/wMAAf8DAAH/AwAB/wMACf8DAAH/AwAB/wIAAv8CAAL/AgAG/wIAAv8CAAL/ - AgAO/wPGAf8DhAH/AwAB/wOEAf8IAAOEBf8DhAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/ - AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAX/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/ - A4QB/wOEAf8DhAH/A4QB/wOEAf8MAAOEAf8Dxgr/AgAB/wGEAgAC/wIAAv8CAAL/AgAB/wGEAgA9/wIA - Av8CAAL/AgAC/wIABv8DhAH/AwAB/wgAA4QB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGCf8DhAH/ - A4QB/wOEAf8DhAH/A4QB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGCf8DAAH/ - CwAB/wPGCf8DAAH/AwAF/wMAAf8DAAX/AwAB/wMADf8DAAH/AwAB/wMAAf8CAAL/AgAC/wIABv8CAAL/ - AgAC/wIAEv8DhAH/AwAB/wOEAf8IAAOEBf8DhAH/AwAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIA - Af8BhAIABf8DxgH/A4QB/wOEAf8DAAH/NAADhAH/A8YK/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAB/wGE - AgBN/wOEAf8DAAH/CAADhAH/A8YB/wPGAf8DxgH/A8YB/wPGCf8DhAH/AwAB/wOEAf8DhAH/A4QB/wOE - Af8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YJ/wMAAf8LAAH/A8YJ/wMA - Af8DAAX/AwAB/wMABf8DAAH/AwAF/wMAAf8DAAH/AwAB/wMABf8CAAL/AgAC/wIABv8CAAL/AgAC/wIA - Dv8DxgH/A4QB/wMAAf8DhAH/CAADhAX/A4QB/wMAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAH/ - AYQCAAX/A8YB/wOEAf8DhAH/AwAB/zQAA4QB/wPGAf8DxgH/A8YC/wIAAv8CAAL/AgAC/wIABv8CAAX/ - AYQCAAH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPG - Af8DxgH/A8YB/wPGAf8DxgH/A4QB/wMAAf8EAAOEAf8DxgH/A8YB/wPGAf8Dxgn/A4QB/wOEAf8DhAH/ - AwAB/wOEAf8DhAH/A4QB/wOEAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGCf8DhAH/ - A4QB/w8AAf8Dxgn/AwAB/wMABf8DAAH/AwAF/wMAAf8DAAH/AwAB/wMAAf8DAA3/AgAC/wIAAv8CAAb/ - AgAC/wIAAv8CABL/A4QB/wMAAf8DhAH/CAADhAX/A4QB/wMAAv8CAAP/AQAC/wIAAv8CAAL/AgAC/wIA - Av8CAAH/AYQCAAX/A8YB/wOEAf8DhAH/AwAB/zQAA4QB/wOEAf8DhAH/A4QC/wIAAv8CAAH/AYQCAAb/ - AgAG/wIABf8BhAIAAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOE - Af8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DAAH/BAADhAH/A8YB/wPGCf8DhAH/A4QB/wOEAf8DhAH/ - A4QB/wMAAf8DhAH/A4QB/wOEAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YJ/wOEAf8DhAH/ - FwAB/wPGCf8DAAH/AwAF/wMAAf8DAAX/AwAB/wMAAf8DAAH/AwAJ/wMAAf8DAAH/AgAC/wIAAv8CAAb/ - AgAC/wIAAv8CAA7/A8YB/wOEAf8DAAH/A4QB/wgAA4QF/wOEAf8DAAL/AgAD/wEAAv8CAAL/AgAC/wIA - Av8CAAL/AgAB/wGEAgAF/wPGAf8DhAH/A4QB/wMAAf9EAAH/AgAB/wGEAgAB/wQAAf8CABX/AYQCAAH/ - FAABhAIAAf8BhAIAAf8wAAOECf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/AwAB/wOEAf8DhAH/ - A4QB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YJ/wOEAf8DhAH/HwAB/wPGCf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/wMAAf8DAAH/AwAF/wMAAf8DAAH/AwAB/wMABf8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CABL/ - A4QB/wMAAf8DhAH/CAADhAX/A4QB/wMAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAH/AYQCAAX/ - A8YB/wOEAf8DhAH/AwAB/0QAAf8CAAH/DAAB/wIAC/8BAAf/AQAB/wGEAgAB/wwAAYQCAAX/AYQCAAH/ - MAADhAX/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DAAH/A4QB/wOEAf8DxgH/A8YB/wPG - Af8DxgH/A8YJ/wOEAf8DhAH/JwAB/wPGCf8DAAX/AwAB/wMABf8DAAH/AwAN/wMAAf8DAAn/AgAC/wIA - Bv8CAAL/AgAC/wIAEv8DxgH/A4QB/wMAAf8DhAH/CAADhAX/A4QB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/wMAAf8DAAH/AYQCAAX/A8YB/wOEAf8DhAH/AwAB/1gAAf8CAAP/AQAH/wEAB/8BAAH/AYQCAAL/ - AgAC/wIABv8CAAH/NAADhAn/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wMAAf8DhAH/A4QB/wPG - Af8DxgH/A8YJ/wOEAf8DhAH/LwAB/wPGbf8DhAH/AwAB/wOEAf8IAAOEBf8DhAH/A4QB/wOEAf8DhAH/ - A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAX/A8YB/wOEAf8DhAH/AwAB/1wABv8BAAP/AQAD/wEAA/8BAAP/ - AQAB/wGEAgAB/wGEAgAC/wIAAf88AAOEAf8DhA3/A4QB/wOEAf8DhAH/A4QB/wMAAf8DhAH/A8YB/wPG - Cf8DhAH/A4QB/zcAAf8Dxmn/A8YB/wOEAf8DAAH/A4QB/wgAA4Q1/wOEAf8DhAH/AwAB/2AAA8YB/wPG - A/8BAAP/AQAD/wEAA/8BAAP/AQAB/wPGAf9EAAOEAf8DhAH/A4QN/wOEAf8DAAH/A4QJ/wOEAf8DhAH/ - PwAB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/ - A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/ - AwAB/wOEAf8MAAOEAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPG - Af8DxgH/A4QB/wMAAf9oAAPGAf8DxgH/A8YB/wPGAf8DxgH/VAADhAH/A4QB/wOEBf8DhAX/A4QB/wOE - Af9HAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA + AgAC/wIAAYQF/wOEAf8DAAH/BAADEwEaAf8B6gHBAv8B8wHNAv8B8wHNAv8B8wHNAv8B8wHNAv8B8wHN + Av8B8wHNAv8B8wHNAv8B8wHNAv8B8wHNAv8B8wHNAv8B8wHNAv8B8wHNAv8B8AHJAf8BzwHnAbsB/wEc + AaYBHAH/AQABmQEAAf8BAAGZAQAB/wEAAZkBAAH/AQABmQEAAf8BHAGmARwB/wE8AbMBPAL/AfcB0gL/ + AfMBzQL/AfMBzQH/AZ0BmwGLAe0DRgGAAxwBKAsAAf8Dxgn/AwAB/wMABf8DAAH/AwAF/wMAAf8DAAH/ + AwAB/wMACf8DAAH/AwAB/wIAAv8CAAL/AgAG/wIAAv8CAAL/AgAO/wPGAf8DhAH/AwAB/wOEAf8IAAOE + Bf8DhAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAX/ + A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8MAAOE + Af8Dxgr/AgAB/wGEAgAC/wIAAv8CAAL/AgAB/wGEAgA9/wIAAv8CAAL/AgAC/wIABv8DhAH/AwAB/wQA + AzEBTQH/AfIBzQL/AfoB1wL/AfoB1wL/AfoB1wL/AfoB1wL/AfoB1wL/AfoB1wL/AfoB1wL/AfoB1wL/ + AfoB1wL/AfoB1wL/AfoB1wL/AfoB1wL/AfoB1wL/AfoB1wL/AfwB4QH/Aa8B3wGjAf8BgAHMAXcB/wGP + AdIBjgH/Ad8B8gHbAf8BzwHsAckB/wE8AbMBPAL/AfkB1QL/AfoB1wL/AfoB1wH/AbEBsAGeAfMDSQGL + Ax8BLQsAAf8Dxgn/AwAB/wMABf8DAAH/AwAF/wMAAf8DAA3/AwAB/wMAAf8DAAH/AgAC/wIAAv8CAAb/ + AgAC/wIAAv8CABL/A4QB/wMAAf8DhAH/CAADhAX/A4QB/wMAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIA + Av8CAAH/AYQCAAX/A8YB/wOEAf8DhAH/AwAB/zQAA4QB/wPGCv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIA + Af8BhAIATf8DhAH/AwAB/wQAA0ABbgL/Ad4D/wHeA/8B3gP/Ad4D/wHeA/8B3gP/Ad4D/wHeA/8B3gP/ + Ad4D/wHeA/8B3gP/Ad4D/wHeA/8B3gP/Ad4D/wHfA/8B4gP/AeUD/wHgA/8B5wH/Ac8B7AHEAv8B+wHY + A/8B3gP/Ad4D/wHeAf8DSwGRAyMBNAMBAQIHAAH/A8YJ/wMAAf8DAAX/AwAB/wMABf8DAAH/AwAF/wMA + Af8DAAH/AwAB/wMABf8CAAL/AgAC/wIABv8CAAL/AgAC/wIADv8DxgH/A4QB/wMAAf8DhAH/CAADhAX/ + A4QB/wMAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAH/AYQCAAX/A8YB/wOEAf8DhAH/AwAB/zQA + A4QB/wPGAf8DxgH/A8YC/wIAAv8CAAL/AgAC/wIABv8CAAX/AYQCAAH/A8YB/wPGAf8DxgH/A8YB/wPG + Af8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A4QB/wMA + Af8EAAFKAkkBiAL/Ad4D/wHeA/8B3gP/Ad4D/wHeA/8B3gP/Ad4D/wHeA/8B3gP/Ad4D/wHeA/8B3gP/ + Ad4D/wHeAv8B/gHcAv8B/gHdA/8B3QP/Ad4D/wHeA/8B3gP/Ad4D/wHfA/8B3QP/Ad4D/wHeA/8B3gH/ + A00BlwMpAT4DBQEHBwAB/wPGCf8DAAH/AwAF/wMAAf8DAAX/AwAB/wMAAf8DAAH/AwAB/wMADf8CAAL/ + AgAC/wIABv8CAAL/AgAC/wIAEv8DhAH/AwAB/wOEAf8IAAOEBf8DhAH/AwAC/wIAA/8BAAL/AgAC/wIA + Av8CAAL/AgAC/wIAAf8BhAIABf8DxgH/A4QB/wOEAf8DAAH/NAADhAH/A4QB/wOEAf8DhAL/AgAC/wIA + Af8BhAIABv8CAAb/AgAF/wGEAgAB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOE + Af8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wMAAf8EAANCAXQB/wHyAc0D/wHeA/8B3gP/ + Ad4D/wHeA/8B3gP/Ad4D/wHeA/8B3gP/Ad4C/wH6AdcC/wH1AdEB/wH7AeQBtgH/AfgB1wGjAf8B9QHN + AZMB/wH0AccBigH/AfUByQGNAf8B9QHLAZAB/wH5Ad0BrAH/AfwB6gG/Af8B/gH7AdgD/wHeA/8B3gP/ + Ad4D/wHeA/8B3gH/A1MBrQMtAUYDCAELBwAB/wPGCf8DAAH/AwAF/wMAAf8DAAX/AwAB/wMAAf8DAAH/ + AwAJ/wMAAf8DAAH/AgAC/wIAAv8CAAb/AgAC/wIAAv8CAA7/A8YB/wOEAf8DAAH/A4QB/wgAA4QF/wOE + Af8DAAL/AgAD/wEAAv8CAAL/AgAC/wIAAv8CAAL/AgAB/wGEAgAF/wPGAf8DhAH/A4QB/wMAAf9EAAH/ + AgAB/wGEAgAB/wQAAf8CABX/AYQCAAH/FAABhAIAAf8BhAIAAf8wAAMNAREBwAGmAYsB8AH/AfkB1QP/ + Ad4D/wHeA/8B3gP/Ad4C/wH7AdgC/wH0Ac8B/wH+AeoBwgH/AfkB1gGjAf8B9AHGAYgB/wHuAbQBaAH/ + Ae8BsgFmAf8B7wG0AWgB/wHwAbYBbQH/AfABtwFuAf8B8gG5AXIB/wHzAboBdAH/AfQBuwF3Af8B9QG8 + AXkB/wH3AcIBhgH/AfoB2AGlAf8B/gH3AdMD/wHeA/8B3gP/Ad4B/wNWAbYDMAFMAwoBDgcAAf8Dxgn/ + AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMABf8DAAH/AwAB/wMAAf8DAAX/AgAC/wIAAv8CAAL/ + AgAC/wIAAv8CAAL/AgAS/wOEAf8DAAH/A4QB/wgAA4QF/wOEAf8DAAL/AgAC/wIAAv8CAAL/AgAC/wIA + Av8CAAL/AgAB/wGEAgAF/wPGAf8DhAH/A4QB/wMAAf9EAAH/AgAB/wwAAf8CAAv/AQAH/wEAAf8BhAIA + Af8MAAGEAgAF/wGEAgAB/zQAAyIBMgFWAVUBVAGjAYIBegFwAdQBxgGyAZUB8QFzAW4BaQHJAWQBYgFe + AbsB9gHbAboB/wH2AdsBugH/AUkCSAGGAWEBXgFXAbgBugGUAWQB8QHvAbIBZgH/Ae8BtAFoAf8B8AG2 + AW0B/wHwAbcBbgH/AfIBuQFyAf8B8wG6AXQB/wH0AbsBdwH/AfUBvAF5Af8B9gG+AYAB/wH3AcABgwH/ + AfgBwQGFAf8B+QHDAYgB/wH8Ad4BrwL/AfsB2QP/Ad4B/wJXAVUBugM1AVYDDgETBwAB/wPGCf8DAAX/ + AwAB/wMABf8DAAH/AwAN/wMAAf8DAAn/AgAC/wIABv8CAAL/AgAC/wIAEv8DxgH/A4QB/wMAAf8DhAH/ + CAADhAX/A4QB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AYQCAAX/A8YB/wOEAf8DhAH/ + AwAB/1gAAf8CAAP/AQAH/wEAB/8BAAH/AYQCAAL/AgAC/wIABv8CAAH/ZAADIgEyA0IBdgF8AW8BXwHT + AfIBuQFyAf8B8wG6AXQB/wH0AbsBdwH/AfUBvAF5Af8B9gG+AYAB/wH3AcABgwH/AfgBwQGFAf8B+QHD + AYgB/wH6AcQBigH/AfsBxgGOAf8B/AHRAZ4C/wH8AdkB/wJkAWEBzAM2AVkDEAEVBwAB/wPGbf8DhAH/ + AwAB/wOEAf8IAAOEBf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAX/A8YB/wOE + Af8DhAH/AwAB/1wABv8BAAP/AQAD/wEAA/8BAAP/AQAB/wGEAgAB/wGEAgAC/wIAAf90AAMYASECTgFN + AZMBvwGbAXIB8QH2Ab4BgAH/AfcBwAGDAf8B+AHBAYUB/wH5AcMBiAH/AfoBxAGKAf8B+wHGAY4B/wH7 + AcYBjwH/Af0ByAGTAf8B/gHUAaMB/wFoAWcBYAHNAy8BSgMKAQ4HAAH/A8Zp/wPGAf8DhAH/AwAB/wOE + Af8IAAOENf8DhAH/A4QB/wMAAf9gAAPGAf8DxgP/AQAD/wEAA/8BAAP/AQAD/wEAAf8DxgH/fAADDQER + AUkCSAGDAfgBwQGFAf8B+QHDAYgB/wH6AcQBigH/AfsBxQGNAf8B+wHGAY8B/wH9AcgBkwH/Af0ByQGU + Av8BzAGYAf8BUQJQAZ4DHgErAwQBBQcAAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPG + Af8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPG + Af8DxgH/A8YB/wPGAf8DxgH/A8YB/wMAAf8DhAH/DAADhAH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/ + A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wOEAf8DAAH/aAADxgH/A8YB/wPGAf8DxgH/A8YB/4gA + AxgBIQFWAVUBUwGjAfsBxQGNAf8B+wHGAY8B/wH9AcgBkwH/Af0ByQGUAv8BywGYAf8BqgGPAXoB6gMo + AT0DCgENAwABAQcAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8DAAX/EAADhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/ - A4QB/+AAA4QB/wOEAf8DhAH/VwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/qwAB/wMA - Af8DAAH/AwAB/wMAAf8DAAH/kwAB/wMAAf9EAAOEAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/ - A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/ - A8YB/wOEAf8DAAH/nAABhAIAAf8BhAIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAf8BhAIAAf8BhAIA - Af+DAAH/AwAB/wPGAf8DhAH/AwAB/wMAAf88AAOEXf8DxgH/A4QB/wMAAf+VAAKEAv8CAAL/AgAB/wGE - AgAB/xQAAf8CAAL/AgAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/WwAB/wMAAf8DxgH/ - A8YB/wPGAf8DhAH/A4QB/wOEAf8DAAH/AwAB/zgAA4QF/wOEAf8DAAH/A4QB/wOEAf8DAAH/A4QB/wOE - Af8DAAH/A4QB/wOEAf8DAAH/A4QB/wOEAf8DAAH/A4QB/wOEAf8DAAH/A4QB/wOEAf8DAAH/A4QB/wOE - Af8DhAH/A4QB/wMAAf8TAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA + Af8DAAH/AwAB/wMABf8QAAOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/ + A4QB/wOEAf8DhAH//wARAAMYASEBSQJIAYQBbwFoAWABxQFwAWoBYQHHAU4BTQFMAZADGgEkAwUBBwMA + AQETAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA + Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf+rAAH/AwAB/wMAAf8DAAH/AwAB/wMA + Af+TAAH/AwAB/0QAA4QB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/ + A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A4QB/wMAAf+cAAGE + AgAB/wGEAgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAB/wGEAgAB/wGEAgAB/4MAAf8DAAH/A8YB/wOE + Af8DAAH/AwAB/zwAA4Rd/wPGAf8DhAH/AwAB/5UAAoQC/wIAAv8CAAH/AYQCAAH/FAAB/wIAAv8CAAH/ + AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf9bAAH/AwAB/wPGAf8DxgH/A8YB/wOEAf8DhAH/ + A4QB/wMAAf8DAAH/OAADhAX/A4QB/wMAAf8DhAH/A4QB/wMAAf8DhAH/A4QB/wMAAf8DhAH/A4QB/wMA + Af8DhAH/A4QB/wMAAf8DhAH/A4QB/wMAAf8DhAH/A4QB/wMAAf8DhAH/A4QB/wOEAf8DhAH/AwAB/xMA Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8DAAH/AwAB/wMAAf8JAAKEAv8CAAH/AYQCAAH/HwAB/wGEAgAB/wGEAgAB/wGEAgAB/wGEAgAB/wGE - AgAB/wGEAgAC/wIAAf8BhAIAAf8BhAIAAf8BhAIAAf8BhAIAAf9HAAH/AwAB/wPGAf8DxgH/A8YB/wPG - Af8DxgH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DAAH/AwAB/zQAA4QF/wOEAf8DAAX/A4QB/wMABf8DhAH/ - AwAF/wOEAf8DAAX/A4QB/wMABf8DhAH/AwAF/wOEAf8DAAX/A4QB/wOEAf8DAAH/AwAB/wgAA4QB/wEA - AoQB/wEAAoQB/wEAAoQB/wEAAoQB/wEAAoQB/wEAAoQB/wEAAoQB/wEAAoQB/wEAAoQB/wEAAoQB/wEA - AoQB/wEAAoQB/wEAAoQB/wEAAoQB/wEAAoQB/wEAAoQB/wEAAoQB/wEAAoQB/wEAAoQB/wEAAoQB/wEA - AoQB/wEAAoQB/wEAAoQB/wEAAoQB/wEAAoQB/wEAAoQB/wEAAoQB/wEAAoQB/wEAAoQB/wEAAoQB/wMA - Af8FAAKEAv8CAAH/AYQCAAH/FwAB/wMAAf8BhAIAAf8BhAIAAf8BhAIAAf8BhAIAAv8CAAH/AYQCAAL/ - AgAB/wGEAgAC/wIAAv8CAAL/AgAC/wIAAf8BhAIAAf8BhAIAAf83AAH/AwAB/wPGAf8DxgH/A8YB/wPG - Af8DxgH/A8YB/wPGAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/AwAB/wMAAf8wAAOEAf8DhAH/ - A4QB/wMABf8DhAH/AwAF/wOEAf8DAAX/A4QB/wMABf8DhAH/AwAF/wOEAf8DAAX/A4QB/wMABf8DAAH/ - A4QB/wOEAf8DAAH/BAADhAX/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEA - A/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPG - Af8BAAP/A8YB/wEAAoQB/wMAAf8BAAKEAf8BAAKEAv8CAAH/AYQCAAH/DwAB/wMAAf8BhAIAAf8BhAIA - Af8BhAIAAf8BhAIAAv8CAAH/AYQCAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/ - AgAB/wGEAgAB/wGEAgAB/ycAAf8DAAH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/ - A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/AwAB/wMAAf8oAAOEBf8DxgH/A8YB/wPG + Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wkA + AoQC/wIAAf8BhAIAAf8fAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAL/AgAB/wGE + AgAB/wGEAgAB/wGEAgAB/wGEAgAB/0cAAf8DAAH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DhAH/A4QB/wOE + Af8DhAH/A4QB/wMAAf8DAAH/NAADhAX/A4QB/wMABf8DhAH/AwAF/wOEAf8DAAX/A4QB/wMABf8DhAH/ + AwAF/wOEAf8DAAX/A4QB/wMABf8DhAH/A4QB/wMAAf8DAAH/CAADhAH/AQAChAH/AQAChAH/AQAChAH/ + AQAChAH/AQAChAH/AQAChAH/AQAChAH/AQAChAH/AQAChAH/AQAChAH/AQAChAH/AQAChAH/AQAChAH/ + AQAChAH/AQAChAH/AQAChAH/AQAChAH/AQAChAH/AQAChAH/AQAChAH/AQAChAH/AQAChAH/AQAChAH/ + AQAChAH/AQAChAH/AQAChAH/AQAChAH/AQAChAH/AQAChAH/AQAChAH/AwAB/wUAAoQC/wIAAf8BhAIA + Af8XAAH/AwAB/wGEAgAB/wGEAgAB/wGEAgAB/wGEAgAC/wIAAf8BhAIAAv8CAAH/AYQCAAL/AgAC/wIA + Av8CAAL/AgAB/wGEAgAB/wGEAgAB/zcAAf8DAAH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wOE + Af8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DAAH/AwAB/zAAA4QB/wOEAf8DhAH/AwAF/wOEAf8DAAX/ + A4QB/wMABf8DhAH/AwAF/wOEAf8DAAX/A4QB/wMABf8DhAH/AwAF/wMAAf8DhAH/A4QB/wMAAf8EAAOE + Bf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEA + A/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAChAH/ + AwAB/wEAAoQB/wEAAoQC/wIAAf8BhAIAAf8PAAH/AwAB/wGEAgAB/wGEAgAB/wGEAgAB/wGEAgAC/wIA + Af8BhAIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAH/AYQCAAH/AYQCAAH/ + JwAB/wMAAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DhAH/A4QB/wOEAf8DhAH/ + A4QB/wOEAf8DhAH/A4QB/wOEAf8DAAH/AwAB/ygAA4QF/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPG Af8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPG - Af8DxgH/A8YB/wPGAf8DxgH/A4QB/wOEAf8DhAH/AwAB/wOEBf8DxgH/AQAD/wPGAf8BAAP/A8YB/wEA + Af8DhAH/A4QB/wOEAf8DAAH/A4QF/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEA A/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPG - Af8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/AQAChAH/AwAB/wEAAoQB/wEAAoQC/wIAAv8CAAH/ - AYQCAAH/BwAB/wGEAgAB/wGEAgAB/wGEAgAB/wGEAgAC/wIAAf8BhAIAAv8CAAL/AgAC/wIAAv8CAAL/ - AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAB/wGEAgAB/xsAAf8DAAH/A8YB/wPG - Af8DxgH/A8YJ/wPGAf8DxgH/A8YB/wPGAf8DxgH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOE - Af8DhAH/A4QB/wOEAf8DAAH/JAADhAX/A8YB/wPGAf8BAAGEAQAB/wEAAYQBAAH/A8YB/wPGAf8DxgH/ - A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A4QB/wPGAf8DxgH/A8YB/wPGAf8DxgH/ - A4QB/wOEAf8DhAH/AwAB/wOEBf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/ + Af8BAAP/A8YB/wEAA/8BAAKEAf8DAAH/AQAChAH/AQAChAL/AgAC/wIAAf8BhAIAAf8HAAH/AYQCAAH/ + AYQCAAH/AYQCAAH/AYQCAAL/AgAB/wGEAgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/ + AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAH/AYQCAAH/GwAB/wMAAf8DxgH/A8YB/wPGAf8Dxgn/A8YB/wPG + Af8DxgH/A8YB/wPGAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wMA + Af8kAAOEBf8DxgH/A8YB/wEAAYQBAAH/AQABhAEAAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/ + A8YB/wPGAf8DxgH/A8YB/wPGAf8DhAH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DhAH/A4QB/wOEAf8DAAH/ + A4QF/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/ + AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAKE + Af8DAAH/AQAChAH/AQAChAL/AgAC/wIAAf8BhAIAAf8DAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAL/ + AgAB/wGEAgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIA + Av8CAAL/AgAC/wIAAf8BhAIAAf8MAAOEAf8DAAH/A8YB/wPGAf8DxgH/A8YJ/wOEAf8DhAX/A8YB/wPG + Af8DxgH/A8YB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wMA + Af8gAAOEBf8DxgH/A8YB/wEAAf8BAAH/AQAB/wEAAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DAAH/ + AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/A8YB/wPGAf8DhAH/A4QB/wOEAf8DAAH/ + A4QF/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/ + A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8BAAKE + Af8DAAH/AQAChAH/AQAChAL/AgAC/wIAAv8CAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAL/AgAB/wGE + AgAC/wIAAv8CAAL/AgAC/wIAAf8BhAIAAf8BhAIAAf8BhAIAAf8BhAIAAf8BhAIAAv8CAAL/AgAC/wIA + Av8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAf8BhAIAAf8IAAOEAf8DxgH/A8YB/wPGAf8DxgX/A4QB/wOE + Af8DhAX/A8YV/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/AwAB/yAA + A4QF/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DhAH/A4QB/wOEAf8DhAH/ + A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A8YB/wPGAf8DhAH/A4QB/wOEAf8DAAH/A4QF/wEAA/8DxgH/ AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/ - A8YB/wEAA/8DxgH/AQAChAH/AwAB/wEAAoQB/wEAAoQC/wIAAv8CAAH/AYQCAAH/AwAB/wGEAgAB/wGE - AgAB/wGEAgAB/wGEAgAC/wIAAf8BhAIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIA - Av8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAH/AYQCAAH/DAADhAH/AwAB/wPGAf8DxgH/A8YB/wPG - Cf8DhAH/A4QF/wPGAf8DxgH/A8YB/wPGAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOE - Af8DhAH/A4QB/wOEAf8DAAH/IAADhAX/A8YB/wPGAf8BAAH/AQAB/wEAAf8BAAH/A8YB/wPGAf8DxgH/ - A8YB/wPGAf8DxgH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wPGAf8DxgH/ - A4QB/wOEAf8DhAH/AwAB/wOEBf8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/ - A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/ - AQAD/wPGAf8BAAP/AQAChAH/AwAB/wEAAoQB/wEAAoQC/wIAAv8CAAL/AgAB/wGEAgAB/wGEAgAB/wGE - AgAB/wGEAgAC/wIAAf8BhAIAAv8CAAL/AgAC/wIAAv8CAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/ - AYQCAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAH/AYQCAAH/CAADhAH/A8YB/wPG - Af8DxgH/A8YF/wOEAf8DhAH/A4QF/wPGFf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOE - Af8DhAH/A4QB/wMAAf8gAAOEBf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/ - A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wPGAf8DxgH/A4QB/wOEAf8DhAH/ - AwAB/wOEBf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/ - A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/ - AQAChAH/AwAB/wEAAoQB/wPGAf8BAAKEAv8CAAL/AgAB/wGEAgAB/wGEAgAB/wGEAgAB/wGEAgAC/wIA - Av8CAAL/AgAC/wIAAv8CAAH/AYQCAAH/FwAB/wGEAgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIA - Af8BhAIAAf8IAAOEAf8DxgH/A8YB/wPGAf8DxgX/A4QG/wIACf8DxgH/A8YB/wPGAf8DxgH/A8YJ/wOE - Af8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wMAAf8DAAH/HAADhAX/A8YB/wPGAf8DxgH/ + A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAKEAf8DAAH/AQAChAH/ + A8YB/wEAAoQC/wIAAv8CAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAL/AgAC/wIAAv8CAAL/AgAC/wIA + Af8BhAIAAf8XAAH/AYQCAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAB/wGEAgAB/wgAA4QB/wPG + Af8DxgH/A8YB/wPGBf8DhAb/AgAJ/wPGAf8DxgH/A8YB/wPGAf8Dxgn/A4QB/wOEAf8DhAH/A4QB/wOE + Af8DhAH/A4QB/wOEAf8DhAH/AwAB/wMAAf8cAAOEBf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/ A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/ - A8YB/wPGAf8DxgH/A8YB/wOEAf8DhAH/A4QB/wMAAf8DhAX/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/ + A4QB/wOEAf8DhAH/AwAB/wOEBf8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/ A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/ - AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wEAAoQB/wMAAf8BAAKEAf8BAAKEAf8BAAKEAv8CAAL/ - AgAC/wIAAf8BhAIAAf8BhAIAAv8CAAH/AYQCAAL/AgAC/wIAAv8CAAH/AYQCAAH/HwAB/wGEAgAB/wGE - AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAB/wGEAgAB/wQAA4QB/wPGAf8DxgH/A8YF/wOEAf8DhAb/ - AgAd/wPGAf8Dxgn/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wMAAf8BhAIAAf8DAAH/GAADhF3/ - A4QB/wOEAf8DhAH/AwAB/wOEBf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/ - AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/ - A8YB/wEAA/8DxgH/AQAChAH/AwAB/wEAAoQB/wPGAf8BAAKEAv8CAAL/AgAC/wIAAf8BhAIAAf8BhAIA - Av8CAAL/AgAC/wIAAv8CAAH/AYQCAAH/JwAB/wGEAgAB/wGEAgAB/wGEAgAB/wGEAgAB/wGEAgAB/wGE - AgAB/wGEAgAB/wGEAgAB/wQAA4QB/wPGAf8DxgH/A8YF/wOEAf8DhAb/AgAh/wPGAf8DxgH/A8YJ/wOE - Af8DhAH/A4QB/wOEAf8DhAH/AwAB/wGEAgAB/wMAAf8cAAOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOE - Af8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOE - Af8DhAH/A8YB/wOEAf8DhAH/AwAB/wOEBf8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPG + AQAD/wPGAf8BAAP/AQAChAH/AwAB/wEAAoQB/wEAAoQB/wEAAoQC/wIAAv8CAAL/AgAB/wGEAgAB/wGE + AgAC/wIAAf8BhAIAAv8CAAL/AgAC/wIAAf8BhAIAAf8fAAH/AYQCAAH/AYQCAAL/AgAC/wIAAv8CAAL/ + AgAC/wIAAv8CAAH/AYQCAAH/BAADhAH/A8YB/wPGAf8DxgX/A4QB/wOEBv8CAB3/A8YB/wPGCf8DhAH/ + A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/AwAB/wGEAgAB/wMAAf8YAAOEXf8DhAH/A4QB/wOEAf8DAAH/ + A4QF/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/ + AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAKE + Af8DAAH/AQAChAH/A8YB/wEAAoQC/wIAAv8CAAL/AgAB/wGEAgAB/wGEAgAC/wIAAv8CAAL/AgAC/wIA + Af8BhAIAAf8nAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/ + BAADhAH/A8YB/wPGAf8DxgX/A4QB/wOEBv8CACH/A8YB/wPGAf8Dxgn/A4QB/wOEAf8DhAH/A4QB/wOE + Af8DAAH/AYQCAAH/AwAB/xwAA4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOE + Af8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DxgH/A4QB/wOE + Af8DAAH/A4QF/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPG Af8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEA - A/8DxgH/AQAD/wPGAf8BAAP/AQAChAH/AwAB/wEAAoQB/wEAAoQB/wPGAf8BAAKEAv8CAAL/AgAC/wIA - Af8BhAIAAf8BhAIAAv8CAAL/AgAC/wIAAf8BhAIAAf9MAAOEAf8DxgH/A8YF/wOEAf8DhAH/A4QG/wIA - Fv8CAAn/A8YB/wMAAf8DxgH/A8YB/wPGCf8DhAH/A4QB/wOEAf8DAAH/AYQCAAH/AYQCAAH/AwAB/yMA + A/8BAAKEAf8DAAH/AQAChAH/AQAChAH/A8YB/wEAAoQC/wIAAv8CAAL/AgAB/wGEAgAB/wGEAgAC/wIA + Av8CAAL/AgAB/wGEAgAB/0wAA4QB/wPGAf8DxgX/A4QB/wOEAf8DhAb/AgAW/wIACf8DxgH/AwAB/wPG + Af8DxgH/A8YJ/wOEAf8DhAH/A4QB/wMAAf8BhAIAAf8BhAIAAf8DAAH/IwAB/wMAAf8DAAH/AwAB/wMA Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8DAAH/AwAB/wMAAf8DAAH/A4QB/wOEAf8DxgH/A4QB/wMAAf8DhAX/AQAD/wPGAf8BAAP/A8YB/wEA + Af8DhAH/A4QB/wPGAf8DhAH/AwAB/wOEBf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEA A/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPG - Af8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAAoQB/wMAAf8FAAKEAf8DxgH/AQAChAL/ - AgAC/wIAAv8CAAH/AYQCAAL/AgAC/wIAAv8CAAL/AgAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8EAAOEAf8Dxgn/ - A4QB/wOEAf8DhAb/AgAO/wIABv8CAAn/A8YB/wMAAf8DxgH/AwAB/wPGAf8DxgH/A8YJ/wOEAf8DAAH/ - AYQCAAH/AYQCAAH/AwAB/yAAA4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOE - Af8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DAAH/A4QB/wOEAf8DxgH/AwAB/wOE - Bf8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPG - Af8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/AQAChAH/ - AwAB/wUAAoQB/wPGAf8DxgH/AQAChAL/AgAC/wIAAv8CAAH/AYQCAAL/AgAC/wIAAv8CAAL/AgAC/wIA - Av8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIA - Av8CAAH/AYQCAAH/BAADhAX/A4QB/wOEAf8DhAH/A4QB/wOEFv8CAAb/AgAJ/wPGAf8DAAH/A8YB/wMA - Af8DxgH/AwAB/wPGCf8DhAH/A4QB/wGEAgAB/wGEAgAB/wGEAgAB/wMAAf8cAAOEBf8DxgH/A8YB/wPG - Af8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wOE - Af8DhAH/AwAB/wOEAf8DhAH/BAADhAX/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/ + Af8BAAP/A8YB/wEAA/8DxgH/AQAChAH/AwAB/wUAAoQB/wPGAf8BAAKEAv8CAAL/AgAC/wIAAf8BhAIA + Av8CAAL/AgAC/wIAAv8CAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA + Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wQAA4QB/wPGCf8DhAH/A4QB/wOEBv8CAA7/ + AgAG/wIACf8DxgH/AwAB/wPGAf8DAAH/A8YB/wPGAf8Dxgn/A4QB/wMAAf8BhAIAAf8BhAIAAf8DAAH/ + IAADhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOE + Af8DhAH/A4QB/wOEAf8DhAH/A4QB/wMAAf8DhAH/A4QB/wPGAf8DAAH/A4QF/wPGAf8BAAP/A8YB/wEA + A/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPG + Af8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8BAAKEAf8DAAH/BQAChAH/A8YB/wPG + Af8BAAKEAv8CAAL/AgAC/wIAAf8BhAIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIA + Av8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAf8BhAIAAf8EAAOE + Bf8DhAH/A4QB/wOEAf8DhAH/A4QW/wIABv8CAAn/A8YB/wMAAf8DxgH/AwAB/wPGAf8DAAH/A8YJ/wOE + Af8DhAH/AYQCAAH/AYQCAAH/AYQCAAH/AwAB/xwAA4QF/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPG + Af8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A4QB/wOEAf8DAAH/A4QB/wOE + Af8EAAOEBf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/ A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/ - AQAD/wPGAf8BAAP/A8YB/wEAAoQB/wMAAf8JAAKEAf8BAAKEAf8BAAT/AgAC/wIAAv8CAAL/AgAC/wIA + AQAChAH/AwAB/wkAAoQB/wEAAoQB/wEABP8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIA Av8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIA - Av8CAAL/AgAC/wIAAv8CAAL/AgAB/wGEAgAB/wQAA4QB/wOECf8DhAH/A4QB/wOEFv8CAAb/AgAJ/wPG - Af8DAAH/A8YB/wMAAf8DxgH/AwAF/wOEAf8DhAL/AgAC/wIAAf8BhAIAAf8BhAIAAf8BhAIAAf8DAAH/ - HAADhAX/A8Y9/wPGAf8DhAH/A4QB/wMAAf8MAAOEBf8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/ + Av8CAAH/AYQCAAH/BAADhAH/A4QJ/wOEAf8DhAH/A4QW/wIABv8CAAn/A8YB/wMAAf8DxgH/AwAB/wPG + Af8DAAX/A4QB/wOEAv8CAAL/AgAB/wGEAgAB/wGEAgAB/wGEAgAB/wMAAf8cAAOEBf8Dxj3/A8YB/wOE + Af8DhAH/AwAB/wwAA4QF/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/ AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/ - A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/AQAChAH/AwAB/wkAAoQB/wEAA/8BAAKEAf8DxgL/AgAC/wIA + A8YB/wEAA/8BAAKEAf8DAAH/CQAChAH/AQAD/wEAAoQB/wPGAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIA Av8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIA - Av8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAH/AYQCAAH/DAADhAH/A4QJ/wOEFv8CAAb/AgAJ/wPG - Af8DAAH/A8YB/wMAAf8DxgH/AwAB/wOEAv8CAAL/AgAC/wIAAf8BhAIAAv8CAAH/AYQCAAH/AYQCAAH/ - AwAB/xwAA4QF/wPGAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOE - Af8DhAH/A4QF/wPGAf8DhAH/A4QB/wMAAf8MAAOEBf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/ + Av8CAAL/AgAC/wIAAf8BhAIAAf8MAAOEAf8DhAn/A4QW/wIABv8CAAn/A8YB/wMAAf8DxgH/AwAB/wPG + Af8DAAH/A4QC/wIAAv8CAAL/AgAB/wGEAgAC/wIAAf8BhAIAAf8BhAIAAf8DAAH/HAADhAX/A8YB/wOE + Af8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAX/A8YB/wOE + Af8DhAH/AwAB/wwAA4QF/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/ A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/ - AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAChAH/AwAB/wgAAYQCAAH/AQAChAH/AQAH/wOEAv8CAAL/ - AgAC/wIAAv8CAAL/AgAB/wGEAgAB/wGEAgAB/wGEAgAB/wGEAgAB/wGEAgAB/wGEAgAB/wGEAgAB/wGE - AgAB/wGEAgAB/wGEAgAB/wGEAgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAf8BhAIAAf8UAAOE - Af8DhAH/A4QW/wIABv8CAAn/A8YB/wMAAf8DxgH/AwAB/wPGAf8DAAX/AYQCAAL/AgAC/wIAAv8CAAH/ - AYQCAAH/AQABhAEAAf8BhAIAAf8DAAH/HAADhAX/A8YB/wMAEf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Cf8DhAX/A8YB/wOEAf8DhAH/AwAB/wwAA4QF/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/ + AQAD/wPGAf8BAAKEAf8DAAH/CAABhAIAAf8BAAKEAf8BAAf/A4QC/wIAAv8CAAL/AgAC/wIAAv8CAAH/ + AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/AYQCAAH/ + AYQCAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAB/wGEAgAB/xQAA4QB/wOEAf8DhBb/AgAG/wIA + Cf8DxgH/AwAB/wPGAf8DAAH/A8YB/wMABf8BhAIAAv8CAAL/AgAC/wIAAf8BhAIAAf8BAAGEAQAB/wGE + AgAB/wMAAf8cAAOEBf8DxgH/AwAR/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAJ/wOEBf8DxgH/A4QB/wOE + Af8DAAH/DAADhAX/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/ A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/ - AQAD/wPGAf8BAAP/A8YB/wEAA/8BAAKEAf8DAAH/CAABhAIAAf8BhAIAAf8BAAKEAf8BAAP/AQAE/wIA - Av8CAAL/AgAC/wIAAv8CAAH/AYQCAAH/IwAB/wGEAgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIA - Af8BhAIAAf8UAAOEAf8DxgH/A4QW/wIABv8CAAn/A8YB/wMAAf8DxgH/AwAB/wPGAf8DAAH/AQABhAEA - Af8BhAIAAv8CAAL/AgAC/wIAAf8BhAIAAv8CAAH/AQABhAEAAf8DAAH/HAADhAX/A8YB/wMAEf8DhBH/ - AwAJ/wOEBf8DxgH/A4QB/wOEAf8DAAH/DAADhAX/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPG + AQAD/wEAAoQB/wMAAf8IAAGEAgAB/wGEAgAB/wEAAoQB/wEAA/8BAAT/AgAC/wIAAv8CAAL/AgAC/wIA + Af8BhAIAAf8jAAH/AYQCAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAB/wGEAgAB/xQAA4QB/wPG + Af8DhBb/AgAG/wIACf8DxgH/AwAB/wPGAf8DAAH/A8YB/wMAAf8BAAGEAQAB/wGEAgAC/wIAAv8CAAL/ + AgAB/wGEAgAC/wIAAf8BAAGEAQAB/wMAAf8cAAOEBf8DxgH/AwAR/wOEEf8DAAn/A4QF/wPGAf8DhAH/ + A4QB/wMAAf8MAAOEBf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPG Af8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEA - A/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAAoQB/wMAAf8MAAGEAgAB/wGEAgAB/wEAAoQF/wEABP8CAAL/ - AgAC/wIAAv8CAAH/AYQCAAH/IwAB/wGEAgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAB/wGEAgAB/xgA - A4QB/wPGAf8DhBb/AgAG/wIACf8DxgH/AwAB/wPGAf8DAAH/A8YB/wMAAf8BAAGEAQAB/wGEAgAB/wGE - AgAC/wIAAv8CAAL/AgAB/wEAAYQBAAH/AYQCAAH/AwAB/xwAA4QF/wPGAf8DAAn/AwAB/wMAAf8DhBH/ - AwAJ/wOEBf8DxgH/A4QB/wOEAf8DAAH/DAADhAX/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEA + A/8DxgH/AQAChAH/AwAB/wwAAYQCAAH/AYQCAAH/AQAChAX/AQAE/wIAAv8CAAL/AgAC/wIAAf8BhAIA + Af8jAAH/AYQCAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAH/AYQCAAH/GAADhAH/A8YB/wOEFv8CAAb/ + AgAJ/wPGAf8DAAH/A8YB/wMAAf8DxgH/AwAB/wEAAYQBAAH/AYQCAAH/AYQCAAL/AgAC/wIAAv8CAAH/ + AQABhAEAAf8BhAIAAf8DAAH/HAADhAX/A8YB/wMACf8DAAH/AwAB/wOEEf8DAAn/A4QF/wPGAf8DhAH/ + A4QB/wMAAf8MAAOEBf8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEA A/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPG - Af8BAAP/A8YB/wEAA/8DxgH/AQAD/wEAAoQB/wMAAf8MAAGEAgAB/wGEAgAB/wGEAgAB/wEAAoQB/wEA - A/8BAAT/AgAC/wIAAv8CAAL/AgAB/wGEAgAB/xsAAf8BhAIAAf8BhAIAAv8CAAL/AgAC/wIAAv8CAAL/ - AgAC/wIAAf8BhAIAAf8YAAOEBf8DhBb/AgAR/wPGAf8DAAH/A8YB/wMAAf8DxgH/AwAB/wGEAgAC/wIA - Av8CAAL/AgAC/wIAAf8BAAGEAQAB/wGEAgAB/wEAAYQBAAH/AwAB/xwAA4QF/wPGAf8DAAn/A4QF/wOE - Ef8DAAn/A4QF/wPGAf8DhAH/A4QB/wMAAf8MAAOEBf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/ + Af8BAAP/AQAChAH/AwAB/wwAAYQCAAH/AYQCAAH/AYQCAAH/AQAChAH/AQAD/wEABP8CAAL/AgAC/wIA + Av8CAAH/AYQCAAH/GwAB/wGEAgAB/wGEAgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAB/wGEAgAB/xgA + A4QF/wOEFv8CABH/A8YB/wMAAf8DxgH/AwAB/wPGAf8DAAH/AYQCAAL/AgAC/wIAAv8CAAL/AgAB/wEA + AYQBAAH/AYQCAAH/AQABhAEAAf8DAAH/HAADhAX/A8YB/wMACf8DhAX/A4QR/wMACf8DhAX/A8YB/wOE + Af8DhAH/AwAB/wwAA4QF/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/ A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/ - AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAChAH/AwAB/xAAAYQCAAH/AYQCAAL/AgAB/wEAAoQF/wEA - BP8CAAL/AgAC/wIAAv8CAAH/AYQCAAH/EwAB/wGEAgAB/wGEAgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/ - AgAC/wIAAf8BhAIAAf8YAAOEBf8DhBb/AgAR/wPGAf8DAAH/A8YB/wMAAf8DxgH/AwAC/wIABf8BAAGE - AQAB/wEAAYQBAAH/AQABhAEAAf8BhAIAAf8BAAGEAQAB/wGEAgAB/wMAAf8cAAOEBf8DxgH/AwAJ/wOE - Bf8BhAIAAv8CAAL/AgAC/wIAAv8CAAH/AwAJ/wOEBf8DxgH/A4QB/wOEAf8DAAH/DAADhAX/A8YB/wEA + AQAD/wPGAf8BAAKEAf8DAAH/EAABhAIAAf8BhAIAAv8CAAH/AQAChAX/AQAE/wIAAv8CAAL/AgAC/wIA + Af8BhAIAAf8TAAH/AYQCAAH/AYQCAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAB/wGEAgAB/xgA + A4QF/wOEFv8CABH/A8YB/wMAAf8DxgH/AwAB/wPGAf8DAAL/AgAF/wEAAYQBAAH/AQABhAEAAf8BAAGE + AQAB/wGEAgAB/wEAAYQBAAH/AYQCAAH/AwAB/xwAA4QF/wPGAf8DAAn/A4QF/wGEAgAC/wIAAv8CAAL/ + AgAC/wIAAf8DAAn/A4QF/wPGAf8DhAH/A4QB/wMAAf8MAAOEBf8DxgH/AQAD/wPGAf8BAAP/A8YB/wEA A/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPG - Af8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wEAAoQB/wMAAf8QAAGE - AgAB/wGEAgAC/wIAAv8CAAH/AQAChAH/AQAD/wEABP8CAAL/AgAC/wIAAv8CAAH/AYQCAAH/AwAB/wMA - Af8DAAH/AYQCAAH/AYQCAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAf8BhAIAAf8cAAOE - Af8DhCn/A8YB/wMAAf8DxgH/AwAB/wPGAf8DAAH/AQABhAEAAf8BAAGEAQAB/wEAAYQBAAH/AQABhAEA - Bf8BAAGEAQAB/wGEAgAB/wMAAf8gAAOEBf8DxgH/AwAH/wEAAf8DhBH/AwAR/wOEBf8DxgH/A4QB/wOE - Af8DAAH/DAADhAX/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/ - AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/ - A8YB/wEAAoQB/wMAAf8UAAGEAgAB/wGEAgAC/wIAAv8CAAH/AQAChAH/A8YB/wEABP8CAAL/AgAC/wIA - Av8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAH/AYQCAAH/ - IAADhAH/A4QN/wIAAYQZ/wPGAf8DAAH/A8YB/wMAAf8DxgH/AwAC/wIAAf8BAAGEAQAB/wEAAYQBAAH/ - AQABhAEAAf8BAAGEAQAB/wGEAgAB/wEAAYQBAAH/AwAB/yAAA4QF/wPGAf8DAAf/AQAB/wMAAf8DAAH/ - AwAB/wMAAf8DAAH/AwAR/wOEBf8DxgH/A4QB/wOEAf8DAAH/DAADhHX/AwAB/wMAAf8YAAGEAgAC/wIA - Av8CAAL/AgAC/wIAAf8BAAKEAf8BAAT/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/ - AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAH/AYQCAAH/JAADhAX/AgAC/wIAAYQB/wIAEv8DxgH/A8YB/wOE - Af8DhAH/A8YB/wMAAf8DxgH/AwAF/wEAAYQBAAH/AQABhAEAAf8BAAGEAQAB/wMAAf8BAAGEAQAB/wMA - Af8kAAOEBf8DxgH/AwAx/wOEBf8DxgH/A4QB/wOEAf8DAAH/DAADhAH/A8YB/wPGAf8DxgH/A8YB/wPG - Af8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A4QB/wOEAf8DhAH/A4QB/wOE - Af8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DAAH/IAABhAIAAv8CAAL/AgAC/wIA - Av8CAAL/AgAB/wEAA/8BAAKEAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/ - AgAC/wIAAf8BhAIAAf8MAAH/AgAB/xgAA4QF/wIAAv8CAAL/AgAK/wPGAf8DxgH/A4QB/wOEAf8DxgH/ - A8YB/wOEAf8DhAH/A8YB/wMAAf8BAAGEAQAB/wEAAYQBAAH/AQABhAEAAf8BAAGEAQAF/wGEAgAB/wMA - Af8kAAOEBf8DxgH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/wOEBf8DxgH/A4QB/wOEAf8DAAH/EAADhAX/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPG - Af8BAAP/A8YB/wEAA/8DxgH/A4QB/2AAAf8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIA - Av8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAB/wGEAgAB/wGEAgAB/xAAAf8CAAH/GAADhAX/ - AgABhAH/AgAC/wIAAYQB/wPGAf8DxgH/A4QB/wOEAf8DxgH/A8YB/wOEAf8DhAH/A8YB/wPGAf8DhAH/ - A4QB/wEAAYQBAAH/AQABhAEAAf8BAAGEAQAB/wEAAYQBAAH/AwAB/wOEAf8oAAOEBf8DxgH/A4QB/wOE - Af8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEBf8DxgH/A4QB/wOE - Af8DAAH/FAADhAX/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wOEAf9sAAH/ - AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAB/wGEAgAB/wGE - AgAB/xgAAf8CAAH/GAADhAX/AgAC/wPGAf8DxgH/A4QB/wOEAf8DxgH/A8YB/wOEAf8DhAH/A8YB/wPG - Af8DhAH/A4QB/wEAAYQBAAH/AQABhAEAAf8BAAGEAQAB/wEAAYQBAAH/AQABhAEAAf8BAAGEAQAB/wOE - Af8sAAOEBf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/ - A8YB/wPGAf8DxgH/A8YB/wOEAf8DhAH/AwAB/xgAA4Ql/wOEAf98AAH/AgAC/wIAAv8CAAL/AgAC/wIA - Av8CAAL/AgAC/wIAAv8CAAH/AYQCAAH/IAAB/wIAAf8YAAOEAf8DxgH/A8YB/wOEAf8DhAH/A8YB/wPG - Af8DhAH/A4QB/wPGAf8DxgH/A4QB/wOEAf8BAAGEAQAB/wEAAYQBAAH/AQABhAEAAf8BAAGEAQAB/wEA - AYQBAAH/AQABhAEAAf8BAAGEAQAB/wMAAf80AAOERf8DhAH/A4QB/wMAAf8cAAOEAf8DhAH/A4QB/wOE - Af8DhAH/A4QB/wOEAf8DhAH/A4QB/5gAAf8CAAL/AgAC/wIAAv8CAAH/HAAB/wIAAv8CAAH/GAADhAH/ - A4QB/wOEAf8DxgH/A8YB/wOEAf8DhAH/A8YB/wPGAf8DhAH/A4QB/wEAAYQBAAH/AQABhAEABv8CAAH/ - AQABhAEAAf8BAAGEAQAB/wEAAYQBAAH/A4QB/wOEAf88AAOEAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPG - Af8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgX/A4QB/wMAAf/kAAH/AgAC/wIA - Av8CAAH/EAAB/wIAAv8CAAH/JAADhAH/A4QB/wOEAf8DxgH/A8YB/wOEAf8DhAX/A8YB/wOEAv8CAA3/ - A4QB/wOEAf9IAAOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOE - Af8DhAH/A4QB/wOEAf8DhAH/A4QB//AAAf8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAf8wAAOEAf8DhAH/ - A4QB/wQAA4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8oAAFCAU0BPgcAAT4DAAEoAwABgAMA - AYADAAEBAQABAQYAAQgWAAP//wD/AAMAAcABfwEAAT8BwAF/AQABPwHAAX8BAAE/AcABfwEAAT8BwAE/ - AYABHwHAAT8BgAEfAcABPwGAAR8BwAE/AYABHwHAAR8BwAEPAcABHwHAAQ8BwAEfAcABDwHAAR8BwAEP - AcABDwHgAQcBwAEPAeABBwHAAQ8B4AEHAcABDwHgAQcBwAEHAfABAwHAAQcB8AEDAcABBwHwAQMBwAEH - AfABAwHAAQMC/wHAAQMC/wHAAQMC/wHAAQMC/wHAAQMC/wHAAQMC/wHAAQMC/wHAAQMC/wHAAgABDwHA - AgABDwHAAgABDwHAAgABDwHAAgABBwHAAgABBwHAAgABBwHAAgABBwHAAgABAwHAAgABAwHAAgABAwHA - AgABAwHAAgABAQHAAgABAQHAAgABAQHAAgABAQHAAwABwAMAAcADAAHAAwABwAMAAcADAAHAAwABwAMA - AcADAAHAAwABwAMAAcADAAGAAwABgAMAAYADAAGAJgABAQMAAQEDAAEBAwABAQGAAgABDwGAAgABDwGA - AgABDwGAAgABDwHCAgABDwHCAgABDwHCAgABDwHCAgABDwHjAgABDwHjAgABDwHjAgABDwHjAgABDwHz - AgABDwHzAgABDwHzAgABDwHzAgABDwH/AgABDwH/AgABDwH/AgABDwH/AgABDwH/AgABDwH/AgABDwH/ - AgABDwH/AgABDwH/AgABDwH/AgABDwH/AgABDwH/AgABDwH/AgABDwH/AgABDwH/AgABDwH/AgABDwH/ - AgABDwH/AgABDwH/AgABDwH/AgABDwH/AgABDwH/AgABDwH/AgABDwH/AgABDwH/AgABDwH/AgABDwH/ - AgABDwH/AgABDwH/AYABAAEPAf8BgAEAAQ8B/wGAAQABDwH/AYABAAEPAf8BwAEAAQ8B/wHAAQABDwH/ - AcABAAEPAf8BwAEAAQ8B/wHgAQABHwH/AeABAAEfAf8B4AEAAR8B/wHgAQABHwQABP8BAAEcAR8D/wHH - Af8EAAH/AfABAAEDAQABGAEHA/8BAQH/BAAB/wHgAQABAQEAARABAwL/AfwBAAF/BAAB8AFgAwABEAEB - Av8B8AEAAT8JAAEDAYAB7wH/AcABAAE/CQABBwHAAU8B/wIAAT8MAAH8AgABPwQAAfgB8AYAAfgCAAEf - BAAC+AYAAfgCAAEfBAAC+AEAAQEEAAH4AgABHwQAAvgBAAEDBAAB+AIAAR8EAAGAAgABAwQAAfACAAEP - BwABAwQAAfACAAEPBwABAwQAAfACAAEPBwABAwQAAfACAAEPBwABAwQAAeACAAEHBwABAwQAAeACAAEH - BAABgAIAAQMEAAHgAgABBwQAAcACAAEDBAAB4AIAAQcEAAHAAgABAwQAAcACAAEDBAABwAIAAQMEAAHA - AgABAwQAAcACAAEHBAABwAIAAQMEAAHAAQABHwH/BAABwAIAAQMEAAHAAQABHwH/BAABgAIAAQcEAAHA - AQABHwH/BAABgAIAAR8EAAHAAQABHwH/AfIBAwHnAf8BgAIAAX8EAAHAAQABHwH/AfcBAQHHAf8BgAEA - AQEB/wQAAcABAAEfAv8BgAEPAf8BgAEAAQcB/wQAAcABAAEfAv8BwAEfAf8BwAEAAR8B/wQAAcABAAEf - Av8B4AEfAf8B8AEAAX8B/wQAAeABAAEfAv8B+AE/Af8B/gEBAv8EAAHwAQABPwb/AccC/wHAAgABPwT/ - AfABPwP/AfwC/wGAAgABHwT/AcABDwP/AfABPwH/AYACAAEPBP8BhwHAAQ8C/wHAAQ8B/wHAAgABBwGA - AgABAQGPAeABAQL/AQABAwH/AeACAAEDBAABjwGAAQABfwH8AgAB/wHwAgABAQQAAQ4CAAEfAfACAAE/ - AfAHAAEEAgABDwHAAgABHwHwCgABBwMAAQ8B8AoAAQMDAAEPAfAIAAEBAfABAwMAAQcB8AgAAQMB+AEB - AwABAwHwCAABBwH8AQEDAAEDAfgIAAEHAv8DAAEBAf4HAAGAAgABAQMAAQEB/gcAAYACAAEBBAAB/gIA - AQEEAAHAAgABAQQAAf4CAAEHBAABwAIAAQEBwAMAAf4CAAEHBAABwAIAAQEB8AMAAf4CAAEHBAABwAEH - AfgBAQHwAwAB/gIAAQcEAAHgAQcB+AEDAfADAAH+AgABBwQAAeABAwHwAQMB8AMAAf4CAAEHBAAB8AEB - AeABAwHwAwAB/gIAAQcEAAHwAgABAwH4AgABAQH+AgABBwQAAfgCAAEHAfgCAAEBAf4CAAEHBAAB/AIA - AQcB/AIAAQMB/gIAAQcDAAEBAf4CAAEOAfwCAAEDAf4CAAEHAYABAAP/AgABHgH8AgABBwH+AgABBwHA - AQED/wHAAQABfgH8AgABDwH+AgABBwHgAQMD/wH4AQEB/gH8AgABHwH/AgABBwHwAQcE/wHhAvwCAAE/ - Af8BgAEAAQcG/wH8AXkB/wIAAv8BwAEAAQ8H/wEDAf8BxAEDAf8L + Af8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/AQAChAH/AwAB/xAAAYQCAAH/AYQCAAL/AgAC/wIA + Af8BAAKEAf8BAAP/AQAE/wIAAv8CAAL/AgAC/wIAAf8BhAIAAf8DAAH/AwAB/wMAAf8BhAIAAf8BhAIA + Av8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAB/wGEAgAB/xwAA4QB/wOEKf8DxgH/AwAB/wPG + Af8DAAH/A8YB/wMAAf8BAAGEAQAB/wEAAYQBAAH/AQABhAEAAf8BAAGEAQAF/wEAAYQBAAH/AYQCAAH/ + AwAB/yAAA4QF/wPGAf8DAAf/AQAB/wOEEf8DABH/A4QF/wPGAf8DhAH/A4QB/wMAAf8MAAOEBf8BAAP/ + A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/ + AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAChAH/AwAB/xQA + AYQCAAH/AYQCAAL/AgAC/wIAAf8BAAKEAf8DxgH/AQAE/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIA + Av8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAf8BhAIAAf8gAAOEAf8DhA3/AgABhBn/ + A8YB/wMAAf8DxgH/AwAB/wPGAf8DAAL/AgAB/wEAAYQBAAH/AQABhAEAAf8BAAGEAQAB/wEAAYQBAAH/ + AYQCAAH/AQABhAEAAf8DAAH/IAADhAX/A8YB/wMAB/8BAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DABH/ + A4QF/wPGAf8DhAH/A4QB/wMAAf8MAAOEdf8DAAH/AwAB/xgAAYQCAAL/AgAC/wIAAv8CAAL/AgAB/wEA + AoQB/wEABP8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/ + AgAC/wIAAf8BhAIAAf8kAAOEBf8CAAL/AgABhAH/AgAS/wPGAf8DxgH/A4QB/wOEAf8DxgH/AwAB/wPG + Af8DAAX/AQABhAEAAf8BAAGEAQAB/wEAAYQBAAH/AwAB/wEAAYQBAAH/AwAB/yQAA4QF/wPGAf8DADH/ + A4QF/wPGAf8DhAH/A4QB/wMAAf8MAAOEAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPG + Af8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOE + Af8DhAH/A4QB/wOEAf8DhAH/A4QB/wMAAf8gAAGEAgAC/wIAAv8CAAL/AgAC/wIAAv8CAAH/AQAD/wEA + AoQC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAB/wGEAgAB/wwA + Af8CAAH/GAADhAX/AgAC/wIAAv8CAAr/A8YB/wPGAf8DhAH/A4QB/wPGAf8DxgH/A4QB/wOEAf8DxgH/ + AwAB/wEAAYQBAAH/AQABhAEAAf8BAAGEAQAB/wEAAYQBAAX/AYQCAAH/AwAB/yQAA4QF/wPGAf8DAAH/ + AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/A4QF/wPGAf8DhAH/ + A4QB/wMAAf8QAAOEBf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/AQAD/wPG + Af8DhAH/YAAB/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIA + Av8CAAL/AgAC/wIAAv8CAAH/AYQCAAH/AYQCAAH/EAAB/wIAAf8YAAOEBf8CAAGEAf8CAAL/AgABhAH/ + A8YB/wPGAf8DhAH/A4QB/wPGAf8DxgH/A4QB/wOEAf8DxgH/A8YB/wOEAf8DhAH/AQABhAEAAf8BAAGE + AQAB/wEAAYQBAAH/AQABhAEAAf8DAAH/A4QB/ygAA4QF/wPGAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOE + Af8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QF/wPGAf8DhAH/A4QB/wMAAf8UAAOEBf8BAAP/ + A8YB/wEAA/8DxgH/AQAD/wPGAf8BAAP/A8YB/wEAA/8DxgH/A4QB/2wAAf8CAAL/AgAC/wIAAv8CAAL/ + AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAH/AYQCAAH/AYQCAAH/GAAB/wIAAf8YAAOE + Bf8CAAL/A8YB/wPGAf8DhAH/A4QB/wPGAf8DxgH/A4QB/wOEAf8DxgH/A8YB/wOEAf8DhAH/AQABhAEA + Af8BAAGEAQAB/wEAAYQBAAH/AQABhAEAAf8BAAGEAQAB/wEAAYQBAAH/A4QB/ywAA4QF/wPGAf8DxgH/ + A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/ + A4QB/wOEAf8DAAH/GAADhCX/A4QB/3wAAf8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIA + Af8BhAIAAf8gAAH/AgAB/xgAA4QB/wPGAf8DxgH/A4QB/wOEAf8DxgH/A8YB/wOEAf8DhAH/A8YB/wPG + Af8DhAH/A4QB/wEAAYQBAAH/AQABhAEAAf8BAAGEAQAB/wEAAYQBAAH/AQABhAEAAf8BAAGEAQAB/wEA + AYQBAAH/AwAB/zQAA4RF/wOEAf8DhAH/AwAB/xwAA4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOE + Af8DhAH/mAAB/wIAAv8CAAL/AgAC/wIAAf8cAAH/AgAC/wIAAf8YAAOEAf8DhAH/A4QB/wPGAf8DxgH/ + A4QB/wOEAf8DxgH/A8YB/wOEAf8DhAH/AQABhAEAAf8BAAGEAQAG/wIAAf8BAAGEAQAB/wEAAYQBAAH/ + AQABhAEAAf8DhAH/A4QB/zwAA4QB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGAf8DxgH/A8YB/wPG + Af8DxgH/A8YB/wPGAf8DxgH/A8YB/wPGBf8DhAH/AwAB/+QAAf8CAAL/AgAC/wIAAf8QAAH/AgAC/wIA + Af8kAAOEAf8DhAH/A4QB/wPGAf8DxgH/A4QB/wOEBf8DxgH/A4QC/wIADf8DhAH/A4QB/0gAA4QB/wOE + Af8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOEAf8DhAH/A4QB/wOE + Af8DhAH/8AAB/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAB/zAAA4QB/wOEAf8DhAH/BAADhAH/A4QB/wOE + Af8DhAH/A4QB/wOEAf8DhAH/A4QB/ygAAUIBTQE+BwABPgMAASgDAAGAAwABgAMAAQEBAAEBBgABCBYA + A///AP8AAwABwAF/AQABPwHAAX8BAAE/AcABfwEAAT8BwAF/AQABPwHAAT8BgAEfAcABPwGAAR8BwAE/ + AYABHwHAAT8BgAEfAcABHwHAAQ8BwAEfAcABDwHAAR8BwAEPAcABHwHAAQ8BwAEPAeABBwHAAQ8B4AEH + AcABDwHgAQcBwAEPAeABBwHAAQcB8AEDAcABBwHwAQMBwAEHAfABAwHAAQcB8AEDAcABAwL/AcABAwL/ + AcABAwL/AcABAwL/AcABAwL/AcABAwL/AcABAwL/AcABAwL/AcACAAEPAcACAAEPAcACAAEPAcACAAEP + AcACAAEHAcACAAEHAcACAAEHAcACAAEHAcACAAEDAcACAAEDAcACAAEDAcACAAEDAcACAAEBAcACAAEB + AcACAAEBAcACAAEBAcADAAHAAwABwAMAAcADAAHAAwABwAMAAcADAAHAAwABwAMAAcADAAHAAwABwAMA + AYADAAGAAwABgAMAAYAmAAEBAwABAQMAAQEDAAEBAYACAAEPAYACAAEPAYACAAEPAYACAAEPAcICAAEP + AcICAAEPAcICAAEPAcICAAEPAeMCAAEPAeMCAAEPAeMCAAEPAeMCAAEPAfMCAAEPAfMCAAEPAfMCAAEP + AfMCAAEPAf8CAAEPAf8CAAEPAf8CAAEPAf8CAAEPAf8CAAEPAf8CAAEPAf8CAAEPAf8CAAEPAf8CAAEP + Af8CAAEPAf8CAAEPAf8CAAEPAf8CAAEPAf8CAAEPAf8CAAEPAf8CAAEPAf8CAAEPAf8CAAEPAf8CAAEP + Af8CAAEPAf8CAAEPAf8CAAEPAf8CAAEPAf8CAAEPAf8CAAEPAf8CAAEPAf8CAAEPAf8CAAEPAf8BgAEA + AQ8B/wGAAQABDwH/AYABAAEPAf8BgAEAAQ8B/wHAAQABDwH/AcABAAEPAf8BwAEAAQ8B/wHAAQABDwH/ + AeABAAEfAf8B4AEAAR8B/wHgAQABHwH/AeABAAEfBAAE/wEAARwBHwX/BAAB/wHwAQABAwEAARgBBwL/ + AQABDwH/BAAB/wHgAQABAQEAARABAwH/AfwBAAEBAf8EAAHwAWADAAEQAQEB/wH4AgABfwkAAQMBgAHv + AfgCAAEfCQABBwHAAU8B+AIAAQ8MAAHwAgABDwQAAfgB8AYAAfACAAEHBAAC+AYAAfACAAEHBAAC+AEA + AQEEAAHgAgABBwQAAvgBAAEDBAAB4AIAAQcEAAGAAgABAwQAAeACAAEHBwABAwQAAeACAAEHBwABAwQA + AcACAAEDBwABAwQAAcACAAEDBwABAwQAAcACAAEDBwABAwQAAcACAAEDBAABgAIAAQMEAAHAAgABAwQA + AcACAAEDBAABgAIAAQMEAAHAAgABAwQAAYACAAEDBAABwAIAAQMEAAGAAgABAwQAAcACAAEHBAABgAIA + AQMEAAHAAQABHwH/BAABgAIAAQEEAAHAAQABHwH/BAABgAIAAQEEAAHAAQABHwH/BAABgAIAAQEEAAHA + AQABHwH/AfIBAwHnAf8BgAIAAQEEAAHAAQABHwH/AfcBAQHHAf8BwAIAAQEEAAHAAQABHwL/AYABDwL/ + AfgBAAEBBAABwAEAAR8C/wHAAR8D/wEAAQEEAAHAAQABHwL/AeABHwP/AcABAQQAAeABAAEfAv8B+AE/ + A/8B8AEBBAAB8AEAAT8H/wH8AQMBwAIAAT8E/wHwAT8D/wH8Av8BgAIAAR8E/wHAAQ8D/wHwAT8B/wGA + AgABDwT/AYcBwAEPAv8BwAEPAf8BwAIAAQcBgAIAAQEBjwHgAQEC/wEAAQMB/wHgAgABAwQAAY8BgAEA + AX8B/AIAAf8B8AIAAQEEAAEOAgABHwHwAgABPwHwBwABBAIAAQ8BwAIAAR8B8AoAAQcDAAEPAfAKAAED + AwABDwHwCAABAQHwAQMDAAEHAfAIAAEDAfgBAQMAAQMB8AgAAQcB/AEBAwABAwH4CAABBwL/AwABAQH+ + BwABgAIAAQEDAAEBAf4HAAGAAgABAQQAAf4CAAEBBAABwAIAAQEEAAH+AgABBwQAAcACAAEBAcADAAH+ + AgABBwQAAcACAAEBAfADAAH+AgABBwQAAcABBwH4AQEB8AMAAf4CAAEHBAAB4AEHAfgBAwHwAwAB/gIA + AQcEAAHgAQMB8AEDAfADAAH+AgABBwQAAfABAQHgAQMB8AMAAf4CAAEHBAAB8AIAAQMB+AIAAQEB/gIA + AQcEAAH4AgABBwH4AgABAQH+AgABBwQAAfwCAAEHAfwCAAEDAf4CAAEHAwABAQH+AgABDgH8AgABAwH+ + AgABBwGAAQAD/wIAAR4B/AIAAQcB/gIAAQcBwAEBA/8BwAEAAX4B/AIAAQ8B/gIAAQcB4AEDA/8B+AEB + Af4B/AIAAR8B/wIAAQcB8AEHBP8B4QL8AgABPwH/AYABAAEHBv8B/AF5Af8CAAL/AcABAAEPB/8BAwH/ + AcQBAwH/Cw== diff --git a/Histacom2/Properties/Resources.resx b/Histacom2/Properties/Resources.resx index 7db7ddf..35bc963 100644 --- a/Histacom2/Properties/Resources.resx +++ b/Histacom2/Properties/Resources.resx @@ -1978,12 +1978,18 @@ ..\Resources\WinClassic\WinXPStartMenuBottomRight2.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\WinClassic\WinXPStartMenuCenterDivider.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\Resources\WinClassic\WinXPStartMenuLeft.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\WinClassic\WinXPStartMenuLeftGradient.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\WinClassic\WinXPStartMenuPlaces.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\Resources\WinClassic\WinXPStartMenuRight.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a diff --git a/Histacom2/Properties/Resources1.Designer.cs b/Histacom2/Properties/Resources1.Designer.cs index 4a3cf7a..60e0297 100644 --- a/Histacom2/Properties/Resources1.Designer.cs +++ b/Histacom2/Properties/Resources1.Designer.cs @@ -2103,6 +2103,16 @@ namespace Histacom2.Properties { } } + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap WinXPStartMenuCenterDivider { + get { + object obj = ResourceManager.GetObject("WinXPStartMenuCenterDivider", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// @@ -2123,6 +2133,16 @@ namespace Histacom2.Properties { } } + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap WinXPStartMenuPlaces { + get { + object obj = ResourceManager.GetObject("WinXPStartMenuPlaces", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// diff --git a/Histacom2/Resources/WinClassic/WinXPStartMenuCenterDivider.png b/Histacom2/Resources/WinClassic/WinXPStartMenuCenterDivider.png new file mode 100644 index 0000000..6e5dd78 Binary files /dev/null and b/Histacom2/Resources/WinClassic/WinXPStartMenuCenterDivider.png differ diff --git a/Histacom2/Resources/WinClassic/WinXPStartMenuPlaces.png b/Histacom2/Resources/WinClassic/WinXPStartMenuPlaces.png new file mode 100644 index 0000000..e281b8b Binary files /dev/null and b/Histacom2/Resources/WinClassic/WinXPStartMenuPlaces.png differ -- cgit v1.2.3