diff --git a/FunkeySelector/About.Designer.cs b/FunkeySelector/About.Designer.cs
new file mode 100644
index 0000000..41e5e87
--- /dev/null
+++ b/FunkeySelector/About.Designer.cs
@@ -0,0 +1,127 @@
+namespace FunkeySelector
+{
+ partial class About
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(About));
+ this.AboutFSGUILabel = new System.Windows.Forms.Label();
+ this.DevelopedByLabel = new System.Windows.Forms.Label();
+ this.MadeForLabel = new System.Windows.Forms.Label();
+ this.CreditsToLabel = new System.Windows.Forms.Label();
+ this.okButton = new FunkeySelector.UserControls.OKButton();
+ this.SuspendLayout();
+ //
+ // AboutFSGUILabel
+ //
+ this.AboutFSGUILabel.AutoSize = true;
+ this.AboutFSGUILabel.BackColor = System.Drawing.Color.Transparent;
+ this.AboutFSGUILabel.Font = new System.Drawing.Font("Comic Sans MS", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.AboutFSGUILabel.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.AboutFSGUILabel.Location = new System.Drawing.Point(137, 25);
+ this.AboutFSGUILabel.Name = "AboutFSGUILabel";
+ this.AboutFSGUILabel.Size = new System.Drawing.Size(297, 26);
+ this.AboutFSGUILabel.TabIndex = 1;
+ this.AboutFSGUILabel.Text = "ABOUT FUNKEYSELECTORGUI";
+ //
+ // DevelopedByLabel
+ //
+ this.DevelopedByLabel.AutoSize = true;
+ this.DevelopedByLabel.BackColor = System.Drawing.Color.Transparent;
+ this.DevelopedByLabel.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.DevelopedByLabel.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.DevelopedByLabel.Location = new System.Drawing.Point(155, 84);
+ this.DevelopedByLabel.Name = "DevelopedByLabel";
+ this.DevelopedByLabel.Size = new System.Drawing.Size(260, 20);
+ this.DevelopedByLabel.TabIndex = 2;
+ this.DevelopedByLabel.Text = "DEVELOPED BY GITTYMAC (LAKO)";
+ //
+ // MadeForLabel
+ //
+ this.MadeForLabel.AutoSize = true;
+ this.MadeForLabel.BackColor = System.Drawing.Color.Transparent;
+ this.MadeForLabel.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.MadeForLabel.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.MadeForLabel.Location = new System.Drawing.Point(122, 126);
+ this.MadeForLabel.Name = "MadeForLabel";
+ this.MadeForLabel.Size = new System.Drawing.Size(327, 20);
+ this.MadeForLabel.TabIndex = 3;
+ this.MadeForLabel.Text = "MADE FOR THE FUNKEYS SELECTION MOD";
+ //
+ // CreditsToLabel
+ //
+ this.CreditsToLabel.AutoSize = true;
+ this.CreditsToLabel.BackColor = System.Drawing.Color.Transparent;
+ this.CreditsToLabel.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.CreditsToLabel.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.CreditsToLabel.Location = new System.Drawing.Point(90, 168);
+ this.CreditsToLabel.Name = "CreditsToLabel";
+ this.CreditsToLabel.Size = new System.Drawing.Size(390, 20);
+ this.CreditsToLabel.TabIndex = 4;
+ this.CreditsToLabel.Text = "CREDITS TO DUALSCAR FOR THE ICONS AND IDEA";
+ //
+ // okButton
+ //
+ this.okButton.BackColor = System.Drawing.Color.Transparent;
+ this.okButton.CloseForm = true;
+ this.okButton.Location = new System.Drawing.Point(242, 244);
+ this.okButton.Name = "okButton";
+ this.okButton.Size = new System.Drawing.Size(86, 23);
+ this.okButton.TabIndex = 5;
+ //
+ // About
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.BackColor = System.Drawing.Color.Gold;
+ this.BackgroundImage = global::FunkeySelector.Properties.Resources._1841;
+ this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
+ this.ClientSize = new System.Drawing.Size(570, 272);
+ this.Controls.Add(this.okButton);
+ this.Controls.Add(this.CreditsToLabel);
+ this.Controls.Add(this.MadeForLabel);
+ this.Controls.Add(this.DevelopedByLabel);
+ this.Controls.Add(this.AboutFSGUILabel);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
+ this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+ this.Name = "About";
+ this.Text = "FunkeySelectorGUI - About";
+ this.TransparencyKey = System.Drawing.Color.Gold;
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Label AboutFSGUILabel;
+ private System.Windows.Forms.Label DevelopedByLabel;
+ private System.Windows.Forms.Label MadeForLabel;
+ private System.Windows.Forms.Label CreditsToLabel;
+ private UserControls.OKButton okButton;
+ }
+}
\ No newline at end of file
diff --git a/FunkeySelector/About.cs b/FunkeySelector/About.cs
new file mode 100644
index 0000000..c89a10c
--- /dev/null
+++ b/FunkeySelector/About.cs
@@ -0,0 +1,14 @@
+using FunkeySelector.UserControls;
+using System;
+using System.Windows.Forms;
+
+namespace FunkeySelector
+{
+ public partial class About : BasicForm
+ {
+ public About()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/FunkeySelector/Form14.resx b/FunkeySelector/About.resx
similarity index 100%
rename from FunkeySelector/Form14.resx
rename to FunkeySelector/About.resx
diff --git a/FunkeySelector/CustomFManager.cs b/FunkeySelector/CustomFManager.cs
index f36c3c7..77468ca 100644
--- a/FunkeySelector/CustomFManager.cs
+++ b/FunkeySelector/CustomFManager.cs
@@ -7,23 +7,29 @@
namespace FunkeySelector
{
- class CustomFManager
+ static class CustomF
{
- public void setFunkey(string funkeyCodeNum) //This is the code to switch Funkeys, funkeyCodeNum is the code defined in funkeys.rdf.
+ // The FunkeyIDs and other information about funkeys can be found in RadicaGame/data/system/funkeys.rdf
+ public static void SetFunkey(string funkeyID)
{
- using (StreamWriter writetext = new StreamWriter("customF.txt"))
- {
- writetext.Write("funkeyCodeNum=" + funkeyCodeNum); //Creates the customF.txt
- }
- if (Properties.Settings.Default.wineCompat == false) //Checks if Wine/Mono compatibility is not enabled.
- {
- Process[] pname = Process.GetProcessesByName("UBFunkeys");
- if (pname.Length == 0) //Prevents crashing if UBFunkeys.exe isn't running.
- {
- }
- else Process.GetProcessesByName("UBFunkeys")[0].CloseMainWindow(); //Closes the game to trigger the mod.
- }
- //It saves a lot of time to have a simple function to call rather than individual statements.
+ File.WriteAllText("customF.txt", $"funkeyCodeNum={funkeyID}");
+ TriggerFunkeySelectionMod();
+ }
+
+ public static void SetFunkeyFromFile(string filename)
+ {
+ File.Copy(filename, "customF.txt", true);
+ TriggerFunkeySelectionMod();
+ }
+
+ public static void TriggerFunkeySelectionMod()
+ {
+ if (Properties.Settings.Default.wineCompat == true) return;
+
+ Process[] processes = Process.GetProcessesByName("UBFunkeys");
+ if (processes.Length == 0) return;
+ // Close the main window to trigger the mod
+ processes[0].CloseMainWindow();
}
}
}
diff --git a/FunkeySelector/CustomFunkeys.Designer.cs b/FunkeySelector/CustomFunkeys.Designer.cs
new file mode 100644
index 0000000..b510c43
--- /dev/null
+++ b/FunkeySelector/CustomFunkeys.Designer.cs
@@ -0,0 +1,168 @@
+namespace FunkeySelector
+{
+ partial class CustomFunkeys
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ this.components = new System.ComponentModel.Container();
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CustomFunkeys));
+ this.CustomFunkeysLabel = new System.Windows.Forms.Label();
+ this.backButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.Imagelist = new System.Windows.Forms.ImageList(this.components);
+ this.CustomFunkeysListBox = new System.Windows.Forms.ListBox();
+ this.minimizeButton = new FunkeySelector.UserControls.MinimizeButton();
+ this.closeButton = new FunkeySelector.UserControls.CloseButton();
+ this.refreshButton = new System.Windows.Forms.Button();
+ this.helpbutton = new FunkeySelector.UserControls.Helpbutton();
+ this.SuspendLayout();
+ //
+ // CustomFunkeysLabel
+ //
+ this.CustomFunkeysLabel.AutoSize = true;
+ this.CustomFunkeysLabel.BackColor = System.Drawing.Color.Transparent;
+ this.CustomFunkeysLabel.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.CustomFunkeysLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.CustomFunkeysLabel.Location = new System.Drawing.Point(227, 27);
+ this.CustomFunkeysLabel.Name = "CustomFunkeysLabel";
+ this.CustomFunkeysLabel.Size = new System.Drawing.Size(371, 52);
+ this.CustomFunkeysLabel.TabIndex = 7;
+ this.CustomFunkeysLabel.Text = "CUSTOM FUNKEYS";
+ //
+ // backButton
+ //
+ this.backButton.BackColor = System.Drawing.Color.Transparent;
+ this.backButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.backButton.FlatAppearance.BorderSize = 0;
+ this.backButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.backButton.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.backButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.backButton.FormToOpen = "Form1";
+ this.backButton.KeepCurrentForm = false;
+ this.backButton.Location = new System.Drawing.Point(12, 12);
+ this.backButton.Name = "backButton";
+ this.backButton.Size = new System.Drawing.Size(101, 86);
+ this.backButton.TabIndex = 1;
+ this.backButton.Text = "BACK";
+ this.backButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.backButton.UseVisualStyleBackColor = false;
+ //
+ // Imagelist
+ //
+ this.Imagelist.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
+ this.Imagelist.ImageSize = new System.Drawing.Size(128, 128);
+ this.Imagelist.TransparentColor = System.Drawing.Color.Transparent;
+ //
+ // CustomFunkeysListBox
+ //
+ this.CustomFunkeysListBox.BackColor = System.Drawing.SystemColors.HotTrack;
+ this.CustomFunkeysListBox.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.CustomFunkeysListBox.ForeColor = System.Drawing.SystemColors.Info;
+ this.CustomFunkeysListBox.FormattingEnabled = true;
+ this.CustomFunkeysListBox.ItemHeight = 29;
+ this.CustomFunkeysListBox.Location = new System.Drawing.Point(31, 104);
+ this.CustomFunkeysListBox.Name = "CustomFunkeysListBox";
+ this.CustomFunkeysListBox.Size = new System.Drawing.Size(667, 410);
+ this.CustomFunkeysListBox.TabIndex = 3;
+ this.CustomFunkeysListBox.SelectedIndexChanged += new System.EventHandler(this.CustomFunkeysListBox_SelectedIndexChanged);
+ //
+ // minimizeButton
+ //
+ this.minimizeButton.Location = new System.Drawing.Point(642, 15);
+ this.minimizeButton.Name = "minimizeButton";
+ this.minimizeButton.Size = new System.Drawing.Size(26, 22);
+ this.minimizeButton.TabIndex = 5;
+ //
+ // closeButton
+ //
+ this.closeButton.Location = new System.Drawing.Point(681, 17);
+ this.closeButton.Name = "closeButton";
+ this.closeButton.Size = new System.Drawing.Size(26, 20);
+ this.closeButton.TabIndex = 6;
+ //
+ // refreshButton
+ //
+ this.refreshButton.BackColor = System.Drawing.Color.Transparent;
+ this.refreshButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.refreshButton.FlatAppearance.BorderSize = 0;
+ this.refreshButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.refreshButton.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.refreshButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.refreshButton.Location = new System.Drawing.Point(119, 12);
+ this.refreshButton.Name = "refreshButton";
+ this.refreshButton.Size = new System.Drawing.Size(116, 86);
+ this.refreshButton.TabIndex = 2;
+ this.refreshButton.Text = "REFRESH";
+ this.refreshButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.refreshButton.UseVisualStyleBackColor = false;
+ this.refreshButton.Click += new System.EventHandler(this.RefreshButton_Click);
+ //
+ // helpbutton
+ //
+ this.helpbutton.BackColor = System.Drawing.Color.Transparent;
+ this.helpbutton.HelpText = resources.GetString("helpbutton.HelpText");
+ this.helpbutton.Location = new System.Drawing.Point(608, 16);
+ this.helpbutton.Name = "helpbutton";
+ this.helpbutton.Size = new System.Drawing.Size(23, 23);
+ this.helpbutton.TabIndex = 4;
+ //
+ // CustomFunkeys
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.BackColor = System.Drawing.Color.Gold;
+ this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
+ this.ClientSize = new System.Drawing.Size(726, 566);
+ this.Controls.Add(this.helpbutton);
+ this.Controls.Add(this.refreshButton);
+ this.Controls.Add(this.closeButton);
+ this.Controls.Add(this.minimizeButton);
+ this.Controls.Add(this.CustomFunkeysListBox);
+ this.Controls.Add(this.backButton);
+ this.Controls.Add(this.CustomFunkeysLabel);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
+ this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+ this.Name = "CustomFunkeys";
+ this.Text = "FunkeySelectorGUI - Custom Funkeys";
+ this.TransparencyKey = System.Drawing.Color.Gold;
+ this.Load += new System.EventHandler(this.CustomFunkeys_Load);
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Label CustomFunkeysLabel;
+ private UserControls.ChangeFormButton backButton;
+ private System.Windows.Forms.ImageList Imagelist;
+ private System.Windows.Forms.ListBox CustomFunkeysListBox;
+ private UserControls.MinimizeButton minimizeButton;
+ private UserControls.CloseButton closeButton;
+ private System.Windows.Forms.Button refreshButton;
+ private UserControls.Helpbutton helpbutton;
+ }
+}
\ No newline at end of file
diff --git a/FunkeySelector/CustomFunkeys.cs b/FunkeySelector/CustomFunkeys.cs
new file mode 100644
index 0000000..d20ce1a
--- /dev/null
+++ b/FunkeySelector/CustomFunkeys.cs
@@ -0,0 +1,94 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Diagnostics;
+using System.Drawing;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Windows.Forms;
+using FunkeySelector.UserControls;
+using FunkeySelector.Properties;
+
+namespace FunkeySelector
+{
+ public partial class CustomFunkeys : BasicForm
+ {
+ private Dictionary FunkeyPaths = new();
+
+ public CustomFunkeys()
+ {
+ InitializeComponent();
+ }
+
+ //Initializes the listbox with customfunkeys.
+ private void CustomFunkeys_Load(object sender, EventArgs e)
+ {
+ RefreshItems();
+ }
+
+ private void RefreshItems()
+ {
+ CustomFunkeysListBox.Items.Clear();
+ FunkeyPaths.Clear();
+
+ if (!Directory.Exists("./CustomFunkeys"))
+ {
+ Directory.CreateDirectory("./CustomFunkeys"); // Remember, you wouldn't download a file named con, just like you wouldn't download a car!
+ File.WriteAllText("./CustomFunkeys/Car Dealer.txt", "funkeyCodeNum=S0000001"); // You would download pizza instead.
+ }
+
+ string[] files = Directory.GetFiles("./CustomFunkeys");
+
+ foreach (string file in files)
+ {
+ string name = Path.GetFileNameWithoutExtension(file);
+ CustomFunkeysListBox.Items.Add(name);
+ FunkeyPaths.Add(name, file);
+ }
+ }
+
+ // Will change into funkey when listbox item is selected.
+ private void CustomFunkeysListBox_SelectedIndexChanged(object sender, EventArgs e)
+ {
+ string name = CustomFunkeysListBox.SelectedItem.ToString();
+ string file = FunkeyPaths[name];
+
+ try
+ {
+ CustomF.SetFunkeyFromFile(file);
+ }
+ catch (Exception exception) when (exception is DirectoryNotFoundException or FileNotFoundException)
+ {
+ bool isDirectoryError = exception is DirectoryNotFoundException;
+
+ string text = isDirectoryError ?
+ "The CustomFunkeys directory no longer exists. Do you want to retry? Pressing no will recreate the Customfunkeys directory. Press cancel to ignore."
+ : $"{Path.GetFileName(file)} no longer exists. Do you want to retry? Pressing no will refresh the list. Press cancel to ignore.";
+
+ string caption = $"{(isDirectoryError ? "Directory" : "File")} not found";
+
+ DialogResult result = MessageBox.Show(
+ text,
+ caption,
+ MessageBoxButtons.YesNoCancel,
+ MessageBoxIcon.Error,
+ MessageBoxDefaultButton.Button1
+ );
+
+ if (result == DialogResult.Yes)
+ {
+ CustomFunkeysListBox_SelectedIndexChanged(sender, e);
+ return;
+ }
+ if (result == DialogResult.No) RefreshItems();
+ }
+ }
+
+ private void RefreshButton_Click(object sender, EventArgs e)
+ {
+ RefreshItems();
+ }
+ }
+}
diff --git a/FunkeySelector/CustomFunkeys.resx b/FunkeySelector/CustomFunkeys.resx
new file mode 100644
index 0000000..37977b3
--- /dev/null
+++ b/FunkeySelector/CustomFunkeys.resx
@@ -0,0 +1,2174 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ 17, 17
+
+
+ This window shows the funkeys located in the CustomFunkeys folder in the RadicaGame folder. To add a funkey, put a txt file in the CustomFunkeys folder in the same format as customF.txt located in the RadicaGame folder. To change into one of the funkeys, click on its entry in the list.
+
+
+
+
+ AAABAAEArKwAAAEAIACI3gEAFgAAACgAAACsAAAAWAEAAAEAIAAAAAAAQM4BACMuAAAjLgAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAA
+ AAIAAAACAAAAAgAAAAIAAAACAAAAAgAAAAIAAAACAAAAAgAAAAIAAAADAAAAAwAAAAMAAAADAAAAAwAA
+ AAIAAAACAAAAAgAAAAIAAAACAAAAAgAAAAIAAAACAAAAAgAAAAIAAAACAAAAAQAAAAEAAAABAAAAAQAA
+ AAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA
+ AAEAAAABAAAAAQAAAAEAAAACAAAAAgAAAAIAAAADAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAA
+ AAQAAAAEAAAABQAAAAUAAAAFAAAABQAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAA
+ AAMAAAADAAAAAwAAAAMAAAACAAAAAgAAAAIAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAQAAAAEAAAABAAAAAgAAAAIAAAADAAAAAwAAAAQAAAAEAAAABAAAAAUAAAAGAAAABgAA
+ AAcAAAAHAAAACAAAAAgAAAAIAAAACAAAAAgAAAAIAAAACQAAAAkAAAAJAAAACQAAAAkAAAAJAAAACQAA
+ AAgAAAAIAAAACAAAAAgAAAAIAAAACAAAAAcAAAAHAAAABgAAAAYAAAAFAAAABQAAAAQAAAAEAAAABAAA
+ AAMAAAADAAAAAwAAAAIAAAACAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAgAAAAIAAAADAAAAAwAAAAQAAAAEAAAABQAA
+ AAYAAAAGAAAABwAAAAgAAAAIAAAACQAAAAoAAAAKAAAACwAAAAsAAAAMAAAADAAAAAwAAAAMAAAADAAA
+ AA0AAAANAAAADQAAAA4AAAANAAAADQAAAA0AAAANAAAADAAAAAwAAAAMAAAADAAAAAwAAAALAAAACgAA
+ AAkAAAAJAAAACAAAAAgAAAAHAAAABwAAAAYAAAAGAAAABQAAAAQAAAAEAAAAAwAAAAMAAAACAAAAAgAA
+ AAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAACAAAAAwAA
+ AAMAAAAEAAAABAAAAAUAAAAGAAAABgAAAAcAAAAIAAAACQAAAAoAAAALAAAADAAAAA0AAAANAAAADgAA
+ AA8AAAAPAAAADwAAABAAAAAQAAAAEAAAABAAAAARAAAAEQAAABEAAAASAAAAEgAAABIAAAARAAAAEQAA
+ ABAAAAAQAAAAEAAAABAAAAAPAAAADwAAAA4AAAANAAAADAAAAAsAAAALAAAACgAAAAoAAAAJAAAACAAA
+ AAcAAAAGAAAABgAAAAUAAAAEAAAABAAAAAMAAAACAAAAAgAAAAIAAAABAAAAAQAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAA
+ AAIAAAACAAAAAwAAAAMAAAADAAAABAAAAAUAAAAGAAAABwAAAAgAAAAJAAAACgAAAAoAAAALAAAADAAA
+ AA0AAAAOAAAAEAAAABEAAAASAAAAEwAAABMAAAAUAAAAFAAAABUAAAAVAAAAFgAAABYAAAAWAAAAFgAA
+ ABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAWAAAAFgAAABUAAAAVAAAAFQAAABQAAAATAAAAEgAA
+ ABEAAAAQAAAAEAAAAA8AAAAOAAAADQAAAAwAAAALAAAACgAAAAkAAAAIAAAABwAAAAYAAAAFAAAABQAA
+ AAQAAAADAAAAAwAAAAIAAAACAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAQAAAAEAAAABAAAAAgAAAAMAAAADAAAABAAAAAQAAAAFAAAABgAAAAcAAAAIAAAACQAA
+ AAoAAAAMAAAADQAAAA4AAAAPAAAAEAAAABEAAAASAAAAFAAAABUAAAAWAAAAGAAAABgAAAAZAAAAGgAA
+ ABsAAAAbAAAAHAAAABwAAAAcAAAAHQAAAB0AAAAdAAAAHgAAAB4AAAAeAAAAHgAAAB4AAAAdAAAAHQAA
+ ABwAAAAcAAAAGwAAABsAAAAaAAAAGQAAABgAAAAXAAAAFgAAABUAAAAUAAAAEwAAABIAAAARAAAADwAA
+ AA4AAAANAAAADAAAAAoAAAAJAAAACAAAAAcAAAAGAAAABgAAAAUAAAAEAAAAAwAAAAMAAAACAAAAAQAA
+ AAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAIAAAACAAAAAwAAAAMAAAAEAAAABAAA
+ AAUAAAAGAAAABwAAAAgAAAAKAAAACwAAAA0AAAAOAAAADwAAABEAAAASAAAAEwAAABUAAAAWAAAAFwAA
+ ABkAAAAaAAAAHAAAAB0AAAAeAAAAHwAAACAAAAAhAAAAIQAAACIAAAAiAAAAIwAAACMAAAAjAAAAJAAA
+ ACQAAAAkAAAAJAAAACQAAAAkAAAAJAAAACMAAAAjAAAAIgAAACEAAAAgAAAAHwAAAB4AAAAdAAAAHQAA
+ ABwAAAAbAAAAGQAAABgAAAAXAAAAFgAAABQAAAASAAAAEQAAAA8AAAAOAAAADAAAAAsAAAAKAAAACQAA
+ AAgAAAAHAAAABQAAAAUAAAAEAAAABAAAAAMAAAACAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAA
+ AAIAAAADAAAABAAAAAUAAAAFAAAABgAAAAcAAAAIAAAACgAAAAsAAAAMAAAADgAAABAAAAASAAAAEwAA
+ ABUAAAAWAAAAGAAAABoAAAAbAAAAHQAAAB4AAAAgAAAAIQAAACMAAAAkAAAAJgAAACcAAAAoAAAAKQAA
+ ACkAAAAqAAAAKwAAACsAAAArAAAALAAAACwAAAAsAAAALQAAAC0AAAAsAAAALAAAACwAAAArAAAAKwAA
+ ACoAAAApAAAAKAAAACcAAAAmAAAAJQAAACQAAAAjAAAAIgAAACAAAAAfAAAAHQAAABwAAAAaAAAAGAAA
+ ABcAAAAVAAAAEwAAABIAAAAQAAAADgAAAA0AAAALAAAACgAAAAkAAAAIAAAABwAAAAYAAAAFAAAABAAA
+ AAMAAAACAAAAAgAAAAIAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAQAAAAEAAAABAAAAAgAAAAMAAAAEAAAABQAAAAYAAAAHAAAACAAAAAkAAAALAAAADAAA
+ AA4AAAAPAAAAEQAAABMAAAAVAAAAFwAAABkAAAAbAAAAHQAAAB8AAAAgAAAAIgAAACQAAAAlAAAAJwAA
+ ACkAAAArAAAALAAAAC4AAAAvAAAAMAAAADEAAAAyAAAAMwAAADQAAAA0AAAANQAAADUAAAA1AAAANgAA
+ ADYAAAA2AAAANQAAADUAAAA1AAAANAAAADMAAAAzAAAAMgAAADEAAAAwAAAALwAAAC4AAAAsAAAAKwAA
+ ACkAAAAoAAAAJgAAACQAAAAjAAAAIQAAAB8AAAAdAAAAGwAAABkAAAAXAAAAFQAAABQAAAASAAAAEAAA
+ AA4AAAAMAAAACwAAAAoAAAAIAAAABwAAAAYAAAAFAAAABAAAAAMAAAADAAAAAgAAAAEAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAIAAAACAAAAAwAAAAQAAAAFAAAABgAA
+ AAcAAAAIAAAACQAAAAsAAAAMAAAADgAAABAAAAASAAAAFAAAABYAAAAYAAAAGgAAABwAAAAfAAAAIQAA
+ ACMAAAAlAAAAJwAAACkAAAArAAAALQAAAC8AAAAxAAAAMgAAADQAAAA1AAAANwAAADgAAAA6AAAAOwAA
+ ADwAAAA9AAAAPQAAAD4AAAA+AAAAPwAAAD8AAAA/AAAAPwAAAD4AAAA+AAAAPQAAAD0AAAA8AAAAOwAA
+ ADoAAAA5AAAAOAAAADcAAAA2AAAANQAAADMAAAAxAAAALwAAAC0AAAAsAAAAKgAAACgAAAAlAAAAIwAA
+ ACEAAAAfAAAAHQAAABsAAAAZAAAAFgAAABQAAAASAAAAEAAAAA4AAAANAAAACwAAAAoAAAAIAAAABwAA
+ AAYAAAAFAAAABAAAAAMAAAACAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAA
+ AAIAAAADAAAABAAAAAUAAAAGAAAABwAAAAgAAAAJAAAACwAAAAwAAAAOAAAAEQAAABMAAAAVAAAAFwAA
+ ABkAAAAcAAAAHgAAACAAAAAjAAAAJgAAACgAAAArAAAALQAAAC8AAAAxAAAANAAAADYAAAA4AAAAOgAA
+ ADwAAAA9AAAAPwAAAEEAAABCAAAAQwAAAEUAAABGAAAARwAAAEcAAABIAAAASQAAAEkAAABJAAAASgAA
+ AEkAAABJAAAASAAAAEgAAABHAAAARgAAAEUAAABEAAAAQwAAAEIAAABBAAAAQAAAAD4AAAA9AAAAOwAA
+ ADkAAAA2AAAANAAAADIAAAAvAAAALQAAACsAAAAoAAAAJgAAACQAAAAhAAAAHwAAABwAAAAaAAAAGAAA
+ ABUAAAATAAAAEQAAAA8AAAANAAAACwAAAAkAAAAIAAAABwAAAAYAAAAFAAAABAAAAAMAAAACAAAAAgAA
+ AAIAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAQAAAAEAAAABAAAAAgAAAAIAAAADAAAABAAAAAYAAAAHAAAACAAAAAoAAAALAAAADQAA
+ AA8AAAARAAAAEwAAABYAAAAYAAAAGwAAAB0AAAAgAAAAIgAAACUAAAAoAAAAKwAAAC4AAAAxAAAAMwAA
+ ADYAAAA4AAAAOwAAAD0AAABAAAAAQwAAAEQAAABGAAAASAAAAEoAAABLAAAATQAAAE4AAABQAAAAUQAA
+ AFIAAABTAAAAUwAAAFQAAABUAAAAVQAAAFUAAABVAAAAVAAAAFQAAABTAAAAUwAAAFIAAABRAAAAUAAA
+ AE8AAABOAAAATAAAAEsAAABJAAAARwAAAEUAAABDAAAAQAAAAD4AAAA7AAAAOQAAADYAAAAzAAAAMQAA
+ AC4AAAAsAAAAKQAAACYAAAAjAAAAIQAAAB4AAAAbAAAAGQAAABYAAAATAAAAEQAAAA8AAAANAAAADAAA
+ AAoAAAAIAAAABwAAAAYAAAAFAAAABAAAAAMAAAACAAAAAgAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAACAAAAAgAAAAIAAAADAAAABAAA
+ AAYAAAAIAAAACQAAAAsAAAANAAAADwAAABEAAAATAAAAFQAAABgAAAAbAAAAHQAAACAAAAAjAAAAJgAA
+ ACkAAAAsAAAALwAAADMAAAA2AAAAOQAAADwAAAA/AAAAQgAAAEQAAABHAAAASgAAAE0AAABPAAAAUQAA
+ AFIAAABUAAAAVgAAAFgAAABZAAAAWwAAAFwAAABdAAAAXgAAAF8AAABfAAAAYAAAAGAAAABhAAAAYAAA
+ AGAAAABfAAAAXwAAAF4AAABdAAAAXAAAAFsAAABaAAAAWQAAAFcAAABVAAAAVAAAAFIAAABQAAAATQAA
+ AEoAAABIAAAARQAAAEIAAAA/AAAAPAAAADoAAAA3AAAANAAAADEAAAAtAAAAKgAAACcAAAAkAAAAIQAA
+ AB4AAAAbAAAAGAAAABYAAAATAAAAEQAAAA8AAAANAAAACwAAAAoAAAAIAAAABwAAAAUAAAAEAAAAAwAA
+ AAIAAAACAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAA
+ AAIAAAACAAAAAgAAAAMAAAAEAAAABQAAAAYAAAAIAAAACgAAAAwAAAAOAAAAEAAAABIAAAAVAAAAGAAA
+ ABsAAAAeAAAAIQAAACQAAAAnAAAAKwAAAC4AAAAxAAAANQAAADgAAAA7AAAAPwAAAEIAAABGAAAASQAA
+ AEwAAABPAAAAUgAAAFQAAABXAAAAWQAAAFsAAABdAAAAXwAAAGEAAABjAAAAZAAAAGYAAABoAAAAaAAA
+ AGkAAABqAAAAagAAAGsAAABrAAAAawAAAGsAAABrAAAAagAAAGoAAABpAAAAaQAAAGgAAABnAAAAZgAA
+ AGQAAABiAAAAYAAAAF4AAABcAAAAWgAAAFcAAABVAAAAUgAAAE8AAABMAAAASQAAAEYAAABDAAAAQAAA
+ AD0AAAA5AAAANgAAADIAAAAvAAAAKwAAACgAAAAlAAAAIQAAAB4AAAAbAAAAGQAAABYAAAATAAAAEQAA
+ AA4AAAAMAAAACwAAAAkAAAAHAAAABgAAAAUAAAAEAAAAAwAAAAIAAAABAAAAAQAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAIAAAACAAAAAwAAAAQAAAAFAAAABgAAAAcAAAAJAAAACwAA
+ AA4AAAAQAAAAEgAAABUAAAAXAAAAGwAAAB4AAAAhAAAAJQAAACgAAAAsAAAAMAAAADMAAAA3AAAAOwAA
+ AD4AAABCAAAARgAAAEkAAABNAAAAUAAAAFQAAABXAAAAWgAAAFwAAABfAAAAYgAAAGQAAABnAAAAaQAA
+ AGsAAABsAAAAbgAAAHAAAABxAAAAcwAAAHMAAAB0AAAAdAAAAHUAAAB1AAAAdgAAAHYAAAB2AAAAdQAA
+ AHUAAAB0AAAAdAAAAHMAAAByAAAAcQAAAHAAAABvAAAAbQAAAGsAAABpAAAAZwAAAGUAAABiAAAAYAAA
+ AF0AAABaAAAAVwAAAFQAAABRAAAATQAAAEoAAABHAAAAQwAAAD8AAAA7AAAAOAAAADQAAAAxAAAALQAA
+ ACkAAAAlAAAAIgAAAB8AAAAcAAAAGAAAABYAAAATAAAAEAAAAA4AAAAMAAAACgAAAAkAAAAHAAAABQAA
+ AAQAAAADAAAAAgAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAIAAAACAAAAAwAA
+ AAQAAAAFAAAABwAAAAkAAAAKAAAADAAAAA4AAAARAAAAFAAAABcAAAAaAAAAHQAAACAAAAAkAAAAKAAA
+ ACwAAAAwAAAANAAAADgAAAA8AAAAQAAAAEQAAABIAAAATAAAAFAAAABUAAAAVwAAAFsAAABeAAAAYQAA
+ AGQAAABnAAAAagAAAG0AAABvAAAAcgAAAHQAAAB2AAAAeAAAAHkAAAB7AAAAfAAAAH0AAAB+AAAAfwAA
+ AH8AAACAAAAAgAAAAIEAAACBAAAAgAAAAIAAAACAAAAAfwAAAH4AAAB+AAAAfQAAAHwAAAB7AAAAeQAA
+ AHgAAAB3AAAAdAAAAHIAAABwAAAAbQAAAGsAAABoAAAAZQAAAGIAAABfAAAAWwAAAFgAAABUAAAAUAAA
+ AEwAAABIAAAARQAAAEEAAAA9AAAAOQAAADUAAAAwAAAALAAAACgAAAAlAAAAIQAAAB4AAAAaAAAAFwAA
+ ABQAAAARAAAADwAAAA0AAAALAAAACQAAAAcAAAAGAAAABAAAAAMAAAACAAAAAQAAAAEAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAABAAAAAQAAAAIAAAADAAAAAwAAAAUAAAAGAAAABwAAAAkAAAALAAAADQAAAA8AAAASAAAAFQAA
+ ABgAAAAcAAAAHwAAACMAAAAnAAAAKwAAADAAAAA0AAAAOAAAADwAAABBAAAARQAAAEoAAABOAAAAUgAA
+ AFYAAABaAAAAXgAAAGIAAABmAAAAaQAAAGwAAABvAAAAcgAAAHUAAAB4AAAAegAAAHwAAAB/AAAAgAAA
+ AIIAAACEAAAAhQAAAIYAAACHAAAAiAAAAIkAAACKAAAAigAAAIoAAACLAAAAiwAAAIoAAACKAAAAigAA
+ AIkAAACIAAAAiAAAAIcAAACGAAAAhQAAAIMAAACCAAAAgQAAAH8AAAB9AAAAegAAAHgAAAB2AAAAcwAA
+ AHAAAABtAAAAagAAAGYAAABiAAAAXgAAAFoAAABWAAAAUgAAAE4AAABKAAAARgAAAEEAAAA9AAAAOAAA
+ ADQAAAAwAAAALAAAACgAAAAkAAAAIAAAABwAAAAZAAAAFgAAABMAAAAQAAAADgAAAAsAAAAJAAAACAAA
+ AAYAAAAEAAAABAAAAAIAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAIAAAADAAAABAAAAAUAAAAHAAAACAAA
+ AAoAAAAMAAAADgAAABEAAAAUAAAAFwAAABsAAAAeAAAAIgAAACYAAAAqAAAALwAAADQAAAA4AAAAPQAA
+ AEEAAABGAAAASwAAAE8AAABUAAAAWAAAAF0AAABhAAAAZQAAAGgAAABsAgAAcAIAAHMCAAB2AgAAegIA
+ AHwCAAB/AgIAgQICAIMEAgCFBAIAhwQAAIkEAACLBAAAjAQAAI0EAACOBAAAkAQAAJAEAACRAwAAkgMA
+ AJICAACSAgAAkgIAAJICAACSAgAAkgIAAJICAACRAgAAkQAAAJAAAACPAAAAjgAAAI0AAACMAAAAiwAA
+ AIoAAACIAAAAhgAAAIQAAACCAAAAfwAAAH0AAAB6AAAAdwAAAHQAAABwAAAAbQAAAGkAAABlAAAAYQAA
+ AF0AAABYAAAAVAAAAFAAAABMAAAARwAAAEIAAAA9AAAAOQAAADUAAAAwAAAALAAAACcAAAAjAAAAHwAA
+ ABsAAAAYAAAAFQAAABIAAAAPAAAADQAAAAsAAAAJAAAABwAAAAYAAAAEAAAAAwAAAAIAAAABAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAA
+ AAIAAAADAAAABAAAAAYAAAAHAAAACQAAAAsAAAANAAAADwAAABIAAAAVAAAAGQAAABwAAAAgAAAAJAAA
+ ACkAAAAtAAAAMgAAADcAAAA8AAAAQQAAAEYAAABLAAAAUAAAAFUAAABZAAAAXgAAAGIAAABnAAAAawAA
+ AG8CAABzAgIAdgQCAHoEAgB9BAIAgAYCAIQGAgCGBgIAiAYCAIsFAgCNBwIAjgcCAJAHAgCSBwIAkwcC
+ AJUHAgCWBwIAlwcCAJcHAgCYBwIAmQcCAJoHAgCaBQIAmgMCAJoDAgCaAwIAmgMCAJoCAgCaAgAAmQIA
+ AJkCAACYAgAAlwAAAJcAAACWAAAAlQAAAJQAAACTAAAAkQAAAI8AAACNAAAAiwAAAIkAAACHAAAAhAAA
+ AIEAAAB+AAAAewAAAHcAAABzAAAAcAAAAGsAAABnAAAAYwAAAF8AAABaAAAAVgAAAFEAAABMAAAARwAA
+ AEIAAAA9AAAAOAAAADMAAAAuAAAAKQAAACUAAAAhAAAAHQAAABkAAAAWAAAAEwAAABAAAAAOAAAACwAA
+ AAkAAAAIAAAABgAAAAUAAAADAAAAAgAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAIAAAADAAAABAAAAAYAAAAHAAAACQAAAAsAAAANAAAAEAAA
+ ABMAAAAWAAAAGgAAAB4AAAAiAAAAJgAAACsAAAAwAAAANQAAADoAAABAAAAARQAAAEoAAABQAAAAVQAA
+ AFoAAABfAAAAYwAAAGgAAABtAAAAcQAAAHUCAgB5BAIAfQQCAIAGAgCEBgIAhwcCAIoJAgCNCQQAjwkE
+ AJEJAwCTCgMAlQoDAJcMAwCYDAMAmgwDAJsLAwCdCwMAngsDAJ4LAwCfCwMAoAsCAKALAgChCgIAoQgC
+ AKEGAgChBgIAoQUCAKEFAgChBQIAoQMCAKEDAgCgAwAAoAIAAJ8CAACfAAAAngAAAJ0AAACcAAAAmwAA
+ AJkAAACYAAAAlgAAAJQAAACSAAAAkAAAAI0AAACLAAAAiAAAAIUAAACBAAAAfQAAAHoAAAB2AAAAcQAA
+ AG0AAABpAAAAZAAAAGAAAABbAAAAVgAAAFEAAABLAAAARgAAAEAAAAA7AAAANgAAADEAAAAsAAAAKAAA
+ ACMAAAAfAAAAGwAAABcAAAAUAAAAEQAAAA4AAAAMAAAACgAAAAgAAAAGAAAABQAAAAQAAAACAAAAAgAA
+ AAIAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAIAAAADAAAABQAA
+ AAYAAAAIAAAACgAAAAwAAAAPAAAAEQAAABQAAAAYAAAAHAAAACAAAAAkAAAAKQAAAC4AAAAzAAAAOAAA
+ AD4AAABDAAAASQAAAE8AAABUAAAAWQAAAF8AAABkAAAAaQAAAG0CAAByAgAAdgQAAHsEAgB/BgIAgggC
+ AIYHBACJCQQAjAsEAI8MBQCSDgUAlQ4FAJcPBwCZDwcAmxAHAJwQBgCeEgYAnxIGAKARBgCiEwYAoxMG
+ AKQTBgClEwYApREGAKYRBgCmEQUApw8FAKcOBQCnDAUApwsFAKcLBQCnCQUApwgDAKcIAwCnBgIApgYC
+ AKYFAgClAwIApQIAAKQCAACjAAAAogAAAKEAAACgAAAAngAAAJ0AAACbAAAAmQAAAJcAAACVAAAAkwAA
+ AJAAAACNAAAAigAAAIYAAACDAAAAfwAAAHsAAAB3AAAAcwAAAG4AAABqAAAAZQAAAGAAAABbAAAAVQAA
+ AFAAAABKAAAARAAAAD8AAAA5AAAANAAAAC8AAAAqAAAAJgAAACEAAAAdAAAAGQAAABYAAAATAAAAEAAA
+ AA0AAAALAAAACAAAAAcAAAAFAAAABAAAAAMAAAACAAAAAgAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAABAAAAAQAAAAIAAAADAAAABQAAAAYAAAAIAAAACgAAAA0AAAAPAAAAEgAAABYAAAAZAAAAHQAA
+ ACIAAAAmAAAAKwAAADAAAAA2AAAAOwAAAEEAAABHAAAATQAAAFIAAABYAAAAXgAAAGMAAABoAAAAbgAA
+ AHICAAB3AgAAfAQAAIAGAgCECAIAiAkCAIsLBACPDAUAkgwFAJUPBwCXEQcAmhIHAJwSCACeEwoAoBQJ
+ AKIUCQCjFgkApBcJAKYXCQCnGAsAqBgLAKkYCwCqGAoAqxgKAKsYCQCsFgkArBYHAK0VBwCtEwcArRAH
+ AK0PBwCtDwcArQ0GAK0MBgCtCgQArAkDAKwHAwCsBgMAqwQBAKsDAgCqAgIAqQIAAKgAAACnAAAApgAA
+ AKUAAACkAAAAogAAAKAAAACfAAAAnAAAAJoAAACYAAAAlQAAAJIAAACPAAAAjAAAAIgAAACEAAAAgQAA
+ AHwAAAB4AAAAdAAAAG8AAABqAAAAZQAAAF8AAABZAAAAVAAAAE4AAABIAAAAQgAAAD0AAAA3AAAAMgAA
+ AC0AAAAoAAAAIwAAAB4AAAAbAAAAFwAAABMAAAAQAAAADQAAAAsAAAAJAAAABwAAAAUAAAAEAAAAAwAA
+ AAIAAAACAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAIAAAADAAAABAAAAAYAAAAIAAAACgAA
+ AAwAAAAPAAAAEgAAABYAAAAaAAAAHgAAACMAAAAoAAAALQAAADIAAAA4AAAAPgAAAEQAAABKAAAAUAAA
+ AFYAAABcAAAAYgAAAGcCAABtAgAAcgIAAHcCAAB8BAAAgQYCAIYHAgCLCwQAjgwDAJIPBwCWEQgAmRMK
+ AJ0VCwCgGA0AohkOAKUaDgKnHRECqB4SAqofEgGsIBMBrSATAa4iEwGvIxMBsCQUAbEkFAGyJRQBsyUU
+ AbMjFAG0IxIBtCISAbUgEQG1HxEBtR4PAbUbDwG1GQ8BtRgOAbUXDQC1FAsAtBIKALQQBwC0DQYAswoG
+ ALIHBACxBgQAsAQDAK8DAQCuAQAArQAAAKwAAACrAAAAqgAAAKkAAACnAAAApgAAAKQAAACiAAAAoAAA
+ AJ0AAACbAAAAmAAAAJUAAACRAAAAjgAAAIoAAACGAAAAggAAAH0AAAB4AAAAcwAAAG4AAABpAAAAYwAA
+ AF0AAABXAAAAUQAAAEsAAABFAAAAPwAAADkAAAA0AAAALgAAACkAAAAkAAAAIAAAABsAAAAXAAAAFAAA
+ ABAAAAANAAAACwAAAAkAAAAHAAAABgAAAAQAAAACAAAAAgAAAAIAAAABAAAAAQAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAA
+ AAIAAAADAAAABQAAAAYAAAAJAAAACwAAAA0AAAAQAAAAFAAAABcAAAAbAAAAIAAAACQAAAAqAAAALwAA
+ ADUAAAA6AAAAQAAAAEcAAABNAwAAUwMAAFkDAABgBQMAZQcCAGsJAgBxCQIAdgoCAHsKAgCACwQAhg8G
+ AIsQCQCRFAwAlxkPAJweEwCiIhcApyYcAa0rIQOyMCQEtjMnB7k3KQi7OiwJvj0uC8A/MQzCQTMMw0Q0
+ DcRGNQ7GRjYOx0g3D8dJNw/ISjgPyUk4D8pIOA/KSDgPykY1D8tFNA7LRDINykAxDco+MAvJPC4KyTgr
+ Cck0KQjIMiYGxy4jBcYqHgPEJRoBwiAVAMAbEwC+Fg8AuxIMALgOCgC2CwYAtAcDALIHAwCxBgEAsAYB
+ AK8EAQCuAwEArAMBAKsCAACpAgAAqAIAAKYCAACkAgAAoQIAAJ8AAACcAAAAmQAAAJUAAACSAAAAjgAA
+ AIoAAACGAAAAgQAAAHwAAAB4AgAAcgIAAGwAAABnAAAAYQAAAFsAAABVAAAATwAAAEgAAABCAAAAPAAA
+ ADYAAAAwAAAAKwAAACYAAAAhAAAAHAAAABgAAAAUAAAAEQAAAA4AAAAMAAAACQAAAAgAAAAGAAAABAAA
+ AAMAAAACAAAAAgAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAIAAAADAAAABQAAAAcAAAAJAAAACwAAAA4AAAAQAAAAFAAA
+ ABgAAAAcAAAAIAAAACYAAAArAAAAMAAAADYAAAA8AAAAQgAAAEkDAABPAwMAVQYDAFwIAwBiCgUAaQsF
+ AG8NBAB1DwQAehAGAH8RBgCEEQYAiRQJAI8YDACWGg0AnB8TAKMnGQCrLB8AszMlALo5LQTBQDQGyEY6
+ Cc1KPQzRUUIQ1FRFEddYSRPZW0sU2l9OFtxhURfdZFMY3mdVGt9oVRrgaFYb4WlXHOJoVxziaFYc4mdW
+ G+JmVBrhZFMZ4WFQGOFgTRbgW0sV31dIEt5TRRHdT0EP3Ew+DtpHOQvYPzIH1TgrAtIwJADOKx4AySQa
+ AMUdFQDBGBAAvRMMALoOCAC3DQYAtgsGALUKBACzCQQAsgcDALEHAwCwBgEArgQBAK0EAACrAwAAqQIA
+ AKcCAAClAAAAowAAAKAAAACdAAAAmgAAAJYAAACSAAAAjgAAAIoAAACFAAAAgQIAAHsCAAB2AAAAcAAA
+ AGoAAABkAAAAXgAAAFgAAABRAAAASwAAAEQAAAA+AAAAOAAAADIAAAAtAAAAJwAAACIAAAAdAAAAGQAA
+ ABUAAAARAAAADgAAAAwAAAAKAAAACAAAAAYAAAAEAAAAAwAAAAIAAAACAAAAAQAAAAEAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAIAAAADAAAABAAA
+ AAYAAAAJAAAACwAAAA0AAAARAAAAFAAAABgAAAAcAAAAIQAAACYAAAAsAAAAMQAAADcAAAA+AAAARAAA
+ AEoDAwBRBgMAWAgDAF4KBQBlDAcAbA0HAHMRCAB5FAoAfxcKAIUYCwCKGwwAjxwMAJQfEQCaIxUAoSYY
+ AKgtHgGxNCYBujwsAcRDNALNSz0G1VNFCd1aTA3jYFER52VWFetqWhjub14a8HNhG/J3ZB3zemYf9H1p
+ IfWAbCL2gG0j94JuJPiDbyX4gm4l+IFuJfiBbSX4f2wj93xrIfZ6aR/2eGUe9XNiG/RuXhnzaloX8WVW
+ Fe9iUhPtXEsP6lRECuVLOwXgQjMB2zstAdU0JgHPLCAByiUaAMYeFADBGA8AvhQMALwTCwC6EgoAuQ8I
+ ALgNBwC2CwYAtQoEALQJAwCyBwEAsAYAAK8DAACtAQAAqwAAAKkAAACnAAAApAAAAKEAAACeAAAAmgAA
+ AJcAAACTAAAAjgAAAIoCAACEAgAAfwAAAHoAAAB0AAAAbgAAAGgAAABhAAAAWgAAAFMAAABNAAAARgAA
+ AEAAAAA5AAAAMwAAAC0AAAAoAAAAIgAAAB0AAAAZAAAAFQAAABEAAAAOAAAADAAAAAkAAAAHAAAABgAA
+ AAQAAAACAAAAAgAAAAIAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAABAAAAAQAAAAIAAAADAAAABQAAAAYAAAAIAAAACwAAAA4AAAARAAAAFQAAABkAAAAdAAAAIgAA
+ ACcAAAAtAAAAMwAAADkAAAA/AAAARgAAAEwDAwBTBgMAWgsFAGEMBwBoEAkAbxULAHcaDgB/IhUAhykZ
+ AJAvHgCZNCMCoTspA6hALwSuRjQHtUw5CrtRPw3BV0UOyF5KD89jUA7WaFUQ3W1bEuNyYBXpdmUX7Xpo
+ GvB/axvzgm4d9YVxHveIcyD4i3ch+Y54I/qPeiT7knwl+5N8JfyUfSX8lH0m/ZN9Jv2UfSb8k30m/JJ8
+ JfyQeyT7jnkj+4x2IfqIdCD5hnEe+IJuHfd/axz1e2ka9HdkF/JyXhPualgQ62ZTDedgTg7iW0gO3lRD
+ DtpNPQzWRTgK0j4wB884KgXNMSUDyiwfAMcmGgDEIBUAwBoPAL0VCwC6EQcAtwsEALUJAwCyBwEAsQQB
+ ALADAQCuAQAAqwIAAKkCAACmAAAAowAAAKEAAACdAAAAmQAAAJYAAACRAgAAjAIAAIcAAACCAAAAfAAA
+ AHYAAABwAAAAagAAAGMAAABcAAAAVQAAAE8AAABIAAAAQQAAADsAAAA0AAAALgAAACkAAAAjAAAAHgAA
+ ABoAAAAWAAAAEgAAAA8AAAAMAAAACQAAAAcAAAAGAAAABAAAAAMAAAACAAAAAgAAAAEAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAIAAAADAAAABQAAAAYAAAAIAAAACwAA
+ AA4AAAARAAAAFQAAABkAAAAeAAAAIwAAACgAAAAuAAAANAAAADoAAABBAAAASAAAAE4DAwBVBgMAXAoF
+ AGMOBwBqEgsAcRkPAHodEgCCJRQAiy8eAJc6JwCkRDAAsU46A7pYQwfDYEsKzWhUD9JxWxTXd2MY3H5o
+ G+GDbhzkiHIe6Ix2HuyPeR/vkXsf85R+IPWWfyH3mIIi+JqDI/qchSP6nYYk+6CHJPuhiST8o4ok/KOK
+ Jf2kiiX9pIsm/aSLJv2kiyb9pIsm/aSLJv2kiyb9ookl/aKJJPyghyP8noYk+5uEI/uagyL6mIEi+pZ/
+ IfmUfSD3kXoe9Y13HPOIcxzxhW8c74JsHOx9aBvqdWEX6GxZE+VjUg/jWUgK31A/BdtGNQDYPCwA0jIj
+ AMsoGgDFIBMAwBgNAL0SBwC5DQQAtgoDALUHAwC0BAEAsgQAALADAACuAQAArAIAAKkAAACnAAAApAAA
+ AKAAAACdAAAAmQIAAJQCAACPAAAAigAAAIUAAAB/AAAAeQAAAHMAAABsAAAAZQAAAF4AAABXAAAAUQAA
+ AEoAAABDAAAAPAAAADUAAAAvAAAAKgAAACQAAAAfAAAAGgAAABYAAAASAAAADwAAAAwAAAAJAAAABwAA
+ AAUAAAAEAAAAAwAAAAIAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAA
+ AAIAAAADAAAABAAAAAYAAAAIAAAACgAAAA0AAAAQAAAAFAAAABgAAAAeAAAAIgAAACgAAAAuAAAANAAA
+ ADoAAABBAAAASQAAAFAAAwBXAwMAXggFAGUOBwBtFAsAdBkPAHshEQCFKBYAji8bAJg9JwCoSDQAt1M/
+ AMdgSwTUbVYJ33hgDeqCaxTvjHQa85V+IfechSX5ooon+qiPKfqskiv7rJMr/K6UK/yulCr9sJUp/bCW
+ KP2ylyj+spcn/rKYJ/6zmCb+tJkm/rSZJv61mSb+tZkm/rWZJv61mSX+tZkm/raZJv62mif+tpkn/rWZ
+ Jv60mCb+s5cm/rKXJv6xlif+sZYn/rCVJ/6ulSf9rZQn/auTJ/2qkif8qZAn/KaNJ/ykiij7oIYn+pd+
+ IvmMdRz4gm0W9nVhD/JpVQjtXUkB51A9AN9EMQDWNSQAzSwbAMciFADCFwwAvRAHALoOBgC5CgQAuAcD
+ ALYGAQC0BAAAsgMAALABAACvAAAArQAAAKoAAACnAAAAowAAAKACAACcAgAAlwAAAJMAAACNAAAAiAAA
+ AIIAAAB8AAAAdQAAAG4AAABnAAAAYAAAAFkAAABSAAAASwAAAEMAAAA8AAAANgAAADAAAAApAAAAJAAA
+ AB8AAAAaAAAAFgAAABIAAAAOAAAACwAAAAkAAAAGAAAABQAAAAMAAAACAAAAAQAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAIAAAADAAAABAAAAAYAAAAIAAAACgAAAA0AAAARAAAAFAAA
+ ABgAAAAdAAAAIwAAACgAAAAuAAAANQAAADsEAABCAwMASgMDAFEGBgBZCwgAYA8KAGkUDQByIBYAfike
+ AIkzJgKVPy8Gn0g2DKlTPxCzXUkQwGhTD8xxWg/ZemMR4oNrEuuMcxX0lHsZ+JyDHfukiiL9qZAl/66T
+ Jv+zmCj/tpoo/7ebKP+3myj/uJwn/7mcJv+5nCX/uZwl/7mcJP+5nCT/uZwk/7mcI/+6nCP/upwj/7qc
+ I/+6nCL/upsi/7qcIv+6nCP/u50j/7qcI/+6nCP/upsj/7mbI/+5myP/uJsk/7ibJP+3myT/t5sk/7aa
+ JP+1miX/tJkl/7OYJf+ylib/sJMm/66SJf6miyH9nIMd/ZR8GfyLdBX4gWoR9HZgDPBsWAzpYk4O4lhE
+ D9tMOg3WQTAK0DQmBsspHQTHIRYDxBgQAMASCwC9DgcAuQoEALcHAQC0BAAAsgMAALABAACuAQAArAIA
+ AKkCAACmAgAAogIAAJ0AAACZAAAAlAAAAI8AAACKAAAAhAAAAH0AAAB3AAAAcAAAAGkAAABiAAAAWwAA
+ AFMAAABLAAAARAAAAD0AAAA2AAAAMAAAACoAAAAkAAAAHgAAABoAAAAVAAAAEQAAAA4AAAALAAAACAAA
+ AAcAAAAFAAAAAwAAAAIAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAIAAAADAAAABAAA
+ AAYAAAAHAAAACgAAAA0AAAAQAAAAFAAAABkAAAAdAAAAIgAAACgAAAAuAAAANQQAADwIBABDCgMASgkG
+ AFILCQBZEAsAYRMOAGsYDwB0IBYAfzElAJE/MAKjSjwEs1lID75mVRfIcl4e03xoINqFcCHijnch6ZV8
+ H+6agR7zoIYe+KaKHvurjyD8sZQi/bSXIv+3mSL/upwi/7udIv+8niL/vJ8i/72fIf+9nyH/vZ4g/72e
+ H/+9nh//vZ4f/72eH/+9nh//vZ4f/72dHv+9nR7/vZ0e/7ydHv+8nR7/vJ0e/7ydHv+8nR7/vJ0e/7yd
+ Hv+8nR7/vJ0f/7ydH/+7nR//u50e/7udHv+6nB7/upwf/7mcH/+5myD/uJog/7eYIf+2lyH+sJMf/qqP
+ Hf2kihz9nYQb+5eAG/iQeRr2inMb8oNsHe57ZiDqb1sc5mBOFeJRQQ/dQjUJ1zYqBtApHQHJHhQAwxgP
+ AL8SCAC6CwQAtwoDALUHAwC0BgEAsgQBAK8EAACtAwAAqgMAAKcCAACjAAAAoAAAAJsAAACWAAAAkQAA
+ AIsAAACFAAAAfwAAAHgAAABxAAAAawAAAGMAAABcAAAAVAAAAEwAAABFAAAAPgAAADcAAAAwAAAAKgAA
+ ACMAAAAeAAAAGQAAABUAAAARAAAADgAAAAsAAAAJAAAABgAAAAQAAAADAAAAAgAAAAEAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAABAAAAAQAAAAIAAAADAAAABAAAAAYAAAAHAAAACQAAAAwAAAAPAAAAEwAAABgAAAAdAAAAIgAA
+ ACgAAAAuAAAANAQEADsIBABDCgcAShAGAFIRCQBaEgoAYhgOAGocEQB1IBYAfyofAIw+MAKkTj8Du1pK
+ BtFrWxTde2og6Ip3KvKUgC31nogu96ePL/msky36sJUq+7KWJf22mST9upsi/b2eIf6+niD/v58e/8Cg
+ Hf/BoBz/waEc/8GiHP/Cohz/waEb/8GhGv/AoBr/wKAa/8CgGv/AoBv/wJ8a/8CfGv+/nxr/v58a/7+f
+ Gv+/nxr/v54Z/7+eGf++nhn/v54Z/7+eGf+/nxr/v58a/7+eGv+/nhr/v54Z/7+eGf++nhj/vp4Y/76e
+ Gf++nhn/vp4a/76eG/++nRv/vp0c/rubHf64mh7+tZgf/rGVIv2tkyT9qpEm/KWMKvugiSz6m4Qu+Yx4
+ KPd8aB/zalkW71lKD+dJOgndOCkC0iodAMoiFQDEGA0AvhAHALoOBgC4CwQAtwgDALYHAwCzBgEAsQYA
+ AK8DAACsAgAAqQAAAKYAAACiAAAAnQAAAJkAAACTAAAAjQAAAIcAAACBAAAAegAAAHMAAABsAAAAZAAA
+ AFwAAABUAAAATQAAAEUAAAA+AAAANwAAAC8AAAAoAAAAIwAAAB0AAAAYAAAAFAAAABAAAAANAAAACgAA
+ AAgAAAAFAAAABAAAAAIAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAIAAAADAAAABAAAAAUAAAAHAAAACQAA
+ AAsAAAAPAAAAEwAAABcAAAAcAAAAIQAAACcAAAAtAAAANAQAADsMBABCDgcAShMJAFIZDgBcIhYAaCkc
+ AHUxJACBPS0FjUY3CJpQQAyoXk0OvGlXDdBzYRDigm4a6456JPSahS38o4wu/quTL/6zmjD+tpst/7ic
+ Kv+6nSb/vZ4k/7+fIv/BoCD/wqEf/8KhHf/Dohv/w6Ib/8OiG//Dohv/w6Ia/8KiGv/BoRn/wKAZ/8Cg
+ Gf/AoBn/v58a/7+fGf+/nhn/vp4Z/76eGf++nhn/vp4Z/76dGP+9nRj/vZ0Y/72dGP++nRj/vp0Y/76e
+ Gf++nhn/vp4Z/76eGP++nhj/vp4X/7+fF/+/nxj/v58Y/8CfGf/Anxn/wJ8Z/8CeGv++nhz/vZ0e/7uc
+ H/+4myL/tpol/7SZKP+wlir/rJMt/6mQL/+ehyv8j3kj+YFtG/ZyYBbwZlMS51dFDd5KOAjWPy8G0DIj
+ A8snGgDFIBQAwRcPAL0QCAC6DgYAtwoEALUHAQCzBgAAsAMAAK4AAACrAAAApwAAAKMAAACfAAAAmgAA
+ AJQAAACOAAAAiAAAAIEAAAB7AAAAdAAAAGwAAABkAAAAXAAAAFQAAABNAAAARQAAAD0AAAA2AAAALwAA
+ ACkAAAAiAAAAHAAAABgAAAAUAAAAEAAAAAwAAAAKAAAABwAAAAUAAAAEAAAAAgAAAAEAAAABAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAEAAAACAAAAAwAAAAUAAAAGAAAACQAAAAsAAAAOAAAAEgAAABYAAAAbAAAAIQAAACcAAAAtBQAAMwkA
+ ADsMBABCEQMAShYJAFIaCwBaJxYAaDYjAHs/LQCNTToDnl1KDK1qVxS8dWIZyn9rGteIdBzjkHsd7ZiC
+ IvOgiSb4qI8q/a6UK/6zmCv+uZ0r/rqdKf+8nib/vp8k/7+gIv/BoCH/wqEf/8OiHv/Doh3/w6Ic/8Oi
+ G//Dohv/w6Ib/8KhG//BoRv/wKAa/7+fGv+/nxr/vp4a/72eGv+9nRr/vJ0a/7ycGf+7nBn/u5sZ/7qb
+ Gf+6mxn/upsZ/7qbGf+6mxn/u5sZ/7ubGf+7nBn/vJwZ/7ycGf+8nRn/vZ0Y/72dGP++nhj/vp4Y/76e
+ Gf+/nxn/v58Z/8CfGf/Anxn/v54b/7+eHP++nh7/vJ0g/7qcIv+4myT/tpkm/7OXKP+wlSr/qY8o/Z+H
+ I/yWfiD6jXYd9oVvHPB7ZRnrb1oV5mFND+BQPwjbQjIE1TQnAc0nGwDFGg8AvhQLALsPBwC4CgMAtgcB
+ ALMDAACxAAAArwAAAKwAAACoAAAApAAAAKAAAACaAAAAlQAAAI8AAACJAAAAgwAAAHwAAAB0AAAAbAAA
+ AGQAAABcAAAAVAAAAEwAAABEAAAAPQAAADUAAAAuAAAAKAAAACEAAAAcAAAAFwAAABIAAAAPAAAADAAA
+ AAgAAAAHAAAABQAAAAMAAAACAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAgAAAAQAAAAFAAAABwAAAAoAAAANAAAAEAAA
+ ABUAAAAaAAAAHwAAACUAAAAsAAAAMgQAADoMBABBEQMASRYGAFEcCwBaIhAAYjAdAHRDLgCMTjoApl9J
+ BLxyXRHNg20c3pB6Iu2ZgyXxoooo9aqRKfmulCr7spgo/LaaKP65nCf+vJ4m/r+gJv6/oCT/wKAi/8Gh
+ If/CoSD/wqIf/8OiH//Eoh7/xKId/8SjHP/Eoxz/w6Ic/8OhHP/CoBz/waAb/7+fG/++nhv/vZ4b/7yd
+ G/+7nBv/upwb/7qbGv+5mhr/uJoa/7iZGv+3mRr/t5ka/7eZGv+3mRr/t5ka/7iZGf+4mRn/uZkZ/7ma
+ Gf+5mhn/upsZ/7ucGf+8nBn/vZ0Z/72dGf+9nhn/vp8Z/7+fGf+/nxn/wJ8Z/8CfGv/Anxv/wZ8d/8Cf
+ Hv++nh//vZ0h/7ycIv+6myT/uJol/7WYJf6wlCX9q5Ek/aeNJPyhiCX6moMl+JB5IPV+aBfwa1gN7FhI
+ BuRINwTYNCcBzSIWAMMbEAC/EwkAvAsEALkHAwC3BAEAtQAAALMAAACwAAAArQAAAKoAAAClAAAAoAAA
+ AJsAAACWAAAAkAAAAIoAAACEAAAAfAAAAHQAAABsAAAAZAAAAFsAAABTAAAATAAAAEQAAAA8AAAANAAA
+ AC0AAAAmAAAAIAAAABoAAAAVAAAAEQAAAA4AAAAKAAAACAAAAAYAAAAEAAAAAwAAAAIAAAABAAAAAQAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAgAA
+ AAMAAAAFAAAABwAAAAkAAAAMAAAAEAAAABQAAAAZAAAAHgAAACQAAAAqBQAAMQUFADgQBABBFQcAShwJ
+ AFMmEwBeMR4FbT0oBnpMNgmNW0YJpWhSC712XxDShm8Y4ZR9IPGfiCb9qI8o/bGXKv64nSz+up4q/7yf
+ J/++oCX/v6Ak/8ChI//BoSL/wqIh/8KiIP/Dox//w6Mf/8SjH//Fox//xaMe/8WjHv/Fox3/xKMd/8Oi
+ Hf/CoR3/waAd/8CfHP++nhz/vJ0c/7ucHP+6mxz/uJob/7iZG/+3mBv/tpcb/7WXG/+0lxv/s5Yb/7OW
+ G/+zlhv/s5Yb/7OWGv+0lhr/tJYZ/7WXGf+2lxn/tpga/7eZGv+4mRr/uZoa/7ubGv+7nBr/vJ0a/72e
+ Gv++nhn/v58Z/8CfGf/BoBr/wqAb/8KgHP/CoB3/wZ8d/8CfHv+/nh//vp4g/72dIf+7nCL/uZsj/7ea
+ JP+0mCX/sJUm/6yRJ/+iiST9knsc+YFrE/VxXA3vX04L4049Cdg7LQfOLyIEySIXAcQVDAC/DwgAvAoG
+ ALkEAwC2AQEAtAEAALEAAACuAAAAqgAAAKYAAAChAAAAnAAAAJcAAACRAAAAigAAAIMAAAB7AAAAdAAA
+ AGsAAABjAAAAWwAAAFMAAABLAAAAQgAAADoAAAAyAAAAKwAAACUAAAAfAAAAGQAAABUAAAARAAAADQAA
+ AAoAAAAIAAAABgAAAAQAAAADAAAAAgAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAABAAAAAgAAAAMAAAAEAAAABwAAAAkAAAALAAAADwAAABMAAAAXAAAAHQAA
+ ACMGAAApCwUAMA4FADcQCAA/GA4ASSIPAFMmEABeOCQFcUo3C4dXQxCfZVEVs3ZgGcSFbRzVkHce45qB
+ Ie2kiiT2rJEm/bKXJv64myf+vqAn/r+gJf/AoST/wqIi/8OjIf/DoyH/xKMg/8SjIP/EpB//xKQe/8Wk
+ Hv/FpB//xqQf/8akH//FpB7/xaMe/8SiHv/DoR7/wqAe/8CfHf++nh3/vJ0c/7qbHP+4mhz/t5kc/7WX
+ HP+0lhv/s5Ub/7KUG/+xkxv/sJMb/6+TG/+vkhv/r5Ib/66SG/+vkhr/r5IZ/7CSGf+xkxn/sZQZ/7KU
+ Gv+zlRr/tJca/7aYGv+4mRr/uZoa/7ucGv+8nRv/vZ0a/76eGv+/nxr/wKAa/8KgG//DoRv/wqEc/8Kg
+ HP/CoBz/waAd/8GfHf/Anx7/v58e/72dHv+7nB//uZsg/7aZIf+zlyP/rJIi/aKHH/uXfhz4i3MZ9H1n
+ GO1tWhbmXU0T30w8Ddc4KwbQJhsAyB0SAMMTDAC+CgYAuAYDALYEAQC0AwEAsQEAAK4AAACqAAAApgAA
+ AKEAAACcAAAAlwAAAJAAAACJAAAAggAAAHsAAABzAAAAawAAAGMAAABaAAAAUQAAAEkAAABBAAAAOQAA
+ ADEAAAAqAAAAJAAAAB4AAAAZAAAAFAAAAA8AAAAMAAAACgAAAAcAAAAFAAAABAAAAAIAAAABAAAAAQAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAIAAAAEAAAABQAA
+ AAgAAAALAAAADgAAABIAAAAWAAAAGggAACEHAAAnCwYALhMFADUVCAA9GgsARiMTAFEpFgBdLhgAaUUv
+ CIJZRhGjaVUYw3hkHtiLdCTim4Mq7aeOLfWtkir4s5co+7ibJv68nST+wKAj/sOjIv7DoyH/xaQg/8al
+ H//Gph//x6Ye/8emHv/GpR7/xqUe/8alHv/GpR7/x6Uf/8elH//HpR//xqQf/8WjH//Eoh//wqEf/8Gg
+ H/+/nx7/vZ0d/7qbHP+3mhz/tpgc/7SWHP+zlRz/sZMb/6+SG/+ukBv/rZAb/6yPG/+rjxv/qo4b/6qO
+ G/+qjhv/qo4a/6uOGf+sjxn/rI8Z/62QGf+ukRr/r5Ia/7GUGv+zlhr/tZca/7eZG/+5mhv/u5wc/7yd
+ G/+9nhv/v54b/8CfG//BoBv/w6Eb/8OhG//DoRv/w6Eb/8OhG//DoRv/w6Ea/8KhGv/BoBr/v58Z/76e
+ G/+8nR3/upwf/7aaIf6wlCP9qpAk/KKIJfuVfiP4iHQi9XpoH/FkUxXmTT4K2zYnANEoHADKHBIAwg8I
+ ALsLBgC5BwQAtwQDALUBAQCyAAEArgAAAKsAAACnAAAAogAAAJ0AAACXAAAAkAAAAIkAAACCAAAAegAA
+ AHIAAABqAAAAYQAAAFgAAABQAAAARwAAAD8AAAA2AAAAMAAAACkAAAAiAAAAHQAAABcAAAASAAAADwAA
+ AAwAAAAIAAAABgAAAAQAAAADAAAAAgAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAQAAAAIAAAADAAAABQAAAAcAAAAKAAAADQAAABAAAAAVAAAAGggAAB8HAAAlDAYALA8K
+ ADMZDQA9IxUASCgWAFI1IgBhQSsFcUkxBoFcRQ+bblgXvHpmHt2IcyPwmYIq9aqQMPu0mTL/uJwt/7ue
+ KP+/oSX/waIj/8SjIf/GpB//x6Uf/8emHv/Ipx7/yage/8moHv/Jpx7/yKce/8imHv/Iph7/yKYe/8im
+ H//Iph//x6Ug/8akIP/EoiD/w6Eg/8KgIP/AnyD/vp4f/7ucHv+3mhz/tZgc/7OWHP+xkxz/r5Ec/62Q
+ HP+rjhv/qYwb/6eLG/+mixv/pYob/6WJG/+liRr/pIka/6WJGv+liRn/pooZ/6eLGf+ojBn/qY0a/6uO
+ Gv+tkBr/r5Ia/7GUG/+0lxv/t5kc/7mbHP+7nBz/vJ0c/76eG/+/nxv/waAb/8KhG//Dohv/xKIb/8Si
+ G//Foxr/xaMZ/8WjGf/Eohj/w6EY/8KhF//BoBj/wKAa/7+gHP+9nh//upwk/7eaKP+ylir+p44o/pyF
+ J/6OeyT7e2ca8WRSEeZNPAfcPi8E0y8hAcoeFADCFQ0Avg8KALsIBAC3BAMAtQMBALIAAQCvAAAAqwAA
+ AKcAAACiAAAAnQAAAJYAAACQAAAAiQAAAIEAAAB5AAAAcQAAAGgAAABfAAAAVwAAAE4AAABFAAAAPQAA
+ ADUAAAAuAAAAJwAAACEAAAAbAAAAFgAAABIAAAAOAAAACgAAAAgAAAAGAAAABAAAAAIAAAABAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAIAAAADAAAABQAAAAYAAAAIAAAADAAA
+ AA8AAAATAAAAGAkAAB4HAAAjEgYAKhoKADEbDQA5KBkARzIhAFY6KABmTTgGe15IDpJsUxSoeWIavoZv
+ H9OQeSTpm4Qo9aeOKvixly38uJ0t/7ufKv++oSb/wqMk/8SjIv/FpCH/x6Ug/8imH//Ipx//yace/8mo
+ Hv/JqB7/yagf/8mnH//Jpx//yKcf/8inH//IpyD/yKcg/8elIf/FoyD/xKIg/8KgIP/AnyD/vp4g/7yc
+ H/+4mh7/tZcd/7KVHP+vkxz/rJAc/6qOHP+njBz/pYob/6OIGv+hhxr/oIUa/56FGv+ehBr/noQa/52D
+ Gf+ehBn/n4QZ/6CFGf+hhhn/o4cZ/6SJGf+mihr/qIwa/6qPGv+tkRv/sJQb/7OWHP+2mB3/uJod/7ub
+ HP+9nBz/vp4c/8CfHP/CoRz/w6Eb/8SiG//Foxv/xaMb/8WjGv/Goxr/xaMZ/8SiGf/Dohj/wqEZ/8Gh
+ Gv/AoBz/v58e/72eIf+6nCT/t5om/q+UJv6njib+noYk/I94H/aAaxvvb1sU6F1LDuBLOgfXNykAzykd
+ AMgcEgDBDggAuggEALcGAwC0AwEAsgEAAK4AAACqAAAApgAAAKEAAACcAAAAlgAAAI8AAACHAAAAgAAA
+ AHgAAABvAAAAZwAAAF4AAABVAAAATAAAAEMAAAA7AAAANAAAACwAAAAlAAAAHwAAABkAAAAVAAAAEAAA
+ AAwAAAAJAAAABwAAAAUAAAADAAAAAgAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAEAAAACAAAABAAAAAYAAAAIAAAACgAAAA4AAAASAAAAFgAAABwIAAAiDQYAKBYLAC8gDgA3JBQAPzIf
+ AFE/KwBmRTIAelxICpVyWxSzgWkc0I52IeGagSbrpYsq9a2ULPqzmCv8uZ0q/b2gKP+/oib/wqMk/8Sl
+ Iv/GpSH/x6Yh/8imIP/JpyD/yacf/8mnH//JqB//yqgf/8qoIP/KqCD/yagg/8moIP/JpyD/yach/8mn
+ If/HpSH/xaMh/8OhIf/BoCH/v54h/7ycIf+5miD/tpgf/7KVHv+vkh3/rJAd/6iNHf+kihz/oogc/5+G
+ G/+dgxr/m4Ia/5mAGv+Xfxr/l38Z/5d+Gf+Wfhn/l34Z/5h/Gf+ZgBn/m4EZ/52DGf+fhBn/oYYZ/6OJ
+ Gf+mixr/qY4b/6yQG/+wkxz/s5Yd/7aYHf+5mh3/u5sd/72dHf+/nx3/waAd/8KhHP/Dohz/xaMc/8Wj
+ HP/GpBv/xqQb/8ajG//Foxr/xKMa/8SiGv/Dohv/wqEb/8GgHP+/nx//vp4h/7ydI/63miT+spYk/qyS
+ Jf2kiST7moIj+I94IfR7ZRftZFEL5U08Adw6LADSKRwAxxQLALwMBgC5CAMAtwQBALUDAACyAQAArgAA
+ AKsAAACmAAAAoQAAAJwAAACVAAAAjgAAAIYAAAB/AAAAdgAAAG4AAABlAAAAXAAAAFMAAABKAAAAQQAA
+ ADkAAAAxAAAAKgAAACQAAAAdAAAAGAAAABMAAAAOAAAACwAAAAgAAAAGAAAABAAAAAIAAAABAAAAAQAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAwAAAAUAAAAHAAAACQAAAAwAAAAQAAAAFQAA
+ ABkIAAAgDQcAJhELAC0hEwA2KBgAQDMbAEtELwNhUDsEeVdCB5JtWBCwgWoaz5B5Ie6chCb6qI8p/LSZ
+ Lf27ny3/vaAq/7+hJ//BoyX/w6Qk/8WlIv/GpyH/x6ch/8inIf/JqCD/yqgg/8qoIP/KqCD/yqgg/8qo
+ IP/KqCD/yqkh/8qpIf/KqSH/yagi/8mnIv/IpiL/xqUi/8SjIv/CoSL/v58i/7ydIv+6myL/t5gh/7OV
+ IP+vkh//q48d/6eMHf+jiR3/n4Yc/5yEHP+ZgRv/ln8a/5R9Gv+Sexr/kHkZ/495Gf+PeBn/j3gZ/495
+ Gf+Rehn/knsZ/5R8Gf+Wfhn/mYAZ/5uCGf+ehBn/oYca/6SKGv+ojRv/rJEc/7CUHf+zlh3/t5ge/7qa
+ Hv+8nB7/vp4e/8CgHf/CoR3/w6Id/8WjHf/GpB3/xqQd/8akHf/GpBz/xqQc/8akHP/Foxv/xKIb/8Oi
+ G//CoRv/waAc/8GgHv/Anx//vZ4h/7qcI/+3miT/spYm/62SKP+ljCj9knoe9nplEfBjTwXoTz0C3Dkq
+ Ac8hFQDCFgwAvQ8HALoIAwC4BAEAtQMBALEBAQCuAAAAqgAAAKYAAAChAAAAmwAAAJQAAACNAAAAhQAA
+ AH0AAAB0AAAAbAAAAGMAAABaAAAAUAAAAEgAAAA/AAAANgAAAC8AAAAoAAAAIQAAABsAAAAWAAAAEQAA
+ AA0AAAAKAAAABwAAAAUAAAADAAAAAgAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAgAA
+ AAQAAAAGAAAACQAAAAsAAAAOAAAAEwAAABgJAAAdFQcAJBgMACsjDwAzMh8AQjslAFJDLgBjWkMKfWlV
+ Epl1YRm1hG8ey5J7It+fhib0qY4o+7KXKPy7nin+v6Ep/8GiJ//CoyX/xKQj/8WlIv/GpiH/x6ch/8io
+ If/JqCH/yqgh/8qoIf/KqCD/yqgg/8qpIP/LqSH/y6oh/8uqIv/KqSL/yqki/8moIv/IpyP/yKYj/8ak
+ I//DoiP/wKAj/72eI/+6myP/tpkj/7OVIv+vkiH/qo8g/6aLH/+hhx7/nIQe/5iAHf+Ufhz/kXsb/454
+ G/+Ldhr/iXQZ/4dyGf+GcRn/hnEZ/4ZxGf+GcRn/iHIZ/4l0Gf+MdRn/jngZ/5F6Gf+UfBn/mH8Z/5yD
+ Gv+ghhr/pIob/6mOHP+tkR3/sZQd/7WXHv+4mR7/u5we/72eHv/AoB7/waEe/8OiHv/Fox3/xqQd/8ak
+ Hf/HpR3/x6Ud/8elHf/GpBz/xaQc/8WjG//Eohv/w6Ib/8OhHP/DoRz/wqAd/8CfHv+9nh//u50g/7ea
+ Iv+zlyT/rpMl/qCGIPmQeBr1f2oU72lWEOZUQgnbOywE0SoeA8keFADCEAcAugoDALcHAwC0BAEAsQMB
+ AK0CAACpAAAApQAAAKAAAACZAAAAkgAAAIsAAACDAAAAegAAAHIAAABpAAAAYAAAAFcAAABOAAAARQAA
+ ADwAAAA0AAAALQAAACUAAAAfAAAAGQAAABQAAAAPAAAADAAAAAkAAAAGAAAABQAAAAMAAAACAAAAAQAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAABAAAAAgAAAAMAAAAFAAAABwAAAAoAAAANAAAAEQwAABYJAAAbDwgAIRoN
+ ACgmEAAvLRYAOTwoAE1FMABkTzgAe2dSD5l7Zx24iXUm2JaBKeaiiinwrZMp+bSZKP27nSf9waIm/sSk
+ JP/FpSP/xaYi/8amIf/HpyH/yKch/8moIf/JqCH/yqgh/8upIf/LqSH/yqkh/8qpIf/LqiH/y6oi/8yr
+ Iv/LqyP/yqoj/8qqI//JqSP/yKck/8emJP/FpCT/wqEk/7+fJP+7nCT/t5kk/7OWJP+vkyT/qo8j/6WL
+ Iv+ghyH/m4Mg/5Z/H/+Rex7/jXgd/4l1HP+Fchv/g28a/4BtGf9+axj/fWoY/31qGP99aRj/fmoZ/39r
+ Gf+BbBn/g24Z/4ZxGf+Jcxn/jXYZ/5F6Gf+Wfhn/m4Ia/6CHG/+lixz/qo8d/66SHf+zlR7/t5ge/7qb
+ H/+8nh//v6Af/8GiH//Doh//xaMe/8akHv/HpR7/x6Ue/8imHv/HpR3/x6Ud/8akHP/FpBz/xaMb/8Sj
+ G//Eohv/xKIb/8SiG//CoRv/waEc/76gHf+8nR//upsg/7aZIv6tkiL8pIoj+pmBIveEbRvwalgS6FBA
+ COA9LwXVKx4DyRgMAL0PBgC5CwQAtgcDALQEAQCxAQEArQAAAKkAAACkAAAAngAAAJgAAACRAAAAiQAA
+ AIAAAAB4AAAAbwAAAGYAAABdAAAAVAAAAEsAAABCAAAAOgAAADIAAAAqAAAAIwAAAB0AAAAXAAAAEgAA
+ AA4AAAAKAAAACAAAAAYAAAAEAAAAAgAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAIAAAAEAAAABgAA
+ AAkAAAAMAAAADw0AABMKAAAZEQkAHhUOACUiEQAtLhwANzofAEJKMQBdVT4CeFxGBZV0XxW0iXMk1JiD
+ LvSjjS/8rZUt/bieLP6/oin+wqQm/samI/7HpiH/yKch/8ioIP/IqCD/yagg/8qoIP/KqCH/y6kh/8up
+ If/LqSH/y6oh/8uqIf/LqiH/y6si/8ysI//MrCP/y6wj/8qrI//KqiP/yakk/8inJP/HpiX/xKQl/8Gh
+ Jf+9niX/uZsl/7WYJf+wlCb/qpAl/6WLJP+ghyT/m4Ij/5V+Iv+PeSH/inUg/4VyHv+Bbh3/fWsc/3pp
+ G/94Zhn/dWQY/3VjGP90Yhj/dGIY/3VjGf92ZBn/eGYZ/3toGf9+ahn/gW0Z/4ZxGf+LdRn/kXoZ/5Z+
+ Gv+cgxv/oogc/6eMHf+skB3/sZQe/7WXHv+4mh//vJ4g/7+hIP/BoiD/w6Mg/8WjH//GpB//x6Uf/8im
+ Hv/Iph7/yKYe/8imHv/HpR3/xqQc/8akHP/Foxv/xqMa/8ajGv/Goxr/xKMa/8OjGv/Cohr/wKEc/7+g
+ Hv++nx/+uZwk/rWZKf6tkyz9mIEk+IBqGPJkUw3sUUAI4DwsBNEjFQDCFwsAvBAIALoLBgC3BwMAswQB
+ ALABAQCsAAAAqAAAAKIAAACdAAAAlgAAAI4AAACGAAAAfgAAAHUAAABsAAAAZAAAAFoAAABRAAAASAAA
+ AD8AAAA2AAAALgAAACcAAAAgAAAAGgAAABUAAAARAAAADAAAAAkAAAAHAAAABQAAAAMAAAABAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAQAAAAIAAAADAAAABQAAAAcAAAAKAAAADg8AABEMAAAWGwkAHB4PACIkEgAqNiQAOT8q
+ AElMNQBbYUoLeXBZEph7Yxi2inQgzZmBJ+OljS34rZQt/bWbLP69oSr+wKMo/8SkJf/GpiL/yKch/8mn
+ If/JqCH/yakh/8qpIf/KqSH/y6kh/8uqIv/MqiL/zKoj/8yrI//MqyP/y6sj/8ysI//NrCT/za0k/8ys
+ Jf/LrCX/yqsl/8mqJf/IqCb/xqYm/8SkJv/AoSb/vJ4n/7ibJ/+ylij/rJIp/6aNKf+giCj/moMn/5R+
+ Jv+OeSX/iHQk/4JwI/9+bCL/eWgg/3VlH/9yYx3/b2Ac/2xdGv9sXBr/a1wa/2tbGv9sXBr/bl4b/29f
+ G/9yYRv/dmQb/3pnG/9/axv/hXEb/4x2G/+Sexv/mIAb/56FHP+lih3/qo4e/6+SHv+0lh//t5og/7ud
+ IP++oCH/wKIh/8OjIf/FpCD/xqUg/8emIP/Ipx//yacf/8imH//Iph7/yKYe/8elHf/HpR3/xqQc/8ak
+ G//GpBr/xqQa/8WkGv/Eoxr/w6Ma/8KiG//BoRz/v6Ae/7ueIf+4myb/s5go/qOLJfqSex73gGsY8mtZ
+ EulWRArcPi0C0S4fAMghFQDBEgoAugoEALYGAwCyAwEArwAAAKsAAACmAAAAoQAAAJsAAACTAAAAjAAA
+ AIQAAAB7AAAAcgAAAGoAAABgAAAAVwAAAE4AAABEAAAAOwAAADIAAAArAAAAJAAAAB0AAAAYAAAAEwAA
+ AA4AAAALAAAACAAAAAYAAAAEAAAAAgAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAACAAAABAAAAAYAAAAJAAAADAAA
+ ABANAAAUFAoAGSEQAB8oDQAmMBsAMEMsAEVLNQBcVkACdHFbEZWCbR22kHkl15yFKOWnjizwsZct+7ec
+ LP68oCr+waQo/sOlJv/FpiT/yKci/8moIv/JqCL/yqki/8qqIv/LqiL/y6oi/8uqIv/MqiP/zKsj/82r
+ JP/NqyT/zKwk/8ysJP/NrCT/za0l/86tJv/NrSb/zK0m/8usJv/Kqyf/yKkn/8anJ//DpCf/v6Eo/7ue
+ Kf+2mir/r5Ur/6iQLP+iiy3/m4Us/5R/K/+Oeir/h3Up/4FvKP97ayb/dmcl/3JjI/9tXyL/alwg/2dZ
+ H/9kVx3/Y1Yc/2JVHP9iVRz/Y1Yc/2VXHf9nWB3/alsd/25eHf9yYh3/eGcd/39sHP+HcRz/jncc/5V9
+ HP+bgx3/oogd/6iNHv+ukR//s5Ug/7aZIP+5nCH/vZ8h/8CiIf/DpCH/xaYh/8emIf/IpyH/yacg/8mn
+ IP/Jpx//yacf/8imHv/Iph7/x6Ud/8elHf/HpRz/x6Ub/8alG//FpBr/xaQa/8SjGv/Doxv/wqIb/8Gh
+ HP++oB//u54i/7icJP6tkyT9o4sk+piCI/iFbxrxbloP6FZCBd9CMQDULyEAyRoPAL4MBgC4CAMAtQQB
+ ALIBAACuAAAAqgAAAKUAAACgAAAAmAAAAJEAAACKAAAAgQAAAHgAAABwAAAAZgAAAF0AAABTAAAASgAA
+ AEEAAAA3AAAAMAAAACgAAAAhAAAAGwAAABYAAAARAAAADQAAAAoAAAAHAAAABQAAAAMAAAACAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAABAAAAAwAAAAUAAAAHAAAACgAAAA0OAAASDAwAFhsJABwsFgAjLxgAKz0hADZNNABTV0ICcGFL
+ B458ZhexkHok05+ILvSpkC/7spgu/LyfLP7Aoyr+wqUo/sSnJv7FpyT/x6cj/8ioIv/KqCL/yqki/8uq
+ I//LqiP/y6oj/8uqI//LqiP/zKsk/82sJf/NrCX/zawl/82sJf/NrCX/zq0m/86tJv/Prif/zq4n/82u
+ KP/MrSj/yqso/8ipKP/Gpyf/w6Qo/76hKf+6niv/tZks/66VL/+nkDL/oYs0/5uGNf+UgTX/jX02/4d3
+ NP+BcjP/e20y/3ZpMf9yZjD/bWIu/2pfLP9nXCv/ZFop/2NYKP9jWCf/Ylcn/2NYJ/9lWSj/Z1op/2pd
+ Kf9uYSn/c2Uo/3hpJv99bCP/g28f/4p0Hf+Reh3/mIAd/6CGHf+mix7/rJAf/7GVIP+1mCH/uZwh/7yf
+ If/AoiL/w6Qi/8anIv/HpyL/yKgi/8moIf/JqCH/yagg/8mnH//Jpx//yacf/8imHv/Iph7/x6Yd/8el
+ HP/GpRv/xqUb/8WlG//FpBr/xKQb/8SjGv/Doxv/wKEd/76gH/+8nyD+uJwk/rOZKP6tlCv9m4Qi+IRu
+ FfJrVQjsVUIC4D0tAdEjFgDDEwoAuwwGALgHAwC1AwAAsQEAAK0AAACpAAAApAAAAJ0AAACWAAAAjwAA
+ AIcAAAB+AAAAdQAAAGwAAABjAAAAWQAAAE8AAABGAAAAPAAAADQAAAAtAAAAJQAAAB4AAAAZAAAAEwAA
+ AA8AAAALAAAACAAAAAYAAAAEAAAAAgAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAgAAAAMAAAAGAAAACQAAAAwAAAAPDQAAFB8K
+ ABkpEAAfNx4AKkAiADRLMQBEYUoMZ2xWEot3YRauinMgyZyEKeKpkS75spgu/rmdK/7Boyn+w6Un/8Sm
+ Jv/GpyX/x6gk/8ipI//KqSL/yqoi/8uqI//MqyP/zKsk/8yrJP/MqyT/zKsk/82sJf/OrSb/zq0m/86t
+ Jv/OrSb/zq0m/86uJ//Prif/z68o/86uKP/Nrin/za4p/8qsKf/Iqin/xqgp/8OlKf++oSv/uZ0s/7ac
+ Mf+1nTv/tZ9F/7SgT/+zolj/saNg/6+jZ/+qn2f/ppxn/6KYaP+elWf/m5Nn/5iQZv+WjmX/lIxk/5KK
+ Y/+RiWP/kIli/5CJYv+RiWL/kopi/5OLY/+WjWP/mZBh/5ySX/+ZjlX/kYJA/4h2K/+GcR7/jnge/5Z+
+ Hv+dhR7/pIof/6qPIP+wlCH/tZgh/7mcIv+9nyL/wKIj/8OkI//GpyP/yKgj/8mpI//KqSL/yqki/8qo
+ If/KqCD/yqgg/8mnIP/Jpx//yace/8imHf/Hph3/x6Yc/8alHP/GpRv/xqUb/8WkG//EpBr/w6Ma/8Ki
+ G//AoR3/vqAf/7ueIv+4nCX/tZoo/qeMI/uVfBz3gmsT82xXDehSQAjaNScBzSIWAMQYDwC+DgcAuAYB
+ ALMEAQCvAQAArAAAAKcAAAChAAAAmgAAAJQAAACMAAAAgwAAAHsAAABxAAAAaAAAAF8AAABVAAAASwAA
+ AEEAAAA5AAAAMQAAACkAAAAiAAAAHAAAABYAAAARAAAADQAAAAkAAAAHAAAABQAAAAMAAAABAAAAAQAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA
+ AAMAAAAEAAAABwAAAAoAAAANAAAAERYLABckEgAcMhUAJEQkADFOLQA+WjsDUnBYFH1+Zx6ohnEkz5eA
+ KOCmjCvutJgv+7qeLP7Aoin+xaYm/sanJP/HqCT/yKkj/8mqI//KqiP/y6oj/8urI//MqyP/zKsk/82s
+ Jf/NrCX/zawl/82sJf/OrSb/z64n/8+uJ//Prif/z64n/8+uJ//Prif/z68o/8+vKP/Oryn/za4p/82u
+ Kv/KrCr/yKsq/8apKv/CpSv/vaEs/7ecLf+4njf/vqdI/8SvWv/KuGz/zsB+/9LJkP/Vz57/082g/9DL
+ of/OyaP/zMik/8rGpf/Jxab/yMSl/8fDpf/GwqT/xcGk/8XBpP/FwaT/xcGk/8bCpP/HwqT/yMOj/8nF
+ oP/Lxp7/wLmI/6ebYP+Pfzf/g24e/4t1Hv+TfR7/m4Me/6KJH/+pjiD/r5Mh/7SYIv+5nCP/vaAk/8Gi
+ JP/EpST/x6ck/8ioJP/JqST/y6oj/8uqI//LqSL/y6kh/8qoIf/KqCD/yqgg/8mnH//Jpx7/yKYe/8em
+ Hf/Hphz/x6Yc/8alG//FpRv/xaQa/8SjGv/Coxr/wqIb/8ChHf++oB//vJ8h/7qdJP6vlCP9pYsi+pmB
+ IPiCbRnvZlMP5Ec3BNgyJADOIxkAxRQMALwKBAC1BwMAsgQBAK4CAACqAAAApAAAAJ4AAACYAAAAkAAA
+ AIgAAACAAAAAdgAAAG0AAABkAAAAWgAAAFAAAABGAAAAPQAAADUAAAAsAAAAJQAAAB8AAAAYAAAAEwAA
+ AA8AAAALAAAACAAAAAYAAAADAAAAAgAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAIAAAAEAAAABQAAAAgAAAALAAAADw0AABQfCgAZMRAAHzkg
+ AChPLAA6WDYAS2RGCGN+ZBySi3Mmw5N9Le2hiS72r5Uu+rygLv3CpCr+xaYm/smpI/7JqSL/yqoi/8uq
+ Iv/LqyP/y6sj/8ysI//MrCP/zawk/82sJf/NrCX/zq0m/86tJv/OrSb/z64n/8+uJ//Qryj/0K8o/9Cv
+ KP/Qryj/0K8o/8+vKP/Pryj/zq8p/82vKv/Nriv/y60r/8mrK//Hqiv/wqYs/7yhLf+2nC//uaE8/8av
+ Vf/Svm7/3c2I/+fcov/x673/+PfR//j31P/39tf/9/ba//f23P/29t7/9vXg//b14P/29eD/9vXg//b1
+ 4P/29eD/9fXg//b14P/29eD/9vXf//b13f/29dr/9vbX/+PfuP+8s37/lIZD/39sHv+Icx7/kXse/5mC
+ Hv+ghyD/qI0h/6+TIv+0lyP/uZwk/76gJf/BoyX/xKUl/8eoJf/JqSX/yqol/8yrJP/MqyT/zKoj/8up
+ Iv/LqSL/y6kh/8qoIP/KqCD/yacf/8mnHv/Iph7/yKYd/8emHf/Hphz/xqUb/8WkGv/Eoxr/xKMa/8Oj
+ Gv/Doxv/waIc/7+hHv++oSD+uZ0j/rOYJ/6tkir9l4Aj9nlkFuxYRwfjQDIA2DAjAMwcEQDADgcAuAoE
+ ALUGAQCxAwAArQIAAKgAAACiAAAAnAAAAJUAAACNAAAAhQAAAHwAAABzAAAAaQAAAF8AAABVAAAASwAA
+ AEEAAAA5AAAAMAAAACgAAAAiAAAAGwAAABUAAAARAAAADAAAAAkAAAAGAAAABAAAAAIAAAABAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAADAAAABQAA
+ AAcAAAAJAAAADQ8AABEXAAAWLhIAHDwXACJMKwAvZUYHTGxPDGp3WxGJinAfr5d+KdWgiC/2q5Ev+7aa
+ LvzAoyz+xKUp/8anJv/JqSL/yqoi/8uqIv/MqyP/zKwj/8ysJP/NrCT/za0k/82tJf/NrSb/zq0m/86u
+ J//Orif/z64n/9CvKP/Qryn/0bAp/9GwKv/RsCr/0bAq/9GwKv/QsCr/z7Aq/8+wK//OsCz/za8s/8uu
+ LP/JrCz/x6os/8KmLf+8oS//tZwx/7mhP//GsVr/0sB1/9/QkP/q4a3/9vLJ////3v///+H////l////
+ 6P///+r////s////7v///+7////v////7////+/////v////7////+/////v////7v///+z////o////
+ 5f/p58T/v7aF/5SGRv98ah//hnIf/496H/+YgR//oIch/6eNIv+ukyP/tJck/7mcJf++oCb/waMm/8Sl
+ Jv/HqCb/yakm/8qqJf/MqyX/zKsk/8yrJP/MqiP/y6oi/8upIv/LqSH/yqkg/8qoIP/Jpx//yacf/8in
+ Hv/Ipx3/yKYd/8elHP/GpRv/xaQa/8WkGv/EpBv/xKQb/8OjHP/Bohz/wKEe/7yeIf+4myb/s5gq/6KJ
+ JfmJchzzb1wS7FpHC+FDNQbULB8BxhoPAL0SCgC5CwQAtAYBALADAACqAAAApQAAAKAAAACZAAAAkQAA
+ AIoAAACAAAAAdwAAAG4AAABkAAAAWgAAAE8AAABGAAAAPQAAADQAAAAsAAAAJQAAAB4AAAAYAAAAEwAA
+ AA4AAAAKAAAABwAAAAUAAAACAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAEAAAACAAAAAwAAAAUAAAAIAAAACxEAAA8NAAATIAsAGDEZAB9FHAAlXjkFNnJW
+ EGJ7YhSNhGoYtJR7Is2jiSnlrZMv+bWaL/y7nyz9w6Uq/sWmKP/IqCX/yqoi/8uqIv/MqyP/zKwk/82s
+ JP/NrCX/za0l/86tJf/OrSb/zq4n/86uJ//Orif/z68o/8+vKP/QsCn/0bAq/9KxK//SsSv/0rEs/9Kx
+ LP/SsSz/0bEs/9GyLP/QsS3/z7Et/86wLv/Mri7/yawt/8eqLf/Cpi7/u6Ex/7WcM/+3oUH/w7Bd/8+/
+ ef/cz5T/6OCx//Xxzf///+P////m////6f///+3////u////8P////H////y////8/////P////z////
+ 8/////P////z////8/////P////w////7P///+j/6ebH/721h/+ShEf/emgf/4RwH/+OeSD/mIEg/5+H
+ If+njSP/rpMk/7OXJf+5nCb/vqAm/8GjJ//Epif/x6gn/8mqJ//Kqyb/zKwm/8ysJf/MqyT/zKsk/8yq
+ I//LqiL/y6oi/8uqIf/KqSD/yqgg/8mnH//Jpx//yace/8inHv/Hph3/x6Uc/8alHP/GpBz/xaQc/8Wk
+ HP/Eoxz/wqIb/8GhHP++nx//up0j/7eaKP+rkCf7mYEi+IhyHvRyXxjqWUcP3DsrBc4mFwDEGxAAvREI
+ ALcHAwCyBAEArQIAAKkAAACjAAAAnAAAAJUAAACOAAAAhQAAAHwAAABzAAAAaQAAAF8AAABUAAAASwAA
+ AEEAAAA4AAAAMAAAACgAAAAgAAAAGgAAABUAAAAQAAAADAAAAAkAAAAFAAAAAwAAAAIAAAABAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAgAAAAQAAAAGAAAACRUA
+ AAwPAAARGAwAFSYTABs8HgAiUSUAKWtCBD5+YBN3hWwZr4tzHd6cgyTqrJIr9LmeL/2+oi7+wqQr/sWn
+ KP7Hpyb/yakk/8urIv/MqyP/zKwk/82sJf/NrCX/zq0m/86tJv/OrSb/zq4n/86vKP/Oryj/z68o/8+w
+ Kf/PsCn/0bAq/9KxLP/TsS3/07Et/9SyLf/Usi7/07Iu/9KzLv/Ssy7/0bIu/9CyL//PsTD/za8v/8qs
+ L//Hqi7/wqYw/7uhMv+0nTX/tqFE/8GvYP/Nvnz/2c2Y/+fftf/08dL////o////6////+7////x////
+ 8/////T////1////9v////f////3////+P////j////4///++P///vf///73///+9f///vD///7s/+nm
+ yv+8tIj/kIJH/3hmH/+Cbx//jXgg/5eAIf+fhyL/p40k/66TJf+zlyb/uZwm/76gJ//Boyf/xKYo/8eo
+ KP/Jqif/yqsn/8ytJv/MrSb/zKwl/8yrJP/MqyT/zKsj/8urIv/LqiL/y6kh/8qpIP/KqCD/yqgg/8mn
+ H//Jpx//yKYe/8imHf/HpR3/x6Ud/8alHP/GpBz/xaQb/8OjGv/Cohr/wKEd/72fIf+7nSX/s5cn/qiO
+ KP2dhij8iXMj82xXFuRLOAfVMSEAySMWAMIWCwC7CgMAtAYBALABAACsAAAApwAAAKAAAACZAAAAkwAA
+ AIoAAACBAAAAeAAAAG4AAABjAAAAWQAAAE8AAABGAAAAPAAAADQAAAAsAAAAIwAAAB0AAAAXAAAAEgAA
+ AA0AAAAKAAAABgAAAAQAAAADAAAAAgAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAQAAAAIAAAAEAAAABxoAAAoSAAAOKA0AEywWABc+HwAhUjgAMl89AENwUAtdhmsZkZB4
+ H8OYgCTtpown9LSZK/m/oi3+wqQr/8SmKf/Gpyf/yKkl/8qqJP/LqyP/zKwk/82sJP/OrSX/zq0m/86t
+ Jv/Prif/z64n/8+vKP/Pryj/z7Ap/8+wKv/QsSr/0LEr/9GxLP/Ssi3/1LIu/9SyLv/Usy7/1LMv/9Sz
+ L//Tsy//07Qv/9KzMP/RszD/0LIx/86wMf/LrTD/yKsw/8KnMf+7ojT/tJ03/7aiRv/BsGL/zL1+/9jN
+ m//m37j/9PHV////6////+7////x////9P////b////3////+P////n////5////+f////r////6////
+ +v///vr///76///++v///vf///7y///+7f/p5sv/vLSK/5CCSf93ZiD/gm8g/414If+YgSL/n4cj/6eN
+ Jf+ukyb/s5gn/7mcJ/++oSj/waQp/8SnKf/Iqin/yasp/8usKP/MrSf/za0n/82tJv/NrCb/zawl/8ys
+ JP/MrCP/zKsj/8uqIv/LqiL/y6kh/8qpIf/KqCD/yqgg/8mnH//Iph7/yKYe/8elHf/HpR3/x6Ud/8Wk
+ HP/Eoxv/w6Ma/8GhHP+/oB//vp8j/7eaJv+vlCj/p44q/5d/Jfd9ZxrrYEsO30c0BtQ0JQPJHhMBvg0E
+ ALYJAwCyAwAArgAAAKoAAACjAAAAnQAAAJYAAACOAAAAhQAAAHwAAAByAAAAaAAAAF4AAABUAAAASgAA
+ AEAAAAA3AAAALwAAACYAAAAfAAAAGgAAABQAAAAPAAAACwAAAAgAAAAEAAAAAwAAAAIAAAABAAAAAQAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAADAAAABQAAAAgXAAALIhEADz0Y
+ ABU7HQAaUTIAKV9FBEZkSwVjdVoMg410HKychCXTpo4s9LGWK/i7niv7w6Uq/sWmKP/Gpyf/x6gl/8mq
+ Jf/LqyT/zKwk/82tJP/OrSX/zq0m/8+uJ//Prif/0K8o/9CvKP/QsCn/0LAp/9CxKv/QsSv/0bIr/9Gy
+ LP/Ssi3/07Iu/9SyLv/Usy//1LMv/9S0L//UtDD/1LQw/9S0MP/TtDH/0rMy/9GzM//PsTL/zK4y/8ms
+ Mf/EqDP/vKM2/7WeOP+2o0j/wbBk/8u+gf/XzZ3/5d+6//Tx1////+3////w////8/////b////4////
+ +f////v////7////+/////v////7////+/////v///77///++////vv///75///+9P///u//6ebN/7y1
+ jP+Qg0v/eGch/4NwIv+OeSL/mIIj/5+IJP+njib/rpQn/7OYKP+5nSn/vqIq/8KlKv/FqCr/yasq/8us
+ Kv/MrSn/za4p/86uKf/Orij/zq0o/86tJ//NrCb/zawk/8ysJP/MqyP/zKsj/8yqI//LqSL/y6kh/8qo
+ IP/Jpx//yacf/8imHv/Iph7/yKYe/8elHf/GpRz/xaQb/8SjGv/Cohz/waEe/7+gIf+6nSP/tZkm/6+U
+ KP+hiCX6jHQc8nReFOtdSQ3gRDMJ0ScaA8IPBgC3CwQAtAYBALABAACsAgAApgAAAKAAAACaAAAAkgAA
+ AIkAAACAAAAAdgAAAGwAAABiAAAAWAAAAE4AAABEAAAAOwAAADIAAAApAAAAIgAAABwAAAAWAAAAEQAA
+ AA0AAAAJAAAABQAAAAQAAAACAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAACAAAAAwAAAAYcAAAJKxUADC0PABFDIQAXUiQAHF45ADFmTQZaalMGhHVgDqqSeh/Hpo8s47Wb
+ M/q6ny/9wqMq/canJv7HqCX/yKkk/8mqJP/KqyT/zKwl/82tJf/OriX/z64m/8+uJ//Prif/0K8o/9Gw
+ Kf/RsCn/0bEq/9GxKv/Rsiv/0bIs/9KzLf/Ssy7/07Mu/9SzL//Vsy//1bQv/9W0MP/VtTD/1bUx/9W1
+ Mf/VtTL/1LUy/9O0M//TtDT/0LI0/86vM//LrTP/xak0/72kN/+2nzr/t6NK/8GxZv/LvoP/182f/+Xf
+ vP/z8dn////v////8v////b////5////+v////z////9/////f////3////9/////f////3////9///+
+ /f///v3///79///++v///vX///7w/+nmzv+8tY3/kINN/3hnI/+DcCP/jnoj/5mCI/+giCX/p44m/66U
+ KP+zmSn/uZ4q/7+jK//Dpiz/xqks/8qsLP/MrSv/za4r/86vK//Pryr/z68q/9CuKv/PrSn/zq0n/82s
+ Jv/NrCX/zawl/82sJf/NqyT/zKoj/8uqIv/LqSH/yqgg/8mnH//Iph7/yKYe/8imHv/Iph7/x6Ud/8al
+ G//FpBr/xKMb/8KiHf/Boh7/vqAg/7qdI/+3mib/rJEk/JqBH/mHcBr2cFwT7FNCDdkxIQXGEwcAuQ0E
+ ALUHAQCyAwAArgIAAKkCAACjAAAAnQAAAJUAAACNAAAAhAAAAHsAAABxAAAAZwAAAF0AAABSAAAASAAA
+ AD8AAAA1AAAALAAAACUAAAAfAAAAGAAAABMAAAAOAAAACgAAAAYAAAAEAAAAAwAAAAEAAAABAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAwAAAAQAAAAHGgAACjcSAA5AJgAUWCwAHWA3
+ ACVrSgQ+dFoObndiEp6BbBjGmYIk2qyTLu27oDT9v6Mv/8OmKv/HqCX/yKkk/8mqJP/KqyT/y6wk/8yt
+ Jf/Orib/z68m/8+vJ//Pryj/0K8o/9CwKf/RsCn/0bEq/9KxK//Ssiv/0rMs/9KzLf/Ssy7/07Qv/9S0
+ L//VtDD/1bQw/9W0MP/VtTH/1bYx/9W2Mv/VtjP/1rY0/9W2NP/UtTX/1LU2/9GzNf/PsDX/zK40/8aq
+ Nv+/pTn/t6A8/7mlS//Csmf/zL+E/9fOoP/l373/9PHa////8P////P////2//7/+f/+//v//v/9//7/
+ /v/+/////v////7//////////////////////v////7////+/////vv///72///+8f/p58//vbaO/5KF
+ Tv96aSX/hXMl/5B8JP+ahCT/oYom/6iQKP+vlin/tJoq/7qfK/+/pC3/w6ct/8eqLf/LrS3/zK4t/86v
+ LP/PsCz/0LAr/9CwK//Rryv/0K4q/8+uKP/OrSf/zq0m/86tJv/OrSb/zawl/82rJP/MqiP/y6kh/8qo
+ IP/Jpx//yacf/8mnH//Jpx//yKce/8imHf/HpRz/xqUb/8SkG//DpBz/wqMd/8ChH/++nyL/u54k/7KW
+ I/2kiiH8lX4f+4JrGvJkUBLhQDAHzyIVAMIYDgC8DgcAtgYBALAEAQCrAgIApgICAKAAAACYAAAAkAAA
+ AIgAAAB/AAAAdQAAAGsAAABhAAAAVgAAAEwAAABCAAAAOQAAAC8AAAAoAAAAIQAAABoAAAAUAAAAEAAA
+ AAsAAAAHAAAABQAAAAMAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAA
+ AAMAAAAFAAAACCsVAAxEEQAPVSsAGGA3ACVmQgAydFcKT4JrGoGIcyK0kHsl3KKKK+iymC/0vaMy/sGl
+ Lf/Fpyn/yakl/8mqJf/KqyX/y6wl/8ytJf/Nrib/zq4n/8+vJ//Pryj/0LAp/9CwKv/QsCr/0bEr/9Gx
+ K//Ssiz/0rMt/9KzLf/TtC7/07Qv/9O0MP/UtDD/1bQx/9W0Mf/WtTH/1rYy/9a2Mv/WtzP/1rc1/9e4
+ Nv/Wtzb/1bY2/9S2N//StDb/0LI2/82vNf/Iqzf/wKY6/7mhPf+6pkz/xLNo/83Ahf/YzqH/5uC9//Tx
+ 2v////D////z////9v/+//n//v/7//7//f/9//7//v////7////+//////////////////////7////+
+ /////v////77///+9v///vH/6efP/763j/+Uh0//fGwm/4d1Jv+Tfib/nYYm/6SMJ/+qkin/sZgq/7ac
+ K/+7oCz/wKUu/8SoLv/Iqy7/y64u/82vLv/OsC3/0LEs/9GxLP/RsCz/0rAs/9GvK//Qryn/z64o/8+u
+ J//OrSb/zq0m/82sJf/NqyT/zKsj/8yqIv/LqSH/yqgg/8mnH//Jpx//yacf/8mnH//Iph7/x6Yc/8al
+ G//FpRz/xKQc/8OkHf/Cox7/wKEg/76fIv+4miL+rZIj/aOKJPyQeiD2c2AW6FNBCts2KAHOJxsBxRcP
+ ALsJBACyBwMArQUCAKgCAgCjAgAAmwAAAJQAAACMAAAAggAAAHkAAABvAAAAZQAAAFoAAABQAAAARgAA
+ ADwAAAAzAAAAKgAAACMAAAAcAAAAFgAAABEAAAANAAAACQAAAAYAAAAEAAAAAgAAAAEAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAIAAAAEAAAABhwAAAk7FAANSx4AEWQuABxsPgAtbUkAP3te
+ DV+OdCKVlH8sy5yIMPKpkjH3tpsx+8GkMP7Dpiz/x6go/8mqJf/KqyX/y6wl/8ytJv/MrSb/za4n/86v
+ KP/PsCn/z7Aq/9CxK//QsSv/0LEs/9GxLP/Rsiz/0rIt/9KzLv/TtC//07Qv/9S0MP/UtDH/1bUx/9W1
+ Mf/VtTL/1rYy/9a2M//XtzT/17g1/9e4N//YuTj/17k4/9W4OP/Utzj/0rU3/9CzN//OsDf/yaw4/8Ko
+ O/+7oz7/vKdN/8W0af/OwYX/2c+i/+bgvv/08dr////w////8/////b//v/5//7/+//9//3//f/+//3/
+ ///+/////v/////////////////////+/////v////7////++////vb///7x/+rnz/+/uJD/lopR/39v
+ KP+KeCf/lYAn/5+JJ/+mjyn/rJQq/7KaLP+3ni3/vKIu/8GlL//FqC//yKsv/8uuL//NsC//z7Eu/9Cy
+ Lf/Rsi3/0rEt/9KxLf/SsCz/0bAq/9CvKf/Prif/z64n/86tJv/NrCX/zawl/8yrJP/MqyP/y6oi/8up
+ If/KqCD/yqgg/8mnH//Jpx//yKce/8imHf/Hphz/xqYc/8WlHP/FpR3/xKQd/8KiHv/BoR//vZ8i/raa
+ Jv6vlir9oIgn+YNsG/BkUA3mRzcD2zUoAs0gFQDADQcAtAkEAK8GAwCqAwIApQICAJ4AAACXAAAAkAAA
+ AIYAAAB9AAAAcwAAAGkAAABeAAAAVAAAAEkAAABAAAAANgAAAC0AAAAmAAAAHgAAABgAAAATAAAADgAA
+ AAoAAAAHAAAABAAAAAIAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAADAAAABQAA
+ AAcaAAAKSRIADmMcABJxPAAic00APHVUAFWDZRF5k3smqp6IMNqlkDX9sJgz/bqfMP7Dpi7+xagq/8iq
+ J//KqyX/y6wl/8ytJv/Nrif/za4n/86vKP/Oryj/z7Ap/9CxK//QsSz/0bIt/9GyLf/Rsi3/0bIt/9Kz
+ Lv/TtC//1LUw/9S1MP/UtTH/1bUy/9W1Mv/VtTL/1rYz/9a2NP/XtzT/17g1/9i4Nv/YuTj/2Lo5/9e6
+ Of/WuTn/1bg5/9S2Of/StDj/0LI4/8quOv/DqT3/vKQ//72oT//GtWr/z8GG/9nQov/n4b7/9PLa////
+ 8P////P////2//7/+f/+//v//f/8//3//v/9/////v////7/////////////////////////////////
+ //////v////2////8f/q6M//wbmQ/5iLUv+CcSr/jHop/5iCKP+hiyj/qJAq/66WLP+0my3/uZ8u/76j
+ L//CpjD/xqkw/8msMP/MrzH/zrAw/8+xL//Rsi7/0rIu/9KyLv/Tsi7/07Et/9KwK//RsCr/0K8o/8+u
+ J//OrSf/zq0m/82sJf/NrCX/zKsk/8yqI//LqSL/y6kh/8qoIP/KqCD/yqgf/8mnH//Ipx7/yKcd/8em
+ Hf/Gph3/xqYd/8WkHf/Dox3/wqId/7+gIf+6nib/tpsr/6mQKfuOeB71c18T7llHC+VDNQfUKh4DxBIK
+ ALYNBwCxCQQArAUCAKgCAgChAAAAmgAAAJMAAACKAAAAgAAAAHcAAABsAAAAYgAAAFcAAABNAAAAQwAA
+ ADkAAAAwAAAAKAAAACAAAAAaAAAAFQAAABAAAAALAAAACAAAAAUAAAACAAAAAQAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAEAAAABAAAAAwAAAAUAAAAHLgAAC1UiAA9zJgAUeUkAKnlZBlB7XwZ2hW0Sm5iA
+ JL+mjzDjr5c2/badM/6+oy/+xags/sepKf/Jqif/y6wl/8ytJf/Nrib/zq4n/86vKP/PsCn/z7Ap/9Cx
+ Kv/QsSv/0bIs/9GyLf/Rsi3/0rMu/9KzLv/TtC//1LQw/9S1Mf/VtTH/1bUy/9a2M//WtjP/17c0/9e3
+ NP/XuDX/2Lg2/9i5N//YuTj/2Lo5/9i7Ov/Yuzr/17o6/9a5Ov/VuDr/07U5/9GzOf/Mrzv/xao+/76l
+ Qf++qVD/x7Zr/9DCh//a0KP/5+G+//Ty2v////D////z////9v/+//n//v/6//3//P/9//7//f////7/
+ ///+///////////////////////////////////////7////9v////D/6+jP/8K6kf+ajVP/hHMr/498
+ Kv+ZhCr/o4wq/6qSK/+wly3/tpwv/7qgL/+/pDD/w6cx/8aqMf/KrTH/zLAx/86xMf/QsjD/0bMv/9Kz
+ L//Ssi//07Iu/9OxLf/SsSz/0bAr/9GwKv/Qryn/z68o/86uJ//OrSb/za0m/8ysJf/MqyT/zKsi/8uq
+ Iv/LqSH/y6kh/8qoIP/KqB//yace/8inHv/Ipx3/x6cd/8emHf/GpR3/xaQd/8SjHP/AoR//vJ8k/7ic
+ KP+tlCj8l4Ej+IJuHfRrWRfsU0MP2jUnBskaDgC6FAoAtAwGAK8GAwCqAwIAowIAAJwAAACVAAAAjAAA
+ AIMAAAB6AAAAcAAAAGUAAABaAAAAUAAAAEYAAAA8AAAAMwAAACoAAAAiAAAAHAAAABYAAAARAAAADAAA
+ AAkAAAAGAAAAAwAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAMAAAAFIAAACEAV
+ AAxpLQARdDoAFn1VADOAYQhkfmQKlohvEb6chCPVrJQw7befNv69ozP+wqYv/seqK/7Iqin/yqsm/8yt
+ Jf/Nrib/zq8n/86vKP/PsCn/z7Ap/9CxKv/QsSv/0bIs/9GyLf/Rsi3/0rMu/9O0L//UtDD/1LUw/9W1
+ Mf/VtTL/1rYy/9a2M//XtzT/17c0/9i4Nf/YuDX/2Lk2/9i5N//Yujj/2Lo5/9i7Ov/YvDv/2Ls7/9i7
+ O//Xujv/1rk7/9S3O//StDr/zbA8/8arP/+/p0L/v6pR/8i3bP/Qw4j/29Gj/+jhv//18tr////v////
+ 8v////b//v/4//7/+v/9//z//f/+//3////+/////v//////////////////////////////////////
+ +/////X////w/+vp0P/Du5L/nI5U/4d1Lf+RfSz/m4Yr/6WOK/+rky3/spkv/7ieMP+8oTH/wKUx/8So
+ Mv/HqzL/yq4y/82wMv/PsjH/0LMx/9GzMP/SszD/0rMv/9OyL//Tsi7/0rEt/9KwLP/RsCv/0bAq/9Cw
+ Kv/PsCn/zq8o/82tJv/MrSX/zKwk/8ysI//MqyL/zKoi/8uqIf/LqSH/yqgg/8qoH//Jpx//yace/8in
+ Hv/Ipx3/x6Yd/8alHP/FpBv/wqId/76gIf+6nib/sZcn/aCJJvyPeyb6fGoj82BPGOFAMAvOIhMAvhkM
+ ALgQBwCyBwMArAUCAKUCAACfAAAAmAAAAI8AAACGAAAAfgAAAHMAAABoAAAAXgAAAFMAAABJAAAAPgAA
+ ADUAAAAtAAAAJAAAAB4AAAAYAAAAEgAAAA0AAAAKAAAABwAAAAQAAAACAAAAAQAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAQAAAAEAAAADKwAABhwAAAlJJAAObT0AFXZAAByEXwg+hWkNd4VtELCOdhjYoYkj5rOa
+ L/S+pDb/waYx/8SoLf/Hqir/yqso/8ysJv/NrSX/zq4m/8+vKP/PsCn/0LEq/9CxKv/QsSr/0bIr/9Gy
+ LP/Rsi3/0rMu/9O0L//UtTD/1bYx/9W2Mv/VtjL/1rYz/9a2NP/XtzT/2Lg1/9i4Nv/ZuTb/2bo3/9m6
+ OP/Zujn/2bs6/9m7Ov/ZvDv/2bw7/9m8PP/ZvDz/2bw8/9e6PP/VuDz/07Y8/86xPf/HrUD/wKhD/8Gs
+ Uv/JuG3/0cSJ/9vSpP/o4r//9fLa////7/////L////1//7/+P/+//r//f/8//3//v/9/////v////7/
+ //////////////////////////////////////v////1////8P/r6dD/xbyT/56QVv+Jdy//k38u/52I
+ Lf+njyz/rZUu/7SaMP+6nzH/vqMy/8KmMv/GqTP/yawz/8uvM//OsTP/0LIy/9GzMv/StDL/07Qx/9Oz
+ MP/TszD/07Iv/9OxLv/TsS3/0rEs/9GxK//RsSv/0LEq/8+wKf/Nrif/za0m/82tJf/NrST/zKwj/8yr
+ I//MqiL/y6kh/8upIf/KqCD/yqgg/8moH//JqB7/yage/8inHf/Hphz/xqUb/8OjHf/AoSD/vJ8j/7Wa
+ J/6okCn+m4cr/ot4KfdvXBzmTjwN1C0eAMUiFAC9FQ0AtQoEAK0GAgCnAwAAoQAAAJoAAACSAAAAiQAA
+ AIEAAAB2AAAAbAAAAGEAAABWAAAATAAAAEEAAAA3AAAALwAAACcAAAAgAAAAGgAAABQAAAAPAAAACwAA
+ AAcAAAAEAAAAAgAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAACAAAABCQAAAc5HAAJYysAEmZE
+ AB5zSQAqg2INToxzGYeReh3AmYIh5amRKe63nS74waYy/8SoL//GqSz/yasq/8usKP/NrSf/zq4m/8+v
+ KP/QsCn/0LEr/9CxK//Rsiv/0bIs/9GyLP/Ssy7/07Mv/9O0MP/UtTD/1bUx/9W2Mv/VtjP/1rY0/9a3
+ Nf/XtzX/17g2/9i5Nv/ZuTf/2bo4/9q7OP/auzn/2rs6/9q7O//avDv/2rw8/9q9Pf/ZvT3/2b09/9m8
+ Pv/Yuz3/1rk9/9W3Pf/Qsz//ya5C/8KqRf/CrVT/yrlv/9LFif/c06T/6eO///Xz2v///+/////y////
+ 9f/+//j//v/6//7//P/9//7//v////7////+///////////////////////////////////////7////
+ 9f////D/7OnQ/8a+lP+gklj/jHox/5WCMP+fii//qJIu/6+XL/+1nDH/u6Ey/7+kM//EpzP/yKs0/8qt
+ NP/NsDT/z7I0/9GzM//StDP/1LYz/9S1Mv/UtDH/07Mw/9OzMP/Tsi//07Iu/9KyLf/Ssiz/0bIr/9Cx
+ Kv/PsCn/zq8o/82uJ//Nrib/za0l/82tJP/MrCP/zKsj/8uqIv/LqiH/y6kh/8qpIf/KqSD/yagf/8mo
+ Hv/Ipx3/x6Yc/8alG//EpB3/waIf/76gIv+4nCX+r5Uo/qWOK/6Xgir5e2gc7F1MDd4/MADRMCMAxR4V
+ ALkNBgCvCAMAqQMCAKMAAACcAAAAlAAAAIwAAACDAAAAeQAAAG8AAABkAAAAWQAAAE4AAABEAAAAOgAA
+ ADEAAAApAAAAIgAAABsAAAAVAAAAEAAAAAwAAAAIAAAABQAAAAMAAAABAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAABAAAAAkAAAARJJAAHTRoACl06ABZpSAAna08AN4RoEF2TeyCXmoQn0KONK/OwmCz3vKMu+8Sp
+ Lv/Hqi3/yasr/8urKf/NrSn/zq4o/8+vJ//QsCn/0LEr/9GyLP/Rsiz/0bIs/9GyLf/Ssy7/07Mv/9S0
+ Mf/UtTH/1bUy/9W2Mv/WtjP/1rc0/9a3Nf/WuDb/17g3/9i5N//Yujj/2bo5/9m7Of/avDr/2rw7/9q8
+ O//bvDz/27w9/9u9Pf/bvj7/2r4+/9q9Pv/avT//2Ls+/9e6Pv/WuD7/0bRA/8qwQ//Dq0b/xK9V/8y7
+ cP/Ux4r/3dSl/+nkwP/189r////v////8v////X//v/4//7/+v/+//z//v/+//7////+/////v//////
+ ////////////////////////////////+/////X////w/+zp0P/Hv5X/opRa/458NP+YhDL/oowx/6qU
+ L/+xmTD/t54y/72iM//BpjT/xak0/8msNf/MrzX/zrE1/9CzNf/StDT/07Y0/9W3NP/VtjP/1LUy/9S0
+ Mf/UtDD/07Qw/9OzL//Tsy7/0rIs/9GyK//QsSr/z7Ap/86vKP/Oryj/zq4n/86uJv/OrSX/zawk/8yr
+ I//LqyL/y6si/8uqIv/LqiH/yqog/8mpH//JqB7/yKcd/8enHf/Hphz/xaUd/8KjH/+/oSH/vJ8k/rWa
+ KP6vliz+o4sr+4hzHfFsWQ3oUD8A3T0vAM0nGwC+EAcAsQkFAKoFAgClAAAAnwAAAJcAAACOAAAAhgAA
+ AHwAAAByAAAAZwAAAFwAAABRAAAARgAAADwAAAAzAAAAKwAAACMAAAAdAAAAFwAAABEAAAANAAAACQAA
+ AAUAAAADAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAIzMwAFYCAACF0XAAtkQAAca00AMm5V
+ BEiEaxRwl4Imp6OOLt2rlTH+tp4v/sCmLf7Hqyv/yasr/8usKv/MrCn/zq0p/8+uKf/Qryn/0bAq/9Gx
+ LP/Rsi3/0rMu/9KzLv/Ssy7/0rMv/9S0MP/VtTL/1rYz/9a2M//WtjP/17c0/9e3Nf/XuDf/17k4/9e5
+ OP/Yujn/2bs6/9m7Ov/avDv/2rw7/9u9PP/bvT3/2709/9y9Pv/cvj//274//9u+QP/bvkD/275A/9m8
+ QP/Yu0D/17lA/9K2Qf/LsUX/xa1I/8WwVv/NvHH/1ciL/97Vpf/q5L//9vPa////7v////H////0////
+ +P////r////7/////f////3////9/////f////3////9/////f////3////9/////f////r////1////
+ 8P/t6tD/yMCW/6SWW/+Qfzb/moY0/6SOMv+sljH/spoy/7ifM/++pDT/wqc1/8eqNv/LrTb/zbA2/8+y
+ Nv/RtDb/07U2/9S3Nv/WuDb/1rc0/9W2M//VtTL/1LUx/9S1MP/UtTD/07Qu/9KzLf/Rsiz/0LEq/9Cx
+ Kv/PsCn/z68o/8+vKP/Prif/zq0m/82tJf/MrCT/zKwj/8ysI//MrCP/y6si/8qqIf/KqiD/yakf/8io
+ Hv/Ipx3/yKcd/8alHf/Dox//waIg/76gI/+6nif/tpsr/6yUK/yTfR32eWYP8F9OA+dJOwHVLiIAwxMK
+ ALMKBgCsBgIApwAAAKEAAACZAAAAkAAAAIgAAAB/AAAAdQAAAGoAAABfAAAAVAAAAEkAAAA/AAAANgAA
+ AC0AAAAlAAAAHgAAABgAAAASAAAADgAAAAoAAAAGAAAABAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAFVVQADVSsABnE5AAmAKwAMcU4HJHNVC0VzWg1mhG4ZjZuFJ7ipkzDkspsz/rqhL/7DqCz+yasq/8qs
+ Kv/MrSn/za0p/86uKf/Pryn/0bAp/9GxK//Ssiz/0rMu/9KzLv/TtC//07Qv/9O0MP/UtTH/1rYy/9a2
+ M//XtzT/17c0/9e4Nf/XuDb/17k4/9i6Of/Yujn/2bs6/9m7O//avDv/27w8/9u9PP/bvT3/3L0+/9y9
+ Pv/cvj//3L4//9y/QP/cv0D/3L9A/9u/Qf/avkH/2bxB/9e6QP/St0L/zLJF/8auSP/HsVf/z75x/9jK
+ iv/h16T/7OW+//bz2P///+z////v////8v////X////3////+P////r////6////+/////v////7////
+ +/////v////7////+/////v////4////8////+3/7erP/8nBlf+mmFz/k4E3/5yINf+lkDT/rpcy/7Sc
+ NP+6oDX/v6U2/8OoNv/Iqzf/zK84/86xOP/Qszf/07Y3/9S2N//Vtzf/1rg2/9a4Nf/WtzT/1rYz/9W1
+ Mv/VtTH/1LUw/9O0L//TtC7/0rMt/9GyLP/QsSv/0LEq/8+wKf/Pryj/z68o/8+uJ//OrSb/za0l/8ys
+ JP/MrCP/zKwj/8urIv/LqyH/yqog/8mpH//JqB//yKge/8inHv/Hph7/xKQf/8KjIP+/oSL/vJ8l/7md
+ KP+wlij9nIQf+IZwFfRvWw3tVkUI2TYpBMYXDQC1DQcArgYDAKgAAACiAAAAmgAAAJIAAACKAAAAgQAA
+ AHcAAABtAAAAYQAAAFYAAABLAAAAQQAAADgAAAAuAAAAJgAAACAAAAAZAAAAEwAAAA8AAAAKAAAABgAA
+ AAQAAAACAAAAAAAAAAAAAAAAAAAAAAAAAACAAAACVVUAA4BVAAaAMwAKiTsADXpXDCx3XQ5YdV8Sg4Vw
+ G6mdhyjKrpcy67mhNP7ApjD+xqos/sqsKP/LrSn/zK4p/86uKf/Pryn/0LAq/9GxKv/Ssiz/0rMt/9O0
+ Lv/TtC//07Qv/9S1MP/VtTH/1bYy/9a2M//XtzT/17g1/9i5Nv/YuTf/2Lo4/9i6Of/Zuzr/2bs6/9q8
+ O//avDv/2708/9u9Pf/cvT3/3L4+/9y+P//cvj//3L9A/92/QP/dwEH/3cBB/93AQf/cwEL/279C/9m9
+ Qv/XvEH/07hD/82zRv/Gr0n/yLJX/9G/cP/bzIr/5Nmj/+7mvf/39Nb////p////7P///+/////y////
+ 9P////X////3////9/////j////4////+P////j////4////+P////j////4////9f////D////r/+3r
+ zf/LwpX/qJpc/5WDOP+eijb/p5I1/6+ZNP+1nTX/u6E3/8CmN//FqTj/yaw4/8ywOf/Psjn/0bU5/9S3
+ Of/Vtzj/1rg4/9e5N//XuDb/17c1/9a3NP/WtjP/1bYx/9S1MP/UtTD/07Qv/9O0Lv/Ssy3/0bIs/9Cx
+ K//QsSr/0LAp/9CwKf/Qryj/z64n/86tJv/NrSX/zawk/8ysI//LqyL/y6si/8qqIf/JqSD/yakf/8mo
+ H//Jpx//x6Yf/8WlH//DpCD/waIh/76hI/+8nyb/tZkl/aSKIfuRehv5fWgV8mJPD94+MAjJGQ8AthAJ
+ AK8IBQCqAgAAowAAAJwAAACUAAAAjAAAAIMAAAB5AAAAbwAAAGQAAABYAAAATQAAAEMAAAA6AAAAMAAA
+ ACgAAAAhAAAAGgAAABQAAAAPAAAACwAAAAYAAAAEAAAAAgAAAAEAAAAAAAAAAAAAAAAAAAABgIAAAoBA
+ AASSSQAHokYAC6RJAA6AXQ80eWEWaXhjFp+Hch/Dn4kq2rOaM/G/pjb+xKkw/smrK/7LrCj/zK0o/82u
+ KP/Oryn/z7Ap/9CxKv/Rsiv/0rMt/9O0Lv/TtC//1LUw/9S1MP/VtjH/1rcy/9a3M//XtzT/2Lg1/9i5
+ Nv/Yujf/2bo4/9m7Of/Zuzr/2rw7/9q8O//bvTz/2708/9y9Pf/cvT7/3L0+/9y+P//cv0D/3L9A/93A
+ Qf/dwEH/3cBB/93BQv/dwUP/3cFD/9zAQ//avkP/2L1C/9S5RP/OtEf/yLBK/8q0WP/TwHD/3c2I/+bZ
+ of/u5rn/9/PR//795P/+/ef//v3q//397P/9/e7//f3w//398f/9/fL//fzy//388//9/PP//fzz//38
+ 8//9/PP//fzz//388//9/PD//f3r//395v/t6cn/y8KS/6qbW/+XhTj/oIw3/6iUNv+wmjX/tp43/7yj
+ OP/Cpzn/xqo6/8muOv/NsTr/0LM6/9K2Ov/VuDr/1rk6/9a5Of/XuTj/17k3/9e4Nv/XuDX/17cz/9a2
+ Mv/VtjH/1LUw/9S1MP/UtS//07Qv/9KzLf/Rsiz/0LEq/9GxKv/RsSr/0bAp/9CvKP/Prif/zq0m/82t
+ Jf/MrCT/y6si/8urIv/KqiH/yqog/8mpIP/JqCD/yagf/8inH//Gph//xKUg/8OjIP/BoiH/v6Aj/7qc
+ JP6rkCL9nYQg/It1HvdsWRXiRzcLzR4TALoUCwCyCgYAqwICAKUAAACdAAAAlgAAAI8AAACFAAAAewAA
+ AHEAAABmAAAAWwAAAE8AAABFAAAAOwAAADIAAAApAAAAIgAAABsAAAAVAAAAEAAAAAsAAAAHAAAABQAA
+ AAMAAAABAAAAAQAAAAAAAAAAAAAAAYCAAAK/QAAEn2AACL9VAAy/YAAQlGcWOYVtIXWDbSOxjnkm1KOM
+ LuW1nDT1wKY1/8WpMP/Jqyv/zK0o/82uKP/Oryn/z7Aq/9CxKv/Rsiv/0rMs/9KzLf/TtC//1LUw/9S1
+ Mf/VtjH/1bYy/9a3M//XuDT/17g2/9i5Nv/Yujf/2bo4/9m7Of/auzr/2rw7/9q8PP/bvTz/2709/9y+
+ Pf/cvj7/3L4//92+QP/dv0D/3cBB/97AQv/ewUL/3sFD/9/CQ//fwkT/38JE/9/CRf/dwUX/279F/9m+
+ RP/Vukb/0LZI/8qxS//LtVf/1MBt/9zLg//k1pj/7eOu//buxP/899X/+/bY//r12v/49dz/9/Te//b0
+ 3//28+H/9fPh//Xy4v/18uL/9fLi//Tx4v/08eL/9PHi//Ty4v/18uL/9fLg//fz2//49Nf/6eO8/8m+
+ iv+omlj/mIU4/6CNN/+olDb/sJo2/7afN/+8ozn/wqc6/8arO//Krjv/zbI7/9C0O//Stjv/1bg7/9a5
+ Ov/Xujr/17o5/9i6OP/YuTf/2Lg2/9e4NP/WtzP/1bcy/9W2Mf/UtjH/1LUw/9S1L//TtC7/0rMt/9Ky
+ LP/Rsiv/0bEq/9GwKf/QsCn/z68o/86uJ//NrSX/zawk/8ysI//LqyP/y6si/8qqIf/KqSH/yqgg/8qo
+ IP/IpyD/x6Yg/8WlIP/EpCD/w6Mh/8GiIv+9nyL+sZUk/qaMJf2XfyT5d2Ma5lFBDNMqHgHCHBMAuBEM
+ AK8GAwCmAgIAnwIAAJcAAACQAAAAhwAAAH0AAABzAAAAaAAAAFwAAABRAAAARwAAAD0AAAAzAAAAKwAA
+ ACMAAAAcAAAAFgAAABEAAAAMAAAABwAAAAUAAAADAAAAAQAAAAEAAAAAAAAAAAAAAAH/gAACv4AABN9g
+ AAjqagAM4WkAEZ5xID+ReCqAjXgrwpWAL+WmkDHvt540+cKnNP/GqTD/yqwr/82uKP/Oryn/z7Aq/9Cx
+ K//QsSz/0bIs/9KzLf/TtC7/1LQw/9S1Mf/VtjL/1bYy/9W3M//WtzT/17g2/9i5N//Yujj/2bo5/9m7
+ Of/avDr/2rw7/9u8PP/bvT3/2709/9u+Pv/cvj7/3L8//92/QP/dv0H/3sBC/97BQ//fwkP/38JE/+DD
+ RP/gw0T/4MNF/+DDRv/gw0f/38JH/93AR//bv0b/17xI/9K3Sv/Ns0z/zrZW/9S/af/ayXz/4tOP/+ve
+ o//06bb/+vLG//jwyP/17sr/9OzM//Lrzf/w6s//7unQ/+3p0P/t6ND/7efQ/+zn0P/s5tD/6+bQ/+vm
+ 0P/s5tD/7OfQ/+3ozv/w6cv/8uvH/+Tbr//GuoH/qJlU/5eGN/+fjTf/qJQ2/6+aNv+1nzj/vKM6/8Ko
+ O//Gqzz/yq88/82yPP/QtTz/07c8/9W5PP/Xujv/17s7/9i7Ov/Yuzn/2Lo4/9i5N//XuTX/1rg0/9W4
+ M//VtzL/1bYx/9W2Mf/UtTD/1LUv/9O0L//TtC7/0rMt/9GyK//QsSr/z7Ap/86vKP/Orif/za0m/82t
+ Jf/NrCT/zKwj/8urI//LqyL/yqoh/8qpIP/KqCD/yacg/8emIP/GpiD/xaUg/8SkIP/DoyD/waEi/ria
+ Jf6vlCn+oYkq+oBrHetbSg/aNSgByyUbAL8XEAC0CQUAqAUCAKACAgCZAAAAkQAAAIgAAAB+AAAAdQAA
+ AGkAAABeAAAAUwAAAEgAAAA/AAAANQAAACwAAAAlAAAAHQAAABcAAAASAAAADQAAAAgAAAAGAAAAAwAA
+ AAEAAAABAAAAAAAAAAD/AAAB/4AAAv+AAAT/cQAJ7ncAD+dtABWofCRGmX4vjJOAM9KbhjT0q5M0+Lqf
+ NfzEpzT/yKow/8utK//Oryj/z7Aq/9CxK//QsSz/0bIt/9KzLf/Ssy7/07Qv/9S1Mf/VtTL/1bYz/9W2
+ M//VtzT/1rg1/9e5N//Yujn/2bs5/9m7Ov/avDv/27w7/9u9PP/cvT3/3L0+/9y+P//cvj//3L4//9y/
+ QP/dwEH/3cBC/97BQ//fwkT/4MNF/+DDRf/hxEb/4cRG/+HER//hxEj/4cRJ/+DDSf/ewUj/3MBI/9i9
+ Sf/UuUv/z7VM/8+3Vf/TvmX/2MV1/97Ohv/m15b/7uGn//TotP/x5bb/7uO4/+vguf/o37r/5d27/+Lc
+ vP/h27v/4Nm7/+DYu//f2Lv/3te7/93Xuv/e17v/3te7/9/Yu//h2bn/5dy2/+jes//c0Z7/wbR3/6WW
+ T/+Xhjb/n402/6eUNv+umjb/tZ84/7ukOv/BqDz/xaw9/8mwPf/Nsz3/0LU9/9O3Pf/VuTz/17s8/9e7
+ PP/YvDv/2Lw6/9i7Of/Yujj/2Lo2/9e5Nf/WuDT/1bgz/9W3Mv/VtzL/1bYx/9W2Mf/UtTD/1LUw/9Oz
+ Lv/Rsiz/0LEq/8+wKf/Oryj/zq4n/82uJ//NrSb/zawl/82sJP/MrCP/y6si/8uqIf/KqSH/yqgg/8mn
+ IP/IpyD/x6Yg/8emH//GpR//xaQf/8SjIf69nyf+t5st/quRL/uKcyDvZFMQ4T8xAdQtIwDGHRUAtwwG
+ AKoGAwChBQIAmgIAAJIAAACJAAAAgAAAAHYAAABrAAAAYAAAAFQAAABKAAAAQAAAADcAAAAuAAAAJgAA
+ AB8AAAAXAAAAEgAAAA0AAAAJAAAABgAAAAQAAAABAAAAAQAAAAAAAAAA/wAAAf9VAAP/gAAEyG0ADrhw
+ ABmzZwAlpXshVZ+EMZechjbZoo04+LCXNvu8oTX9xakz/8mrL//Mriz/z7Ap/9CxKv/QsSz/0bIt/9Kz
+ Lv/Ssy7/07Qv/9S1MP/UtTH/1bYz/9a3NP/WtzT/1rg1/9e5Nv/Yujj/2bs5/9m7Ov/avDv/2708/9u9
+ PP/cvT3/3L4+/9y+P//cvj//3L9A/9y/QP/dwEL/3sFD/9/CRP/fw0X/4MNF/+HERv/hxEb/4sVH/+LF
+ R//ixUj/4sVJ/+LFSv/gw0r/3sJK/93ASv/Zvkr/1bpM/9C2Tf/OtVT/z7lf/8+8a//RwHb/1MWB/9fK
+ jf/ZzJb/1MiW/8/Elv/LwJb/x72W/8O7lv+/uJb/vbWV/7uzlP+5sZP/uLCS/7ewkv+2r5H/t7CS/7iw
+ kv+5sZP/vLOS/8C2j//EuY3/vbF+/62fY/+djUf/lYQ2/52LNv+lkjb/rZg2/7OdOP+6ojr/v6c8/8Sr
+ Pf/Irz3/zLI+/8+1Pv/Stz3/1bk9/9a7Pf/Xuzz/2Lw8/9m8O//Yuzr/2Ls4/9i6N//Xujb/1rk1/9a5
+ NP/WuDP/1rcy/9a3Mv/VtjH/1bYx/9S1MP/TtC7/0rMt/9GyK//QsSr/z7Ap/86vKP/Orif/zq4n/86t
+ Jv/NrSX/zawk/8ysI//LqiL/y6kh/8qoIP/JqCD/yacg/8inIP/Iph//x6Uf/8akH//EoyD/vp8m/7ic
+ LP+tlC78j3oi8WxbFOdKPAfcNywEyyQbAboPBwCrCQMAogUCAJsCAgCTAAAAigAAAIEAAAB3AAAAbAAA
+ AGEAAABVAAAASwAAAEEAAAA4AAAALwAAACcAAAAfAAAAGAAAABMAAAAOAAAACQAAAAYAAAAEAAAAAQAA
+ AAEAAAAAAAAAAP8AAAH/VQAD/5kABbxrABOfZwAloWgANqJ8HmWihzGipI0536qTOvu1nDj8wKQ1/caq
+ Mv/KrC//za8s/9CxKv/QsSv/0bIs/9KzLv/Ssy7/07Qv/9S1MP/UtTH/1bYy/9W2M//WtzT/17g1/9e5
+ Nv/Yujj/2bs5/9m7Ov/avDv/2708/9u9PP/cvj3/3L4+/9y+P//dv0D/3b9A/93AQf/dwEH/3sFD/9/C
+ RP/gw0X/4cRG/+HERv/ixUf/4sVH/+LGSP/jxkj/4sZJ/+LGSv/ixkv/4MRL/9/DS//dwUv/2r5L/9W6
+ Tf/Rtk7/zbRS/8mzWf/Gsl//w7Fm/8Cwa/++sHH/u651/7Soc/+uonL/p5xx/6OZcP+elG//mZBt/5aN
+ a/+Timr/kIdo/46GZ/+NhWb/jIVl/4yFZv+Ohmf/j4do/5OKZ/+XjWX/nJFk/5yQXP+Yik3/k4M+/5SC
+ Nf+ciTb/pJA2/6uXNv+ynDj/uKE6/76mPP/Cqj3/x64+/8uyPv/OtD7/0bc+/9S5Pv/Wuj7/17s9/9i8
+ Pf/ZvDz/2Lw6/9i7Of/Yuzj/2Lo3/9e6Nv/XuTX/17k0/9e4M//WtzL/1rcy/9W2Mf/UtTD/07Qv/9Kz
+ Lv/Rsi3/0LEr/8+wKv/PsCn/z68o/8+vKP/Prif/zq0m/82sJf/MrCT/zKsj/8uqIv/LqSH/yqgg/8mo
+ IP/JpyD/yKcf/8imH//HpR7/xaMf/7+gJf+5nSr/r5Ys/ZN9IvV0YhjtVkgN40I0CdErIAS+EgkArAsF
+ AKMHAwCcAwIAlAICAIsAAACCAAAAeQAAAG4AAABiAAAAVwAAAEwAAABCAAAAOQAAADAAAAAoAAAAIAAA
+ ABkAAAATAAAADgAAAAkAAAAHAAAABAAAAAEAAAABAAAAAAAAAAD/AAAB/6oAA/+AAAajZgAZl2gAMZFj
+ AEieexx2p4sxrauUO+SxmTz+uaA5/sKnNf7HqzL/yq0v/86vLP/QsSr/0bIs/9KzLf/Ssy7/07Qv/9O0
+ L//UtTD/1bYx/9W2M//VtzT/1rg1/9e5Nv/Zuzj/2bs5/9q8Ov/avDv/2708/9u9PP/cvj3/3L4+/9y/
+ Pv/cvz//3b9A/93AQf/ewUL/3sFD/+DDRP/hxEb/4sVH/+LFR//ixkj/4sZI/+PGSP/jx0n/48dJ/+PH
+ Sv/ix0v/4sZM/+DFTP/fw0z/3sJM/9u/Tf/Wu07/0bdP/8yyUP/ErlP/valW/7akWP+vnlj/qJlZ/6GT
+ Wf+ZjFb/kIVT/4l+Uf+DeE//fXNN/3huS/9zakj/b2ZF/2tiQ/9pYUH/aGFA/2ZgQP9nYUD/aWFB/2ti
+ Q/9vZUL/c2pB/3huQP9+cj3/hHY6/4t7Nv+SgDT/moc1/6KONv+qlTb/sJo4/7agOv+8pDz/wKk9/8Wt
+ Pv/KsT//zbQ//9C2P//UuT//1bo+/9e7Pv/ZvD3/2bw8/9i8O//Yuzr/2Ls5/9i7OP/Yujf/2Lo2/9i5
+ Nf/XuTT/17gz/9a3Mv/VtjH/1LUw/9O0L//TtC//0rMu/9GyLP/QsSv/z7Ap/8+wKf/Qryj/0K8o/8+u
+ J//OrSb/zKwk/8yrI//MqiL/y6kh/8upIf/KqCD/yagg/8mnH//Iph7/yKYe/8WkH//AoST/up4o/7GX
+ Kv2XgSP4fGkb8mFSE+pLPg3WMSYIwRUKAK0NBQCjCAMAnAUCAJUCAgCMAAAAgwAAAHoAAABvAAAAYwAA
+ AFgAAABNAAAARAAAADoAAAAxAAAAKQAAACEAAAAZAAAAFAAAAA4AAAAKAAAABwAAAAQAAAABAAAAAQAA
+ AAAAAAAA/wAAAf+AAATbkgAHl2gAIJJpAD+MZgBfmnsYiaeNL7mvljvptZw9/7yiOf/DqDX/yKwy/8uu
+ L//OsCz/0bIr/9GyLP/Ssy3/07Qv/9O0MP/UtTD/1bYx/9W2M//WtzT/1rg1/9e5N//Yujj/2bs5/9q8
+ Ov/avDv/2r08/9u9PP/bvj3/3L4+/92/Pv/dvz//3cBA/93AQf/ewUL/3sFD/9/CRP/gw0X/4cRH/+LF
+ SP/jxkj/48ZJ/+PHSf/jx0r/5MdK/+TISv/jyEv/48dM/+LHTf/hxU3/4MRN/9/DTf/cwE7/17xP/9K4
+ UP/MtFL/xa9V/76qWP+4plz/tKRg/7CiZP+rnmb/o5dk/5uQYv+UimD/joVe/4mAXP+Ee1v/gHdY/3xz
+ Vv94cFP/dm9S/3VuUf90bVD/dW5R/3ZvUv94cFP/enFR/31zTv9/dUv/g3dG/4Z4P/+JeTj/jn00/5eE
+ Nf+fizX/ppI2/62YOP+znTr/uqM8/7+nPf/ErD7/ybA//8yzQP/PtUD/07hA/9W5P//Xuz//2Lw+/9m8
+ Pf/YvDz/2Lw7/9i7Ov/Yuzn/2Ls5/9i6OP/Yujb/2Lk1/9e4NP/WtzL/1bYx/9S2Mf/UtTD/07Qv/9O0
+ Lv/Ssy3/0bIs/9CxKv/QsSr/0LAp/9CwKf/Pryj/zq0m/82sJf/MqyT/zKsj/8yqIv/LqSH/yqkh/8qo
+ IP/Jpx//yacf/8imHv/GpB//waIk/7yfKP+zmSr+nYUl+YRwH/VsWxnvVUUS2TgrCcMZDQGuEAYApAsF
+ AJ0HAwCWBAIAjQIAAIQAAAB7AAAAcAAAAGUAAABZAAAATgAAAEQAAAA6AAAAMQAAACkAAAAhAAAAGgAA
+ ABQAAAAPAAAACgAAAAcAAAAEAAAAAQAAAAEAAAAAAAAAAP//AAH/gAAE/5IAB5pyACaNbABOiGoAdph7
+ F56ojSzFspk67LigPf+/pTn/xak1/8qtMf/Mry//z7As/9GyK//Ssy3/07Qu/9O0L//UtTD/1bUx/9W2
+ Mv/WtzT/1rg1/9e5N//Yujj/2bs5/9q8Ov/avDv/2r08/9q9Pf/bvT3/274+/9y/P//dvz//3cBA/93A
+ Qf/ewUL/3sFD/9/CRP/gw0X/4cRG/+LFSP/ixUn/48ZK/+PGSv/jx0r/5MdL/+TIS//lyEz/5MhN/+TI
+ Tv/jyE//4sZP/+HFT//gw0//3cFP/9e9UP/SuVL/zbVU/8exWv/Brl7/vq1l/7+vbv+/snj/vrJ+/7es
+ ff+vp3z/qaF7/6Scev+fmHj/m5N3/5iQdf+UjXP/kYpx/4+JcP+OiG//jYdu/46Ibv+PiG//kYlw/5KJ
+ bf+RiGf/kodh/5CFV/+NgEn/iXs8/4p6M/+SgTT/m4g1/6OPNv+qlTj/sZs6/7ihPP+9pT3/wqo+/8ev
+ QP/LskD/zrVA/9K3QP/UuUD/1rpA/9i8QP/ZvD//2bw+/9m8PP/ZvDv/2bw7/9m8Ov/Yuzn/2Lo3/9i5
+ Nv/XuTT/1rgz/9W3Mv/UtjH/1LYx/9S1MP/TtC//0rMu/9GyLf/RsSz/0bEr/9GxKv/QsCn/z68o/86u
+ J//NrSb/zKwl/8yrJP/MqiP/y6oi/8qpIf/KqSD/yagg/8mnH//Iph7/xqUf/8KiJP+9nyj/tZoq/qGJ
+ J/uMdyP4dmQf8l1OF9xAMQ3EHRABrhMIAKUNBgCeCAMAlwUCAI4CAACFAAAAfAAAAHEAAABlAAAAWgAA
+ AE8AAABFAAAAOgAAADIAAAAqAAAAIgAAABoAAAAVAAAADwAAAAoAAAAHAAAABAAAAAEAAAABAAAAAAAA
+ AAD//wAB/78ABN+fAAiTcQAtiW4AXYhrAo2WexSyqI8p0bWcOfC8ozz/wac4/8erNf/LrjH/za8v/8+x
+ Lf/Rsiv/0rMt/9O0L//UtTD/1bYx/9W2Mv/WtjP/17c1/9e4N//Yujn/2bs5/9m7Ov/avDv/2r08/9q9
+ Pf/avT3/274+/9u+P//cv0D/3cBA/93AQf/ewUL/3sFD/9/CRP/gw0X/4cRG/+LFR//ixUn/4sVK/+PG
+ S//kx0v/5MdM/+XITP/lyE3/5slO/+XJT//lyVD/5MhR/+PHUP/ixlD/4cRQ/93CUf/YvlL/07pT/863
+ V//JtF7/xbJk/8Szbv/Jun3/z8KL/9HGlv/KwZb/xLyW/764lv+6tJX/trCU/7Ksk/+vqZL/rKeQ/6ql
+ j/+po43/qKKM/6ehi/+nooz/qaKM/6qjjf+poYj/pp2A/6Sad/+dk2n/k4dU/4l8P/+FdzP/jn40/5eF
+ NP+gjDb/p5I4/66YOf+1njv/u6Q9/8GpPv/GrkD/yrFB/820Qf/Rt0H/07hB/9a6Qf/YvEH/2bxA/9m8
+ P//ZvD3/2bw8/9m8PP/ZvDv/2Lw6/9i7Of/Yujf/17k1/9a4NP/VuDP/1Lcy/9S2Mf/UtjH/1LUw/9O0
+ L//Ssy7/0bIt/9GyLP/RsSv/0LEq/8+wKf/Oryj/za0m/8ysJf/MqyT/zKoj/8uqIv/KqiL/yqkh/8mp
+ IP/JqB//yKcf/8elIP/DoyT/vqAn/7icKv6mjSj8k30n+4BtJPZmVRvfRzYPxiITAa8WCQCmEAYAnwoD
+ AJgHAgCPBAAAhgAAAH0AAAByAAAAZgAAAFsAAABQAAAARQAAADsAAAAyAAAAKgAAACIAAAAaAAAAFQAA
+ AA8AAAALAAAABwAAAAQAAAABAAAAAQAAAAAAAAAA/4AAAv+/AATfvwAIlHUFMo1vB2eIbQidl30XwKmP
+ Kdm3njjzv6U7/8OoN//IrDT/y64x/86wL//QsS3/0rMt/9O0Lv/UtS//1bUx/9W2Mv/WtjP/17c0/9e4
+ Nv/YuTj/2bo5/9m7Ov/avDv/2708/9u9PP/bvT3/274+/9u+P//cv0D/3L9A/93AQf/ewUL/38JD/9/C
+ RP/gw0X/4cRG/+LFR//ixUj/48ZK/+PGS//kx0z/5MdM/+XITf/lyE7/5slO/+bKT//mylD/5slR/+XJ
+ Uv/kyFL/48dR/+LGUf/ew1L/2L9T/9O7VP/PuFn/y7dh/8i1av/JuXb/0sSK/9rQnf/f2Kz/29Su/9bQ
+ r//RzbD/zsqx/8zHsf/JxLD/x8Ov/8XBrv/Dv63/wr6s/8G+rP/Avav/wb2r/8K+rP/Dvqz/wLql/7u0
+ mv+3ro//q6J7/5qPX/+JfUP/gXMx/4p7Mv+SgjP/m4k1/6OPN/+qlTn/sZs7/7ehPP+9pj7/w6s//8ev
+ QP/LskH/z7VB/9K4Qv/VuUL/17tC/9i8Qf/ZvD//2bw+/9m9Pv/ZvT3/2b08/9i8O//Yuzn/2Lo4/9e5
+ N//WuTb/1rg0/9W4M//VtzL/1bYx/9S1Mf/TtDD/07Mv/9KzLv/Rsi3/0bIs/9CxK//PsCn/zq8o/82u
+ J//MrSb/zKwl/8yrJP/LqiP/yqoi/8qqIf/JqSD/yagg/8mnH//HpiD/w6Mk/7+hJ/+6nSr+qpAq/ZqE
+ K/yJdSn3b1wf4U09EskoFwOzGg4AqBMKAKAMBQCZBwQAkAQCAIcAAAB9AAAAcwAAAGcAAABcAAAAUAAA
+ AEYAAAA7AAAAMgAAACoAAAAiAAAAGwAAABUAAAAQAAAACwAAAAgAAAAEAAAAAQAAAAEAAAAAAAAAAP+A
+ AAL/vwAE378ACJJ2CTaNcg5wiXAPq5d+HMyqkCrhuZ829cGnOf/Fqjb/ya0z/8yvMf/OsC//0LIu/9K0
+ Lv/TtC//1LUw/9W1Mf/WtjL/1rc0/9e4Nf/YuTf/2Lo4/9m7Ov/avDv/2708/9u9PP/bvj3/274+/9u+
+ P//cv0D/3cBB/93AQf/ewUL/38JE/+DDRf/hxEb/4cRG/+LFR//jxkj/48ZJ/+THS//kx0z/5chN/+XI
+ Tf/myU7/5slP/+fKT//ny1D/58tR/+bKUv/mylP/5clT/+TIU//jx1L/38RT/9m/VP/Tu1X/z7lb/825
+ Zf/LuW//zr5+/9nOl//l3bD/7ejD/+rmxf/n5Mj/5OLK/+PgzP/h3s3/393N/97czf/d28z/3NrM/9va
+ y//b2cv/29nK/9vZy//c2cv/3NnL/9jUw//Ry7T/ysOm/7qyjv+il2r/iX1H/3xvMP+FdjH/jn4y/5eF
+ M/+eizX/ppI4/62YOv+0nTz/uqM9/8CoP//FrED/ybBB/820Qv/RtkL/07hC/9a6Qv/Xu0H/2LtA/9m8
+ QP/ZvT//2b0+/9m9Pf/ZvDz/2bs6/9m7Of/Yujj/17o3/9e5Nv/WuDX/1rc0/9W2Mv/VtTH/1LUw/9O0
+ L//Ssy7/0rMt/9GyLP/QsSv/z7Aq/86vKf/Oryj/za0m/82sJf/MqyT/y6sj/8uqIv/KqiH/yqoh/8mp
+ IP/JqCD/yKcg/8SkJP/Aoif/u58p/q6TK/6giSz9kHwt+XViIuRVQhPNLh0Dtx8SAKsYDQCiDQcAmQkE
+ AJAEAgCHAAAAfgAAAHMAAABnAAAAXAAAAFEAAABGAAAAPAAAADMAAAArAAAAIwAAABsAAAAVAAAAEAAA
+ AAsAAAAIAAAABQAAAAIAAAABAAAAAAAAAAD/gAAC/78ABN+/AAiYfRI5jXQTeYtyFbmYgB/Yq5Iq57ui
+ NffDqTf/xqs1/8quMv/MrzD/zrEw/9CzL//StC//07Uw/9S1Mf/VtTL/1rYz/9e4NP/XuTb/2Lo3/9m7
+ Of/avDv/2708/9u9PP/cvj3/3L4+/9y/P//cv0D/3L9A/93AQf/ewUL/38JD/+DDRf/hxEb/4sVH/+PG
+ SP/jxkj/5MdJ/+THSv/lyEz/5chN/+XITf/myU7/58pP/+fKUP/ny1H/58xR/+fMUv/ny1P/58tU/+bK
+ VP/kyVT/48hU/9/FVP/ZwFX/07tW/8+6XP/Pu2j/zrx0/9LEhv/h16T/7+rC//n42f/5993/+Pfh//f3
+ 5f/39uf/9vbo//b16v/29er/9vTq//X06v/19Or/9fTq//T06v/19Or/9fTq//X06v/v7eD/5uLP/93X
+ vv/JwKD/qZ91/4l9Sv94ay//gXIv/4l6MP+SgTH/mog0/6KON/+plTn/sJo7/7agPf+9pT7/wqo//8eu
+ Qf/MskL/z7VC/9K3Qv/VuUL/1rpC/9e7Qf/ZvEH/2b1A/9m9P//ZvT3/2bw8/9m8O//Zuzr/2bs5/9i7
+ OP/Yujf/17k2/9e4Nf/WtjP/1bUy/9S1Mf/UtDD/07Qv/9KzLv/Rsi3/0LEs/9CxK//PsCn/zq8o/86u
+ J//NrSb/zKwl/8yrJP/LqyP/yqoi/8qqIf/KqiH/yakg/8ioIf/FpST/waMm/72gKf6ylyz+po4v/pmD
+ Mfp9aCXmW0gV0DQjA7slFgCuGhAApA8HAJkJBACQBAIAhwAAAH4AAABzAAAAaAAAAFwAAABRAAAARwAA
+ AD0AAAAzAAAAKwAAACMAAAAbAAAAFgAAABAAAAAMAAAACAAAAAUAAAACAAAAAQAAAAAAAAAA/4AAAv+/
+ AATfvwAImYAVPJF4GH+OdhrCm4Mh4KySK+29ozT4xao2/8isNP/LrjL/zrAw/8+yMP/RszD/0rUw/9O1
+ Mf/UtTL/1bYz/9a3NP/XuDX/17k3/9i6OP/Zuzr/2rw7/9u9PP/cvj3/3L4+/92/Pv/dvz//3cBB/93A
+ Qf/ewUL/38JD/+DDRP/hxEb/4sVH/+PGSP/jxkn/5MdJ/+XISv/lyEv/5chM/+bITv/myU7/58pP/+jK
+ UP/oy1H/6MxS/+jNU//ozVP/6MxU/+jMVf/ny1X/5spV/+TJVf/gxlb/2sFX/9S9WP/Qu1//0L1r/8++
+ d//Uxor/5Nuq//Pvyf///+L////n////6/////D////y////9P////b////2////9v////b////2////
+ 9v////b////2////9v////b/+fjt//Hu3f/p5M3/0suu/62kff+IfEz/c2Yu/3ttLv+EdS//jHww/5SD
+ M/+cijb/pJE5/6uWOv+ynDz/uaE9/76mP//Dq0D/yK9B/8yyQv/PtUL/0rhC/9W5Qv/WukL/2LtC/9m8
+ Qf/ZvD//2bw+/9q8Pf/avDz/2rw7/9m7Ov/Zuzn/2bs4/9i6N//XuDb/1rc0/9a2Mv/VtTL/1LUx/9S0
+ MP/Tsy//0rIu/9GxLf/QsSv/z7Aq/8+wKf/Orij/za0m/82sJf/MqyT/zKsj/8urIv/KqiH/yqoh/8qq
+ If/IqCH/xaYk/8KjJv+9oCn/tJkt/6qRMf+ehzL7g24l6GFNFdM7KQO/KhsAsh8SAKYRCACaCQQAkAYC
+ AIcAAAB+AAAAcwAAAGgAAABcAAAAUQAAAEcAAAA9AAAANAAAACsAAAAjAAAAGwAAABYAAAAQAAAADAAA
+ AAgAAAAFAAAAAgAAAAEAAAAAAAAAAP+AAAL/vwAE378ACJyEGT6WfR2DknoeyZ+FJeavli3wv6M0+ser
+ Nv/KrTT/za8y/8+xMf/RszH/0rQw/9O1MP/UtjH/1bYy/9W2M//WtzX/17k2/9i6OP/Zuzn/2rs7/9u8
+ PP/bvT3/3L4+/9y/Pv/dvz//3cBB/97AQv/ewUP/38JD/+DDRP/hxEX/4cRH/+LFSP/jxkn/48ZK/+TH
+ S//lyEv/5chM/+bITf/myE7/58lP/+fKUP/oy1H/6MxS/+nNU//pzVP/6c5U/+nNVf/pzVb/6MxW/+fL
+ Vv/lylb/4cdX/9vDWf/Vvlr/0r1h/9G+bf/Qv3n/1ceM/+TbrP/z78v////j////6P///+3////y////
+ 9P////b////4////+P////j////4////+P////j////4////+P////j////4//v68f/18+X/8ezZ/9nT
+ uf+vp4T/hXpO/25hLf92aC3/fXAt/4Z3Lv+OfjH/loU0/56MN/+lkjn/rJc6/7OdPP+5oj3/vqc//8Ss
+ QP/Ir0H/zLJC/9C2Qv/Tt0L/1blC/9a6Qv/Xu0H/2LtA/9m8QP/avD//2rw9/9q8PP/auzv/2bs6/9m7
+ Of/Yujj/2Lk2/9e3Nf/WtjP/1rYy/9W1Mf/UtTH/07Qv/9KzLv/RsS3/0LEs/9CwK//PsCr/zq8p/86u
+ J//NrSb/zawk/8ysI//LqyL/y6si/8qqIf/KqiH/yakh/8amJP/CpCb/vqEp/7WbLf+slDL/oowz+4Zx
+ JupmUhTXQTADxDAgALUhFQCoEQoAmgsEAJAGAgCHAAAAfgAAAHMAAABoAAAAXAAAAFEAAABHAAAAPAAA
+ ADMAAAArAAAAIwAAABsAAAAWAAAAEAAAAAsAAAAIAAAABQAAAAIAAAABAAAAAAAAAAD/gAAC/78ABN+/
+ AAifgxxAmIAiiJd9IdCiiCfsspYt9MGmNPvJrDX/y640/86wMv/QsjH/0rMx/9O1Mf/VtjH/1bYy/9W3
+ M//VtzT/1rg2/9e5N//Yujn/2bs6/9q8O//bvD3/3L0+/9y+P//cvz//3cBB/97BQv/ewUP/38JE/+DD
+ Rf/hxEX/4cRG/+LFSP/ixUn/48ZK/+THS//kx0z/5chN/+bITf/myE7/5shP/+fJUP/oylH/6ctS/+nM
+ U//pzVP/6s5U/+rPVf/qz1b/6s9X/+nOV//ozFf/5stX/+LIWP/cxFr/1sBc/9O/Y//Sv2//0MB7/9XI
+ j//k3K7/8/DM////5f///+r////v////8/////b////4////+v////r////6////+v////r////6////
+ +v////r////6////+v/9/PX/+vjt//j05P/g2sP/samK/4N5UP9oXCz/cGMs/3dqLP9/cS3/iHkw/5CA
+ M/+Zhzb/oI04/6eTOf+umTv/tJ48/7qjPv+/qD//xKxA/8mwQf/NtEL/0LZC/9O4Qv/VuUL/1rpC/9i7
+ Qf/ZvEH/2rxA/9q8Pv/avD3/2rs7/9m7O//Zuzr/2Lo4/9i5N//XuDX/17c0/9a2M//WtjL/1bUy/9S0
+ MP/Ssy//0bEu/9GxLf/QsSz/z7Ar/8+vKv/Orij/zq0m/82tJf/MrCT/zKsj/8urIv/LqyL/yqoh/8mp
+ Iv/GpyT/w6Um/76iKf+3nS7/r5cy/6WPNPyLdibralcV2kc1A8k0JQC5JhoAqRQKAJoLBQCQBgIAhwAA
+ AH0AAABzAAAAZwAAAFwAAABRAAAARwAAADwAAAAzAAAAKwAAACMAAAAbAAAAFgAAABAAAAALAAAACAAA
+ AAQAAAABAAAAAQAAAAAAAAAA/4AAAv/MAAXmswAKpIkeQ52DJIyagibVpYsq8bSZL/bCpjT8yq01/8yv
+ M//PsTL/0bMy/9K0Mv/UtTL/1rcy/9a3M//WtzT/1rg1/9e5N//Yujj/2Lo5/9m7O//avDz/27w9/9y9
+ Pv/cvj//3L9A/93AQf/ewUP/38JE/+DDRf/gxEb/4cRG/+LFR//ixUj/4sVK/+PGS//kx0z/5chN/+bJ
+ Tv/myU7/5slP/+fJUP/oylH/6MtS/+nMU//qzVP/6s5U/+vPVf/r0Fb/69BX/+vQWP/qzlj/6M1Y/+fM
+ WP/jyVr/3cZc/9jCXv/UwGX/0sBw/9DAe//Ux47/5Nut//Pvzf///+X////r////8P/+//T//v/3//7/
+ +f/+//v//v/8//7//P/+//z////8/////P////z////8/////P////z//v34//378v/8+ez/5eDM/7Wu
+ kv+GfFj/al4y/29jMP9zZy3/eWws/4J0L/+KezL/k4I1/5qINv+ijjj/qZQ5/6+aO/+1nz3/u6Q+/8Cp
+ QP/FrUH/yrFC/820Qv/QtkL/07hC/9W5Qv/XukL/2btB/9q8QP/auz//2rs9/9q7PP/Zuzv/2bs6/9i6
+ Of/YuTj/2Lg2/9e3Nf/XtzT/1rYz/9W1Mv/UtDH/07Mw/9KyL//RsS7/0LEt/9CxLP/PsCr/z68o/8+u
+ J//OrSb/zawk/8ysI//LqyL/y6si/8urIv/JqSL/xqck/8OlJv+/oyn/uJ4u/7KZMv+okjT8jnom7W5a
+ Fd1MOQLNOSoAvCgbAKsUDACaDAUAjwgCAIYAAAB9AAAAcgAAAGcAAABcAAAAUQAAAEYAAAA8AAAAMwAA
+ ACsAAAAjAAAAGwAAABUAAAAQAAAACwAAAAcAAAAEAAAAAQAAAAEAAAAAAAAAAP+qAAP/kgAH/6oADKiK
+ JEahiCmQn4cq2aiQLvS3nDD4xKg0/MuuNP/NsDP/z7Ey/9GzMv/TtDL/1LUy/9a3Mv/WtzT/1rg1/9a4
+ Nv/XuTj/2Lo5/9m7Ov/avDv/2rw8/9u9Pv/cvj//3L9A/93AQf/ewUL/38JD/9/CRP/gw0X/4cRG/+HF
+ R//ixUj/48ZJ/+PGS//kx0z/5chN/+bJTv/nyk//58pQ/+jKUP/oylH/6ctS/+nMU//qzVT/6s5U/+vP
+ Vf/r0Fb/69BX/+vQWP/r0Fn/6s9Z/+nPWf/ozln/5Mtb/97HXf/Zw1//1MFl/9G/b//Ovnn/0saL/+La
+ rP/y78z////l////6v////D//v/1//7/9//+//r//f/8//7//f/+//3//v/9/////f////3////9////
+ /f////3////9//79+v/9/PX//fvw/+fj0/+6tZz/jYVl/3FnP/9yZzj/cmYx/3RnLP98bi7/hHUw/419
+ M/+UgzT/nIk2/6OQOP+qlTr/sJs8/7egPv+8pT//wqpA/8euQf/KsUL/zrNC/9G2Qv/Ut0L/1rlC/9i6
+ Qf/Zu0D/2bs//9m7Pv/Zuz3/2bs8/9m7O//Zujr/2bk4/9i4N//YuDb/17c1/9e2NP/WtjP/1bUy/9Oz
+ MP/Ssi//0bIu/9GxLf/QsSz/0LAq/8+vKf/Prif/zq0m/82tJf/NrCT/zKwj/8urI//LqyL/yaki/8an
+ JP/DpSb/v6Mo/7mfLf+0mzL/q5U0/JF7J+5yXhXfUD0C0DwsAL4rHgCsFgwAmgwFAI8IAgCGAAAAfQAA
+ AHIAAABnAAAAWwAAAFAAAABGAAAAOwAAADIAAAAqAAAAIgAAABsAAAAVAAAADwAAAAoAAAAHAAAABAAA
+ AAEAAAABAAAAAAAAAAD/gAAE/44ACe6ZAA+vjyZJp40tk6KML96rlDH3uZ8y+sapM/3MrjP/zrAz/9Cy
+ Mv/SszL/07Qy/9W2M//WtzP/1rc1/9e4Nv/XuTf/2Lo4/9m7Ov/avDv/2rw8/9q9Pf/bvT7/274//9y/
+ QP/dwEH/3sFD/9/CRP/gw0X/4MRG/+HERv/ixUf/4sZI/+PHSv/kx0z/5chN/+bJTv/nyk//6MtQ/+jL
+ Uf/py1H/6ctS/+rMU//qzVT/6s5V/+vPVf/r0Fb/7NFX/+zRWP/s0Vn/7NFZ/+vQWv/q0Fv/6c9b/+XN
+ Xf/gyF//2sRh/9XBZv/Rv27/zL13/9DEif/h2ar/8u7L////5f///+r////w//7/9f/+//j//f/7//3/
+ /f/9//7//v/+//7//v////7////+/////v////7////+/////v/+/vv//v34//799P/p59n/v7ul/5WP
+ cv95cUz/dGtB/3BlNf9uYyz/dmku/39wL/+HdzH/jn4z/5aENP+dizb/pJE5/6yXO/+znT3/uKI+/76m
+ P//Eq0D/yK5B/8uxQv/Ps0L/0rZC/9S3Qf/XuUH/2LpA/9i6QP/Yuj//2bs+/9m7Pf/Zuzz/2bo6/9m5
+ Of/ZuTj/2bg3/9i3Nv/XtzT/1rYz/9W1Mv/UtDH/07Mw/9KyL//Rsi3/0LEs/9CwK//Qryn/z64o/8+u
+ J//OrSb/zawl/8ysJP/MqyP/y6si/8mpIv/GpyP/w6Ul/7+jKP+6oC3/tp0y/66XNfyUfibvdmAU4VRC
+ AtJBMADALh8ArRYMAJkNBQCOCAIAhQAAAHwAAAByAAAAZgAAAFsAAABQAAAARQAAADoAAAAxAAAAKgAA
+ ACIAAAAaAAAAFQAAAA8AAAAKAAAABwAAAAQAAAABAAAAAQAAAAAAAAAAzJkABeiLAAvklAATs5IoTamQ
+ L5emkTLgrpYz+rqgM/zHqjP9zK8z/86xM//QsjP/0rQz/9O1M//VtjP/1rc0/9e4Nf/XuTf/2Lk4/9i6
+ Of/Zuzr/2rw7/9u9PP/bvT3/270+/9u+P//dwEH/3sFC/9/CQ//gw0T/4MNF/+HERv/hxUf/4sZI/+PH
+ Sf/kx0v/5chM/+bJTv/nyk//6MtQ/+nMUf/pzFL/6sxT/+rNVP/rzVT/685V/+vPVv/r0Fb/7NFX/+zR
+ V//s0lj/7NJZ/+zSWv/r0Vv/6tFc/+rRXP/mzl7/4cpg/9zGYv/Xw2b/0b9u/8y8df/Pwob/4Nin//Hu
+ yf///+P////q////8P/+//X//v/4//3/+//9//7//f////7////+/v7//v7+//7+/v/+/v7//v7+//7+
+ /v/+/v7////8////+v////f/7ezg/8nGtP+moYj/i4Rk/393Uv9zaT7/bGAv/3JmL/95bC//gHIv/4h4
+ Mf+QfzP/l4Y1/5+MN/+mkjr/rpg8/7SdPf+6oj7/wKc//8SrQP/IrkH/zLFB/8+0Qv/StkH/1bhB/9a5
+ QP/XuUD/17pA/9i6P//Zuj7/2bs8/9m6O//Zujr/2bk5/9m4OP/YuDf/17c1/9a2M//VtTL/1LQx/9O0
+ MP/Tsy//0rIu/9GyLf/QsSv/0LAq/9CvKP/Prif/zq0m/86tJv/NrCX/zKsj/8urIv/JqiL/xqgj/8Om
+ Jf/ApCf/vKEt/7ieMv+wmDX8l4Am8HhjFONXRALVQzIAwS8iAK0WDQCZDQUAjQgCAIQAAAB7AAAAcQAA
+ AGUAAABaAAAATwAAAEQAAAA6AAAAMQAAACkAAAAhAAAAGgAAABQAAAAPAAAACgAAAAcAAAAEAAAAAQAA
+ AAEAAAAAAAAAANWAAAa7iAAPyooAGLCRJlGpkjCaqJIz4rCYNPu7ojT8yKsz/c2wM//PsTP/0LMz/9K0
+ M//TtTP/1bY0/9a3NP/XuDb/17k4/9i6Of/Zuzr/2rw7/9u9PP/bvT3/274+/9u+P//cv0D/3cBC/9/C
+ Q//gw0T/4MNF/+HERv/hxEf/4sVI/+PGSf/jx0v/5MhM/+XJTf/myU7/58tP/+jMUf/pzVL/6c1S/+rN
+ U//qzlT/685V/+vPVv/r0Ff/7NBX/+zRWP/t0ln/7dJa/+3SW//t0lz/7NJc/+vRXP/q0V3/589e/+PM
+ Yf/fyWT/2cVo/9PBbf/MvXP/z8KD/+DYpP/x7sb////g////5////+7//v/0//7/+P/+//v//f/+//7/
+ ///+/////v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+/////f////r////4//Py6P/c2cr/xcCr/66n
+ jf+Wjm7/fnVP/21iN/9xZTP/dWkw/3ptLv+CczD/iXox/5GAM/+ZhzX/oI04/6iTOv+umDz/tJ09/7qj
+ Pv+/pz//xKtA/8muQP/MsUH/z7RB/9K2Qf/Ut0D/1bhA/9a5QP/Yuj//2Lo+/9i7Pf/Zuzz/2bo7/9m6
+ Ov/ZuTn/2Lg3/9i4Nf/XtzT/1rYz/9W1Mv/UtDH/07Mw/9KzLv/Rsi3/0bEs/9CwKv/Qryn/z64n/86u
+ J//OrSb/zawl/8ysJP/LqyL/yqoi/8eoJP/DpiX/wKQo/7yhLf+5njL/spk1/JiAJvF6ZRTkW0YC1kU0
+ AMMxIwCtFw0AmQ0FAI0IAgCDAAAAegAAAG8AAABkAAAAWAAAAE4AAABDAAAAOQAAADAAAAAoAAAAIAAA
+ ABkAAAAUAAAADgAAAAoAAAAHAAAABAAAAAEAAAABAAAAAAAAAACfgAAIqoAAErCEAB2sjidWq5IxnaqT
+ NeSxmjX8vKMz/cisM/7NsDP/z7Iz/9GzM//StDP/1LU0/9W2NP/WtzT/17g2/9i6OP/Zuzr/2rw7/9q8
+ O//bvTz/2749/9y+Pv/cvz//3cBB/97BQ//fwkT/4MNF/+HER//hxEj/4sVJ/+LGSv/jxkv/5MdM/+XI
+ Tf/myU7/58pP/+jMUP/ozVH/6c5T/+rOU//qzlT/6s9V/+vPVv/r0Ff/7NBY/+zRWf/t0Vn/7tJa/+7S
+ W//u01z/7tNd/+zTXf/r0l3/6tFd/+jQX//lzmL/4ctl/9zHaf/Vwm3/zb1x/8/Cgf/g2KH/8e7C////
+ 3f///+T////s//7/8//+//f//v/7//7//v/+/////v////7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+
+ /v////3////7////+f/5+PD/7+3g/+Tgz//Qy7X/raaL/4mAYP9uZD7/b2U4/3FlMv90Zy3/e24u/4N0
+ L/+LezH/koEz/5qHNv+hjTj/qJM6/6+ZO/+1nz3/uqM+/7+nPv/Fqz//ya9A/8yxQP/PtED/0rZA/9S3
+ QP/VuED/17k//9e6Pv/Yuz3/2bs8/9m7O//Zuzr/2bo5/9m5OP/YuDb/17c0/9a2M//VtTL/1LQx/9O0
+ MP/Tsy//0rMu/9GyLP/QsSv/0LAp/8+vKP/Orif/zq0m/82sJf/MrCT/y6sj/8qqIv/HqCT/xKYm/8Gk
+ KP+9oi3/up8y/7KZNP2ZgibxfGUU5VxIAthINwDDNCUArRkPAJgPBQCMCAIAggIAAHkAAABuAAAAYwAA
+ AFcAAABMAAAAQgAAADgAAAAvAAAAJwAAAB8AAAAYAAAAEwAAAA4AAAAKAAAABwAAAAQAAAABAAAAAQAA
+ AAAAAAAAmWYACp55ABWleAAiqo4lWquTMaCrlTXlsps1/b6kNP3JrTP+zrEz/9CyM//RszP/07U0/9S2
+ NP/VtzT/1rg1/9e5N//Yujj/2bs6/9q8O//bvTz/2708/9y+Pv/cvz//3L9A/93AQv/fwkP/4MNF/+HE
+ Rv/hxEf/4cRJ/+LFSv/jxkv/5MdM/+XITf/myU7/58pP/+fLUP/ozFH/6c5S/+rQVP/q0FT/6tBV/+rQ
+ Vf/r0Ff/7NBY/+zQWf/t0Vr/7tJb/+7SW//v01z/79Rd/+/UXv/t1F7/7NNe/+vSXv/p0GD/5s9j/+TN
+ Z//eyWr/18Rt/8++cP/Qwn7/4dee//Htvv/+/dj//v3h//7+6v/+/vL////2////+v////7////+////
+ /v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7///79///+/P///vr//v33//378f/8+ev/7OjW/8K8
+ pv+YkXX/eG9O/3RqQv9xZjf/b2Mu/3ZoLv99bi7/hHUv/4x7Mf+UgjT/m4g3/6KOOP+plDr/r5o7/7Wf
+ PP+7pD3/wak+/8asP//Jr0D/zbJA/9C0QP/StkD/1LdA/9a4P//XuT7/17o+/9i7Pf/Zuzz/2bs7/9m7
+ Ov/Zujj/2Lg2/9e3Nf/WtjP/1bUy/9S0Mf/UtDD/07Qw/9O0L//Ssy3/0bIr/9CxKv/Pryj/zq4n/86t
+ Jv/NrCX/zKwk/8ysI//KqyP/x6kk/8WnJv/CpSj/vqIt/7ugMv+zmjT9moMm8n1nFOZeSgLZSjgAxDUm
+ AK4bDwCXDwYAiwoEAIICAAB4AAAAbQAAAGEAAABWAAAASwAAAEEAAAA3AAAALgAAACYAAAAeAAAAFwAA
+ ABMAAAAOAAAACgAAAAcAAAAEAAAAAQAAAAEAAAAAAAAAAaJ0AAuVdQAYmnIAJqWKI16qkjKirJY35rSc
+ N/2/pTX+yq4z/s+xM//QszP/0rQ0/9O1NP/UtjT/1bc1/9a4Nf/XuTf/2Lo5/9m7Ov/avDv/2708/9y9
+ Pf/cvj7/3b9A/93AQf/ewUL/38JE/+DDRf/hxEf/4cRI/+LFSf/ixUr/48ZL/+THTP/lyE3/5slO/+bK
+ T//ny1D/6M1R/+nOU//q0FT/6tBV/+rQVv/r0Fb/69BY/+zQWf/s0Vr/7dJb/+7SXP/v013/79Rd/+/U
+ Xv/v1V//7tRf/+3UX//s01//6tJh/+fQZP/lzWb/4Mpq/9nFbf/SwHD/08R9/+LWmf/w6LX/+/bN//z5
+ 2f/9/Ob//v7x////9v////r////9/////v////7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+///+
+ /f///vz///77//79+P/9/PT//fvw//Hu4P/Tz7z/ta+X/5qTdv+KgV7/eXBG/21iMv9xZS//eGov/35v
+ Lv+FdTD/jXwy/5SCNf+biTb/o484/6qVOv+wmjv/tp88/72lPf/CqT7/xqw//8qvQP/NskD/0LRA/9O2
+ QP/VuED/1rk//9e6Pv/Yuz3/2Ls8/9m7O//Zuzr/2bo5/9i4N//YtzX/17Y0/9a2M//VtTL/1LQx/9O0
+ MP/TtC//0rMt/9GyLP/QsSr/z7Ap/8+uJ//OrSb/za0l/82sJP/MrCP/y6sj/8ipJf/Fpyb/w6Up/7+i
+ Lv+7oDL/s5oz/ZuDJvJ+aBTnX0sC2ks5AMU1JgCtGw8Alg8GAIoKBACAAgAAdwAAAGwAAABgAAAAVAAA
+ AEoAAABAAAAANgAAAC0AAAAlAAAAHgAAABcAAAASAAAADQAAAAkAAAAGAAAABAAAAAEAAAABAAAAAAAA
+ AAGJYgANjmgAG45xACujiSVhq5QypK2XOOe1nTj9wKY2/suvNP7PsjP/0bM0/9K0NP/TtTT/1bc1/9a4
+ Nf/XuTb/2Lo3/9m7Of/Zuzr/2rw7/9u9PP/cvT7/3b4//92/Qf/ewEL/3sFD/+DDRP/hxEb/4cRH/+LF
+ SP/ixUn/48ZL/+PGS//kx0z/5chN/+bKTv/my0//58xQ/+jNUv/pzlP/6tBV/+rQVv/r0Fb/69BX/+zQ
+ Wf/s0Vr/7NJb/+3SXP/u013/79Re/+/VX//v1V//79Vg/+7VYf/u1GH/7dRh/+vTY//o0GX/5s5m/+LL
+ af/cx23/1cNw/9bGe//i1ZP/7+Ss//jwwv/69dL//Pri//7+8P////X////5/////P////3////+//7+
+ /v/+/v7//v7+//7+/v/+/v7//v7+//7+/v///v3///78///++//+/fr//v33//789f/39er/5OHS/9LN
+ uf+9t57/oJh5/4N6VP9rYTb/bmIx/3JmL/93aS3/fnAv/4Z2Mf+NfDP/lYM0/52JNv+kkDj/q5Y5/7Kb
+ O/+5oTz/vqU9/8OpPv/HrD//y7BA/86yQP/StUH/1LdA/9W4P//WuT//17o+/9i6Pf/Zujz/2bo7/9m5
+ Of/YuDj/2Lc2/9e3Nf/WtjP/1bUy/9S1Mf/TtDD/07Qv/9KzLf/Rsiz/0LEq/9CwKf/Pryj/zq4n/86t
+ Jf/NrSX/zKwk/8urI//JqSX/xqcm/8SlKf+/oi7/u6Ay/7OaM/2bhCXyfmkU519NAttMOgDFNygArRsP
+ AJUPBgCJCgQAfwIAAHUAAABqAAAAXwAAAFMAAABJAAAAPwAAADUAAAAsAAAAJAAAAB0AAAAWAAAAEQAA
+ AA0AAAAIAAAABgAAAAMAAAABAAAAAQAAAAAAAAABiWIADY1qAB2ObAAtpYsnY6uTNKavmDrotp85/sGn
+ N/7LsDT+0LM0/9G0NP/StTT/1LY1/9W3Nf/WuDb/17k2/9i6OP/Zuzn/2bs6/9q8PP/bvT3/3L0+/92+
+ QP/ewEH/3sFD/9/CRP/gw0X/4cRG/+LFR//ixUj/4sVK/+PGS//kx0z/5chN/+bJTv/myk//5stQ/+fN
+ Uf/ozlL/6c9U/+rPVf/rz1b/69BX/+vQWP/s0Fr/7NFb/+zSXP/t013/7tRe/+/VX//v1WD/7tVg/+7V
+ Yf/u1WL/7tVi/+7VY//s02T/6dFl/+bOZv/izGn/3chs/9nFb//ZyHn/4tON/+zeov/06bb/9/DJ//v3
+ 3f/+/u7////0////+P////z////9/////f/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7///7+///+
+ /f///vz//v77//7++v/+/vn/+/rz//Px5f/r59f/29bB/7avlf+QiGf/cWhC/29lOf9wZDP/cmUu/3hq
+ Lv9/cC//hncx/459Mv+XhDT/n4s2/6aROP+tlzn/tJ07/7qiPP+/pj3/xKo+/8itP//MsUD/0LRB/9O2
+ Qf/Ut0D/1bg//9a5Pv/Xuj3/2Lo8/9m6O//ZuTr/2bg4/9i3N//Xtzb/1rY0/9W1Mv/UtTH/07Qw/9O0
+ L//Ssy3/0bIs/9GyK//QsCn/z68o/8+uJ//OrSb/za0l/82tJP/LqyT/yakl/8enJ//EpSn/wKIu/7yg
+ Mv+zmzP9nIUl8n5qFOhhTgLbTDwAxTcqAKwcEACUDwYAhwoEAH4CAAB0AAAAaQAAAF0AAABSAAAASAAA
+ AD4AAAA0AAAAKwAAACQAAAAcAAAAFgAAABEAAAAMAAAACAAAAAUAAAADAAAAAQAAAAEAAAAAAAAAAYli
+ AA2XaAAblHEAK6aLJWGtlDOkrpg557aeOf3Bpzf+zLA1/tCzNP/RtDT/07U1/9S2Nf/Vtzb/17k2/9i6
+ N//Yujj/2bs5/9q8O//bvDz/3L09/92+P//dv0D/3sBC/9/BQ//fwkT/4MNF/+HERv/ixUj/4sVJ/+PG
+ Sv/jxkv/5chN/+bJTv/myk//58tQ/+fMUf/nzVL/6M5T/+nOVf/rz1b/689X/+vQWP/r0Fn/7NFa/+zR
+ W//s0l3/7dNe/+3UX//u1GD/7dRg/+3UYf/s1GH/7NRi/+zUYv/s1GP/69Jk/+jQZf/mzmb/48to/97J
+ a//axm3/2cd1/9/OhP/k1ZT/6d6m//Dpv//49Nj//v7t////8v////f////7/////P////3////9////
+ /v////7////+///////////////////+/v///v3///79///+/P///vv///76//z89v/39uz/8u/j/+fk
+ 0//Lxa//raeM/5SMa/+GfVf/enBE/3BkM/9zZzD/emww/4BxMP+IeDH/kH8y/5mFM/+gjDX/qJI4/6+Y
+ Ov+1njv/u6I8/8GnPf/Gqz7/yq4//86yQP/RtUD/07Y//9S3P//WuD7/17k9/9i5PP/Zujv/2bk6/9m5
+ Of/YuDj/17c2/9e3NP/WtjP/1bUx/9S0MP/TtC//0rMu/9KzLP/Rsiv/0bEq/9CvKP/Prif/zq0m/86t
+ Jf/NrST/y6sk/8mpJf/Hpyf/xKUq/8CjLv+8oTP/tJsz/ZyFJfJ/ahTnYE0C2k08AMQ3KACrHBAAkw8G
+ AIYKBAB9AgAAcwAAAGgAAABcAAAAUQAAAEYAAAA8AAAAMwAAACoAAAAjAAAAHAAAABUAAAARAAAADAAA
+ AAcAAAAFAAAAAwAAAAEAAAABAAAAAAAAAAGVagAMo3AAGZ9zACipjCZfrJMyo66YOea1njj9wac3/syw
+ Nf7QszX/0rQ1/9O1Nf/UtjX/1rg2/9e5Nv/Yujf/2bs4/9m7Ov/avDv/2708/9y+Pv/dvz//3sBB/9/B
+ Qv/fwkT/4MNF/+HERv/ixUf/4sVI/+PGSf/jxkv/5MdM/+XITf/nyk//58tQ/+fLUf/ozFH/6M1T/+nO
+ VP/qzlX/689X/+vPWP/r0Fn/69Fa/+zRW//s0Vz/7NJd/+3SXv/t01//7dRg/+zTYf/s02H/69Jh/+vS
+ Yv/r0mL/69Jj/+rRZP/oz2X/5c1m/+PLZ//fyWn/28dr/9nGcP/ayXv/28yG/9/Slv/p4bT/9PDR//79
+ 6/////H////1////+v////v////8/////f////3////+/////v///////////////////v7///7+///+
+ /f///v3///78///++//9/fn/+vrz//j37f/y8OP/39zK/83Isv+5spf/n5h3/4R8V/9uZDn/bmQz/3Ro
+ Mf96bC//gnIv/4p5MP+SgDH/moYz/6KNNv+pkzj/sJk6/7eeO/+9pDz/wqg9/8esPv/LsD//z7NA/9G0
+ P//Ttj7/1bc+/9a4Pf/YuTz/2bo8/9m6O//ZuTr/2Lk4/9i4N//XtzX/1rYz/9W1Mv/UtTD/07Qv/9Oz
+ Lv/Tsy3/0rIr/9GxKv/QsCn/z64n/8+uJv/OrSX/za0k/8urJP/JqiX/xqgn/8SmKv/Aoy7/vKEz/7Sb
+ M/2chCbyfmkU52BMAtlMOwDDNygAqxwQAJMPBgCGCgQAfAIAAHIAAABmAAAAWwAAAE8AAABFAAAAOwAA
+ ADIAAAApAAAAIgAAABsAAAAVAAAAEAAAAAsAAAAHAAAABQAAAAMAAAABAAAAAQAAAAAAAAABol0AC6Zv
+ ABeldQAlrI0nXK2TM6GtlzfmtZ04/cGmN/3MsDb+0bQ1/9K1Nf/TtjX/1bc2/9a4Nv/XuTf/2Lo3/9m7
+ Of/avDr/2rw7/9y9Pf/dvj7/3r9A/9/AQf/fwUP/38JE/+DDRf/hxEb/4sVH/+PGSP/jxkr/5MdL/+XI
+ Tf/myU7/58pP/+jLUf/ozFH/6M1S/+jNVP/pzlX/6s5W/+rPV//rz1n/69Ba/+vRW//s0Vz/7NFd/+zR
+ Xf/s0l7/7NJg/+zTYf/r0mH/6tJh/+nRYf/p0WL/6dFi/+nRY//o0GT/5s5k/+XNZf/iy2b/38lo/93H
+ af/axWz/1sRz/9TDef/Vx4f/49qp//Hty//9/Of//v7u//7+8//+/vj////6////+/////z////9////
+ /f////7////+/////v////7///7+///+/v///v7///7+///+/f///vz//v77//7++f/+/vf/+/rx//Lw
+ 4//p5dT/29bA/7iyl/+Ri2v/cGlE/25lOf9xZjT/dGgv/3xtLv+EdC//jHov/5SBMf+ciDT/pI82/6uV
+ OP+ymzr/uaE7/7+mPP/Eqj3/ya0+/82xP//Qsz7/0rU+/9S2Pf/Wtz3/17g9/9m5PP/Zujv/2bo6/9i6
+ Of/YuTf/17g1/9a2M//VtjL/1LUx/9O0L//TtC7/07Mt/9OzLP/SsSr/0bAp/9CvKP/Prif/zq0l/82t
+ JP/LrCT/yaom/8aoKP/Epir/wKQv/7yhM/+0mzT9m4Qm8n5oFOZgTALYTDoAwjYnAKocEACSDwYAhQoE
+ AHsCAABxAAAAZQAAAFoAAABOAAAARAAAADoAAAAxAAAAKAAAACIAAAAbAAAAFQAAABAAAAALAAAABwAA
+ AAUAAAADAAAAAQAAAAEAAAAAAAAAAMZxAAmqeQAVsnwAIa+PJVmtlDKfrZU35bSdOPzApjf9y682/tCz
+ Nv/StDb/07Y2/9W3Nv/WuDb/17k3/9m7OP/Zuzn/2rw7/9u9PP/cvj7/3b8//97AQP/fwEL/38FD/+DC
+ RP/gw0X/4cRG/+LFR//jxkn/5MdK/+THTP/lyE3/5spP/+fLUP/ozFH/6MxS/+nNU//pzlT/6c5W/+nO
+ V//qz1j/6s9Z/+vQWv/r0Vv/69Fc/+vRXf/r0V7/69Ff/+rRX//q0WD/6dBh/+jPYP/nzmD/5s5h/+bO
+ Yf/mzmL/5Mxi/+PLY//iymT/4Mll/97HZv/bxWb/2MRp/9TBbv/Qv3P/0cJ//97Tnv/r5b3/9/TZ//r3
+ 4//8++3//v71////+P////n////7////+/////z////9/////v////7////+////////////////////
+ /v////7////9/////P////v////5//399v/39uz/8u/i/+jk1P/Mx7H/raiN/5GLav+FfVb/fHJF/3Ro
+ NP94azD/f3Aw/4Z2L/+OfTD/loQz/5+LNf+nkTf/rpc5/7aeOv+8ozz/wac8/8arPf/Krz7/zbE+/9G0
+ Pv/Utj7/1bc+/9e4Pf/YuT3/2bo7/9m6Ov/Yujn/2Lk3/9e4Nf/XtzT/1rYy/9W1Mf/UtTD/1LQv/9Sz
+ Lf/Usiz/07Er/9GwKf/Qryj/z64n/86uJv/NrST/zKwk/8mqJv/GqSj/xKcr/8CkL/+8oTT/tJw2/JqE
+ J/F9aBTkXksC10o5AME1JwCpGhAAkQ8GAIQKAgB6AgAAcAAAAGUAAABZAAAATgAAAEMAAAA6AAAAMQAA
+ ACgAAAAhAAAAGwAAABQAAAAQAAAACwAAAAcAAAAFAAAAAgAAAAEAAAAAAAAAAAAAAAC/gAAIuIAAErmE
+ AB2vkSdWrZUznKyVN+OynDj8vqU3/cquNv7Qszb/0rQ2/9S2Nv/Vtzb/1rg3/9e5N//Zuzj/2rs6/9u8
+ O//cvT3/3L4+/92/QP/ewEH/3sFC/9/CQ//gw0X/4cRG/+HFR//ixkj/48ZJ/+THS//lyEz/5clO/+bK
+ T//ny1H/6MxS/+jNU//pzVT/6c5V/+nOVv/pzlf/6c9Y/+rPWf/q0Fr/69Bb/+vQXP/q0F3/6tFe/+nQ
+ X//p0F//6M9g/+fOYP/mzWD/5Mxf/+PLYP/jymD/4spg/+HJYf/fyGL/3sdi/93GY//bxGT/2cNk/9bB
+ Zv/Sv2v/zrxv/82+ef/azZT/5dyv//DqyP/18df/+vfl//7+8f////X////3////+f////r////7////
+ /P////3////+/////v////////////////////7////+/////v////3////8////+v/+/fj/+vrz//j2
+ 7f/y8OT/39zL/8vHsP+3spX/oJl3/4qBWP90ajv/dWgz/3ttMf+Bci//iXgw/5GAMv+ZhzT/oo02/6qU
+ OP+ymjn/uKA7/72kPP/CqTz/x609/8uwPv/Psz7/07U+/9S2Pv/WuD7/2Lk9/9i6PP/Yujv/2Lo5/9i5
+ N//XuDb/17c0/9a2M//VtjH/1LUw/9S0L//Usy7/1LIt/9OxK//RsCr/0K8o/8+vJ//Orib/za0l/8ys
+ JP/Jqyb/x6ko/8SnK//ApDD/u6E1/7ScN/yahCfwfGcV41xJAtVIOAC/NSYAqBoOAJEQBgCDCwIAeQIA
+ AG8AAABkAAAAWQAAAE0AAABDAAAAOgAAADAAAAAoAAAAIQAAABoAAAAUAAAAEAAAAAsAAAAHAAAABAAA
+ AAIAAAAAAAAAAAAAAAAAAAAAtpIAB8yIAA/VlQAYsZIoUqyTM5qqlDbispo3+76kN/zJrjb+z7I2/9G0
+ Nv/Utjb/1rg2/9e5N//Yujf/2bs4/9q7Ov/bvDz/3L0+/92+P//dv0D/3cBB/97BQv/fwkT/4MNF/+HE
+ Rv/ixUf/4sZI/+PHSf/kx0v/5chM/+bJTv/mylD/58tR/+jMU//ozVT/6c1V/+nOVv/pzlf/6c5Y/+nP
+ WP/pz1n/6s9a/+rPW//q0Fz/6dBd/+nQXv/oz1//585f/+bNX//kzF//48pf/+HJXv/gyF7/38df/97G
+ X//dxWD/3MRg/9vEYf/aw2H/2MJi/9fBYv/Uv2P/0Lxn/8u5av/KunL/1caJ/9/Uof/p4Lj/8OrK//f0
+ 3f/9/O3//v7y//7+9f/+/vj////5////+/////z////9/////f////7////+/////v////7////+////
+ /v////7////+/////f////z//v77//7++f/9/ff/+/rz//Lw4//o5dP/29e//7u1l/+YkGz/d21E/3Ro
+ OP94azT/fG4v/4N0MP+MezL/lIM0/52KNf+lkDf/rpc4/7SdOv+5ojv/v6c8/8SsPf/Jrz7/zbI+/9K0
+ P//Utj//1bg+/9e5Pv/Yujz/2Lo7/9i6Of/YuTj/2Lg2/9e3NP/WtzP/1bYy/9S1MP/UtC//1LMu/9Sy
+ Lf/TsSz/0rAq/9GwKf/Qryf/z64m/86uJf/MrCX/yqsn/8epKP/Epyv/v6Qw/7uhNf+zmzj8moMp73pn
+ FeJZSQLTRjcAvTMlAKYbDgCQEAYAgwgCAHkCAABuAAAAZAAAAFgAAABNAAAAQwAAADoAAAAwAAAAKAAA
+ ACEAAAAaAAAAFAAAABAAAAALAAAABwAAAAQAAAACAAAAAAAAAAAAAAAAAAAAAMyZAAXRiwAL1ZwAEq6U
+ KEyqkjGWqJE136+ZNfm9ozb7yq03/c+yN//RtDf/07Y3/9W4N//XuTf/2Lo3/9m7OP/avDr/2708/9y9
+ Pv/cvj//3b9A/97AQf/ewUP/38JE/+DDRf/hxEb/4sVH/+LGSP/jx0r/5MhL/+XITf/myU//58tQ/+fM
+ Uv/ozVP/6c1U/+nOVv/qzlf/6c5Y/+nOWP/pz1n/6c9a/+nPWv/ozlv/6M5c/+fOXf/nzl3/5c1d/+TL
+ Xv/iyl7/4Mhd/97HXf/dxV3/28Rd/9rDXf/Zwl3/2MFe/9bAXv/Vv17/1L5f/9O9X//SvF//z7th/8y4
+ Y//Itmb/x7Zs/86/fv/VyJD/3NGi/+Xdt//v6sv/+PXe//r55//8++7//v71////+P////r////7////
+ /P////3////9/////v////7////+/////////////////////v////3////8////+/////v////6//39
+ 9//49u3/8vDh/+nm0//PyrH/squM/5WNaP+Jf1T/gXVD/3lsM/99by//hncx/49/M/+YhjT/oY02/6qU
+ N/+xmjn/t586/72lO//Cqj3/x609/8yxPv/RtD//07U//9W3P//WuT7/17k8/9i6O//Yujn/2Lk4/9i4
+ N//YtzX/17c0/9a2Mv/VtjH/1LQw/9SzL//Usi7/07Es/9KwK//RsCn/0K8o/8+vJv/OriX/za0l/8qr
+ J//HqSn/xKcs/7+kMf+5oDb/sZo4/JiCKe55ZBbgV0YE0EQ0ALsxJAClGwwAkBAGAIMIAgB5AgAAbwAA
+ AGQAAABZAAAATQAAAEMAAAA6AAAAMAAAACgAAAAhAAAAGgAAABQAAAAQAAAACwAAAAcAAAAEAAAAAgAA
+ AAAAAAAAAAAAAAAAAACqVQAD/6oABtWVAAyrkixGpY4vkaWPMtytljT3u6E2+smsN/3Psjj/0bQ4/9O2
+ OP/VuDj/1rk4/9i6OP/Zuzj/2rw6/9q9PP/bvT7/3L9A/93AQf/ewUL/38JD/+DDRP/hxEb/4cVH/+LG
+ SP/jx0n/5MdK/+XITP/myU7/58pP/+fLUf/ozFL/6M1T/+nOVf/qzlb/6s9Y/+rPWP/pz1n/6c9Z/+jO
+ Wv/ozlr/581b/+bNW//lzFz/5Mxc/+LKXP/gyVz/3sdc/9zFXP/aw1v/2MFb/9bAW//Vv1v/075b/9K8
+ W//Ru1z/z7pc/864XP/NuFz/zLdd/8q2Xv/HtGD/xLNi/8OyZ//Gt3P/ybt+/87BjP/az6H/5t64//Ls
+ zP/38tr/+vjm//798v////b////5////+/////z////8/////f////3////+/////v//////////////
+ //////7////9/////P////z////7////+//+/vn/+vry//f26//y8OL/4d3J/87Irv+7s5P/pZt1/42D
+ Vv93azj/d2ow/4FyMf+KejL/k4Iz/52JNf+mkDf/rpc4/7SdOf+7ozv/wag9/8asPf/LsD7/z7M//9K1
+ P//Utj//1rg+/9e5Pf/YuTv/2Lo6/9i5OP/YuDf/2Lc2/9e3NP/WtjL/1bYx/9S0MP/Usy//1LIu/9Ox
+ LP/SsCv/0bAp/9CvKP/Pryf/zq4l/82tJf/Kqyf/x6kq/8OnLP++ozH/uJ82/7CYOPyWgCntd2IX3VVC
+ BM1CMgC5MCEApBkMAJAOBgCDCAIAeQAAAG8AAABkAAAAWQAAAE4AAABDAAAAOgAAADAAAAAoAAAAIQAA
+ ABoAAAAUAAAAEAAAAAsAAAAHAAAABAAAAAIAAAAAAAAAAAAAAAAAAAAA/wAAAf//AAL/zAAFpY0rQaGL
+ LY2hjC/ZrJQy9LqgNfjHrDj9zrI5/9G0Of/Ttjj/1bg4/9a5OP/Yujj/2bs5/9q8Ov/avTz/2r0+/9y/
+ QP/dwEH/3sFC/9/CQ//gw0X/4cRG/+LFR//ixkj/48dJ/+TISv/lyUz/5spO/+fLUP/ozFH/6M1S/+nN
+ VP/pzlX/6s9X/+vPWP/qz1n/6s9Z/+nPWf/ozlr/5s1a/+XMWv/ky1v/48tb/+LKW//fyFv/3cVb/9rD
+ Wv/YwVr/1b9a/9K9Wv/RvFr/z7ta/866Wv/NuFn/y7ZZ/8m1Wf/Hs1n/xrJZ/8WyWv/EsVv/w7Bd/8Gv
+ X//Ar2L/vq5n/72ubf+/sXb/zsGN/93SpP/s4rv/8uzN//j13v/9/e7////0////9/////v////8////
+ /P////z////9/////f////7////////////////////+/////f////3////8/////P////z//v77//79
+ +P/9/fX/+/vw//Px4f/q5tD/4Nm+/8C3lv+akGn/dWo8/3FlMP97bTD/hXYx/49+Mv+YhjT/oo02/6qU
+ N/+xmjn/uaE7/7+mPf/Eqj3/ya8+/86zPv/QtD//07Y//9W3Pv/WuD3/17k7/9i5Ov/YuTn/2Lg4/9i3
+ N//XtzX/1rYz/9W2Mf/UtDD/1LMv/9SyLv/TsSz/0rAr/9GwKf/Qryj/z68n/8+uJv/NrSb/yqso/8ep
+ Kv/Dpy3/vaIy/7eeN/+uljn8lH4p7HZfF9tSPwTKPzAAti0fAKMXDACPDgYAgwgCAHkAAABvAAAAZAAA
+ AFkAAABOAAAARAAAADoAAAAxAAAAKAAAACEAAAAaAAAAFAAAABAAAAALAAAABwAAAAUAAAADAAAAAQAA
+ AAAAAAAAAAAAAAAAAAD//wABv78ABKCMKT6eiCuJnogr1KmSMPC3nzX2x6w6+86yO//QtDr/0rY5/9S3
+ Of/WuTn/2Lo5/9q8Of/avDv/2r09/9u+Pv/cv0D/3cBB/97BQv/fwkT/4MNF/+HERv/ixUf/48ZI/+PH
+ Sf/kyEv/5slN/+fKT//oy1D/6MxR/+jNU//pzlT/6c5V/+rOV//qz1j/6c9Y/+nPWf/ozln/581a/+XM
+ Wv/ky1r/4spa/+DIWv/ex1r/3MRa/9nCWf/Wv1j/071Y/9C7WP/NuVf/y7dX/8m1V//Gs1f/xbFX/8Ov
+ Vv/BrVb/v6xW/76sVv+9q1b/vKpX/7yqWf+7qlv/uqld/7moYf+3p2T/uKlr/8S2ff/QxJH/3NKk/+Xd
+ uf/u6c3/9vTh//r46v/7+/H//v73////+f////r////7/////P////3////+////////////////////
+ /v////7////9/////f////3////9/////P////r////4//7+9f/5+Ov/9fHg/+7p0//PyKz/qqJ//4V7
+ Uv99ckH/gHM6/4R1NP+LejL/lYIz/5+KNf+nkTf/r5g5/7afOv+9pDz/w6k9/8iuPf/Nsj7/z7M+/9K1
+ Pv/Vtz3/1rg8/9e4O//YuTr/2Lk5/9i4OP/YuDf/17c1/9a2M//VtTH/1LQw/9SzL//Usi7/07Et/9Kx
+ K//RsCn/0K8o/8+vJ//Prib/za0m/8qrKP/GqSv/wqYu/7yhMv+1nDf/q5Q4/JF7KetxXRjZTzoExjwr
+ ALQrHQChFQsAjwwGAIQGAgB6AAAAcAAAAGUAAABaAAAATwAAAEQAAAA7AAAAMQAAACkAAAAiAAAAGwAA
+ ABQAAAAQAAAACwAAAAcAAAAFAAAAAwAAAAEAAAABAAAAAAAAAAAAAAAA//8AAb+/AASdiCY8m4YmhZuE
+ Kc6mjy7rtpwz88WrOvvMsTz/z7M7/9K1Ov/Utzr/1rk6/9i6Ov/avDr/2r08/9u9Pf/bvj//3L9A/93A
+ Qf/ewUL/38JE/+DDRf/hxEb/4sVH/+PGSP/kx0n/5chL/+bJTf/nyk//6MpQ/+jLUv/ozVP/6c5U/+nO
+ Vf/pzlb/6c5X/+jOWP/nzlj/581Z/+XMWf/ky1r/4spa/+DIWv/dxln/28NZ/9jBWP/Uvlf/0btW/824
+ Vv/KtVX/x7NU/8SwVP/BrlT/v6tU/7ypU/+6p1P/uKZS/7alUv+1pFL/tKNT/7SjVP+0o1X/tKNX/7Oj
+ Wf+zo1z/s6Nf/7SkZP+7rHD/wrR9/8m+i//VzKH/4du5/+3pz//z8d3/+Pfo//398/////f////4////
+ +f////v////8/////f////////////////////7////+/////v////3////9/////f////3////7////
+ +f/+/vf/+/rw//n36f/08eD/2ta+/7u1lv+blG//j4VY/4l9R/+EdTf/h3cx/5F/M/+bhzX/pI82/6yW
+ OP+0nTr/u6M7/8GnPP/GrD3/y7E+/86zPv/RtD3/1LY9/9W3PP/WuDv/17k6/9e5Of/XuDj/17g3/9a3
+ Nf/VtjP/1bUx/9S0MP/Usy//1LMv/9SyLf/SsSv/0bAq/9CwKP/Qryf/z64m/82tJv/Kqyn/xqgs/8Gl
+ L/+6oDP/spo3/6mROPuNeCrpblgY1kk0BMM2JQCyJhkAoRMLAJAMBACFBgIAewAAAHIAAABmAAAAWwAA
+ AFAAAABFAAAAPAAAADIAAAAqAAAAIwAAABsAAAAVAAAAEAAAAAwAAAAHAAAABQAAAAMAAAABAAAAAQAA
+ AAAAAAAAAAAAAP//AALMzAAFnIYeO5eBI4KWgSTIo4wq5rSbM/DEqTv6y7E+/86zPf/RtTv/1Lc7/9a5
+ O//Yuzv/2rw7/9u9PP/bvj7/274//9y/QP/dwEH/3sFC/9/CRP/gw0X/4MRG/+HFR//jx0n/5MhK/+XJ
+ S//myU3/58lP/+jKUf/oy1L/6M1T/+jOVP/ozlX/6M5W/+fNV//nzVf/5s1Y/+XMWf/ky1n/4spa/+DI
+ Wv/dxln/2sNY/9fAV//UvVb/0LpV/8y2VP/Is1P/xLBS/8GtUf+9qlH/uqdR/7ekUf+0olD/saBP/6+e
+ Tv+tnU7/rJxP/6ucT/+rm1D/rJxS/6ycU/+tnVX/rp5X/6+fWv+woFz/sqJj/7Olav+2qnL/xbqK/9XN
+ pf/k3r7/7enQ//Xy4P/8/O/////1////9/////j////6////+/////3////////////////////+////
+ /v////7////+/////v////7////9/////P////r//v75//399v/9/PL/+/ru/+bj0f/Mx67/sqyM/6CY
+ b/+Sh1X/g3Y7/4R0Mf+OfDP/mIU0/6GMNv+pkzj/spo5/7mhO/+/pjz/xKs9/8mwPf/Nsj3/0LQ9/9O1
+ PP/Utzz/1bg7/9a5Ov/XuTn/17k4/9e4N//WtzX/1bYz/9W1Mf/VtDH/1bQw/9WzL//Usi7/07Es/9Kx
+ Kv/RsCn/0K8o/8+uJ//NrCf/yaoq/8aoLP/BpTD/uJ8z/6+YN/+ljzj7iXYq6GlUF9RDLwO/MiAAryEV
+ AKASCQCRCgQAhgYCAHwAAABzAAAAaAAAAFwAAABRAAAARgAAAD0AAAAzAAAAKwAAACMAAAAcAAAAFQAA
+ ABEAAAAMAAAACAAAAAUAAAADAAAAAQAAAAEAAAAAAAAAAAAAAAD//wACzMwABZiCGzmUgB98k30gwKCI
+ KN+zmjPrw6o9+MuwQP/Osj//0bQ9/9S3PP/WuTz/2Ls8/9u9PP/bvT3/274+/9u+P//cv0D/3cBB/97B
+ Qv/fwkT/4MNF/+DERv/hxUf/48dJ/+TISv/lyUz/5slN/+fJT//oylH/6MtS/+nNU//pzlT/6M5V/+jO
+ Vv/nzVf/5s1X/+XMWP/ky1n/4spZ/+HIWf/fx1n/28NY/9fAV//UvVb/z7pV/8q2U//GsVL/wq5Q/76q
+ T/+6p07/tqNO/7GgTf+tnE3/qplM/6eXS/+llUr/o5RK/6KTS/+hkkz/oZJM/6KTTv+jlFD/pZVR/6eX
+ U/+pmVX/q5tX/6ucW/+rnV//raBl/7muev/HvpH/1M2n/+Dau//r587/9vTh//r56v/8+/D//f32////
+ +f////v////9///+/////v////7////+/////v////7////+/////v////7////+/v////3////7////
+ +v////j////3//399P/u7N3/29jB/8jDpv+yq4X/nJJj/4V4QP+CczP/jHs0/5aDNf+fijb/p5E3/6+Z
+ Of+3nzr/vaU7/8OqPP/Irz3/zLE9/9CzPf/TtTz/1Lc8/9W4O//WuTv/17k6/9e5Of/XuTf/1rc2/9W2
+ NP/UtTL/1LQx/9S0MP/UtC//1LMu/9OyLP/RsSr/0LAp/9CvKP/Prif/zawn/8mqKv/FqC3/wKUw/rad
+ M/6slTb+n4s2+oRwKeZjThbQPCkDuysbAKweEgCfEAcAkQkEAIcEAgB+AAAAdAAAAGkAAABeAAAAUgAA
+ AEgAAAA+AAAANQAAACwAAAAkAAAAHQAAABYAAAARAAAADAAAAAgAAAAGAAAAAwAAAAEAAAABAAAAAAAA
+ AAAAAAAA//8AAszMAAWXgBg2kXkadpB4G7aehSXWsZgz5sKoP/fKr0L/zrJA/9G0Pv/Utj3/1rg8/9i7
+ PP/bvTz/2709/9u+Pv/bvj//3L9A/97BQv/fwkP/38NE/+DERf/hxUf/4sZI/+PHSf/kyEr/5clM/+bJ
+ Tf/nyU//6MpR/+nLUv/pzVP/6c5U/+nOVf/ozlb/581X/+XNWP/kzFj/48tZ/+HJWf/fx1n/3cVZ/9jB
+ WP/Uvlb/0LpV/8q2U//FsVH/wKxP/7uoTv+2pEz/saBK/62cSv+ol0n/pJNJ/6CQSP+djkj/motH/5iK
+ R/+XiUf/lohI/5aJSf+Yikv/mYtM/5uNTv+ekE//oZNR/6SVU/+ml1f/p5la/6mcX/+wpW3/ua58/8G4
+ i//Px6D/3de3/+zozf/z8Nv/+Pbn//z88v////j////6/////f///v////7////+/////v////7////+
+ /////v////7////+/////v7////9/////P////v////5////+P/+/vb/9PPm/+nm0v/e2b//xL6b/6ad
+ cf+IfEf/gnM2/4t6Nv+UgTb/nYg2/6WQN/+ulzn/tp46/7yjO//CqTz/yK48/8uwPf/Psj3/0rU9/9S2
+ PP/WuDz/17o8/9e6Ov/XuTn/17k4/9a3Nv/VtjT/07Uy/9O0Mf/TtDD/1LQv/9OzLf/Ssiz/0bEq/9Cw
+ Kf/Pryj/z64n/82sJ//Jqir/xacu/8CkMP6zmzL+p5A1/pmENPl9aifkW0gWzTQiA7YkFQCpGg8AnQ4H
+ AJIJBACJBAIAfwAAAHYAAABrAAAAYAAAAFQAAABKAAAAQAAAADYAAAAtAAAAJQAAAB4AAAAXAAAAEgAA
+ AA0AAAAJAAAABgAAAAQAAAABAAAAAQAAAAAAAAAA//8AAf//AAL//wAFk3sUNI10FHCMcxatnIIjzrGX
+ M+HCqEH1yq9F/82xQv/RtD//1LY9/9a4Pf/Yujz/2708/9u9Pf/bvj7/274//93AQf/ewUL/38JD/+DD
+ RP/gxEb/4cVH/+LGSP/jx0n/5MhK/+XJTP/myU3/58lP/+jKUf/py1L/6s1T/+rOVf/pzlX/6c5W/+fO
+ V//lzFj/48tY/+HKWf/gyFn/3sVZ/9vCWP/Wv1f/0btV/8y3VP/GslL/wK1P/7qnTf+0okv/rp5J/6mZ
+ Rv+klEb/n49F/5qKRf+WhkT/koRE/4+CQ/+NgEP/jH9E/4t+Rf+Lf0X/jYFH/4+DSf+RhUr/lYlM/5qM
+ Tf+ej0//oZJS/6OVVf+lmFn/qJtg/6ueZ/+uo3D/vbSG/9DIn//i3Ln/7OjN//Tx3v/7+u/////3////
+ +v////3///7////+/////v////7////+/////v////7////+/////v////7+/////f////z////8////
+ +/////r//v74//v57v/39OP/8+/Y/9bQsf+xqH//i4BO/4FzOf+KeTj/k4A2/5uHNv+kjjf/rJY4/7Sd
+ Ov+7ojr/wag7/8esPP/Lrzz/z7I9/9K0Pf/Utj3/1rk9/9i6PP/Yujv/17o6/9e5OP/WuDb/1LY0/9O1
+ Mv/TtDH/07Qw/9O0L//Ssy3/0bIs/9CxKv/PsCn/z68o/8+uJ//NrCf/yaor/8SnLv++pDH+sJgy/qKM
+ M/2RfjL5d2Ql4VRCFskrGwOxHQ8ApRUKAJwOBQCTBwQAigQCAIEAAAB3AAAAbQAAAGEAAABWAAAATAAA
+ AEIAAAA3AAAALgAAACcAAAAfAAAAGAAAABMAAAAOAAAACQAAAAYAAAAEAAAAAQAAAAEAAAAAAAAAAP//
+ AAH//wAC//8ABY91CzCMcw9minASnZuBIcCwljTZwKZC88iuRv/MsUP/0LNA/9S2Pv/WuD3/2Lo8/9u9
+ PP/bvT3/274+/9u+P//dwEH/3sFC/9/CQ//gw0T/4cRG/+HFR//ixkj/48dJ/+TISv/lyEz/5slO/+fJ
+ T//oylH/6ctS/+vNVP/rzlX/6s5W/+nOV//nzlj/5cxY/+LLWP/gyVn/3sZZ/9zEWf/ZwFj/07xX/824
+ Vf/ItFT/wa5R/7qoT/+0ok3/rp1L/6iYSf+ik0f/no9G/5qLR/+Wh0f/lIVI/5GDSf+Pgkr/jYFL/42B
+ Tf+Ngk7/j4RR/5OIVP+XjFf/mY5Y/5iNVP+Xi0//l4pL/5qNTv+ekFH/oZNU/6KVWP+ilVv/o5dg/7Gm
+ c//CuIv/08uj/+Dbu//t6dP/+fjq///+9f///vj///78///+/v///v7///7+///+/////v////7////+
+ /////v////7////+/v////7////9/////P////z////7//7++v/+/fT//vzt//765v/h3L//urGL/5KH
+ WP+GeUD/jHw8/5KAN/+ZhTb/oo03/6uVOP+znDr/uaE6/8CmO//Fqzv/yq48/86yPf/StD3/1LY9/9a5
+ Pf/Yuz3/2Ls7/9i6Ov/XuTj/1rg2/9S2NP/TtTL/07Qx/9O0MP/TtC//0rMt/9GyLP/QsSr/z7Ap/8+v
+ KP/Prif/zawo/8mqK//Epy//vaMx/qyUMP2chjD8iXcs929dIt9NPRPGJhYDrxkLAKQSCACcDAUAlAcC
+ AIsEAgCCAAAAeQAAAG4AAABjAAAAWAAAAE4AAABDAAAAOQAAADAAAAAoAAAAIAAAABkAAAAUAAAADwAA
+ AAoAAAAHAAAABAAAAAEAAAABAAAAAAAAAAD//wAB/6oAA9WqAAaScwYqjnEMWItuC4adgR+sspc1zb+l
+ RO/GrEf/y7BE/8+zQf/Ttj7/1rg9/9i6PP/bvTz/2709/9u+Pv/bvj//3L9A/97BQv/fwkP/4MNE/+HE
+ Rv/ixUf/4sZI/+PHSv/kyEv/5chM/+bJTv/nyVD/6MpR/+rLU//rzVT/685W/+rOVv/pzlf/581Y/+XM
+ WP/iyln/38hZ/9zFWf/Zwlr/1b5Z/8+6WP/JtVb/w7BV/7upU/+0o1H/rZ1P/6eYTf+ilEz/nY9L/5uN
+ Tf+ajFD/mYtT/5mLVf+YjFn/mIxb/5mNX/+bkWL/nZNm/6GYa/+poHL/sah5/7Sqev+nnWj/mo9W/5GE
+ SP+Uh0r/mItN/5yPUP+ekFP/n5FW/6CTWv+pnWj/s6l5/761iv/PyKb/497F//b14////vL///72///+
+ +v///v3///79///+/v///v////7////+/////v////7////+/////v7////+/////v////3////8////
+ +//+/vr//v32//788P/+/Ov/5ODG/8G5lv+dkmX/j4JM/5GCQ/+SgTr/l4Q2/6GMN/+qlDn/sps6/7ig
+ Ov++pjv/xKs7/8muPP/OsT3/0rQ9/9S2Pf/WuD3/17o9/9i6O//Yujr/17k4/9a4Nv/UtjT/07Uy/9O0
+ Mf/TtDD/07Qv/9KzLf/Rsiz/0LEq/8+wKf/Pryj/z64n/82tKP/Jqiz/xKcv/72iMf6pkS78lYAq+oFu
+ JfRnVRzdRzgQxSMUAa8XCwClEAgAnQoDAJYHAgCNBAIAhAAAAHoAAABwAAAAZQAAAFoAAABPAAAARQAA
+ ADsAAAAxAAAAKQAAACIAAAAaAAAAFQAAABAAAAALAAAACAAAAAUAAAACAAAAAQAAAAAAAAABgIAAAr+A
+ AAT/qgAGlXEAJI9wA0mObgVvn4MemLKYNsG+pUfrxKtJ/8mvRf/OskH/07U+/9W4Pf/Yujz/2708/9u9
+ Pf/bvj7/274//9y/QP/dwEH/3sFC/+DDRP/hxEX/4sVH/+PGSP/jx0r/5MdL/+XITf/myU7/6MlQ/+nK
+ Uf/qy1P/681V/+vOVv/qzlf/6c5Y/+fNWP/kzFn/4cpZ/9/IWv/axFr/1sBa/9K9Wv/Lt1n/xbFX/76r
+ Vv+2pVT/rp5S/6aYUP+gk0//nI9P/5iLT/+Yi1P/mo1Y/5yPXf+ekmP/oJRo/6KXbf+kmnL/qJ94/6yk
+ fv+zrIb/v7iQ/8vEmv/Oxpr/tqx8/52SXv+Kfkb/jYFG/5KFSf+Xikz/mYxP/5uOUv+ekFX/oZVe/6WZ
+ aP+pn3L/vraQ/9nUtv/08dz///3u///+9P///vn///78///+/f///v7///7////+/////v////7////+
+ /////v////7+/////v////7////+/////f////z//v77//7++P/+/vT//v3v/+fkzf/IwaD/qJ1y/5mM
+ WP+Wh0r/k4I8/5aDNv+fizf/qJM5/7GaOv+3oDv/vaU7/8OqO//Irjz/zbE9/9K0Pf/Utj3/1rg9/9e6
+ PP/Yujv/2Lo6/9e5OP/WuDb/1bc0/9O1Mv/TtTH/07Qw/9O0L//Ssy3/0bIs/9CxKv/PsCn/z68o/8+v
+ KP/OrSj/yaos/8SnMP+8oTH+po0r+o55JPd3ZR3xXk4V20IzDMQgEwGvFAsApQ8GAJ4IAwCXBQIAjwIC
+ AIUAAAB8AAAAcgAAAGcAAABcAAAAUQAAAEcAAAA8AAAAMwAAACsAAAAjAAAAHAAAABYAAAARAAAADAAA
+ AAkAAAAFAAAAAgAAAAEAAAABAAAAAVVVAAO/gAAE25IAB6J3AB6ZbwA8k2wAWqOEHYWxlja3uqNG6MGp
+ Sf7HrkX+zrJC/tK1P//VuD3/2Lo8/9u9PP/bvT3/274+/9y+P//cv0D/3cBB/97BQv/fwkT/4cRF/+LF
+ R//jxkj/5MZK/+THTP/lyE3/5shO/+jJUP/pylH/6stT/+vNVf/rzlf/6s5X/+nOWP/nzVn/5MtZ/+HJ
+ Wv/dx1v/2cNb/9S/XP/Qu13/y7he/8e1YP/DsmL/u6xi/7SmY/+soGP/qJxj/6SZZP+hlmT/ophp/6ab
+ b/+pnnX/rKJ7/6+lgf+yqYf/ta2N/7qzk/++uJr/xsGi/9PNrf/g2rf/4du1/8G5jv+hl2f/h3tH/4l9
+ Rf+NgUf/kYRI/5SHS/+Xik3/mYxQ/5qNVf+ajlr/mo5f/6+mfv/Nxqb/6ebO//f14//6+Oz//fz1////
+ +/////z////9///+/v///v7///7+///+/v///v////7////+/////////////////v////7////9////
+ /P////n////2////8v/q59P/zseo/7Knfv+ilWL/m4xR/5SDP/+Ugjb/nos4/6iTOf+wmjv/tp87/7yl
+ O//Cqjv/yK48/82xPf/StD3/1LY9/9W4Pf/Xujz/2Lo7/9i6Ov/XuTj/1rg2/9W3Nf/UtjP/07Ux/9O0
+ MP/Tsy//0rMt/9GyLP/QsSr/0LAp/9CvKP/Qryj/zq0o/8mqLP/EpzD/u6Ax/qOKKPmJdB/1b1wV7lhG
+ D9o8LgjEHREBrxIJAKYOBgCfCAMAmQUCAJACAACHAAAAfgAAAHMAAABoAAAAXgAAAFMAAABIAAAAPgAA
+ ADQAAAAsAAAAJAAAAB0AAAAXAAAAEgAAAA0AAAAJAAAABgAAAAIAAAABAAAAAQAAAAFVVQADzGYABf+S
+ AAexdgAannAAMptrAEqngx53sZM3rbWdQuS6okX9w6lD/syxQf7StUD/1bg+/9i6PP/bvTz/2709/9y+
+ Pv/cvz//3cBA/97AQf/ewUL/38JE/+DDRf/ixUb/48ZI/+TGSv/kx0z/5chN/+bITv/nyVD/6MpR/+rL
+ U//rzVX/685X/+rOV//pzlj/585Z/+TLWv/gyVv/3MZc/9fBXf/RvV7/zbti/9G/bP/VxHf/18iC/9TH
+ iP/PxY3/ysKS/8fAlP/FvpX/w7yX/8S9mv/Gv5//yMGj/8rDp//Lxav/zsiv/9DLsv/Tzrf/1dK7/9rX
+ wP/j38b/6+fM/+jkxv/GwJz/pJtx/4d+Tv+HfEn/iH1H/4p+Rf+MgEf/j4NJ/5KGTP+Th1D/k4dT/5OI
+ WP+km3H/u7SS/9LNs//i38v/7uvd//n47/////n////6/////P///v3///79///+/v///v7///7////+
+ /////v////////////////7////+/////v////3////6////9v////P/7OrV/9PNrv+6sIf/qp1r/6CR
+ V/+VhUL/lII3/56LOP+okzn/sJo7/7afO/+8pTv/wqo7/8iuPP/NsT3/0rQ9/9S2Pf/VuDz/17o8/9i6
+ O//Yujr/17k4/9a4Nv/VtzX/1LYz/9S1Mf/UtDD/07Mv/9KyLf/Rsiz/0bEq/9CwKf/Qryj/0K4n/86t
+ KP/Jqiz/xKcw/7ugMP2hiSf4hW8b82pYEetTQwzYOisHwxwRALASCQCnDQYAoAgDAJkFAgCRAgAAiAAA
+ AH8AAAB1AAAAagAAAF8AAABUAAAASgAAAD8AAAA1AAAALQAAACUAAAAeAAAAGAAAABIAAAANAAAACgAA
+ AAYAAAADAAAAAQAAAAEAAAABqlUAA8yZAAXfnwAIuXQAFrFvACeqawA5rIIgaK6RNaSvlj7htZ1B/MCl
+ Qv3Kr0H+0bVB/9S3P//Yujz/2708/9u9Pf/cvj7/3b8//93AQP/ewUH/3sFC/9/CRP/gw0X/4cRG/+LF
+ SP/kxkr/5cdM/+bITf/myE7/58lQ/+jKUf/py1P/681V/+vOV//qzlj/6c9Y/+jOWf/ky1r/4Mhb/9vF
+ Xf/VwF//zrth/8y6Z//Xx3r/4tSO/+zgov/s4q3/6uO3/+jkwf/n48X/5uPH/+Thyv/l4sz/5uPP/+fk
+ 0f/n5dP/6ObV/+nn1//q6Nj/6+ra/+3r3P/v7d7/8vHf//b04f/v7db/y8ep/6ehfP+JgVb/hXxN/4N5
+ SP+Cd0P/hXpD/4h9Rf+MgEf/jIFK/4yBTf+MgVD/mY9k/6qifv+7tZf/zsmy/+Hezf/08+j////3////
+ +f////v///78///+/f///v7///7+///+/////v////7////////////////+/////v////7////9////
+ +/////f////z/+/s2P/Z0rT/w7mQ/7KldP+kllz/l4ZE/5SCOP+eizn/qJM6/7CaO/+2nzv/vKU7/8Kq
+ O//Irjz/zbE9/9K0Pf/Utj3/1bg8/9e6O//Yujr/2Lo5/9e5OP/XuDb/1rc1/9W2M//VtTH/1LQw/9Sz
+ L//Tsi3/0rEs/9GxKv/RsCn/0K8o/9CuJ//OrCj/yaos/8SnMP+6nzD9n4Yl94JtGPFlUgzpTz8I1jYp
+ BMMaEACwEQkApw0GAKEIAwCaBQIAkgIAAIkAAACBAAAAdwAAAGwAAABhAAAAVgAAAEsAAABAAAAANwAA
+ AC4AAAAmAAAAHwAAABkAAAATAAAADgAAAAoAAAAGAAAAAwAAAAIAAAABAAAAAapVAAP/mQAF/58ACMl5
+ ABO5bAAhs2cAL7CCI16sjTOfqpE737GZP/y8oz/9ya5B/tG0Qf/Utz//2Lo9/9u9PP/cvj3/3L49/92/
+ Pv/ewED/3sFB/97BQv/fwkT/4MNF/+HERv/ixUj/5MZK/+XHTP/myE3/5shO/+fJUP/oylH/6ctT/+rM
+ Vf/rzVb/6s5X/+rPWP/ozln/5Mpb/+DHXP/axF7/079g/8y6Y//Kumv/282G/+zgov/88rz///fL///6
+ 2f///eb///7r///+7v///vL///7z///+9P///vX///71///+9f///vb///72///+9v///vb////1////
+ 8/////H/9fTk/9DNtf+rpof/i4Re/4R8Uv9/dkj/e3FA/35zQP+BdkH/hHpD/4V7Rf+Fe0f/hXtJ/42E
+ WP+ZkWv/pZ5+/7q1m//V0r7/8O/i////9f////f////6////+/////z////9/////v//////////////
+ /////////////////////////////////v////v////3////9P/x7tr/3de5/8rAmP+5q3v/qJlh/5iI
+ R/+Ugjr/nos6/6iTOv+wmjv/t6A7/72lO//Dqjv/yK48/82xPf/StD3/1LY9/9W4PP/Xujv/2Lo6/9i6
+ Of/XuTj/17g2/9a3NP/WtjP/1bUx/9W0MP/Vsy//1LIt/9OxLP/SsSr/0bAp/9CvKP/Qrif/zqwo/8mp
+ LP/EpzD/up8w/Z+GJPeCbBfwZFIM6E0/B9Y2KQTDGRAAsBEJAKgNBgCiCAIAmwUCAJMCAACLAAAAggAA
+ AHgAAABtAAAAYgAAAFcAAABMAAAAQQAAADgAAAAvAAAAJwAAAB8AAAAZAAAAEwAAAA4AAAAKAAAABwAA
+ AAMAAAACAAAAAQAAAAGqVQAD1VUABuNxAAm8bwAXrGYAKKZnADmpgCBorY81pK+WPuG0nEH9wKZC/cqv
+ Qf7RtUH/1Lc+/9i6PP/bvTz/3L49/9y+Pf/dvz7/3sBA/97BQf/fwUL/4MJE/+HDRf/ixEb/48VI/+TG
+ Sv/lx0z/5shN/+bITv/nyVD/6MpR/+nLU//qzFT/6s1W/+rNV//qzlj/6M1Z/+TKW//gx1z/2sNe/9O/
+ Yf/MumT/yrpt/9rOiv/s46r//PXG///61P///N////7q///+7////vL///72///+9////vf///74///+
+ +P///vj///75///++f///vn///75////+P////b////0//X16P/T0bz/sayR/5OMav+Hf1r/fHRL/3Rq
+ Pf92bD3/em8+/31yP/9+c0H/fnRD/350Rf+Dek//iYFd/5CJav+ooon/ysez/+3r3v////T////3////
+ +f////v////8/////f////7///////////////////////////////////////////////7////7////
+ +P////T/8e7b/93Xuv/KwJj/uat7/6maYf+YiEf/lIM6/56LO/+olDv/sZs7/7igO/++pjz/xKs8/8mu
+ PP/Osj3/0rQ9/9S2PP/WuDz/17o7/9i6Ov/YuTn/2Lg4/9e4Nv/WtzT/1rYz/9W1Mf/VtDD/1bMv/9Sy
+ Lf/TsSz/0rEq/9GwKf/Qryj/0K4m/86sJ//Jqiv/xacv/7ygMP2kiyj5i3Uf9HFfGO1ZSRDaPS8JxR0T
+ ALESCQCpDgYAowoDAJwFAgCUAgAAjAAAAIMAAAB5AAAAbgAAAGMAAABYAAAATQAAAEIAAAA4AAAAMAAA
+ ACgAAAAgAAAAGQAAABMAAAAOAAAACwAAAAcAAAAEAAAAAgAAAAEAAAABgEAABNVVAAbmZgAKsWwAGqFk
+ AC6YYwBDpX4gca2QNqqxmUHjt6BD/sGoQv7KsEH+0bVA/9S4Pv/Yujz/2708/9y+Pf/cvj3/3b8+/97A
+ QP/fwUH/4MFC/+DCRP/hxEX/4sVH/+PGSP/kxkr/5cdM/+bITf/myE7/58lQ/+jKUf/py1L/6ctU/+rM
+ Vf/qzFb/6s1X/+jMWP/kyVr/4MZc/9rDX//TvmL/zLll/8m5bv/az4//7OWx//z40f///N3///3m///+
+ 7////vP///73///++v///vv///77///++////vv///78///+/P///vz///78///+/P////v////5////
+ 9//29uv/1tTD/7eym/+alHb/iYJh/3lyTf9sZDv/bmU5/3JoOv92azv/d2w9/3dtP/93bUH/eG9G/3px
+ Tv97dFX/lY92/7+7qP/p6Nn////0////9v////j////6/////P////3////+////////////////////
+ ///////////////////////////+////+/////j////1//Hu3P/d17r/ysCZ/7msfP+pmmL/mYlI/5WE
+ O/+fjDv/qZQ7/7KbPP+5oTz/v6c8/8asPP/Krzz/z7I9/9O1Pf/Utzz/1rg8/9e6O//YuTr/2Lk5/9i4
+ OP/XuDb/17c0/9a3M//WtTH/1bQw/9WzL//Usi3/07Es/9KxKv/RsCn/0K8n/9CuJv/OrCf/yqor/8Wn
+ L/++oTH+qZAs+5R+J/h9ayLyZFMZ3UU1DschFAGyFQkAqRAGAKMKAwCdBwIAlQQAAI0AAACEAAAAegAA
+ AG4AAABjAAAAWAAAAE0AAABDAAAAOQAAADAAAAAoAAAAIAAAABoAAAAUAAAADwAAAAsAAAAHAAAABAAA
+ AAIAAAABAAAAAYBAAAS2SQAH5mYACqVjAB+WZAA4j2QAUqB9Hn6tkTWytJxC57ujRf7DqkP+y7FB/tG1
+ P//UuD7/2Lo8/9q8O//bvTz/3L49/92/Pv/ewED/38FB/+DBQv/hwkT/4sRF/+LFR//jxkj/5MZK/+XH
+ TP/myE3/5shO/+fJUP/oylH/6MpS/+nLVP/qzFX/6sxW/+rMV//oy1j/5Mla/+DGXP/aw1//075j/8y5
+ Zv/JuXD/2s+S/+zmt//8+tf//v3j//7+6//+/vL///73///++v///v3///7+///+/v///v7///7+///+
+ /v///v7///7+///+/v///v7////9////+/////r/9/fv/9vZy/+/u6f/pJ6F/46Ia/94cVH/ZV46/2Ze
+ N/9rYTf/b2Q3/3BlOf9wZjv/cGY8/29mP/9tZEL/amNF/4eBaP+2s5//5uXW////8/////b////4////
+ +v////v////9/////v/////////////////////////////+/////v////7////+/v///vz///74///+
+ 9f/x7tz/3de7/8rAmf+5rH3/qZtj/5qKSf+WhDv/oI08/6qVPP+znDz/uqI8/8GoPP/HrTz/y7A8/9Cz
+ Pf/TtTz/1bc8/9a4PP/Xujv/2Lk6/9i4OP/Ytzf/2Lc2/9e3NP/WtzL/1rYx/9W0MP/Usy//1LIt/9Ox
+ LP/SsSr/0bAp/9CvJ//Qrib/zqwm/8qqKv/Gpy7/v6Mx/q2UL/2chy78iXcr929dIeJNPRPKKBcDtBkM
+ AKsTCAClCwMAngcCAJYEAACOAAAAhQAAAHoAAABvAAAAZAAAAFkAAABOAAAAQwAAADoAAAAxAAAAKAAA
+ ACAAAAAaAAAAFAAAAA8AAAALAAAACAAAAAQAAAACAAAAAQAAAAGAQAAE220AB+aAAAqjbwcnlG8KTI5s
+ C3GegCCZr5MzwrihQeu/p0T/xaxC/82xQP/RtT7/1bg9/9i6PP/avDv/2708/9y+Pf/dvz7/3r9A/9/A
+ Qf/gwUL/4cJD/+HDRf/ixUf/48VI/+TGSv/lx0v/5cdN/+bITv/nyU//58lR/+jKUv/py1P/6sxV/+rM
+ Vv/qzFb/6MtY/+TJWv/gx1z/28Ne/9S+Yv/NuWX/yrpv/9vOj//s5LH/+/fQ//773f/+/ej//v7x///+
+ 9////vr///7+///+/////v////7////+/////v////7////+/////v////7//////f////z////6//n5
+ 8v/l4tf/0My7/7m0n/+bln3/fXdb/2NcPf9hWjj/ZFw2/2ddNf9oXjb/aF84/2hfOf9pYT7/amNE/2xl
+ Sv+JhG3/uLSj/+bl2P////X////3////+f////r////8/////f////7/////////////////////////
+ /////v////7////+/////v7///78///++P///vX/8e7c/97Xu//LwZn/uq19/6ucY/+ci0n/mIY8/6KO
+ PP+slj3/tJ49/7ujPf/CqT3/yK49/8ywPf/Qsz3/07U9/9W3PP/WuTv/17o6/9e5Of/YuDj/2Lc2/9e3
+ Nf/XtzP/1rcy/9W2Mf/VtDD/1LIu/9OyLf/TsSv/0rEq/9GwKP/Qryf/z64m/82sJv/Kqin/xqct/8Gk
+ MP6zmTD9pI0x/ZSAMPl6ZiTlWUYU0TMiA70kFgCxGg4AqA4GAJ8JAgCWBAAAjQAAAIUAAAB6AAAAbwAA
+ AGQAAABZAAAATgAAAEMAAAA6AAAAMQAAACgAAAAgAAAAGgAAABQAAAAPAAAACwAAAAgAAAAEAAAAAgAA
+ AAEAAAABgEAABNttAAfoiwALnHgKMZJyEGKNcRCTnIEgtq6VMdS8pD7xxKtC/8muQP/Osj7/0rU8/9W3
+ PP/Yujv/2rw7/9u8PP/cvT3/3b4+/96/P//fwED/4MFC/+DCQ//hw0X/4sRG/+LFSP/jxkn/5MZL/+XH
+ TP/myE7/5shP/+fJUP/oylL/6ctT/+rMVf/qzFX/6s1W/+jMV//kyVn/4cdb/9zEXv/Vv2H/zrpl/8y6
+ bv/bzYv/7OGq//vzx//9+Nb//vvk//798f///vb///76///+/v///v////7////+/////v////7////+
+ /////v////7////+//////7////8////+//7+/X/7uzj/+He0P/Pyrn/qqWR/4J9Zv9gW0D/XVY5/15X
+ Nv9fVzT/YFc0/2BYNf9gWTb/ZF0+/2pjR/9vaVH/jYh0/7q3p//n5tv////2////+P////n////7////
+ /P////3////+//////////////////////////////7////+/////v////7+///+/P///vj///71//Hu
+ 3P/e2Lv/zMKZ/7yvff+tnmP/no1K/5qIPf+kkD3/rZg9/7afPf+8pD3/w6o9/8mvPf/MsT3/0LM9/9S2
+ Pf/Vtzz/1rk7/9e6Ov/XuTj/17g3/9i3Nf/XtzT/1rcz/9a3Mv/VtTH/1LQv/9SyLv/TsS3/0rEr/9Kx
+ Kv/RsCj/0K8n/86uJf/NrCX/yqop/8aoLP/CpS/+uJ0x/q2VNP6gizT6hXAm6mRPFdc/LQPGLx4AuCET
+ AKsSCACfCgMAlQUCAI0AAACEAAAAegAAAG8AAABkAAAAWQAAAE4AAABDAAAAOgAAADEAAAAoAAAAIAAA
+ ABoAAAAUAAAADwAAAAsAAAAIAAAABAAAAAIAAAABAAAAAb9AAATbkgAH6KIAC5p7EjqRdxN2jXUWsZyE
+ IdGwlzDkwag99smvQf/MsT//0LM9/9O1O//Vtzv/17k7/9q8O//avDz/2709/9y9Pv/dvj//3r9A/9/A
+ Qf/gwUP/4cNE/+HERv/ixUf/48ZJ/+TGS//lx0z/5cdN/+bIT//nyVD/6MpS/+nLU//pzFT/6cxV/+nN
+ Vv/ozFf/5cpZ/+HIW//dxV3/1sBh/8+7ZP/Numz/3MyI/+zfo//68L7//PXQ//354P/+/e////72///+
+ +v///v7///7////+/////v////7////+/////v////7////+/////v/////+/////f////z//fz4//f1
+ 7v/x7uP/4+DS/7m1pP+Mh3X/ZF9K/15YQP9dVzv/XFY3/1xWNv9dVjf/XVc4/2ReQv9taE//dnFc/5SQ
+ fv++vK7/6eje////9/////j////6////+/////z////9/////v/////////////////////////////+
+ /////v////7////+/v///vz///74///+9f/x7tz/4Nm7/87Dmf++sH3/r6Bk/6CPSv+dij3/ppE9/6+Z
+ Pf+4oD3/vqU9/8SrPf/JsD3/zbI9/9G0Pf/Utj3/1bc8/9a5Ov/Wujn/17k4/9e4Nv/XtzT/17cz/9a3
+ Mv/VtjH/1bUw/9SzL//Usi7/07Es/9KxK//SsSr/0bAo/8+vJ//OriX/zKwl/8mqKP/GqCv/xKYu/ryh
+ Mv61nDf+qpM4/I95Ke1uWBbeSjcCzzgnAL8nGgCvEwoAnwoFAJUFAgCMAAAAhAAAAHkAAABvAAAAZAAA
+ AFkAAABOAAAAQwAAADkAAAAxAAAAKAAAACAAAAAaAAAAFAAAAA8AAAALAAAACAAAAAQAAAACAAAAAQAA
+ AAGZZgAFxnEACduSAA6hgRhBmH8egZV+IMKhiijfspsz7MOpO/nLsD//zrI9/9G0O//Ttjr/1bg6/9e6
+ Ov/avDv/2rw8/9u9Pf/cvT7/3b4//96/QP/fwEH/38FC/+DCRP/hxEb/4sVH/+PFSP/kxkr/5MdL/+XH
+ Tf/myE7/5slP/+fKUf/oylL/6ctU/+nMVf/pzVb/6MxX/+XKWf/iyVr/3sZd/9jBYP/RvGP/z7xr/9zM
+ hP/q3J7/9+y3//vyyv/8+Nz//v3u////9P////n////9////////////////////////////////////
+ /////////////////v////3////8//39+v/6+fP/9vTs/+3q3//Nyr3/rKiY/46KeP+EgGv/fnlh/3hz
+ Wf93cVb/dnBW/3VvVf9+eWH/ioVw/5eSgP+vrJz/zszA/+7t5P////f////5////+v////z////9////
+ /v////7//////////////////////////////v////7////+/////v7///77///++P///vT/8u/b/+Ha
+ u//QxZr/wLJ9/7GiZP+jkkv/n40+/6iUPv+xmz7/uqI+/7+nPv/FrD7/yrA9/86yPf/RtD3/1LY9/9W4
+ O//WuTr/17o5/9e5N//XuDb/17c0/9e3M//WtzL/1bYx/9W1MP/Usy7/1LIt/9OxLP/SsSv/0bAp/9Cw
+ KP/Pryf/zq4l/8ysJf/Jqif/x6gq/8OmLP+9ojH/t501/6+XN/yVfSjwdWAV5FZCBNZBMADELSAAsRYL
+ AJ8MBQCUBwIAiwAAAIMAAAB4AAAAbgAAAGMAAABYAAAATQAAAEIAAAA4AAAAMAAAACcAAAAfAAAAGQAA
+ ABMAAAAOAAAACwAAAAcAAAAEAAAAAgAAAAEAAAABqlUABrl0AAvDhwARpYUgR6CIJ4uchyrQppAu7Lee
+ NPPFqzv7zLE8/8+zO//RtDr/1LY5/9a4Of/Yujr/2rw7/9q8PP/bvD3/3L0+/9y9Pv/dvj//3r9A/9/A
+ Qv/gwkP/4MNF/+HER//ixUj/48ZJ/+THSv/lx0z/5chN/+bJT//nylD/6MpS/+nLU//pzFT/6c1V/+jM
+ V//ly1j/4sla/9/HXP/Zwl//075i/9G+av/dy4H/6dqY//TosP/478T/+/bZ//797P////P////4////
+ /f////////////////////////////////////////////////////7////9/////P/+/vr//Pv3//r5
+ 8v/18+r/4+HW/9DNwP+9u6v/sa2c/6Wgjf+alX//lpF7/5SPef+RjXf/nJiE/6yolv+7t6f/zcq9/+Df
+ 1P/09Oz////4////+f////v////8/////f////7////+//////////////////////////////7////+
+ /////v////7+///++////vf///7z//Pv2//i27r/0saa/8O0fv+1pWX/ppVL/6KQPv+rlz7/tJ4+/7yj
+ Pv/BqD7/xq0+/8uxPf/Osz3/0bU9/9S3PP/VuDv/1rk6/9e6OP/XuTf/17g2/9e3NP/XtzP/1rYy/9W2
+ Mf/UtS//1LQu/9SyLP/TsSv/0rEq/9GwKf/Qryj/z68m/86uJf/MrCX/yaon/8eoKf/Dpiv/vqMv/7qf
+ M/+xmTT9mYIn831nFelgSwXdSTkByjMlALQWDQCfDAUAkwcCAIoAAACBAAAAdwAAAGwAAABhAAAAVwAA
+ AEwAAABBAAAANwAAAC8AAAAmAAAAHwAAABkAAAATAAAADgAAAAoAAAAHAAAABAAAAAIAAAABAAAAAbZt
+ AAexdgANtnkAFaeJJ06jjTCWo48z3ayXNfe6ojf6yKw5/c6yOv/Qszn/0rU4/9S3OP/WuDn/2Lo6/9q7
+ Ov/avDv/27w8/9u8Pf/cvT7/3b4//92+P//ewEH/38FD/+DDRf/hxEb/4sVH/+PGSP/kx0n/5MdL/+XI
+ Tf/myU7/58lP/+jKUf/py1L/6cxU/+nNVf/ozVf/5ctY/+PKWv/gyFz/2sRf/9XAYv/Tv2n/3ct9/+fX
+ k//x46j/9uy+//n11f/+/er////y////9/////3////+/////v////7////////////////////+////
+ /v////7////+/////f////3//v78//7++v/+/vj//fz1//j27v/y8eb/7Ond/9zZy//LyLj/u7em/7Wx
+ n/+yrpz/r6uZ/7u3p//Nyrv/3tzP/+ro3f/y8ej/+vrz////+f////r////7/////P////3////+//7/
+ /v/+/////v////7////+/////v////7+/////v////7////+/v///vv///73///+8//z8Nr/5Ny6/9XH
+ mf/Ftn7/uKdl/6mXTP+mkz//rpk//7agPv++pT7/w6k+/8iuPv/Nsj3/z7M9/9K1Pf/Utzz/1bg7/9a5
+ Ov/XuTj/17k3/9e4Nv/XtzT/1rcz/9W2Mv/VtjH/1LUv/9S0Lf/Usyz/07Ir/9KxKv/RsCn/0K8o/8+u
+ Jv/OriX/zKwl/8mqJv/HqSf/xKYp/8CkLf+8oTH/tZwz/Z6GJfaEbRXuaFUG5VNBAc85KgC2GA8AngwF
+ AJIHAgCJAAAAgAAAAHYAAABrAAAAYAAAAFUAAABLAAAAQAAAADYAAAAuAAAAJQAAAB4AAAAYAAAAEgAA
+ AA0AAAAJAAAABgAAAAMAAAACAAAAAYCAAAKVagAMlWoAGJhnACWkiCRcp5Ayn6iUNuSxmjf7vaQ4/Mqu
+ OP3Psjj/0bQ3/9K1N//Utzf/1rg4/9i5Of/aujr/2rs7/9u8PP/bvD3/3L0+/92+P//dvj//3sBB/9/B
+ Q//gw0X/4cRG/+LFR//jxkj/48ZJ/+THS//lyEz/5shO/+bJT//nylD/6MtR/+nMU//pzVX/6M1W/+bM
+ WP/kyln/4clb/9zFXf/YwmD/1cFm/9zJd//j0on/6tud//Hmtv/38tD//fzo////8f////f////8////
+ /v////7////+/////////////////////v////7////+/////v////3////9/////P////v////6//7+
+ +f/8/PX/+/ry//f27f/s6t//3tzP/9HPwf/Nyrz/yse5/8fFt//Rz8L/3tzR/+zq4P/08ur/+Pfw//z8
+ 9v////r////7/////P////3////9/////v/+//7//v////7////+/////v////7////+/v////7////+
+ /////v7///77///+9v///vL/8e3W/9/Xsv/NwI7/v7B0/7WkX/+rmUr/qpY//7GcP/+5oj//wKc//8Wr
+ Pv/Krz7/zrM9/9C0Pf/Ttj3/1Lg8/9a4O//XuTr/17o4/9i5N//XuDb/17c0/9a2M//VtjH/1LUw/9S0
+ L//Usy3/07Ir/9KxKv/RsCn/0K8o/8+vJ//Prib/zq0l/8ysJP/Jqyb/x6kn/8SnKf/BpCz/vaIw/7ed
+ MP2hiSX3iHIW8W9bCelZRwXRPS8DtxwQAJ0OBQCQCAIAhwIAAH4AAAB0AAAAaQAAAF4AAABUAAAASQAA
+ AD8AAAA1AAAALAAAACQAAAAdAAAAFwAAABEAAAAMAAAACQAAAAYAAAADAAAAAgAAAAH/gAACgHEAEoNn
+ ACWEaQA4noQhbKiSMKqumDjntp85/MGnN/3Lrzb+0LI2/9G0Nv/TtTb/1Lc2/9a4N//YuTj/2ro5/9q6
+ Ov/auzz/27w9/9y9Pv/cvT7/3b4//97AQf/fwUP/4MNF/+HERv/ixUf/4sVH/+PGSf/kx0r/5MdM/+XI
+ Tf/myU7/58pP/+jLUf/pzFL/6c1U/+jNVf/mzFf/5MtY/+LJWf/exlz/2sNe/9jCY//bx3H/3sx//+LT
+ kP/r4Kz/9O7K//385v////D////2////+/////3////+/////v////////////////////7////+////
+ /f////3////9/////f////z////8////+//+/vr//f34//z89v/6+vP/9PPr/+zr4v/l5Nr/4uHX/+Hf
+ 1v/g3tT/5ePa/+3r4//08+z/+Pjy//v69f/9/fj////7/////P////3////+/////v////7//v/+//7/
+ ///9/////f////7////+/////v7////+/////v////7+///++v///vX///7x/+7r0v/Y0Kn/w7aB/7en
+ Z/+yoVf/rZpH/66ZP/+1nz//vKU//8KpP//HrT//y7E+/9C0Pv/StT3/1Lc8/9W4PP/WuTv/17k6/9i6
+ Of/YuTf/17g1/9e3NP/WtjL/1bYx/9S1MP/UtC7/07Mt/9OyK//SsSr/0bAp/9CvKP/Prif/zq4m/82t
+ JP/MrCT/yasl/8epJv/Fpyj/waUr/76iLv+4ni7+o4wl+I13GfN1YQ7sXkwK00M0BrcdEgCcEAcAjgoE
+ AIUCAAB8AAAAcgAAAGcAAABcAAAAUQAAAEcAAAA9AAAAMwAAACsAAAAjAAAAHAAAABYAAAAQAAAADAAA
+ AAgAAAAFAAAAAwAAAAH//wABqqoAA3pmABl6ZgAyfmYAS5qCH3yrlDCzs5w767ujOv7EqTj+zrA1/tGz
+ NP/StDT/07U1/9W3Nv/Wtzf/2Lg4/9q5Of/aujr/2ro7/9q7PP/bvD3/3L0+/92+P//ewEH/38FD/+DD
+ Rf/hxEb/4sVH/+LFR//jxkj/48ZK/+THTP/lyE3/5slO/+fKT//oy1D/6MxS/+nNU//ozlX/581W/+XM
+ V//jylj/4Mha/93FXP/aw1//2sRq/9rGdf/byoP/5dmi//Hrxf/8++X////w////9f////v////9////
+ /f////7////////////////////+/////f////3////9/////f////3////8/////P////z//v77//7+
+ +//+/fr//f35//z89//6+vX/+fjz//j48v/4+PL/+Pfx//n58//6+vX//Pz4//39+f/9/fr//v77////
+ /P////3////+/////v////7////+//7//v/+/////f////3////9/////v////7+/////v////7////+
+ /v///vr///71///+8P/s6M7/0sqh/7msc/+un1r/r51P/6+bRP+ynT//uKI//7+nP//ErD//ya8//82y
+ P//RtT7/07Y9/9S4PP/WuTv/17k7/9e6Ov/Yujn/2Lk3/9e4Nf/WtjP/1bYy/9W1Mf/UtTD/07Qu/9Oz
+ LP/Tsiv/0rEq/9GwKf/Qryj/z64n/86tJf/NrST/y6wk/8mrJf/IqSb/xago/8KlKv+/oyz/uZ8s/qWO
+ JPqQehv2e2cS72VTDdVHOAi3IRQCmhAHAIwKBACDAgAAegAAAG8AAABlAAAAWgAAAE8AAABFAAAAOwAA
+ ADEAAAAqAAAAIgAAABsAAAAVAAAAEAAAAAsAAAAIAAAABQAAAAIAAAAB//8AAaqqAAN7agAdeWgAO3tn
+ A1mZgh6Hq5UxurefO+2+pTz/xqo4/86wNP/SszP/07Qz/9S1NP/VtjX/1rc2/9i4N//ZuTj/2ro5/9q6
+ Ov/auzz/27w9/9y9Pv/dvj//3sBB/9/BQ//fwkT/4MNF/+HERv/ixUf/48ZI/+PGSv/kx0v/5chN/+bJ
+ Tv/myU7/58pQ/+jMUf/ozVP/6M1U/+bMVf/lzFb/48pX/+HIWf/fxlv/3cRe/9rEZv/Yw27/18V6/+PW
+ mv/v6b7//Prf///+6////vL///75////+/////z////9/////v////7////+/////v////3////9////
+ /f////3////9//7//f/+//3//v/9//7//f/+//z//v/8//7//P/+//v//v/7//7/+v////r////6////
+ +v/+//v//v/7//7//P/+//z//v/8//7//f/+//3//v/9//7//v/////////////////+/////v////3/
+ ///9//7//f/+//7//v/+//3////9/////f/+/vz//v73//798P/+/On/6+bG/8/Gmf+0p2r/q5tT/66c
+ S/+xnUL/tp8//7ukP//BqT//xq4//8qwP//Psz7/0rY+/9O3Pf/VuDz/1rk7/9e6Ov/Yujn/2Lo4/9e5
+ N//XuDX/1rYz/9W2Mv/UtTD/07Qv/9OzLv/Tsyz/07Ir/9KxKv/RsCn/0K8o/8+uJ//OrSX/za0k/8us
+ JP/KqyX/yKkm/8aoJ//DpSn/wKMr/7ufK/6ojyX6k30c935qFPBoVg7WSjkItiIUApcTBwCJCgQAgAIA
+ AHYAAABsAAAAYQAAAFYAAABMAAAAQgAAADgAAAAvAAAAKAAAACAAAAAZAAAAFAAAAA8AAAAKAAAABwAA
+ AAUAAAACAAAAAf//AAGAgAAEfGwAIXpnBEN4ZwVmloEekquWMcC5oTzvwKc8/8esOP/PsTP/07My/9O0
+ Mv/UtTP/1bY0/9a3Nf/YuDb/2bk3/9m6OP/aujr/2rs7/9u8PP/cvT7/3b4//96/Qf/ewEL/3sFD/9/C
+ RP/gw0X/4cRG/+LFSP/jxkn/48ZL/+THTP/lyE3/5slO/+fKT//ny1D/58xS/+fMU//mzFT/5ctV/+TK
+ Vv/iyVj/4cdZ/97GXP/aw2L/1sJo/9XDc//h05P/7+e2//z52P///eX///7u///+9v////n////6////
+ /P////3////9/////v////7////9/////f////3////9/////f/+//3//v/9//3//f/9//3//f/9//3/
+ /f/9//3//v/9//7//P/+//z////8/////P////z//v/8//7//P/9//3//f/9//3//f/9//3//f/+//7/
+ /v/+//7//////////////////v////7////9/////f/+//3//v/+//3//v/8/////P////v//v76//79
+ 8v/+++r//vrh/+rivv/Ow5D/sqNj/6qYTf+vnEf/tJ5B/7miP/++pz//xKs//8iwP//Msj//0LQ+/9O2
+ Pv/Utz3/1bg8/9e6O//Xujr/2Lo5/9i6N//XuTb/1rc0/9a2Mv/VtjH/1LUw/9O0L//Tsy7/07Is/9Oy
+ K//SsSr/0bAp/9CvKP/Prif/zq0l/82tJP/LrCT/yqsk/8ipJf/GqCb/w6Yo/8GkKv+8oCv+qo8l+5Z+
+ HfeBbBXxa1cQ1U08CrQkFQKUEwgAhgoEAHwCAABzAAAAaQAAAF4AAABTAAAASQAAAD8AAAA1AAAALQAA
+ ACYAAAAeAAAAGAAAABMAAAAOAAAACgAAAAcAAAAEAAAAAgAAAAH//wABgIAABHxnACV1aAdMeWcJcpaC
+ H5utlzHGu6Q98MKpPP/JrTj/0LEz/9O0Mf/UtDH/1bUy/9W2M//XtzT/2Lg1/9m5Nv/Zujf/2bo5/9q7
+ O//bvDz/3L0+/92+P//ev0D/3sBB/97AQv/ewUP/4MNF/+HERv/ixUf/48ZJ/+PGS//kx0z/5chN/+bJ
+ Tv/nyk//58pQ/+fLUf/my1L/5stT/+XLVP/kylX/48lW/+LIWP/gx1r/28Re/9XAY//SwGv/3tGM/+3m
+ r//8+dH///3g///+6f///vP////3////+f////v////8/////f////7////+/////f////3////9////
+ /f////3//v/9//7//f/9//7//f/+//3//v/9//7//f/+//3//v/+//7//v/9/////f////3////9//7/
+ /v/9//7//f/+//3//v/9//7//f/+//3//v/9//7//v/+//////////////////7////+/////f////3/
+ /v/9//3//v/8//7/+/////r////5//7+9//+/O7//vrj//732f/p37X/zMCI/7CgW/+olkf/sJtE/7eg
+ QP+9pT//wak//8atP//KsT//zrM//9G1Pv/Utj3/1bg9/9a5PP/Xujv/17o5/9i6OP/XuTf/17g1/9a3
+ M//VtjL/1bUx/9S1MP/TtC//07Mt/9OyLP/Tsiv/0rEq/9GwKf/Qryj/z64n/86tJf/NrST/y6wk/8qr
+ JP/IqSX/xqgm/8SmKP/CpCr/vqAq/qyQJfuYgB34hW4W8m5ZEdVQPQqzJRUCkRMIAIMLBAB5AgAAcAAA
+ AGUAAABbAAAAUAAAAEYAAAA8AAAAMwAAACoAAAAjAAAAHQAAABYAAAASAAAADQAAAAkAAAAGAAAABAAA
+ AAEAAAABAAAAAICAAAR2aQcndmkGUHhnC3mVgCChq5YxybylPPHDqjz/yq43/9CyMv/TszD/1LQx/9W1
+ Mf/VtjL/1rYz/9e3NP/YuDX/2Lk3/9m6OP/Zuzr/2rw8/9u9Pf/dvj7/3b8//92/Qf/dwEL/3sFD/9/C
+ RP/hxEb/4sVH/+LFSf/jxkr/5MdM/+THTP/lyE3/5slO/+bKT//nylD/5stR/+bLUv/ly1P/5MpU/+TK
+ Vf/jyVf/4chY/9zEXP/WwGD/0r9n/93Og//p36P/9O/B//n20v/7+uD//v3u////8/////b////5////
+ +/////z////9/////v////3////9/////f////3////9//7//f/+//3//f/+//3//v/9/////f////3/
+ ///9/////v////7////////////////////+/////f////3////9/////f////3////9/////f////7/
+ ///+/////v////7////+/////v////3////9//7//f/9//7/+//+//r////4////9v/+/vP/+/jm//fy
+ 1v/z68b/4NWl/8i6ff+wn1b/q5dF/7OdQv+7o0D/wag//8WrP//Irz//zLI//8+0Pv/Stj7/1bc9/9a4
+ PP/WuTv/17o6/9e6Of/XuTf/17k2/9a4NP/WtzP/1bYx/9S1MP/TtC//0rMu/9KzLf/Ssiz/0rEq/9Gw
+ Kf/Qryj/0K8o/86uJv/NrSX/zKwj/8urI//JqiT/x6kk/8WnJf/Epif/wqQp/76gKv6tkCX7mYAe+IZv
+ FvJwWxHTUT4MsCYWAo4UCAB/CwQAdQIAAGsAAABhAAAAVwAAAEwAAABCAAAAOQAAADAAAAAoAAAAIQAA
+ ABsAAAAVAAAAEAAAAAwAAAAIAAAABgAAAAMAAAABAAAAAQAAAACAgAAEeWYGKHVlCVN4Zgp9lIAfpKyV
+ MMu8pDvyxKo7/8muNv/PsTH/07Mv/9O0MP/UtTH/1bYx/9a2Mv/XtzP/17c1/9i5Nv/Yujj/2bs6/9q8
+ O//bvTz/3L4+/9y+P//dv0D/3cBB/97BQv/fwkT/4MNF/+HER//ixUj/48ZK/+PGS//kx0z/5chN/+XI
+ Tv/myU//58pQ/+fKUf/mylL/5spT/+XKVP/lylX/5MpW/+PIWP/exVv/2cJf/9bAZf/bynv/4taT/+nh
+ q//w6sD/9vPT//385////+/////z////9v////n////7/////f////7////+/////f////3////9////
+ /f/+//3//v/+//7//v/9//7//f////3////9/////v////7////+/////////////////////v////7/
+ ///9/////f////3////9/////f////3////9/////f////3////9/////f////3////9/////f/+//7/
+ /P/+//r//v/5////9f////L//v7u//Xz2//s5cT/4dit/9PGkP/Ds3H/s6BS/7GbRf+4oUL/v6ZA/8Sq
+ Pv/Hrj7/y7E+/86zPv/RtT7/1Lc9/9a4PP/WuTv/17k6/9e6Of/XuTj/17k3/9a4Nf/WtzT/1bcy/9W2
+ Mf/UtTD/07Qv/9KzLv/Ssi3/0rIr/9KxKv/RsCn/0K8o/8+uJ//OrSb/zawk/8urI//KqiL/yKkj/8eo
+ JP/FpyX/w6Un/8GjKf+9oCr+rJAk+5mAHfiGbxbxcFsR0lI/Cq4nGAKKFQgAegsFAHECAABnAAAAXQAA
+ AFIAAABIAAAAPwAAADYAAAAtAAAAJQAAAB8AAAAZAAAAEwAAAA8AAAALAAAABwAAAAUAAAADAAAAAQAA
+ AAEAAAAAVVUAA3lmBih4YwlVd2UMgZR/H6eslC/NvKQ78sSqOv/JrTX/z7Ew/9KzLv/TtC//1LUw/9W2
+ Mf/VtjL/1rYz/9e3NP/XuDb/2Lk4/9m6Of/Zuzv/2rw8/9u9Pf/cvj7/3L8//9y/QP/dwEL/38JD/+DD
+ Rf/hxEb/4sVI/+LFSv/jxkv/5MdM/+THTP/lyE3/5shO/+fJUP/nylH/58pS/+bKU//mylT/5cpV/+XK
+ Vv/kyVf/4Mda/9zEXf/YwmP/2cZy/9vMg//e0pT/596t//Hsx//8++H////r////8P////T////4////
+ +v////3////+/////v////7////+/////v////7//v/+//7//v/+//7//v/+//7////+/////v////7/
+ ///+/////v////////////////////7////+/////v////7////+/////v////7////9/////f////3/
+ ///9/////f////3////9/////v////7//v/+//z//v/5//7/9/////P////v//796v/w7dD/4Nmy/9DF
+ k//Gt3v/vqxl/7WgT/+2n0X/vKRC/8OqQP/Hrj7/yrA+/82yPv/QtD3/07Y9/9W4Pf/XuTz/17o7/9e6
+ Ov/XuTj/17k3/9a4Nv/WuDT/1bcz/9W2Mv/VtjH/1LUw/9O0L//Ssy7/0rIs/9KxK//SsSr/0bAp/9Cv
+ KP/Prif/za0l/8yrJP/LqiL/yakh/8ipIv/GqCP/xacl/8OlJ//Boin/vZ8q/qyPJPuZfx33hm8W8HFc
+ EdBUQAqrKBkChhYJAHYMBQBsAwAAYwAAAFgAAABOAAAARAAAADsAAAAzAAAAKgAAACMAAAAdAAAAFwAA
+ ABEAAAANAAAACgAAAAYAAAAFAAAAAwAAAAEAAAABAAAAAFVVAAN2ZAYpd2IJVnhmDIKSfR6prJQuzb2j
+ OvLEqjr/ya00/86xL//Ssy7/07Qv/9O0L//UtTD/1bYx/9a2Mv/XtzP/17g1/9i5N//Yujn/2bs6/9q8
+ O//bvTz/2749/9y+Pv/cv0D/3cBB/97BQ//gwkT/4MNG/+HER//ixUn/4sVK/+PGS//jxkv/5MdM/+XI
+ Tv/myE//58lQ/+fJUf/nylL/5spT/+bKVP/mylX/5cpW/+HHWf/exVz/28Ng/9nEa//Xxnf/18iE/+HW
+ nf/t5rn/+vbU//374f/9/Oj//v3w////9f////j////7/////f////3////9/////v////7////+////
+ /v////7////+/////v//////////////////////////////////////////////////////////////
+ ///////////////////+//7//f/+//3//v/9//7//f/+//3//v/9//7//f/9//7//f/+//z////6////
+ 9//+/vT//f3t//z75v/6+N7/6uXB/9fOoP/EuH//va1q/7uoW/+5okz/u6NF/8GoQv/HrUD/y7A+/82y
+ Pv/QtD7/0rU9/9S3Pf/WuTz/17o8/9i6O//Yujn/17k4/9a4Nv/VtzX/1bc0/9W2M//VtjH/1LUw/9O0
+ L//TtC//0rMu/9GyLP/RsSv/0bAp/9CvKP/Prif/zq0m/82sJf/MqyP/yqoh/8mpIf/IqSL/xqgj/8Sm
+ Jf/DpCf/waIp/7yeKv6qjyT6l34d9oRtFe9xWhDOVEALpykaAoIWCQByDAUAaAMAAF4AAABUAAAASgAA
+ AEAAAAA3AAAALwAAACcAAAAgAAAAGgAAABUAAAAPAAAADAAAAAkAAAAGAAAABAAAAAIAAAABAAAAAAAA
+ AABVVQADeWYGKHZkCVR4ZgqAlH8dp62VLsy9ozryxKo6/8mtNP/OsC//0bIt/9KzLv/TtC//1LUw/9W2
+ Mf/WtjL/17cz/9e4Nf/XuTb/2Lo4/9m7Of/Zuzr/2rw7/9u9PP/cvj7/3L4//92/QP/ewUL/38JD/+DD
+ Rf/hxEb/4cRI/+LFSf/ixUn/48ZK/+PGS//kx03/5chO/+bIUP/nyVH/58lS/+fKU//mylT/5spU/+XK
+ Vf/iyFj/38Zb/9zFX//ZxGf/18Nv/9XEef/e0JD/6t+p//buwf/69dH//Pne//396/////H////1////
+ +P////r////7/////P////3////9/////f////3////+/////v////7/////////////////////////
+ /////////////////////////////////////////////////////////v/+//7//v/9//7//f/9//3/
+ /f/9//3//f/8//7//P/+//v//v/5////9v////T//v7w//v55P/49Nf/8+7K/+Tbrv/RxY//vrBw/7qp
+ X/+7p1X/vaVK/8CnRf/Fq0L/yq9A/82yP//QtD7/0rU+/9S2Pf/VuD3/1rk8/9e6O//Yujr/2Lo5/9e5
+ OP/WuDb/1bc0/9S2M//UtjL/1LYx/9S1MP/TtC//07Qv/9KzLv/Rsiz/0bEq/9CwKf/Qryj/z64n/86t
+ Jv/NrCT/zKsj/8qqIv/JqSH/yKki/8aoJP/EpiX/wqQn/7+hKv+7nSv+qY4k+ZV8G/SBaxPsbloPylNB
+ CaIpGQJ8GAkAbA0FAGIDAABYAAAATwAAAEUAAAA7AAAAMwAAACsAAAAkAAAAHQAAABgAAAATAAAADgAA
+ AAsAAAAIAAAABQAAAAMAAAACAAAAAAAAAAAAAAAAVVUAA3xiByd4ZQZTeWcKfpN+HaarlS7MvKM68sSq
+ Of/JrTT/zrAv/9GyLf/Ssy7/07Qv/9S1MP/VtjH/1rYy/9e3M//XuDT/17k2/9i6N//Yujj/2bs5/9q8
+ Ov/avDz/2709/9y+Pv/dv0D/3sBB/97BQv/fwkT/4MNF/+HER//ixUf/4sVI/+LFSf/ixUv/48ZM/+XH
+ Tv/myE//5shQ/+fJUf/nylP/58pT/+bKU//lylT/48lX/+HHWv/exlz/2sRi/9bCaP/SwG//28uC/+fZ
+ mf/y5q//9+7C//r10//9/OT////u////8f////X////4////+v////v////8/////P////z////9////
+ /f////7////+////////////////////////////////////////////////////////////////////
+ //////////////7//v/+//7//v/9//7//f/+//z//v/8//7/+//+//r//v/5//7/9v////P////w//79
+ 6//59tv/8+3J/+3ktv/d0Zv/y71+/7ioYf+3pFT/vKZO/8GoSf/Fq0X/ya5C/82xQP/QtD//0rU+/9S2
+ Pv/Vtz3/1rg9/9e5PP/Xujv/2Lo6/9i6Of/XuTj/1rg2/9S2NP/TtTL/07Ux/9S1Mf/UtTD/07Qv/9O0
+ L//Ssy7/0bEs/9CwKv/Qryj/z64n/86tJv/NrCX/zKsk/8urI//LqiL/yaoh/8ipI//GpyT/xKYl/8Gj
+ KP++oSr/uZwr/qeNJPiSexryfmkS6WxZDsZUQQieKxoCdhkKAGYOBQBdAwAAUwAAAEkAAABAAAAANwAA
+ AC8AAAAoAAAAIAAAABoAAAAVAAAAEQAAAAwAAAAKAAAABwAAAAQAAAADAAAAAQAAAAAAAAAAAAAAAFVV
+ AAN5ZQAmeWMGUHlmCHqUgByirZYuybykOvHDqTn/yKw0/82wLv/Rsi3/0bMu/9K0L//TtC//1LUw/9W2
+ Mf/WtzL/1rgz/9e4Nf/XuTb/2Lo3/9m6Of/Zuzr/2rw7/9u9PP/cvT7/3b4//92/QP/ewUL/38JD/+DD
+ RP/gw0X/4cRG/+HER//ixUj/4sVK/+PGS//kx03/5cdO/+bIT//nyVH/58lS/+fKUv/mylL/5cpT/+TJ
+ Vv/iyFj/4Mda/9vEXv/WwWL/0r9m/9nHdv/j0or/7N2c//Lnsf/38Mb//Pna//785v/+/ev//v7x////
+ 9f////f////5////+/////v////8/////P////3////9/////v////7////+/////v//////////////
+ /////////////////////v////7////+/////v7///7+///+/v////7////9/////f////z////7////
+ +/////r////4////9f/+/vP//f3t//z75//7+eD/9O/M/+zjtv/k16D/1ceH/8a2bv+2pVX/t6NM/76n
+ Sv/FrEf/ya9E/8yxQv/QtED/0rU//9S2Pv/Vtz7/17k9/9e5PP/Xujv/17o6/9i6Of/YuTn/17k4/9W3
+ Nf/UtjP/07Ux/9O1Mf/UtTH/1LUw/9O0L//Ssy7/0bIt/9GxLP/QsCr/z68o/8+uJ//OrSb/zawl/8yr
+ JP/LqyP/y6oi/8qpIv/HqCP/xack/8OlJv/Aoyj/vaAr/7ecLP2liyP2kHka7npmEORoVgvBUkAHmCsb
+ AHAYCwBgDwYAVwMAAE0AAABEAAAAOwAAADMAAAArAAAAJAAAAB0AAAAXAAAAEwAAAA8AAAALAAAACAAA
+ AAYAAAAEAAAAAgAAAAEAAAAAAAAAAAAAAABVVQADdV8AI3plA0l7ZgVwl4AcmqyVLcW6ojnwwac5/8er
+ M//Nry7/0LEs/9GyLf/Rsy7/0rQv/9O1MP/UtjH/1bcy/9W3M//WuDT/17g1/9i5Nv/Yujj/2bs5/9q8
+ Ov/bvDz/3L09/9y+Pv/dv0D/3cBB/97BQv/fwkP/4MNE/+DDRf/hxEf/4sVI/+LFSf/jxkr/5MZM/+XH
+ Tf/lyE7/5shP/+bJUP/myVD/5spR/+XKUv/kyVT/4shW/+HHWP/dxVv/2cNe/9bBYf/ZxW3/3sx7/+PS
+ iP/q3Jz/8eey//nxyP/899b//frg//796v////D////z////9v////n////6////+/////z////8////
+ /f////3////+/////v////7///////////////////////////////////7////+/////v////7+///+
+ /v///v7////9/////f////z////7////+v////n////3////9P////H//v3t//r44v/389b/8+7J/+rh
+ s//f1Jz/1caF/8y8cv/EsmH/u6hQ/72oSv/DrEj/yK9F/8yyQ//PtEL/0rZA/9S3P//Vtz7/1rg9/9e5
+ PP/Xujv/17o6/9e6Of/YuTj/2Lk3/9e4Nv/WtzX/1LUz/9O0Mf/TtDH/07Qw/9O0L//Ssy7/0bIt/9Gy
+ Lf/QsCv/0K8p/8+uJ//OrSb/zq0l/82sJP/MqyP/zKsj/8uqIv/KqSL/x6cj/8WmJP/DpCb/v6Ep/7uf
+ Lf+1mi79ookk8ox1GOd2YAvZZVEHtlA8BJAsGwBpGgsAWhAGAFEEAABHAAAAPwAAADcAAAAuAAAAJwAA
+ ACEAAAAaAAAAFQAAABEAAAANAAAACQAAAAcAAAAFAAAAAwAAAAEAAAAAAAAAAAAAAAAAAAAAgIAAAnhg
+ ACB6ZwBDfWcDZpiBGpKtlS3AuaA577+lOP/GqjP/zK4u/9CxLP/Qsi3/0bMu/9G0L//StC//07Uw/9O2
+ Mf/VtzL/1rcz/9e4Nf/YuTb/2Lo3/9m6OP/Zuzn/2rw7/9u9PP/cvj7/3L8//92/QP/dwEH/3sFC/9/C
+ Q//fwkX/4MNG/+LFR//ixUj/48ZK/+PGS//kx0z/5cdN/+XITv/myU7/5clP/+XJUP/lyVD/5MlS/+PI
+ VP/hx1X/38ZY/9zFWv/aw13/2sRk/9rGbP/ax3T/4tGH/+zdnv/26rX/+/HG//z31f/9++P////s////
+ 8P////P////3////+P////r////8/////P////z////9/////f////7////+////////////////////
+ ///////////////+/////v////7////+/v///v7///79/////f////z////8////+/////n////3////
+ 9f////H////u//395//49Nb/8uzE/+zisv/f05r/0sSB/8a1af/CsF3/wa5U/8CrS//DrEf/yK9G/82y
+ RP/QtEL/0rZB/9S3P//VuD7/1rk+/9e5Pf/Xujz/17o7/9e6Ov/XuTn/2Lk3/9i4Nv/XtzX/1rY0/9W1
+ Mv/UtDH/1LQw/9O0MP/TtC//0rMu/9GyLf/QsSz/z7Aq/8+vKf/Prif/zq0m/82tJf/NrCT/zKwj/8yr
+ Iv/LqiL/yqki/8enI//FpST/wqMm/76gKv+5ni7/s5kx/KCHJO6JcRbfb1oGzmBLA61MOQKHLBoAYhwM
+ AFMRBwBKBAAAQQAAADkAAAAyAAAAKgAAACMAAAAdAAAAFwAAABIAAAAPAAAACwAAAAgAAAAGAAAABAAA
+ AAIAAAABAAAAAAAAAAAAAAAAAAAAAICAAAJ2ZAAcfWgAO4BpAFqagRqIrJMtu7WeOO6+pDf+xaoz/syv
+ Lv7PsCz/z7Et/9CyLv/Qsy7/0bQv/9K1MP/TtTD/1LYy/9a3M//XtzT/2Lg1/9i5Nv/Yujf/2bs5/9q8
+ Ov/bvTz/3L49/9y+Pv/cv0D/3cBB/93AQf/ewUL/38JE/+DDRf/hxEb/4sVI/+PGSf/jxkr/48ZL/+TH
+ TP/kyEz/5chN/+XJTv/lyU7/5MlP/+TJUP/jyFL/4sdT/+HHVf/fxlf/3sVZ/9vEXP/XwWD/1L9k/9vI
+ df/m1Yv/8eGi//bqtf/58cb/+/jX//z74//9/Oj//v3u///+8v///vX///73////+v////r////6////
+ +/////z////8/////f////3////9/////f////3////9/////f///v3///79///+/f///v3///78///+
+ +/////v////6////+v/+/vj//v72//798//9/e///Pzp//v64//599v/8u3G/+vhsP/j1Zr/1saC/8i3
+ a/+8qVP/vahM/8GrSv/Frkf/ybFF/8yzRP/QtUL/07dB/9S4QP/VuT//17o+/9e6Pf/Xujz/17o7/9e6
+ Ov/Xujn/17k4/9e4Nv/XuDX/17c0/9a2M//VtTL/1LQx/9S0MP/TtC//0rMu/9GyLf/QsSz/z7Ar/8+v
+ Kv/Pryj/zq4n/86tJf/NrSX/zawk/8ysI//MqyL/y6oh/8qoIf/HpiP/xKQk/8GhJv+8nyv/t5ww/7GX
+ MvuehCXphW0U12pUA8JcRgChSTUAfioZAFsaCgBNDwgARAQAADwAAAA0AAAALQAAACYAAAAfAAAAGgAA
+ ABUAAAAQAAAADQAAAAkAAAAGAAAABQAAAAMAAAABAAAAAQAAAAAAAAAAAAAAAAAAAACAAAAChWQAF4Vl
+ ADCIbABJn4QdequRLrOymjbruaA2/sKnMv7KrS/+za8t/86wLf/PsS7/0LIu/9GzL//StC//07Uw/9S2
+ Mf/VtjL/1rcz/9e3NP/YuDX/2Lk2/9m6OP/auzr/27w7/9y9PP/cvT3/3L4+/9y/P//dwED/3sBB/9/B
+ Q//gwkT/4MNF/+HERv/ixUf/4sVJ/+PGSf/jxkr/5MdL/+TIS//kyEz/5clN/+XJTv/kyU//5MhQ/+PI
+ Uv/iyFP/4cdV/+DGV//dxVn/2sNc/9fBX//axmz/4M59/+bVjf/q3J3/7eKt//Dovf/z7sr/9/PU//z4
+ 3v///Of///zr///98P////T////0////9f////X////2////9/////j////4////+P////j////4////
+ +P////j///74///++P///vj///73///+9////vb////1////9f////T//v3x//376//8+eX/+vbe//Tw
+ 0v/v6sf/6eO6/+PaqP/d0JX/1saC/8+9cf/HtGD/wKtQ/8KsSv/Gr0j/yrFF/82zQ//PtUP/0rdC/9S4
+ Qf/VuT//1rk+/9e6Pf/Xujz/2Lo7/9i6Ov/Xujn/17k4/9e5N//XuDX/17c0/9a2M//VtjL/1bUx/9S0
+ MP/TtC//0rMu/9KzLf/Rsiz/0LEr/8+wKv/Pryn/zq4n/86uJv/OrSX/za0k/8ysI//MqyL/y6oi/8up
+ If/JqCH/xqYj/8OjJf/AoSf/up0s/7OZMP+rkzL6m4Im4oNqFshnTwOuV0AAkEYvAHEoGQBTGgsARhAE
+ AD4AAAA2AAAALwAAACgAAAAhAAAAHAAAABcAAAASAAAADgAAAAsAAAAIAAAABQAAAAQAAAACAAAAAQAA
+ AAEAAAAAAAAAAAAAAAAAAAAAAAAAAZZpABGRZwAllGsAOaSFHm2qkS6rrZU26bScNP6+pDL+yKsv/syu
+ Lv/Nry7/zrAu/8+xLv/Rsi7/0rQv/9O1MP/UtTH/1bUy/9a2M//XtzT/17g1/9i5Nv/ZuTf/2ro5/9u7
+ Ov/cvDv/3L08/9y+Pf/cvj7/3b8//97AQP/fwEL/38FD/+DCRP/gw0X/4cRG/+HER//ixUj/4sZI/+PG
+ Sf/jx0r/5MhL/+XITP/lyU7/5clP/+TJT//kyVD/48hS/+PIU//jyFT/4MdW/93FWf/aw1v/2sRk/9rG
+ bv/byHj/3s2F/+HTlP/l2aP/6uCx//LqwP/588////rb///74v///ej////t////7v///+/////w////
+ 8f////L////z////8/////P////z////8/////P////z///+8////vP///7z///+8v///vH///7w////
+ 8P///+/////u//396v/8+eH/+vXY//buzP/s5Lv/4tmq/9nPmf/Tx4n/zr96/8m4av/HtGD/xrFW/8av
+ TP/IsEj/y7JG/8+1Q//RtkL/07dC/9W4Qf/WuUD/1rk//9e6Pv/Yuz3/2Ls8/9i7O//Yujn/17o4/9e5
+ N//XuDb/1rc1/9a3NP/WtjP/1bUy/9S1Mf/UtDD/07Mv/9KzLv/Rsi3/0LEs/8+wKv/PsCn/zq8o/86u
+ J//OriX/za0k/82sJP/MrCP/y6si/8uqIf/KqCD/yacg/8alI//CoyX/vqAo/7ebLf+vlTH/p44z+ZZ+
+ KduAZxe6YkkDmVM7AH5CKwBlJRQATBgIAEAOBQA4AAAAMAAAACoAAAAjAAAAHQAAABgAAAAUAAAADwAA
+ AAwAAAAJAAAABwAAAAUAAAADAAAAAgAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAGqagAMp2wAGqxz
+ ACiphiBfqI4uoqeRMuWvmDP8uqAx/ceqMP3LrS//zK4u/82vLv/PsS7/0LIu/9KzL//TtC//1LUw/9W1
+ Mf/WtTL/1rYz/9e3NP/YuDX/2bk3/9q5OP/bujr/27s7/9u8O//bvTz/3L49/92+Pv/ev0D/3sBB/9/B
+ Qv/fwkP/38JE/+DDRf/hxEb/4cRG/+LFR//ixkj/48ZJ/+PHSv/kyEz/5chN/+XJTv/lyU7/5MlP/+XJ
+ UP/lyVH/5clS/+LHVP/gxlb/3cVY/9nDXP/WwWH/0r9m/9PBcP/Xx33/3MyK/+PVmf/s4Kv/9u29//z1
+ y//899P//Pnb//z74v/8/OP//fzl//385//9/Oj//fzp//796v/9/er//f3q//396v/9/er//f3q//39
+ 6v/9/Or//fzq//386v/9/On//fzo//375//9/OX//Pvk//z74v/6+N3/+PPS//Xtxv/w5rj/5Nik/9fK
+ j//LvXz/x7dv/8KxYv+/rFf/wq1R/8ewTf/Lskn/zrRG/9C2RP/TuEL/1bhB/9a5Qf/XuUD/17o//9i6
+ P//Yuz7/2Ls9/9i7O//Yuzr/2Lo5/9e5N//XuTb/1rg1/9a3NP/WtjP/1bUy/9S1Mf/UtTD/07Qv/9Kz
+ Lv/Rsi3/0bEs/9CxK//PsCr/z68o/86vJ//Orib/zq0l/82tJP/MrCP/zKsj/8uqIv/KqSH/yqgg/8im
+ IP/FpSP/waMm/76hKf60mS3+q5Ix/qGJM/eSeynSfGIZq1w/BIVLMQBtPSYAWCITAEQWCQA6CgUAMgAA
+ ACsAAAAlAAAAHwAAABkAAAAVAAAAEAAAAAwAAAAKAAAACAAAAAYAAAAEAAAAAwAAAAIAAAABAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAtm0AB6VpABGqcQAbooMfUqKIKZahiyzbqZIu9badL/jCqDH8yKwx/8ut
+ MP/Nry7/zrAu/9CxLv/Ssi//1LQv/9S0MP/VtTH/1rUy/9a2M//XtzT/2Lc0/9i4Nv/auTj/27o5/9u7
+ Ov/buzv/27w7/9u9PP/cvj7/3b4//96/QP/ewEH/3sFC/9/CQ//fwkT/4MNF/+HERv/hxUf/4sVH/+PG
+ SP/jx0n/5MdK/+XIS//lyEz/5chN/+XJTv/lyU//5clP/+XJUP/jyFL/4cdU/9/GVv/cxFn/2cNd/9bA
+ Yf/Wwmf/2MVx/9rIev/ezoX/5NWS/+vdn//u46r/7+Wx/+/nuP/w6r//8uvD//Tux//178r/9vHN//fx
+ z//48tH/+PLR//fy0f/38tH/9/LR//fy0f/38tH/9/LR//fy0f/38tH/9/HP//bvzP/07sr/8+zG//Dq
+ wv/u577/6+S3/+nfrf/m2qP/4tSX/9rLif/SwXr/y7ls/8i2Y//Fslr/xK9R/8ewTv/Ls0v/z7VH/9G3
+ Rv/UuET/1rpC/9a6Qf/XukD/2LpA/9i6P//Yuz7/2bs9/9m7PP/Zuzv/2bs6/9i6Of/XuTf/17g1/9a3
+ NP/WtjP/1bUy/9S1Mf/UtDD/07Qv/9OzLv/Ssi7/0bIt/9GxLP/QsCv/z68p/8+vKP/Orif/zq0l/86t
+ JP/NrCT/zKsj/8yrIv/LqiH/yqkg/8moH//IpiD/xKQj/8CiJ/+7nyr+r5Qs+6KKLfmVgC3wiHIlx3Vc
+ GZtWOwVxRSwAXDYiAEwiEQA8FAoAMwsGAC0AAAAmAAAAIAAAABsAAAAWAAAAEgAAAA4AAAAKAAAACAAA
+ AAYAAAAEAAAAAwAAAAIAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKpVAAOfYAAIpG0ADpt+
+ HkWYgCOLl4Ml0aGMKO2xmS30v6Uy+8arM//JrDH/zK4w/86vL//QsS//0rIv/9SzL//VtDD/1bQx/9a1
+ Mv/WtTL/17Yz/9e3NP/YuDb/2bk3/9q5Of/aujr/2rs6/9q8O//bvDz/2709/9y+Pv/dvj//3b9A/97A
+ Qv/ewUL/38JD/9/CRP/gw0X/4cRG/+LFR//jxkj/48ZI/+PHSf/kx0r/5MdL/+TITP/kyE3/5chO/+XI
+ Tv/lyU//5MhR/+LHUv/hx1T/38ZW/9zFWf/aw1z/2cNg/9nEZv/ZxWv/2sdy/9zKef/fzYD/4NCH/+HS
+ jf/i1JT/49ea/+bboP/q36f/7eKt/+/ksP/x5rT/8ui3//Lot//x6Lf/8Oi2//Dotv/w6Lb/8Oi2//Dn
+ tv/x57b/8ee2//DltP/u46//7OCr/+jcpf/k2J7/39OX/9vOkP/Yyof/1sV//9PBdv/Qvm7/zbpm/8q3
+ Xv/KtVn/yrRT/8q0Tv/NtEv/0LZJ/9O3R//UuUX/1rpE/9i7Qv/Yu0H/2LtA/9m7P//Zuz7/2bs+/9m7
+ Pf/Zuzz/2bs7/9m7Ov/Yujj/17k3/9e4Nf/WtzT/1bYz/9W1Mv/UtDH/07Qw/9OzL//Ssy7/0rIt/9Gx
+ LP/RsCz/0K8q/8+vKf/Prif/zq0m/86tJf/OrCT/zasj/8yrI//MqiL/y6kh/8qpIP/JqB7/x6Yf/8Ok
+ JP+/oSj/uZ0r/amPKvmZgin0iHYm6H1pIbttVxaKUDQDXT0lAEswHABAIg8ANBcGAC0NAAAnAAAAIQAA
+ ABwAAAAXAAAAEwAAAA8AAAAMAAAACQAAAAYAAAAFAAAAAwAAAAIAAAABAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAVVVAAOPeRY5kHkcfo96HcSchSPirZUs7rujM/nDqTX/x6sz/8ut
+ Mf/Ory//0LAv/9KxL//Usi7/1bMv/9a0MP/WtDH/1rUy/9a2M//WtjP/17c1/9m4N//auTn/2ro6/9q6
+ Ov/auzr/2rw7/9u8PP/cvT7/3L4//92/QP/dwEH/3sBC/97BQv/fwkP/4MJE/+DDRf/hxEb/4sVH/+PG
+ SP/jxkj/48ZI/+THSv/kx0v/5MdM/+XITP/lyE3/5chN/+TIT//jyFD/4shS/+HHVP/gx1b/3sZY/9zF
+ Wv/bxFz/2cJe/9fBYP/WwGL/1L9k/9S/Z//Vwm3/1sRy/9fGeP/cy4D/4dGI/+XVkP/o2JX/6tuZ/+zd
+ nf/s3Z3/6t2d/+ndnP/p3Zz/6d2c/+ndnP/q3Jz/6tyc/+vcnP/p2pj/5taT/+PTjv/fzYb/2Md9/9LA
+ c//Nu2v/y7dk/8i0Xf/HsVf/yLJV/8m0VP/LtVL/zLZP/863Tf/QuEr/0rhJ/9S5R//WukX/2LtE/9m8
+ Q//avEL/2r1B/9q9QP/ZvD//2bw+/9q8Pf/auzz/2rs8/9m7O//Zujr/2Lo4/9e4Nv/XtzX/1rYz/9W1
+ Mv/UtDH/07Mw/9OzL//Ssy7/0bIt/9GxLP/RsCz/0a8r/9CvKv/Prij/zq0n/86tJf/OrCT/zask/82r
+ I//MqiL/y6ki/8upIf/JqB//yKce/8amH//CoyT/vaAp/7WaLP2kjCn0j3sl7XtrIN5xYBytZE8TekUp
+ A0o0GgA7LBQANBwLAC0UBwAnCAAAIgAAABwAAAAYAAAAFAAAAA8AAAAMAAAACgAAAAcAAAAFAAAAAwAA
+ AAIAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjXcWL452
+ FWyOdxWpm4Qfy6uTLOC5oDb1wKc4/8WqNf/JrDL/za4w/8+vL//SsC7/1LIu/9SyL//VszD/1rQx/9a0
+ Mf/WtTL/1rYz/9e2NP/Ytzb/2bg4/9m5Of/aujn/2ro6/9q7O//bvDz/2709/9y9Pv/cvj//3b9A/93A
+ Qf/ewEH/38FC/9/BQ//gwkT/4MNF/+HERv/ixUf/4sVH/+PGSP/jxkn/48ZK/+THS//kx0v/5MdM/+XI
+ TP/kyE7/5MhP/+PIUP/iyFH/4cdT/+HHVP/fxlX/3cVX/9vEWP/awln/2MFa/9e/W//Wv13/1sBh/9bB
+ Zf/Xw2r/2sdw/93Kd//gzX3/4s+B/+PRhf/k04j/49OH/+PSh//i0ob/4dKG/+HShv/h0YX/4dGF/+LR
+ hf/i0YX/4c+D/+DMf//eynr/2sZ0/9bBbP/RvWT/zrle/8y3Wf/LtVT/yrNQ/8y1T//Otk7/z7hM/9C4
+ S//SuUr/07pI/9W6R//Xu0X/2LtE/9m8Q//avEL/2r1B/9q9QP/avD//2rw+/9q8Pf/auzz/2rs8/9q6
+ O//Zujn/2Lo4/9i5N//XuDX/1rc0/9W2Mv/VtTH/1LQx/9O0MP/Ssy7/0bIt/9GyLP/RsSv/0bAr/9Gv
+ Kv/Qrin/z64n/86tJv/NrCX/zask/82rI//MqiL/y6ki/8upIv/KqCH/yKcg/8emIP/EpSH/vqEl/7md
+ Kv+xmC36oIgo6It2INZ1ZBnAbFkWlVxJD2k9JAA/LRQAMygRAC0aBwAnDwgAIgkAAB0AAAAYAAAAFAAA
+ ABAAAAANAAAACgAAAAgAAAAGAAAABAAAAAIAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAYlvByeMcwtZjXQPi5qCHbGsky3Qt5858L2lPP/Cpzj/x6o0/8us
+ Mf/Ori//0bAu/9OxLf/Usi7/1LIv/9WzMP/VtDH/1rQx/9a1Mv/XtjT/2LY1/9i3N//ZuDj/2bk5/9q6
+ Of/auzr/27s7/9u8PP/bvT3/3L0+/9y+P//dv0D/3r9A/97AQf/fwEL/38FD/9/CRP/gw0X/4MNF/+HE
+ Rv/ixUf/4sVI/+PGSP/jxkn/48ZK/+THS//kx0z/5MdN/+THTf/kyE7/48hP/+PIUP/jyFH/4sdS/+DG
+ Uv/fxVP/3sVU/9zDVf/bw1b/2sJY/9rCWv/Zw1z/2cNf/9rEZP/axWj/28Zs/9vHb//cyHH/28hz/9vI
+ c//ayHL/2sdy/9nHcf/YxnH/2MZw/9jGcP/ZxnD/2cVw/9rEbv/Zw2v/2cJo/9fBZP/Vvl//1Lxa/9K7
+ Vf/RulL/0blP/9G5TP/SuUv/07pK/9S7Sf/Vu0j/1rxH/9e8Rv/YvEX/2bxE/9m9Qv/avUH/2r1A/9u9
+ P//bvD7/2rw+/9q8Pf/auzz/2rs7/9q6O//aujr/2bk4/9i5N//XuDb/1rc0/9a2Mv/VtjH/1LUx/9S0
+ MP/TtC//0rMu/9GyLP/QsSv/0LAq/9CvKf/Qryn/z64o/86tJv/NrCX/zask/8yrI//MqiL/y6ki/8qo
+ Iv/KqCL/yaci/8emIv/FpSL/waMj/7qeJ/+0mSv/rJMt+JyFJduHcRy9b1oSnmRRDHtUQAlYOCAANy4R
+ ACwhDQAnFwgAIhIAAB0KAAAZAAAAFAAAABEAAAAOAAAACwAAAAkAAAAHAAAABAAAAAMAAAACAAAAAQAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACIbwAeim0ARoxu
+ Am2cgRiWqpIuwLOcPeu6oz7+wKY6/sapNf7KqzL/za0w/9CvLv/SsC3/07Et/9SyLv/Usi//1bMw/9a0
+ Mf/WtDH/17Uz/9e2NP/Xtjb/2Lc3/9m4OP/auTn/2ro6/9q7Ov/avDv/2708/9u9Pf/cvT7/3b4//92+
+ P//ev0D/3sBB/97AQv/ewUP/38FD/9/CRP/gw0X/4cRG/+LFR//ixUf/4sVH/+PGSf/jxkr/48ZL/+TH
+ TP/kx0z/5MdM/+TITf/kyE3/5chO/+TITv/jx07/4sdO/+HGT//gxlD/4MZR/9/FUv/dxFP/3MRU/9vD
+ Vf/Zwlj/2MFa/9e/XP/Wv13/1L9e/9O/X//Tvl//0r5e/9K+Xv/RvV3/0Lxd/8+7XP/Qu1v/0Ltb/9G7
+ W//Su1v/07tZ/9S7V//Uu1X/1btS/9W8UP/WvE3/171M/9e+S//Yvkn/2L5I/9m/R//Zvkb/2r5F/9q+
+ RP/avkT/2r5D/9u+Qv/bvkH/271A/9u9P//bvT7/27w9/9u8Pf/auzz/2rs8/9q6O//aujr/2rk5/9m4
+ N//YuDb/17c0/9a2M//VtjH/1LUw/9S1MP/UtTD/07Qv/9KzLf/RsSv/0LAq/8+wKf/Pryj/z64n/86t
+ Jv/NrSX/zawl/8yrJP/MqiP/zKoi/8upIv/KqCL/yaci/8emIv/FpSP/wqQk/7+iJv63nCn+r5Ys/qWP
+ LfWXgSTMgWsXpGROBH1ZQgNhSzYARywcAC4iDQAmHwgAIRIAABwLAAAYDQAAFAAAABAAAAANAAAACwAA
+ AAkAAAAHAAAABQAAAAMAAAACAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAhm0AFYdtADGNawBMmYAaeKSMLquplDnfsJk8+LqgOfrCpTb9x6oz/8us
+ MP/Ori7/0bAs/9KwLf/SsS7/07Iv/9SyL//UszD/1bQw/9a1Mv/WtTP/17Y1/9e3Nv/YuDf/2bk4/9q6
+ OP/aujn/2rs6/9u8O//bvDz/2709/9y9Pf/cvj7/3b8//96/QP/ewEH/3sBC/9/BQv/fwkP/4MNE/+DD
+ Rf/hxEX/4cRG/+HERv/ixUf/4sVJ/+PGSv/jxkr/48ZK/+THS//kx0v/5MdL/+XITP/kyEz/5MdM/+PH
+ Tf/ix03/4sdO/+HHTv/hxk//38VQ/97EUf/dxFL/28JT/9rBVf/ZwFb/179X/9W/V//Uvlj/1L5Y/9S9
+ WP/UvVf/07xW/9K8Vv/Su1X/0rtV/9K7Vf/Tu1X/1LtU/9W7U//Vu1L/1rtQ/9e8Tv/XvUz/2L5K/9m+
+ Sv/Zv0n/2sBI/9rAR//bwEX/28BE/9u/RP/bv0P/279C/9u/Qf/bvkD/274//9u9P//bvT7/2709/9u8
+ PP/buzz/27s8/9q6O//aujn/2rk4/9m4N//ZuDb/2Lc0/9e2M//WtTL/1bUw/9S0MP/UtC//1LQv/9Oz
+ Lv/Ssi3/0bEr/9CwKf/Pryj/z64n/8+uJ//OrSb/za0l/82sJP/MqyP/zKoi/8upIf/KqCH/yaci/8em
+ I//FpSX/wqMn/7+iKf+6nyv8sJYo96WNKPKbhSXjkXkft31lEotgRgBiVDwATEMxADknGgAnIBAAIBsJ
+ ABwVAAAYDQAAFAAAABEAAAANAAAACwAAAAkAAAAHAAAABQAAAAQAAAADAAAAAgAAAAEAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAItdAAuEaAAbiGsAK5V7
+ HVmahC6VnYg00qSONvCxmTb1vaM2+8WoNf/JqzH/za0u/9CvLP/RsC3/0bAt/9KxLv/Ssi//07Mv/9S0
+ L//UtDH/1bUy/9a2NP/XtjX/2Lc2/9m4Nv/ZuTf/2ro4/9q7OP/buzn/27w6/9u8O//bvDz/3L09/9y+
+ Pv/dvz//3r9A/97AQf/fwEL/38FC/9/CQ//fwkT/4MNE/+DDRP/gw0X/4cRG/+HER//ixUj/4sVI/+PG
+ Sf/jxkn/48ZJ/+THSv/kx0r/5MdK/+THS//jx0z/48dM/+PHTf/jx03/4sdO/+HGTv/gxU//3sVQ/97E
+ Uf/dw1P/3MJU/9rBVP/ZwVT/2MBU/9jAVP/YwFT/18BU/9e/U//Xv1P/175S/9e+Uv/XvlL/175S/9i+
+ Uf/YvlD/2b1P/9m+Tv/Zvkz/2b9L/9q/Sf/awEj/28BI/9vBR//bwUb/28BE/9vAQ//cwEP/3MBC/9u/
+ Qf/bv0D/274//9q9Pv/avT7/2709/9u9PP/bvDz/27s7/9u6O//aujr/2rk4/9q4N//ZuDb/2Lc0/9e2
+ M//WtTL/1rQx/9W0MP/Usy//1LMv/9SzLv/Tsi7/0rEs/9GxKv/QsCn/z68o/8+uJ//OrSb/zq0l/82t
+ Jf/NrCT/zKsj/8uqIv/LqSH/yagh/8emI//GpSX/wqMn/7+hKv+7ny3/tZku+6iQKO6bgyHijHYbz4Vt
+ FqF5Xg1yYEMASFI3ADhAKQAsIBAAIBMJABsWAAAXDQAAFBAAABAAAAAOAAAACwAAAAkAAAAHAAAABQAA
+ AAQAAAADAAAAAgAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAACAAAACmWYABXFVAAmLdCQ5jXgsf456LsSXgzDoqJE08bifNvnDpzb/x6oy/8us
+ Lv/Pryz/z68s/9CwLf/RsC3/0bEu/9KyLv/Ssy7/07Qw/9S1Mf/VtTL/1rYz/9e3NP/YuDX/2bk2/9q6
+ N//aujf/2rs4/9q7Of/auzr/2rw7/9u9PP/cvj3/3b8+/92/P//ev0D/38BB/9/AQf/fwUL/38FC/9/C
+ Q//fwkP/38JD/+DDRP/hxEX/4cRG/+LFR//ixUf/4sVH/+PGSP/jxkj/48ZI/+THSf/kx0r/48dL/+PH
+ TP/kx0z/5MdM/+PHTf/ix03/4cZN/+DGTf/gxU//4MVR/9/EUv/exFH/3MNR/9vCUf/bwlD/28JQ/9vC
+ UP/bwlD/3MJP/9zBT//cwU//3MFP/9zBT//cwU7/3MBN/9zATP/cwEv/3MBK/9zASf/bwUf/3MFH/9zC
+ R//cwkb/3MFF/9zBQ//cwEL/3MBC/9zAQf/bwED/278//9q+Pv/avT3/2r09/9q9PP/avTz/27w7/9u7
+ Ov/bujr/2rk5/9q4N//auDb/2bc0/9i2M//XtTL/1rQx/9W0MP/Vsy//1LIu/9SyLv/Usi7/07Et/9Kx
+ K//RsCr/0K8o/8+uJ//OrSb/zq0l/82tJf/NrST/zawk/8yrI//LqiL/y6kh/8mnIf/GpiT/w6Qm/8Ci
+ Kf+7ny7/t5wz/7CWMvighyfmjXYZ03tlDrp3XwuJcFMGWV43AC5MKQAlMRkAHwoKABkMAAAWDgAAEhEA
+ AA8AAAANAAAACwAAAAkAAAAHAAAABQAAAAQAAAACAAAAAgAAAAIAAAABAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiXYnJ4p1
+ KWSJdimglIAsxqWNMdyzmTXxvKE2/cKmM/7IqjD+zK0u/82uLv/Ory7/z68u/9CwLv/RsS7/0rIu/9Oz
+ L//UtDD/1bUx/9W1Mv/WtjP/17c0/9i4Nf/ZuTb/2bk2/9q6N//aujj/2rs5/9q7Ov/avDv/2708/9y+
+ Pf/dvj7/3b8//96/P//dv0D/3cBB/93AQf/ewUL/3sFC/97BQv/fwkP/4MNE/+DDRf/hxEb/4cRG/+HE
+ R//ixEj/4sVI/+LFSf/ixUn/4sVK/+LFS//ixUz/4sZM/+PGTP/jx0z/4sZM/+HGTP/hxkz/4cZN/+HF
+ Tv/gxU//38VP/97ETv/dxE7/3cRN/93ETf/dxE3/3cNN/97DTf/ew0z/3sNM/97DTP/ew0z/3sJM/97B
+ S//ewUr/3cFJ/93BSP/cwUf/3MFH/9zBRv/cwUb/28FG/9vARf/bwET/279D/9q/Qv/av0L/2r9B/9m+
+ QP/ZvT//2bw+/9m8Pf/Zuzz/2bs7/9q6Ov/aujn/2rk5/9m4OP/ZuDb/2bc0/9i2M//XtTL/17Ux/9a0
+ MP/Vsy//1bMu/9SyLf/Tsi3/07Es/9KxLP/RsCv/0a8p/9CvKP/Orif/za0m/8ysJf/MqyX/y6sl/8ur
+ JP/KqiT/yakj/8ioI//GpiT/w6Qn/8CjKv+7nyz9tJot+a6VL/WmjS7qmYAjzYdwFrF4XwmRdVgHa25Q
+ BENaLQAiQhwAGysVABgAAAAVAAAAEgAAAA8AAAAMAAAACgAAAAkAAAAHAAAABQAAAAQAAAACAAAAAgAA
+ AAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAIl2GxyMcyBHjnUicZh/Jpmjiy+/q5M05bKZNvy7nzP9w6Yz/smr
+ Mf/KrDD/zK0v/82uLv/Ory7/0LAu/9GxLv/Ssi//07Mw/9S0Mf/VtTL/1rYz/9a2M//XtzT/2Lg1/9i4
+ Nf/ZuTb/2bk3/9m6N//auzn/2rs6/9u8O//bvTz/3L49/9y+Pf/dvj7/3L4//9y/P//cv0D/3L9A/93A
+ Qf/dwEH/3sFC/9/CQ//fwkT/4MNF/+DDRv/gw0f/4cNH/+HDSP/hw0n/4cNK/+HESv/gxEv/4MRL/+HF
+ S//hxUv/4cZL/+HGS//gxkv/4MZL/+HFS//hxUz/4cVN/+DFTP/fxEz/38RM/9/ES//fxEv/3sRK/97E
+ Sv/fxEr/38NK/9/DSv/fw0r/38NK/9/CSv/ewkn/3sFJ/97BSP/dwUf/3MFH/9zBRv/bwUb/28BF/9rA
+ Rf/av0X/2b5F/9m+RP/YvkT/2L5D/9i9Qv/YvUH/2LxA/9i7Pv/Yuz3/2Lo8/9m6Ov/ZuTn/2bg5/9m4
+ OP/Ztzf/2Lc1/9i2NP/YtjP/17Uy/9a0Mf/WtDD/1bMu/9SzLf/Usiz/07Es/9KxK//RsCr/0a8p/9Cv
+ KP/Prif/zq0m/8ysJv/LqyX/yqol/8mqJf/JqiX/yKkl/8enJv/Fpib/w6Qo/7+iK/+8oC//tpsv+quR
+ K/KgiCfpl38k15F4Ha6JbBOGfF8IYXhVBEhwSgAwXi8AG0YXABYoDQATAAAAEAAAAA4AAAAMAAAACQAA
+ AAgAAAAGAAAABQAAAAQAAAADAAAAAgAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACfcAAQmHMMKphy
+ D0OcfRxsoYcqo6SLMtqpkTX6s5o2/L6iNf3FqTX/x6sz/8msMf/Lri//za8u/8+vLv/QsC7/0bEu/9Ky
+ L//TszD/1LQx/9W1Mv/VtTL/1rYz/9e3NP/XtzT/2Lg1/9i5Nv/ZuTb/2ro3/9q7Of/avDr/2708/9u9
+ PP/bvTz/3L49/9u+Pf/bvj7/274//9u+P//cv0D/3cBB/93AQf/ewUL/3sFD/9/CRP/fwkX/4MJG/+DC
+ R//gwkj/4MJJ/9/CSv/fwkv/38JL/9/DS//fw0v/38RL/+DFSv/gxUr/4MVK/+DFSv/gxUr/4cVK/+HF
+ Sv/hxUr/4cRK/+DESv/gxEn/4MRI/+DER//gxEf/4MRH/+DER//gxEf/4MNI/+DDSP/fwkj/38JH/97B
+ R//ewUf/3cFG/9zBRv/bwUX/28BF/9q/Rf/ZvkX/2L5F/9i9Rf/XvUX/1rxF/9a8RP/WvEP/1rtC/9e7
+ Qf/Xuz//2Lo9/9i5PP/YuTr/2Lg5/9i3OP/Ytzf/2LY2/9i2NP/YtjP/17Uy/9a0Mf/WtDD/1bMv/9Wz
+ Lv/Usyz/07Ir/9KxKv/RsCr/0K8p/9CvKP/Prif/zq0m/82sJv/LqyX/yaol/8ipJf/IqSb/x6km/8ao
+ J//Epij/wqQp/7+iLP+7oDD/t54z/7CXMfihiijrkXof3oVvF8SGbRSPiWgOW49aADCAUQAmcj4AHVUk
+ ABU8DwARIgAADwAAAAwAAAAKAAAACAAAAAcAAAAFAAAABAAAAAMAAAACAAAAAgAAAAIAAAABAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAjnEACZ9qABidbwAnoH4US5+DJ4Kghy+5pIwx3q2UNOq3nTf1vqM3/cKm
+ Nf7GqjP+yq0x/sutMP/Ory7/z7Au/9CxLv/Rsi//0rMv/9OzMP/UtDH/1bUx/9a1Mv/WtjP/1rYz/9e3
+ NP/YuDX/2Lg1/9m5Nv/Zujj/2rs6/9q8Ov/avDv/2rw7/9u9O//bvTz/2709/9u9Pv/bvj7/3L4//9y/
+ P//dv0D/3cBB/93AQv/ewEP/3sBE/97ARf/ewEf/3sBJ/97ASv/dwEv/3cBL/9zATP/dwUz/3cJL/93D
+ S//ew0r/3sNK/97ESv/exEn/38RJ/9/ESf/gw0n/4MNJ/+DDSf/gw0j/4MNH/+DDRv/fw0X/38NF/9/D
+ Rf/fw0X/38NG/9/CRv/fwkb/38FH/97BRv/dwEb/3cBG/9zARv/bwEb/2sBG/9m/Rf/YvkX/171G/9a8
+ Rv/Vu0f/1LpI/9S6R//Uukb/07lG/9S5RP/VuUL/1blA/9a4Pv/WuDz/1rc6/9a3OP/Wtzf/1rY2/9a2
+ Nf/WtTT/1rUy/9a0Mf/VtDD/1bMv/9SzLv/Usi3/07Is/9OyK//SsSr/0bAp/9CvKP/Prif/zq0m/82t
+ Jv/MrCb/yqol/8ipJf/HqCb/xqgn/8WnKP/CpSr/wKIr/7ygLf+5nS/8tZov966VMPOmjy3mmYIl0Ilz
+ Grp+ZxCcgWUObYhjCD6jUgAZkkkAFWs2ABNQIAAQNxIADhUAAAwAAAAKAAAACAAAAAYAAAAFAAAABAAA
+ AAMAAAACAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJlmAAWkbQAOm28AF5t4
+ FDOdgCFenIAli6GFKrCojzHMrpU26LKbOfy5oDf9wKY2/serNP7JrDL/zK4w/86vLv/PsS7/0LEu/9Gy
+ Lv/Tsy//1LMw/9W0MP/WtTH/1rUy/9a1Mv/WtjP/17c0/9i4Nf/YuTb/2bo3/9m7OP/Zuzn/2bs5/9q8
+ Of/avDr/2rw7/9q9PP/avT3/2709/9u+Pv/cvj7/3L8//9y/QP/cv0H/3L9C/92/Q//dv0X/3L9H/9y+
+ Sf/bvkv/2r5M/9q+Tf/Zvk3/2b9N/9rATP/bwUz/28FL/9vBSv/cwkr/3MJJ/93CSf/ewkj/3sJI/97C
+ R//fwkf/38JH/9/CRv/ewkX/3sJE/97CRP/ewkT/3sJE/97CRP/ewUX/3sFF/93ARv/dv0b/3L9G/9u+
+ Rv/avkb/2b5G/9i9Rv/XvUf/1rxI/9W7SP/Tukn/0blK/9C4S//Qt0r/0LdJ/9C3SP/Rt0b/0rdE/9O2
+ Qf/Ttj//1LY8/9S2Ov/Vtjj/1bY2/9W1Nf/VtTT/1bUz/9W0Mv/VtDH/1LMv/9SyLv/Tsi3/07Is/9Ox
+ K//SsSr/0bAp/9CvKP/Prif/zq0m/82tJv/MrCX/y6sm/8mqJv/HqSb/xqcn/8SmKf/CpSv/v6It/7qe
+ L/+1mzH/sJYx96iPLOufhyjgmoElyZR8H6eMcReFg2gPZYdjDkiIWQYrmU0AFIc8ABFmIgAPQBUADC4X
+ AAsAAAAJAAAABwAAAAYAAAAFAAAAAwAAAAIAAAACAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAD/AAABv4AABIBgAAiddgoal3URO5Z0EVyafR6BoIctrqKNNtunkjr7sZo6/Luh
+ OP3EqDf+x6o0/8qtMf/Ory7/z7Au/8+xLf/QsS3/0rIu/9OzLv/Vsy//1bQw/9W0Mf/VtTH/1bUy/9a2
+ M//XtzT/2Lg1/9i5Nv/Yujf/2bs4/9m7OP/Zuzj/2bs4/9m7Of/avDv/2r08/9u9PP/bvTz/3L49/9u+
+ Pf/bvj7/274//9u+Qf/bvkL/3L5E/9u9R//avUn/2LxM/9e8Tv/XvE7/1rxP/9a8T//XvU7/2L9M/9m/
+ S//ZwEv/2sBK/9rASf/bwEj/3MFH/9zBR//dwUb/3cFG/97BRv/dwUX/3cFE/93BQ//dwUP/3cFD/93B
+ Q//dwUP/3cBE/93ARP/cv0X/275F/9q9Rf/ZvUb/2LxG/9e8Rv/Wu0b/1bpI/9S6Sv/SuUv/0LhM/863
+ Tf/MtU7/zLVN/8y0TP/MtEv/zbRI/8+0Rf/QtEL/0bQ//9K1PP/TtTr/07U4/9O1Nv/TtTT/07Qz/9O0
+ Mv/UtDH/1LMw/9OyL//TsS3/07Es/9KxK//SsSr/0bAp/9CvKP/Prif/zq0m/82tJv/MrCX/y6sl/8mq
+ Jf/Iqib/x6gn/8WnKf/CpSz/v6Mu/7qfMP+0mjP/rpU2/6ePMvObgyngj3cezIZvGK2JbBR/jmsQUZZp
+ Cy6SXwAjilUAGJI3AA6AKwAMRhcACxwcAAkAAAAIAAAABwAAAAUAAAAEAAAAAwAAAAIAAAABAAAAAQAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgFUADI9p
+ ACKPawA5k3QRWpqCKIuciDS8oY054auUOOq0mzjzvKI2+8GmNfzHqjL9y64w/syuMP/Nry//zrAu/9Cx
+ L//RsS//07Iw/9SyMf/TszH/07My/9S0M//VtTP/1bY0/9a3Nf/WuDb/17g3/9e5OP/XuTj/17k4/9e5
+ Of/Yujr/2Ls7/9m7PP/Zuzz/2bw9/9q8Pv/ZvD//2bw//9m8QP/YvEL/2LxE/9i7Rf/Wukf907hH+9G2
+ SfjQtUn3z7RK9s6zSvbOtEv20LZK+M+3SfvQuEr80rlJ/dS6Sf3Vu0n91bxI/ta8R/7XvUf+2b5H/tm+
+ R/7bvkf+2r5G/9m+Rf/ZvkT/2b1E/9m9RP/YvUT/2L1E/9i8RP/YvEX/2LxF/ta6Rf7VuUX+1LhF/dK2
+ Rf3QtUX9zrRF/M20RvvLs0b6yrFI+MmxSPXHsEnyxq9J78avSe7HrkfsyK9H68iuRO/IrUL0ya0++cqv
+ PfvMsD38z7I7/c+xOf/Psjj/0LM2/9CzNf/RsjT/0bIz/9GxMf/QsDD/0K8v/9CvLv/Pry3/z68s/8+v
+ K//Orir/za0p/8ysKP/Kqyj/yaon/8iqJ//GqSj/xaco/8SnKf7Boyr9vKAs/LmdLfq0mS/1r5Qy76mQ
+ NemgiDDZlHwlwYNsF6p8Yg2IgWILW5BkBi7MZgAPtkkADpVAAAx0LgALVRwACUAgAAgAAAAGAAAABQAA
+ AAQAAAAEAAAAAwAAAAIAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAG1JAAeSYQAVimYAI5d1DTubfiVhnoUuhqCJMKmnjzDDq5My3a+W
+ MfO2nTL4v6Q0+8WqNf7HqzT/yKwz/8qtM//MrjP/za8z/8+wM//QsDP/0LE0/9GyNP/RsjX/0rM1/9O0
+ Nv/UtTb/1LU3/9S2OP/Utjj/1Lc5/9S3Of/Utzr/1bg8/9W4Pf/WuT7/1rk//9a5QP/WukH/1rpC/9W6
+ RP/VuUX/07lH/9K4SP/Rt0r/zbNH+casQvO/pj3svaM76LyjO+a7ojvkvKM95r6mP+y/qUHywapD98Ss
+ RfnFr0X7yLFH/MqzR/zMs0j9zbVI/s+2Sf7RuEr+07lL/tK4Sv/SuEn/0bhI/9G4R//Qt0f/0LdG/8+2
+ R//PtUf/zrRH/860R/7Lskb+yrBF/ceuRPzErEL7w6lC+b+mQPe9pT/zu6I977igO+q4oDnhtp832Laf
+ Ns+4oDXJu6E2w72hNsC8oDXNup813bieNe28ojf0wKc7+MaqPf3HrD7/ya08/8uvO//MsDr/zK85/8yv
+ N//Mrjb/zK41/8utNP/LrDP/y6wy/8qsMP/JrC//yasv/8iqLv/HqS3/xqgt/8SnLf/Dpi3/waUt/76j
+ Lv+9oi7+uJ0s+rCWKfaqkSfxp40n4qWLKc6jiCu6noMpo5V7H4uHbRRzgGUMWIRmDTyUYwAfv1UADLNN
+ AAqOOQAJYCAACEkAAAcrAAAGAAAABAAAAAQAAAADAAAAAwAAAAIAAAABAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAACgGAACIBb
+ AA6SbQkcoXsYNqF+HFGihCBwoIYmnJ+IKceiiyvrq5Qx87aeNvm/pjr+wqg5/8SpOP/Gqzf/x6w2/8mt
+ Nv/LrTX/zK42/82vNv/OsDb/z7E3/9CxN//Qsjf/0bM3/9GzOP/Sszj/0rQ5/9K0Ov/StTv/0rU8/9K2
+ Pv/Stj//0rdA/9O3Qf/Tt0P/07hE/9K3Rv/St0j/0bdK/8+2S//NtEz/yrJO/8OrRva4oDzrrZQw4KiP
+ K9mnjivWp48p0aiQLNWqlDLgrZc46rCcPPK0nz/1uKND+LymRfq+qUb7wKtI/MOsSv3Gr0v+yLFN/su0
+ Tv7Ks07/yrNN/8qzTP/Jskv/yLFK/8exSf/Gr0n/xq5J/8WtSv/ErEj+wqlH/b+nRfy7pEL7t58/+bOd
+ PvavmTvyrZY266iRMuWljS3cpIwozKKKIL2jihyupYoapKmNGpqujR2Uqo4iq6eNJsenjivhrZUy7LWc
+ OfS7o0D8v6ZC/8KpQf/Gq0H/x6xA/8esPv/HrDz/x6w7/8erOv/Hqjj/xqo3/8aqNv/FqTX/xKk0/8So
+ M//DpzP/wqcy/8GmMv+/pDP/vqMz/7uhM/+4njP/tZ0z/q6VLviljCfwmoMh6ZiAH86WfRytmHsai5l5
+ F26WdRVVkXMNPI9wBimVagAdpVoAEb9AAAiSJAAHVQAABisAAAYAAAAFAAAABAAAAAIAAAACAAAAAgAA
+ AAIAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAqlUABqZ6ABemeQAooHoIQ5p9GnSWfyKlmIEpz6ON
+ MNyumDbnuKE78bujOva8pDn5vqU5/MGnOP3EqTj9xqs5/serOf/JrTn/y646/8yvOv/Mrzr/zbA6/86w
+ Ov/OsTr/z7E7/8+yO//Psjz/z7M+/8+zP//PtED/z7RB/8+1Q/7PtET+zrRF/s20Rv7Ms0j8yrJJ+8mw
+ SvrHrkv3xK5N88SuTu67pEXhrpc30p6HJsOYgR66l4AdtpZ/G7GYgiC1nIcpwaCNMc2kkTfWqpc82rCb
+ QN6zn0TitqFF5LikRua7pkfovqlK6cGrTOrDrk7rw65O68OuTevCrUzswq5L68GtSuvAq0nrv6lJ676o
+ Seu+p0nqvKRH6bmiRue4n0TltJxA46+YPt+pkzvcpI831qCLMs6ahCrHl4AjvJR8GauReA2Zj3YCiJF0
+ AH2XdQBxm3cAa5l7D4WafhqkmIEiwqGKLdGslDbctZ1A57igQu28o0Lwv6ZB88CnQfW/pj/3vqY9+b+l
+ PPq+pTv7vqU7+76lOvu+pDn7vaQ3+7yjNvu8ojX6u6E0+rqhM/m5oDT3t5819raeNPS0nDXxspk17q+X
+ NOumjy7im4Um15B7HcyLdReujHERh41qBWCNZwBDl24ALKqGABX/vwAI25IAB9VVAAaZMwAFZgAABQAA
+ AAQAAAADAAAAAgAAAAIAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBA
+ AASkbQAOo3AAGaB3BiuZfhhLmYEha5iDJ4qgiiuhpY8uuKiSMM6qlDLcrJY16a6YNvWynDj5uKE7+72k
+ PP6/pj3/wqg+/8WrPv/HrD7/yK0+/8mtPv/Krj7/yq4+/8qvPv/Lrz//y7BA/8uwQv/LsUP/yrFF/8qx
+ Rv/KsUj+x69I/sOsR/7BqUj9vadG+LqjRfO2n0Tttp9C37agQc+3oD+/s505q6uTMZegiCODm4IdepiB
+ HHeYghp0mYQedp2JKX2hjjCFpZM1i6yXOZCynDyVtp8/mrWfP5+1nz6ltp8/qrmiQKy7o0KvvKNCsryl
+ QrK7pECzuaRAs7ikP7O4oj2zt6I+srehPrG4oD+vt54/rreeP6q3nT2muJ0+obWaPJywljmXq5Q4kaWR
+ NYugizCGm4UqgJiBInmUfRpukngNYpB1A1eTcwBQmHUASJ54AESZew9VmX4baZmBI32giSqMqY8xm7GX
+ OKmxmDm3r5Y4xa+VONKvljjbrZY34qyVN+msljftrZU376yVN/GslTfzrJU286yVNfKrlDPyqpMx76mS
+ MOynki7pp5Et46aPLN2mjyzWp48syqiQLL6pkC2xoooopJyFIpWQexyHjngXcY50DliObQQ/kWgALJVy
+ AB22gAAO/8wABcyZAAW/QAAEgEAABFUAAAMAAAACAAAAAgAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgFUABqJ0AAuheQATnoAXIpmFHzKbhSFFlYEgZ5WA
+ IImVgCGql4InwpqGLtmciTXuo5A49ayXPPmznkH9uKFC/7ulQv+/qEP/walD/8OqQv/Eq0L/xatC/8as
+ Qv/GrUL/x61D/8etRP/Hrkb/xq5H/8auSf/FrUv/xK1M/r+pS/66pEv9taFJ+6+aRfOnlEDroY084Z+L
+ N8ihjDGroospj6OLJXWiiSFdoYseRJ6IGjqfiRs4oYkYNp6LHDejjSM6o5IuPauXNECzmTNGuZ4yTLuf
+ MlK1mTBar5UuY62VK2qskyxvq5MqdKyTK3ipkCp6qJEne6iRJ3umjyd7pZAoeqaPKHmpkSl2qY8qdKiP
+ K3KskCtss5ErZLiULF24lC9WtJYxTq+ZM0ankzBAo44uPZ6IKDqXhCE2lYAVMJR3DCuNcgAmknUAI5Rz
+ AB+ZdwAemHwOJZaAFi6ZgiA3nIMjSKKFJVqlhyZsoYUngp2EKpmZgCqxl4EswZeBLs2XgzDYl4Mx4JiE
+ MuSZhDPnmoUz6pmFMuqZhDHpmYQv6JaCLeSVgSrfk38o2ZF+Jc+QfSPEkHsguJJ8H6SXfh+Om4IeeJ2D
+ HGWYgBhUk4AXQpOAFDSPfAwplXIAHZlzABSSgAAOtpIAB/+qAAOqqgAD/4AAAoAAAAIAAAABAAAAAQAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAP//AALMzAAFmYgAD4JvCjV9ag5efGoRhIRxHqKKeCq9j30y2JiGN+KjkD7orJlC77Ke
+ RPG2oUTzuqVE9LynRPW/p0L2v6dC98CoQvjBqUL4wahC+cKqQvjBqkT4wqpG98KqSPbCqkr1walL9L+o
+ TfO5o0zxs59L7q2ZSeujkEPhmYc91ZB+NseMeSyoiXQehoZvCGOHcQBGkXQALKqOABLfvwAI29sAB9vb
+ AAfV1QAG1dUABszMAAXbtgAH6qoADOOqABLWmQAZtooAI599AC2XdgA2lXcAPJF2AEGSdQBGjnEASIxw
+ AEmGcgBKiHAASYpxAEiIcwBHiXMARY1yAEGMbwA+lG8AN6NyAC+1gAAmwYQAHcyZABTVqgAM1dUABszM
+ AAW/vwAE//8AAoCAAAIAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAEAAAABgAAAApZpABGRZwAlkmkAOIdo
+ DFODahVvgWsbjIFuIKCEcSauhXIqvIZ0LMaIdS/KiXYwz4l3MdKJdy/SiXcu0oh3LNCFdSnLg3ImxIBw
+ Ir19bR6xfWoZo3pnFZV7ZxB8fmcLYYdqAEaKawAylHMAH6qVAAz//wAF//8ABP//AAP//wAC//8AAv//
+ AAH//wAB//8AAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD//wAB//8AAo6OAAmAcQgifWkNPXtq
+ D1eDcB1rincofo59MZGahzadpY84qLCYO7K0mzq6tZw5wredNsq3nTXQt50z1bacMdq2nDDdt5ww37ec
+ MOC4njHfuJ4z3LmfNdi6oDfUu6A6z7ygPcq9oUDEuJ9AvLadQrOxmUKqqJE/np2IOpKPfDOGi3krcIpz
+ HVmDbARCi28ALo1yAB25iwAL/78ABP+/AAT//wAD//8AA///AAL//wAC//8AA9u2AAfmswAK3ZkAD66L
+ ABaeewAdknUAI5BvACeScwAqi28ALohtAC+FcAAwhXAAMIVwADCIbQAvi28ALohsAC2MbQAqjGwAKI5q
+ ACSibwAetYAAGMaAABLVlQAM1dUABv//AAP//wAC//8AAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAACZZgAKkGQAF45jACSEaAk2gWkVSYBpGVyAbB9qg28mc4VyKX2GdS2Dh3Quhol2
+ LoqJdi+MiXYujIh3LouHdiyKhHMoh4NyJYKAbyB+fm0cdXtoGGx4ZRJieWQQUnxkCECAZAAuh2gAIJR5
+ ABPVqgAG//8AAv//AAL//wAB//8AAf//AAH//wABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAACAgAAEgHAAEHtqCR15ZwwqhHEZNIp5Jj2QgS9HoIgsVqyQK2W2lSx0tJUngrOT
+ I5CwkSCero8eqa2OHbKrjRu8qo0awaqNGsSrjhrGq4waxqyOG7+tjx24rpAgsbKSIai1lCWfuJYolLqX
+ LIW+mzB1wZs1ZrOTM1qnjTFOk4AyQot5KjeOdx4rh3AAIIVvABeIZgAPqoAABv9VAAP/gAAC//8AAf//
+ AAH//wABAAAAAP//AAGqqgADzJkABduSAAezgAAKnXYADY9wABCOcQASjHMAFJJtABWLaAAWhWQAF4Vv
+ ABeFZAAXi2gAFoBoABaGbQAVjGYAFIZrABOHaQARpG0ADrl0AAu/gAAIqoAABqqqAAP//wABAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgEAABItdAAuHWgARgGIKGnxm
+ DyOAaBcsfWkeM4JvJTeAbyY8gnEtP4d0LECHdC5CiXYuQ4V2LkOFdi5Dh3QrQoN0KECEcyU+gG8ePHtp
+ Gzh9aRkzd2IQL3ZiDSeAXgkehmEAFXdmAA+OcQAJqqoAA///AAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAgAACVVUAA5lm
+ AAWqgAAGqqocCbiPChnIkgYqyJEEPLqJA06ugwNhqYECc6N+AoKgfAKOn3wCmp18AqKefAKlnnwCqJ18
+ AqeefAKeoHwDlqJ+BIylfgSAqYAEdLKCBWa+iQZSzpQIPuegBivuqgke5KENE6qOHAmqgAAGmZkABYCA
+ AASqVQAD/wAAAv8AAAH/AAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAEAAAABAAAAAf8AAAGAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAC/wAAAf8AAAEAAAABAAAAAQAA
+ AAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAJVVQADVVUAA4BAAARmZgAFZmYABZlmMwWZZjMFgFUrBoBV
+ KwaAVSsGgFUrBoBVKwaZZgAFZmYABWZmAAVmZgAFgEAABIBAAARVVQADgIAAAgAAAAEAAAABAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP+AAALEiQANzI8AGcmNACa5hwAzq4AAQKZ7
+ AE2hewBXn3oAYJ17AGibeQBum3sAcJt6AHOaeQBynXoAa598AGWeeQBfo30AVql+AE2wgABEvIcANdGQ
+ ACf/owAZ/6UAEf+qAAn/gAAC//8AAf//AAH//wAB/wAAAf8AAAH/AAABAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAA///////////gAAAAAA//////////8AAA///////////AAAAAAAf/////
+ ////8AAA//////////wAAAAAAAD/////////8AAA/////////gAAAAAAAAAH////////8AAA////////
+ /AAAAAAAAAAD////////8AAA////////8AAAAAAAAAAA////////8AAA////////gAAAAAAAAAAAA///
+ ////8AAA////////AAAAAAAAAAAAAP//////8AAA///////8AAAAAAAAAAAAAH//////8AAA///////g
+ AAAAAAAAAAAAAH//////8AAA//////+AAAAAAAAAAAAAAAP/////8AAA//////8AAAAAAAAAAAAAAAH/
+ ////8AAA//////gAAAAAAAAAAAAAAAD/////8AAA/////+AAAAAAAAAAAAAAAAB/////8AAA/////8AA
+ AAAAAAAAAAAAAAA/////8AAA/////4AAAAAAAAAAAAAAAAAf////8AAA/////wAAAAAAAAAAAAAAAAAP
+ ////8AAA/////gAAAAAAAAAAAAAAAAAH////8AAA/////AAAAAAAAAAAAAAAAAAD////8AAA////+AAA
+ AAAAAAAAAAAAAAAAP///8AAA////8AAAAAAAAAAAAAAAAAAAH///8AAA////4AAAAAAAAAAAAAAAAAAA
+ D///8AAA////wAAAAAAAAAAAAAAAAAAAB///8AAA////gAAAAAAAAAAAAAAAAAAAA///8AAA////AAAA
+ AAAAAAAAAAAAAAAAAf//8AAA///+AAAAAAAAAAAAAAAAAAAAAP//8AAA///8AAAAAAAAAAAAAAAAAAAA
+ AH//8AAA///4AAAAAAAAAAAAAAAAAAAAAH//8AAA///wAAAAAAAAAAAAAAAAAAAAAH//8AAA///gAAAA
+ AAAAAAAAAAAAAAAAAH//8AAA///AAAAAAAAAAAAAAAAAAAAAAD//8AAA//+AAAAAAAAAAAAAAAAAAAAA
+ AB//8AAA//8AAAAAAAAAAAAAAAAAAAAAAA//8AAA//8AAAAAAAAAAAAAAAAAAAAAAAf/8AAA//8AAAAA
+ AAAAAAAAAAAAAAAAAAP/8AAA//4AAAAAAAAAAAAAAAAAAAAAAAH/8AAA//4AAAAAAAAAAAAAAAAAAAAA
+ AAH/8AAA//wAAAAAAAAAAAAAAAAAAAAAAAD/8AAA//gAAAAAAAAAAAAAAAAAAAAAAAD/8AAA//gAAAAA
+ AAAAAAAAAAAAAAAAAAD/8AAA//AAAAAAAAAAAAAAAAAAAAAAAAB/8AAA//AAAAAAAAAAAAAAAAAAAAAA
+ AAA/8AAA//AAAAAAAAAAAAAAAAAAAAAAAAA/8AAA/+AAAAAAAAAAAAAAAAAAAAAAAAAf8AAA/8AAAAAA
+ AAAAAAAAAAAAAAAAAAAf8AAA/8AAAAAAAAAAAAAAAAAAAAAAAAAf8AAA/4AAAAAAAAAAAAAAAAAAAAAA
+ AAAP8AAA/4AAAAAAAAAAAAAAAAAAAAAAAAAP8AAA/4AAAAAAAAAAAAAAAAAAAAAAAAAH8AAA/wAAAAAA
+ AAAAAAAAAAAAAAAAAAAD8AAA/wAAAAAAAAAAAAAAAAAAAAAAAAAD8AAA/gAAAAAAAAAAAAAAAAAAAAAA
+ AAAD8AAA/AAAAAAAAAAAAAAAAAAAAAAAAAAD8AAA/AAAAAAAAAAAAAAAAAAAAAAAAAAB8AAA/AAAAAAA
+ AAAAAAAAAAAAAAAAAAAA8AAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAcAAA/AAAAAAAAAAAAAAAAAAAAAAA
+ AAAAcAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAcAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAcAAA+AAAAAAA
+ AAAAAAAAAAAAAAAAAAAAcAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAcAAA4AAAAAAAAAAAAAAAAAAAAAAA
+ AAAAcAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAcAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAMAAA4AAAAAAA
+ AAAAAAAAAAAAAAAAAAAAMAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAMAAA4AAAAAAAAAAAAAAAAAAAAAAA
+ AAAAMAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAMAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAMAAA4AAAAAAA
+ AAAAAAAAAAAAAAAAAAAAEAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAEAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAwAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAMAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAwAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAEAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAEAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAgAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAMAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAgAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAcAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAgAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAcAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAwAAAAAAAAAAAAAAAAAAAAAAA
+ AAAB8AAAwAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAA4AAAAAAAAAAAAAAAAAAAAAAAAAAH8AAA8AAAAAAA
+ AAAAAAAAAAAAAAAAAAAP8AAA8AAAAAAAAAAAAAAAAAAAAAAAAAAP8AAA+AAAAAAAAAAAAAAAAAAAAAAA
+ AAAf8AAA+AAAAAAAAAAAAAAAAAAAAAAAAAAf8AAA+AAAAAAAAAAAAAAAAAAAAAAAAAAf8AAA+AAAAAAA
+ AAAAAAAAAAAAAAAAAAA/8AAA/wAAAAAAAAAAAAAAAAAAAAAAAAA/8AAA/wAAAAAAAAAAAAAAAAAAAAAA
+ AAD/8AAA/wAAAAAAAAAAAAAAAAAAAAAAAAH/8AAA/wAAAAAAAAAAAAAAAAAAAAAAAAH/8AAA/wAAAAAA
+ AAAAAAAAAAAAAAAAAA//8AAA/wAAAAAAAAAAAAAAAAAAAAAAAD//8AAA/+AAAAAAAAAAAAAAAAAAAAAA
+ AH//8AAA/+AAAAAAAAAAAAAAAAAAAAAAAf//8AAA/+AAAAAAAAAAAAAAAAAAAAAAA///8AAA//wAAAAA
+ AAAAAAAAAAAAAAAAA///8AAA//wAAAAAAAAAAAAAAAAAAAAAf///8AAA//wAAAAAAAAAAAAAAAAAAAAD
+ ////8AAA///AAAAAAAAAAAAAYAAAAAAP////8AAA///AAAAAAAAAAAAP/AAAAAAf////8AAA///wAAAA
+ AAEAAAA//AAAAB//////8AAA///4AAAAAB/4AAP//wAAAP//////8AAA////wAAAAD//////////////
+ ////8AAA
+
+
+
\ No newline at end of file
diff --git a/FunkeySelector/DaydreamOasis.Designer.cs b/FunkeySelector/DaydreamOasis.Designer.cs
new file mode 100644
index 0000000..c9a4b30
--- /dev/null
+++ b/FunkeySelector/DaydreamOasis.Designer.cs
@@ -0,0 +1,411 @@
+namespace FunkeySelector
+{
+ partial class DaydreamOasis
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DaydreamOasis));
+ this.BergerLabel = new System.Windows.Forms.Label();
+ this.BergerVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.BergerR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Berger = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.LuckyLabel = new System.Windows.Forms.Label();
+ this.LuckyVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.LuckyR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Lucky = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.TankLabel = new System.Windows.Forms.Label();
+ this.TankVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.TankR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Tank = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.DyerLabel = new System.Windows.Forms.Label();
+ this.DyerVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.DyerR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Dyer = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.backButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.DayDreamOasisLabel = new System.Windows.Forms.Label();
+ this.minimizeButton = new FunkeySelector.UserControls.MinimizeButton();
+ this.closeButton = new FunkeySelector.UserControls.CloseButton();
+ this.SuspendLayout();
+ //
+ // BergerLabel
+ //
+ this.BergerLabel.AutoSize = true;
+ this.BergerLabel.BackColor = System.Drawing.Color.Transparent;
+ this.BergerLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.BergerLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.BergerLabel.Location = new System.Drawing.Point(320, 431);
+ this.BergerLabel.Name = "BergerLabel";
+ this.BergerLabel.Size = new System.Drawing.Size(92, 29);
+ this.BergerLabel.TabIndex = 15;
+ this.BergerLabel.Text = "BERGER";
+ //
+ // BergerVR
+ //
+ this.BergerVR.BackColor = System.Drawing.Color.Transparent;
+ this.BergerVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("BergerVR.BackgroundImage")));
+ this.BergerVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.BergerVR.FlatAppearance.BorderSize = 0;
+ this.BergerVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.BergerVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.BergerVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.BergerVR.FunkeyID = "000000C3";
+ this.BergerVR.Location = new System.Drawing.Point(389, 451);
+ this.BergerVR.Name = "BergerVR";
+ this.BergerVR.Size = new System.Drawing.Size(50, 63);
+ this.BergerVR.TabIndex = 18;
+ this.BergerVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.BergerVR.UseVisualStyleBackColor = false;
+ //
+ // BergerR
+ //
+ this.BergerR.BackColor = System.Drawing.Color.Transparent;
+ this.BergerR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("BergerR.BackgroundImage")));
+ this.BergerR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.BergerR.FlatAppearance.BorderSize = 0;
+ this.BergerR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.BergerR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.BergerR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.BergerR.FunkeyID = "000000B6";
+ this.BergerR.Location = new System.Drawing.Point(338, 451);
+ this.BergerR.Name = "BergerR";
+ this.BergerR.Size = new System.Drawing.Size(50, 63);
+ this.BergerR.TabIndex = 17;
+ this.BergerR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.BergerR.UseVisualStyleBackColor = false;
+ //
+ // Berger
+ //
+ this.Berger.BackColor = System.Drawing.Color.Transparent;
+ this.Berger.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Berger.BackgroundImage")));
+ this.Berger.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Berger.FlatAppearance.BorderSize = 0;
+ this.Berger.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Berger.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Berger.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Berger.FunkeyID = "000000A9";
+ this.Berger.Location = new System.Drawing.Point(287, 451);
+ this.Berger.Name = "Berger";
+ this.Berger.Size = new System.Drawing.Size(50, 63);
+ this.Berger.TabIndex = 16;
+ this.Berger.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Berger.UseVisualStyleBackColor = false;
+ //
+ // LuckyLabel
+ //
+ this.LuckyLabel.AutoSize = true;
+ this.LuckyLabel.BackColor = System.Drawing.Color.Transparent;
+ this.LuckyLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.LuckyLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.LuckyLabel.Location = new System.Drawing.Point(323, 216);
+ this.LuckyLabel.Name = "LuckyLabel";
+ this.LuckyLabel.Size = new System.Drawing.Size(79, 29);
+ this.LuckyLabel.TabIndex = 7;
+ this.LuckyLabel.Text = "LUCKY";
+ //
+ // LuckyVR
+ //
+ this.LuckyVR.BackColor = System.Drawing.Color.Transparent;
+ this.LuckyVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("LuckyVR.BackgroundImage")));
+ this.LuckyVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.LuckyVR.FlatAppearance.BorderSize = 0;
+ this.LuckyVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.LuckyVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.LuckyVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.LuckyVR.FunkeyID = "000000BF";
+ this.LuckyVR.Location = new System.Drawing.Point(389, 237);
+ this.LuckyVR.Name = "LuckyVR";
+ this.LuckyVR.Size = new System.Drawing.Size(50, 63);
+ this.LuckyVR.TabIndex = 10;
+ this.LuckyVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.LuckyVR.UseVisualStyleBackColor = false;
+ //
+ // LuckyR
+ //
+ this.LuckyR.BackColor = System.Drawing.Color.Transparent;
+ this.LuckyR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("LuckyR.BackgroundImage")));
+ this.LuckyR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.LuckyR.FlatAppearance.BorderSize = 0;
+ this.LuckyR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.LuckyR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.LuckyR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.LuckyR.FunkeyID = "000000AF";
+ this.LuckyR.Location = new System.Drawing.Point(338, 237);
+ this.LuckyR.Name = "LuckyR";
+ this.LuckyR.Size = new System.Drawing.Size(50, 63);
+ this.LuckyR.TabIndex = 9;
+ this.LuckyR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.LuckyR.UseVisualStyleBackColor = false;
+ //
+ // Lucky
+ //
+ this.Lucky.BackColor = System.Drawing.Color.Transparent;
+ this.Lucky.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Lucky.BackgroundImage")));
+ this.Lucky.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Lucky.FlatAppearance.BorderSize = 0;
+ this.Lucky.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Lucky.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Lucky.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Lucky.FunkeyID = "000000A2";
+ this.Lucky.Location = new System.Drawing.Point(287, 237);
+ this.Lucky.Name = "Lucky";
+ this.Lucky.Size = new System.Drawing.Size(50, 63);
+ this.Lucky.TabIndex = 8;
+ this.Lucky.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Lucky.UseVisualStyleBackColor = false;
+ //
+ // TankLabel
+ //
+ this.TankLabel.AutoSize = true;
+ this.TankLabel.BackColor = System.Drawing.Color.Transparent;
+ this.TankLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.TankLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.TankLabel.Location = new System.Drawing.Point(323, 324);
+ this.TankLabel.Name = "TankLabel";
+ this.TankLabel.Size = new System.Drawing.Size(72, 29);
+ this.TankLabel.TabIndex = 11;
+ this.TankLabel.Text = "TANK";
+ //
+ // TankVR
+ //
+ this.TankVR.BackColor = System.Drawing.Color.Transparent;
+ this.TankVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("TankVR.BackgroundImage")));
+ this.TankVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.TankVR.FlatAppearance.BorderSize = 0;
+ this.TankVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.TankVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.TankVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.TankVR.FunkeyID = "000000C0";
+ this.TankVR.Location = new System.Drawing.Point(389, 344);
+ this.TankVR.Name = "TankVR";
+ this.TankVR.Size = new System.Drawing.Size(50, 63);
+ this.TankVR.TabIndex = 14;
+ this.TankVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.TankVR.UseVisualStyleBackColor = false;
+ //
+ // TankR
+ //
+ this.TankR.BackColor = System.Drawing.Color.Transparent;
+ this.TankR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("TankR.BackgroundImage")));
+ this.TankR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.TankR.FlatAppearance.BorderSize = 0;
+ this.TankR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.TankR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.TankR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.TankR.FunkeyID = "000000B3";
+ this.TankR.Location = new System.Drawing.Point(338, 344);
+ this.TankR.Name = "TankR";
+ this.TankR.Size = new System.Drawing.Size(50, 63);
+ this.TankR.TabIndex = 13;
+ this.TankR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.TankR.UseVisualStyleBackColor = false;
+ //
+ // Tank
+ //
+ this.Tank.BackColor = System.Drawing.Color.Transparent;
+ this.Tank.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Tank.BackgroundImage")));
+ this.Tank.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Tank.FlatAppearance.BorderSize = 0;
+ this.Tank.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Tank.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Tank.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Tank.FunkeyID = "000000A3";
+ this.Tank.Location = new System.Drawing.Point(287, 344);
+ this.Tank.Name = "Tank";
+ this.Tank.Size = new System.Drawing.Size(50, 63);
+ this.Tank.TabIndex = 12;
+ this.Tank.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Tank.UseVisualStyleBackColor = false;
+ //
+ // DyerLabel
+ //
+ this.DyerLabel.AutoSize = true;
+ this.DyerLabel.BackColor = System.Drawing.Color.Transparent;
+ this.DyerLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.DyerLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.DyerLabel.Location = new System.Drawing.Point(328, 106);
+ this.DyerLabel.Name = "DyerLabel";
+ this.DyerLabel.Size = new System.Drawing.Size(67, 29);
+ this.DyerLabel.TabIndex = 3;
+ this.DyerLabel.Text = "DYER";
+ //
+ // DyerVR
+ //
+ this.DyerVR.BackColor = System.Drawing.Color.Transparent;
+ this.DyerVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("DyerVR.BackgroundImage")));
+ this.DyerVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.DyerVR.FlatAppearance.BorderSize = 0;
+ this.DyerVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.DyerVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.DyerVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.DyerVR.FunkeyID = "000000BE";
+ this.DyerVR.Location = new System.Drawing.Point(389, 128);
+ this.DyerVR.Name = "DyerVR";
+ this.DyerVR.Size = new System.Drawing.Size(50, 63);
+ this.DyerVR.TabIndex = 6;
+ this.DyerVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.DyerVR.UseVisualStyleBackColor = false;
+ //
+ // DyerR
+ //
+ this.DyerR.BackColor = System.Drawing.Color.Transparent;
+ this.DyerR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("DyerR.BackgroundImage")));
+ this.DyerR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.DyerR.FlatAppearance.BorderSize = 0;
+ this.DyerR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.DyerR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.DyerR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.DyerR.FunkeyID = "000000AE";
+ this.DyerR.Location = new System.Drawing.Point(338, 128);
+ this.DyerR.Name = "DyerR";
+ this.DyerR.Size = new System.Drawing.Size(50, 63);
+ this.DyerR.TabIndex = 5;
+ this.DyerR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.DyerR.UseVisualStyleBackColor = false;
+ //
+ // Dyer
+ //
+ this.Dyer.BackColor = System.Drawing.Color.Transparent;
+ this.Dyer.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Dyer.BackgroundImage")));
+ this.Dyer.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Dyer.FlatAppearance.BorderSize = 0;
+ this.Dyer.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Dyer.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Dyer.ForeColor = System.Drawing.Color.Transparent;
+ this.Dyer.FunkeyID = "000000A1";
+ this.Dyer.Location = new System.Drawing.Point(287, 128);
+ this.Dyer.Name = "Dyer";
+ this.Dyer.Size = new System.Drawing.Size(50, 63);
+ this.Dyer.TabIndex = 4;
+ this.Dyer.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Dyer.UseVisualStyleBackColor = false;
+ //
+ // backButton
+ //
+ this.backButton.BackColor = System.Drawing.Color.Transparent;
+ this.backButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.backButton.FlatAppearance.BorderSize = 0;
+ this.backButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.backButton.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.backButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.backButton.FormToOpen = "Form1";
+ this.backButton.KeepCurrentForm = false;
+ this.backButton.Location = new System.Drawing.Point(12, 12);
+ this.backButton.Name = "backButton";
+ this.backButton.Size = new System.Drawing.Size(101, 48);
+ this.backButton.TabIndex = 1;
+ this.backButton.Text = "BACK";
+ this.backButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.backButton.UseVisualStyleBackColor = false;
+ //
+ // DayDreamOasisLabel
+ //
+ this.DayDreamOasisLabel.AutoSize = true;
+ this.DayDreamOasisLabel.BackColor = System.Drawing.Color.Transparent;
+ this.DayDreamOasisLabel.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.DayDreamOasisLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.DayDreamOasisLabel.Location = new System.Drawing.Point(176, 24);
+ this.DayDreamOasisLabel.Name = "DayDreamOasisLabel";
+ this.DayDreamOasisLabel.Size = new System.Drawing.Size(374, 52);
+ this.DayDreamOasisLabel.TabIndex = 2;
+ this.DayDreamOasisLabel.Text = "DAYDREAM OASIS";
+ //
+ // minimizeButton
+ //
+ this.minimizeButton.Location = new System.Drawing.Point(642, 15);
+ this.minimizeButton.Name = "minimizeButton";
+ this.minimizeButton.Size = new System.Drawing.Size(26, 22);
+ this.minimizeButton.TabIndex = 19;
+ //
+ // closeButton
+ //
+ this.closeButton.Location = new System.Drawing.Point(681, 17);
+ this.closeButton.Name = "closeButton";
+ this.closeButton.Size = new System.Drawing.Size(26, 20);
+ this.closeButton.TabIndex = 20;
+ //
+ // DaydreamOasis
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.BackColor = System.Drawing.Color.Gold;
+ this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
+ this.ClientSize = new System.Drawing.Size(726, 566);
+ this.Controls.Add(this.closeButton);
+ this.Controls.Add(this.minimizeButton);
+ this.Controls.Add(this.BergerLabel);
+ this.Controls.Add(this.BergerVR);
+ this.Controls.Add(this.BergerR);
+ this.Controls.Add(this.Berger);
+ this.Controls.Add(this.LuckyLabel);
+ this.Controls.Add(this.LuckyVR);
+ this.Controls.Add(this.LuckyR);
+ this.Controls.Add(this.Lucky);
+ this.Controls.Add(this.TankLabel);
+ this.Controls.Add(this.TankVR);
+ this.Controls.Add(this.TankR);
+ this.Controls.Add(this.Tank);
+ this.Controls.Add(this.DyerLabel);
+ this.Controls.Add(this.DyerVR);
+ this.Controls.Add(this.DyerR);
+ this.Controls.Add(this.Dyer);
+ this.Controls.Add(this.backButton);
+ this.Controls.Add(this.DayDreamOasisLabel);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
+ this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+ this.MaximizeBox = false;
+ this.Name = "DaydreamOasis";
+ this.Text = "FunkeySelectorGUI - Daydream Oasis";
+ this.TransparencyKey = System.Drawing.Color.Gold;
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Label BergerLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton BergerVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton BergerR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Berger;
+ private System.Windows.Forms.Label LuckyLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton LuckyVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton LuckyR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Lucky;
+ private System.Windows.Forms.Label TankLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton TankVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton TankR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Tank;
+ private System.Windows.Forms.Label DyerLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton DyerVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton DyerR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Dyer;
+ private FunkeySelector.UserControls.ChangeFormButton backButton;
+ private System.Windows.Forms.Label DayDreamOasisLabel;
+ private UserControls.MinimizeButton minimizeButton;
+ private UserControls.CloseButton closeButton;
+ }
+}
\ No newline at end of file
diff --git a/FunkeySelector/DaydreamOasis.cs b/FunkeySelector/DaydreamOasis.cs
new file mode 100644
index 0000000..5a4d5da
--- /dev/null
+++ b/FunkeySelector/DaydreamOasis.cs
@@ -0,0 +1,23 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Diagnostics;
+using System.Drawing;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+using FunkeySelector.UserControls;
+
+namespace FunkeySelector
+{
+ public partial class DaydreamOasis : BasicForm
+ {
+ public DaydreamOasis()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/FunkeySelector/Form9.resx b/FunkeySelector/DaydreamOasis.resx
similarity index 99%
rename from FunkeySelector/Form9.resx
rename to FunkeySelector/DaydreamOasis.resx
index ae32e4b..e11ddca 100644
--- a/FunkeySelector/Form9.resx
+++ b/FunkeySelector/DaydreamOasis.resx
@@ -118,7 +118,7 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEpZJREFUaEPtWXlQm/eZpk3TI9trp9Om2c220862mTpJk3WaxC6JHQ6DzWHEfQok
@@ -203,7 +203,7 @@
OxeOq6srr9fWutPq+Hts+1a/Db7ES7zES/y/hIHBfwKLHFpVnfk/lAAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEuFJREFUaEPtWXlUT/2+3u88cXhNlVBKisqUIeGNRlGEonnu1zz8mjXPRUlzSika
@@ -290,7 +290,7 @@
RU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEdVJREFUaEPtmXl002W6xzvDOHodHb3e6+AyoLIIdqC00NJ9TfekTdI23dI2XdO9
@@ -372,7 +372,7 @@
PctkYn/lfSSP5JE8kv9XYmb2T8FK2/tbzKkCAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAElFJREFUaEPtWGdU2/e5JnFvRpv2uE7T4SRO2qYrja9z254mzWjS5iRx3eHaDa0z
@@ -456,7 +456,7 @@
lobvpXXvyy+tD/EQD/EQD/F/Bzu7/wXYRAkshvU/jwAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEGxJREFUaEPtWHlU1Pe1HxeWGWb7zb7vMzAMM6wjiyOIG8gmGkAQBAQFBRFwwQBR
@@ -532,7 +532,7 @@
DHffWu/hHu7hHu7hHwce738BURYdzanD6zAAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEmhJREFUaEPtWHdY1Ge6HU0xzRQ3u5s1emM2WTfJWhLTzKZcY9ysSTYaE0tUmpSB
@@ -617,7 +617,7 @@
TkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEuBJREFUaEPtWHdUlPe2RY2JGnvuTbmmrJvc5GmqBmsECwIKCNJ7ncYMZYCZAYaB
@@ -704,7 +704,7 @@
TkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEipJREFUaEPtWXlw0+eZFgbMnQtwGm6MbXwj41uWLcuSD8nWad33fd+HLUuyZS4D
@@ -788,7 +788,7 @@
rkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEpJJREFUaEPtWXlw2+WZVpw7IQQMOSFOYjuOHd+3fEiyrPu0DuuwJEvWfd+SJVs+
@@ -873,7 +873,7 @@
IPvwT79Zwnv8QcbGwo/fxE3cxE3cxP9HMBj/DS/wvBXycVAxAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEvZJREFUaEPtWXdYm/edp3EzPNnTbLGHAQktxJ4CiY3YiCUkQGwhBJKQACGGQAyB
@@ -960,7 +960,7 @@
8AhfH6ys/hs3+6FoUZJlQAAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEnJJREFUaEPtWXdwlPeZ/m3vvfe+2qJdlS1qq15WIFRASEIIDBgsRDHFmGKKMBKm
@@ -1045,7 +1045,7 @@
j09lCwAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEv9JREFUaEPtWXl0k3W6Tpe0SbM3W5MmTZq0Tdq0ado03TdK6b636b7TNaULbelO
diff --git a/FunkeySelector/Form1.Designer.cs b/FunkeySelector/Form1.Designer.cs
index 912dc82..f080c12 100644
--- a/FunkeySelector/Form1.Designer.cs
+++ b/FunkeySelector/Form1.Designer.cs
@@ -29,436 +29,408 @@ protected override void Dispose(bool disposing)
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
- this.label2 = new System.Windows.Forms.Label();
- this.button1 = new System.Windows.Forms.Button();
- this.button2 = new System.Windows.Forms.Button();
- this.button3 = new System.Windows.Forms.Button();
- this.button4 = new System.Windows.Forms.Button();
- this.button5 = new System.Windows.Forms.Button();
- this.button6 = new System.Windows.Forms.Button();
- this.button7 = new System.Windows.Forms.Button();
- this.button8 = new System.Windows.Forms.Button();
- this.button9 = new System.Windows.Forms.Button();
- this.button10 = new System.Windows.Forms.Button();
- this.button12 = new System.Windows.Forms.Button();
- this.label5 = new System.Windows.Forms.Label();
- this.button11 = new System.Windows.Forms.Button();
- this.button13 = new System.Windows.Forms.Button();
- this.button14 = new System.Windows.Forms.Button();
- this.textBox1 = new System.Windows.Forms.TextBox();
- this.button16 = new System.Windows.Forms.Button();
- this.button17 = new System.Windows.Forms.Button();
- this.button15 = new System.Windows.Forms.Button();
- this.label6 = new System.Windows.Forms.Label();
- this.label7 = new System.Windows.Forms.Label();
- this.label8 = new System.Windows.Forms.Label();
- this.label9 = new System.Windows.Forms.Label();
- this.label10 = new System.Windows.Forms.Label();
- this.label11 = new System.Windows.Forms.Label();
+ this.titleLabel = new System.Windows.Forms.Label();
+ this.KelpyBasinButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.MagmaGorgeButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.LaputtaStationButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.FunkikiIslandButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.RoyaltonRacingComplexButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.NightmareRiftButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.DaydreamOasisButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.HiddenRealmButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.ParadoxGreenButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.UBLabel = new System.Windows.Forms.Label();
+ this.UnusedFunkeysButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.InsertCustomID = new System.Windows.Forms.Button();
+ this.CustomIDTextBox = new System.Windows.Forms.TextBox();
+ this.CustomFunkeysButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.Series1Label = new System.Windows.Forms.Label();
+ this.Series2Label = new System.Windows.Forms.Label();
+ this.Series3Label = new System.Windows.Forms.Label();
+ this.Series4Label = new System.Windows.Forms.Label();
+ this.Series5Label = new System.Windows.Forms.Label();
+ this.OtherLabel = new System.Windows.Forms.Label();
+ this.minimizeButton = new FunkeySelector.UserControls.MinimizeButton();
+ this.closeButton = new FunkeySelector.UserControls.CloseButton();
+ this.UB = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.FunkeysTownButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.optionsButton = new FunkeySelector.UserControls.OptionsButton();
this.SuspendLayout();
//
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.BackColor = System.Drawing.Color.Transparent;
- this.label2.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label2.ForeColor = System.Drawing.SystemColors.Control;
- this.label2.Location = new System.Drawing.Point(146, 18);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(435, 52);
- this.label2.TabIndex = 1;
- this.label2.Text = "FUNKEYSELECTORGUI";
- //
- // button1
- //
- this.button1.BackColor = System.Drawing.Color.Transparent;
- this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button1.FlatAppearance.BorderSize = 0;
- this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button1.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button1.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button1.Location = new System.Drawing.Point(76, 167);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(174, 37);
- this.button1.TabIndex = 3;
- this.button1.Text = "FUNKEYSTOWN";
- this.button1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button1.UseVisualStyleBackColor = false;
- this.button1.Click += new System.EventHandler(this.button1_Click_1);
- //
- // button2
- //
- this.button2.BackColor = System.Drawing.Color.Transparent;
- this.button2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button2.FlatAppearance.BorderSize = 0;
- this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button2.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button2.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button2.Location = new System.Drawing.Point(76, 248);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(174, 32);
- this.button2.TabIndex = 4;
- this.button2.Text = "KELPY BASIN";
- this.button2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button2.UseVisualStyleBackColor = false;
- this.button2.Click += new System.EventHandler(this.button2_Click);
- //
- // button3
- //
- this.button3.BackColor = System.Drawing.Color.Transparent;
- this.button3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button3.FlatAppearance.BorderSize = 0;
- this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button3.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button3.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button3.Location = new System.Drawing.Point(76, 210);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(174, 32);
- this.button3.TabIndex = 5;
- this.button3.Text = "MAGMA GORGE";
- this.button3.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button3.UseVisualStyleBackColor = false;
- this.button3.Click += new System.EventHandler(this.button3_Click);
- //
- // button4
- //
- this.button4.BackColor = System.Drawing.Color.Transparent;
- this.button4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button4.FlatAppearance.BorderSize = 0;
- this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button4.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button4.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button4.Location = new System.Drawing.Point(74, 286);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(182, 31);
- this.button4.TabIndex = 6;
- this.button4.Text = "LAPUTTA STATION";
- this.button4.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button4.UseVisualStyleBackColor = false;
- this.button4.Click += new System.EventHandler(this.button4_Click);
- //
- // button5
- //
- this.button5.BackColor = System.Drawing.Color.Transparent;
- this.button5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button5.FlatAppearance.BorderSize = 0;
- this.button5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button5.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button5.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button5.Location = new System.Drawing.Point(42, 359);
- this.button5.Name = "button5";
- this.button5.Size = new System.Drawing.Size(245, 30);
- this.button5.TabIndex = 7;
- this.button5.Text = "FUNKIKI ISLAND";
- this.button5.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button5.UseVisualStyleBackColor = false;
- this.button5.Click += new System.EventHandler(this.button5_Click);
- //
- // button6
- //
- this.button6.BackColor = System.Drawing.Color.Transparent;
- this.button6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button6.FlatAppearance.BorderSize = 0;
- this.button6.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button6.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button6.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button6.Location = new System.Drawing.Point(33, 395);
- this.button6.Name = "button6";
- this.button6.Size = new System.Drawing.Size(267, 31);
- this.button6.TabIndex = 8;
- this.button6.Text = "ROYALTON RACING COMPLEX";
- this.button6.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button6.UseVisualStyleBackColor = false;
- this.button6.Click += new System.EventHandler(this.button6_Click);
- //
- // button7
- //
- this.button7.BackColor = System.Drawing.Color.Transparent;
- this.button7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button7.FlatAppearance.BorderSize = 0;
- this.button7.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button7.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button7.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button7.Location = new System.Drawing.Point(293, 205);
- this.button7.Name = "button7";
- this.button7.Size = new System.Drawing.Size(175, 31);
- this.button7.TabIndex = 9;
- this.button7.Text = "NIGHTMARE RIFT";
- this.button7.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button7.UseVisualStyleBackColor = false;
- this.button7.Click += new System.EventHandler(this.button7_Click);
- //
- // button8
- //
- this.button8.BackColor = System.Drawing.Color.Transparent;
- this.button8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button8.FlatAppearance.BorderSize = 0;
- this.button8.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button8.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button8.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button8.Location = new System.Drawing.Point(293, 167);
- this.button8.Name = "button8";
- this.button8.Size = new System.Drawing.Size(175, 32);
- this.button8.TabIndex = 10;
- this.button8.Text = "DAYDREAM OASIS";
- this.button8.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button8.UseVisualStyleBackColor = false;
- this.button8.Click += new System.EventHandler(this.button8_Click);
- //
- // button9
- //
- this.button9.BackColor = System.Drawing.Color.Transparent;
- this.button9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button9.FlatAppearance.BorderSize = 0;
- this.button9.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button9.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button9.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button9.Location = new System.Drawing.Point(307, 298);
- this.button9.Name = "button9";
- this.button9.Size = new System.Drawing.Size(151, 36);
- this.button9.TabIndex = 11;
- this.button9.Text = "HIDDEN REALM";
- this.button9.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button9.UseVisualStyleBackColor = false;
- this.button9.Click += new System.EventHandler(this.button9_Click);
- //
- // button10
- //
- this.button10.BackColor = System.Drawing.Color.Transparent;
- this.button10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button10.FlatAppearance.BorderSize = 0;
- this.button10.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button10.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button10.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button10.Location = new System.Drawing.Point(293, 391);
- this.button10.Name = "button10";
- this.button10.Size = new System.Drawing.Size(175, 34);
- this.button10.TabIndex = 12;
- this.button10.Text = "PARADOX GREEN";
- this.button10.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button10.UseVisualStyleBackColor = false;
- this.button10.Click += new System.EventHandler(this.button10_Click);
- //
- // button12
- //
- this.button12.BackColor = System.Drawing.Color.Transparent;
- this.button12.BackgroundImage = global::FunkeySelector.Properties.Resources._246;
- this.button12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button12.FlatAppearance.BorderSize = 0;
- this.button12.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button12.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button12.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button12.Location = new System.Drawing.Point(681, 18);
- this.button12.Name = "button12";
- this.button12.Size = new System.Drawing.Size(26, 20);
- this.button12.TabIndex = 15;
- this.button12.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button12.UseVisualStyleBackColor = false;
- this.button12.Click += new System.EventHandler(this.button12_Click);
- this.button12.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button12_MouseDown);
- this.button12.MouseEnter += new System.EventHandler(this.button12_MouseEnter);
- this.button12.MouseLeave += new System.EventHandler(this.button12_MouseLeave);
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.BackColor = System.Drawing.Color.Transparent;
- this.label5.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label5.ForeColor = System.Drawing.SystemColors.Control;
- this.label5.Location = new System.Drawing.Point(572, 328);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(45, 29);
- this.label5.TabIndex = 72;
- this.label5.Text = "U.B";
- //
- // button11
- //
- this.button11.BackColor = System.Drawing.Color.Transparent;
- this.button11.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button11.BackgroundImage")));
- this.button11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button11.FlatAppearance.BorderSize = 0;
- this.button11.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button11.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button11.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button11.Location = new System.Drawing.Point(568, 359);
- this.button11.Name = "button11";
- this.button11.Size = new System.Drawing.Size(50, 63);
- this.button11.TabIndex = 71;
- this.button11.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button11.UseVisualStyleBackColor = false;
- this.button11.Click += new System.EventHandler(this.button11_Click);
- //
- // button13
- //
- this.button13.BackColor = System.Drawing.Color.Transparent;
- this.button13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button13.FlatAppearance.BorderSize = 0;
- this.button13.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button13.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button13.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button13.Location = new System.Drawing.Point(505, 177);
- this.button13.Name = "button13";
- this.button13.Size = new System.Drawing.Size(177, 31);
- this.button13.TabIndex = 73;
- this.button13.Text = "UNUSED FUNKEYS";
- this.button13.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button13.UseVisualStyleBackColor = false;
- this.button13.Click += new System.EventHandler(this.Button13_Click);
- //
- // button14
- //
- this.button14.BackColor = System.Drawing.Color.Transparent;
- this.button14.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button14.FlatAppearance.BorderSize = 0;
- this.button14.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button14.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button14.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button14.Location = new System.Drawing.Point(486, 282);
- this.button14.Name = "button14";
- this.button14.Size = new System.Drawing.Size(208, 52);
- this.button14.TabIndex = 74;
- this.button14.Text = "INSERT CUSTOM ID";
- this.button14.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button14.UseVisualStyleBackColor = false;
- this.button14.Click += new System.EventHandler(this.Button14_Click);
- //
- // textBox1
- //
- this.textBox1.Location = new System.Drawing.Point(505, 256);
- this.textBox1.Name = "textBox1";
- this.textBox1.Size = new System.Drawing.Size(177, 20);
- this.textBox1.TabIndex = 75;
- //
- // button16
- //
- this.button16.BackColor = System.Drawing.Color.Transparent;
- this.button16.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button16.FlatAppearance.BorderSize = 0;
- this.button16.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button16.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button16.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button16.Location = new System.Drawing.Point(486, 214);
- this.button16.Name = "button16";
- this.button16.Size = new System.Drawing.Size(208, 36);
- this.button16.TabIndex = 77;
- this.button16.Text = "CUSTOM FUNKEYS";
- this.button16.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button16.UseVisualStyleBackColor = false;
- this.button16.Click += new System.EventHandler(this.button16_Click);
- //
- // button17
- //
- this.button17.BackColor = System.Drawing.Color.Transparent;
- this.button17.BackgroundImage = global::FunkeySelector.Properties.Resources._679;
- this.button17.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
- this.button17.FlatAppearance.BorderSize = 0;
- this.button17.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
- this.button17.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
- this.button17.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button17.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button17.ForeColor = System.Drawing.Color.Transparent;
- this.button17.Location = new System.Drawing.Point(668, 44);
- this.button17.Name = "button17";
- this.button17.Size = new System.Drawing.Size(39, 44);
- this.button17.TabIndex = 78;
- this.button17.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button17.UseVisualStyleBackColor = false;
- this.button17.Click += new System.EventHandler(this.button17_Click);
- this.button17.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button17_MouseDown);
- this.button17.MouseEnter += new System.EventHandler(this.button17_MouseEnter);
- this.button17.MouseLeave += new System.EventHandler(this.button17_MouseLeave);
- //
- // button15
- //
- this.button15.BackColor = System.Drawing.Color.Transparent;
- this.button15.BackgroundImage = global::FunkeySelector.Properties.Resources._150;
- this.button15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button15.FlatAppearance.BorderSize = 0;
- this.button15.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button15.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button15.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button15.Location = new System.Drawing.Point(642, 16);
- this.button15.Name = "button15";
- this.button15.Size = new System.Drawing.Size(26, 22);
- this.button15.TabIndex = 79;
- this.button15.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button15.UseVisualStyleBackColor = false;
- this.button15.Click += new System.EventHandler(this.button15_Click);
- this.button15.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button15_MouseDown);
- this.button15.MouseEnter += new System.EventHandler(this.button15_MouseEnter);
- this.button15.MouseLeave += new System.EventHandler(this.button15_MouseLeave);
- //
- // label6
- //
- this.label6.AutoSize = true;
- this.label6.BackColor = System.Drawing.Color.Transparent;
- this.label6.Font = new System.Drawing.Font("Comic Sans MS", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label6.ForeColor = System.Drawing.SystemColors.Control;
- this.label6.Location = new System.Drawing.Point(113, 137);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(104, 27);
- this.label6.TabIndex = 80;
- this.label6.Text = "SERIES 1";
- //
- // label7
- //
- this.label7.AutoSize = true;
- this.label7.BackColor = System.Drawing.Color.Transparent;
- this.label7.Font = new System.Drawing.Font("Comic Sans MS", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label7.ForeColor = System.Drawing.SystemColors.Control;
- this.label7.Location = new System.Drawing.Point(110, 330);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(104, 27);
- this.label7.TabIndex = 81;
- this.label7.Text = "SERIES 2";
- //
- // label8
- //
- this.label8.AutoSize = true;
- this.label8.BackColor = System.Drawing.Color.Transparent;
- this.label8.Font = new System.Drawing.Font("Comic Sans MS", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label8.ForeColor = System.Drawing.SystemColors.Control;
- this.label8.Location = new System.Drawing.Point(332, 138);
- this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(104, 27);
- this.label8.TabIndex = 82;
- this.label8.Text = "SERIES 3";
- //
- // label9
- //
- this.label9.AutoSize = true;
- this.label9.BackColor = System.Drawing.Color.Transparent;
- this.label9.Font = new System.Drawing.Font("Comic Sans MS", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label9.ForeColor = System.Drawing.SystemColors.Control;
- this.label9.Location = new System.Drawing.Point(332, 265);
- this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(104, 27);
- this.label9.TabIndex = 83;
- this.label9.Text = "SERIES 4";
- //
- // label10
- //
- this.label10.AutoSize = true;
- this.label10.BackColor = System.Drawing.Color.Transparent;
- this.label10.Font = new System.Drawing.Font("Comic Sans MS", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label10.ForeColor = System.Drawing.SystemColors.Control;
- this.label10.Location = new System.Drawing.Point(332, 353);
- this.label10.Name = "label10";
- this.label10.Size = new System.Drawing.Size(104, 27);
- this.label10.TabIndex = 84;
- this.label10.Text = "SERIES 5";
- //
- // label11
- //
- this.label11.AutoSize = true;
- this.label11.BackColor = System.Drawing.Color.Transparent;
- this.label11.Font = new System.Drawing.Font("Comic Sans MS", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label11.ForeColor = System.Drawing.SystemColors.Control;
- this.label11.Location = new System.Drawing.Point(551, 141);
- this.label11.Name = "label11";
- this.label11.Size = new System.Drawing.Size(79, 27);
- this.label11.TabIndex = 85;
- this.label11.Text = "OTHER";
+ // titleLabel
+ //
+ this.titleLabel.AutoSize = true;
+ this.titleLabel.BackColor = System.Drawing.Color.Transparent;
+ this.titleLabel.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.titleLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.titleLabel.Location = new System.Drawing.Point(146, 18);
+ this.titleLabel.Name = "titleLabel";
+ this.titleLabel.Size = new System.Drawing.Size(435, 52);
+ this.titleLabel.TabIndex = 1;
+ this.titleLabel.Text = "FUNKEYSELECTORGUI";
+ //
+ // KelpyBasinButton
+ //
+ this.KelpyBasinButton.BackColor = System.Drawing.Color.Transparent;
+ this.KelpyBasinButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.KelpyBasinButton.FlatAppearance.BorderSize = 0;
+ this.KelpyBasinButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.KelpyBasinButton.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.KelpyBasinButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.KelpyBasinButton.FormToOpen = "KelpyBasin";
+ this.KelpyBasinButton.KeepCurrentForm = false;
+ this.KelpyBasinButton.Location = new System.Drawing.Point(76, 248);
+ this.KelpyBasinButton.Name = "KelpyBasinButton";
+ this.KelpyBasinButton.Size = new System.Drawing.Size(174, 32);
+ this.KelpyBasinButton.TabIndex = 5;
+ this.KelpyBasinButton.Text = "KELPY BASIN";
+ this.KelpyBasinButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.KelpyBasinButton.UseVisualStyleBackColor = false;
+ //
+ // MagmaGorgeButton
+ //
+ this.MagmaGorgeButton.BackColor = System.Drawing.Color.Transparent;
+ this.MagmaGorgeButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.MagmaGorgeButton.FlatAppearance.BorderSize = 0;
+ this.MagmaGorgeButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.MagmaGorgeButton.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.MagmaGorgeButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.MagmaGorgeButton.FormToOpen = "MagmaGorge";
+ this.MagmaGorgeButton.KeepCurrentForm = false;
+ this.MagmaGorgeButton.Location = new System.Drawing.Point(76, 210);
+ this.MagmaGorgeButton.Name = "MagmaGorgeButton";
+ this.MagmaGorgeButton.Size = new System.Drawing.Size(174, 32);
+ this.MagmaGorgeButton.TabIndex = 4;
+ this.MagmaGorgeButton.Text = "MAGMA GORGE";
+ this.MagmaGorgeButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.MagmaGorgeButton.UseVisualStyleBackColor = false;
+ //
+ // LaputtaStationButton
+ //
+ this.LaputtaStationButton.BackColor = System.Drawing.Color.Transparent;
+ this.LaputtaStationButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.LaputtaStationButton.FlatAppearance.BorderSize = 0;
+ this.LaputtaStationButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.LaputtaStationButton.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.LaputtaStationButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.LaputtaStationButton.FormToOpen = "LaputtaStation";
+ this.LaputtaStationButton.KeepCurrentForm = false;
+ this.LaputtaStationButton.Location = new System.Drawing.Point(74, 286);
+ this.LaputtaStationButton.Name = "LaputtaStationButton";
+ this.LaputtaStationButton.Size = new System.Drawing.Size(182, 31);
+ this.LaputtaStationButton.TabIndex = 6;
+ this.LaputtaStationButton.Text = "LAPUTTA STATION";
+ this.LaputtaStationButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.LaputtaStationButton.UseVisualStyleBackColor = false;
+ //
+ // FunkikiIslandButton
+ //
+ this.FunkikiIslandButton.BackColor = System.Drawing.Color.Transparent;
+ this.FunkikiIslandButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.FunkikiIslandButton.FlatAppearance.BorderSize = 0;
+ this.FunkikiIslandButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.FunkikiIslandButton.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.FunkikiIslandButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.FunkikiIslandButton.FormToOpen = "FunkikiIsland";
+ this.FunkikiIslandButton.KeepCurrentForm = false;
+ this.FunkikiIslandButton.Location = new System.Drawing.Point(42, 359);
+ this.FunkikiIslandButton.Name = "FunkikiIslandButton";
+ this.FunkikiIslandButton.Size = new System.Drawing.Size(245, 30);
+ this.FunkikiIslandButton.TabIndex = 8;
+ this.FunkikiIslandButton.Text = "FUNKIKI ISLAND";
+ this.FunkikiIslandButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.FunkikiIslandButton.UseVisualStyleBackColor = false;
+ //
+ // RoyaltonRacingComplexButton
+ //
+ this.RoyaltonRacingComplexButton.BackColor = System.Drawing.Color.Transparent;
+ this.RoyaltonRacingComplexButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.RoyaltonRacingComplexButton.FlatAppearance.BorderSize = 0;
+ this.RoyaltonRacingComplexButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.RoyaltonRacingComplexButton.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.RoyaltonRacingComplexButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.RoyaltonRacingComplexButton.FormToOpen = "RoyaltonRacingComplex";
+ this.RoyaltonRacingComplexButton.KeepCurrentForm = false;
+ this.RoyaltonRacingComplexButton.Location = new System.Drawing.Point(33, 395);
+ this.RoyaltonRacingComplexButton.Name = "RoyaltonRacingComplexButton";
+ this.RoyaltonRacingComplexButton.Size = new System.Drawing.Size(267, 31);
+ this.RoyaltonRacingComplexButton.TabIndex = 9;
+ this.RoyaltonRacingComplexButton.Text = "ROYALTON RACING COMPLEX";
+ this.RoyaltonRacingComplexButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.RoyaltonRacingComplexButton.UseVisualStyleBackColor = false;
+ //
+ // NightmareRiftButton
+ //
+ this.NightmareRiftButton.BackColor = System.Drawing.Color.Transparent;
+ this.NightmareRiftButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.NightmareRiftButton.FlatAppearance.BorderSize = 0;
+ this.NightmareRiftButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.NightmareRiftButton.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.NightmareRiftButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.NightmareRiftButton.FormToOpen = "NightmareRift";
+ this.NightmareRiftButton.KeepCurrentForm = false;
+ this.NightmareRiftButton.Location = new System.Drawing.Point(293, 205);
+ this.NightmareRiftButton.Name = "NightmareRiftButton";
+ this.NightmareRiftButton.Size = new System.Drawing.Size(175, 31);
+ this.NightmareRiftButton.TabIndex = 12;
+ this.NightmareRiftButton.Text = "NIGHTMARE RIFT";
+ this.NightmareRiftButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.NightmareRiftButton.UseVisualStyleBackColor = false;
+ //
+ // DaydreamOasisButton
+ //
+ this.DaydreamOasisButton.BackColor = System.Drawing.Color.Transparent;
+ this.DaydreamOasisButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.DaydreamOasisButton.FlatAppearance.BorderSize = 0;
+ this.DaydreamOasisButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.DaydreamOasisButton.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.DaydreamOasisButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.DaydreamOasisButton.FormToOpen = "DaydreamOasis";
+ this.DaydreamOasisButton.KeepCurrentForm = false;
+ this.DaydreamOasisButton.Location = new System.Drawing.Point(293, 167);
+ this.DaydreamOasisButton.Name = "DaydreamOasisButton";
+ this.DaydreamOasisButton.Size = new System.Drawing.Size(175, 32);
+ this.DaydreamOasisButton.TabIndex = 11;
+ this.DaydreamOasisButton.Text = "DAYDREAM OASIS";
+ this.DaydreamOasisButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.DaydreamOasisButton.UseVisualStyleBackColor = false;
+ //
+ // HiddenRealmButton
+ //
+ this.HiddenRealmButton.BackColor = System.Drawing.Color.Transparent;
+ this.HiddenRealmButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.HiddenRealmButton.FlatAppearance.BorderSize = 0;
+ this.HiddenRealmButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.HiddenRealmButton.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.HiddenRealmButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.HiddenRealmButton.FormToOpen = "HiddenRealm";
+ this.HiddenRealmButton.KeepCurrentForm = false;
+ this.HiddenRealmButton.Location = new System.Drawing.Point(307, 298);
+ this.HiddenRealmButton.Name = "HiddenRealmButton";
+ this.HiddenRealmButton.Size = new System.Drawing.Size(151, 36);
+ this.HiddenRealmButton.TabIndex = 14;
+ this.HiddenRealmButton.Text = "HIDDEN REALM";
+ this.HiddenRealmButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.HiddenRealmButton.UseVisualStyleBackColor = false;
+ //
+ // ParadoxGreenButton
+ //
+ this.ParadoxGreenButton.BackColor = System.Drawing.Color.Transparent;
+ this.ParadoxGreenButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.ParadoxGreenButton.FlatAppearance.BorderSize = 0;
+ this.ParadoxGreenButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.ParadoxGreenButton.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.ParadoxGreenButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.ParadoxGreenButton.FormToOpen = "ParadoxGreen";
+ this.ParadoxGreenButton.KeepCurrentForm = false;
+ this.ParadoxGreenButton.Location = new System.Drawing.Point(295, 391);
+ this.ParadoxGreenButton.Name = "ParadoxGreenButton";
+ this.ParadoxGreenButton.Size = new System.Drawing.Size(175, 34);
+ this.ParadoxGreenButton.TabIndex = 16;
+ this.ParadoxGreenButton.Text = "PARADOX GREEN";
+ this.ParadoxGreenButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.ParadoxGreenButton.UseVisualStyleBackColor = false;
+ //
+ // UBLabel
+ //
+ this.UBLabel.AutoSize = true;
+ this.UBLabel.BackColor = System.Drawing.Color.Transparent;
+ this.UBLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.UBLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.UBLabel.Location = new System.Drawing.Point(572, 345);
+ this.UBLabel.Name = "UBLabel";
+ this.UBLabel.Size = new System.Drawing.Size(45, 29);
+ this.UBLabel.TabIndex = 22;
+ this.UBLabel.Text = "U.B";
+ //
+ // UnusedFunkeysButton
+ //
+ this.UnusedFunkeysButton.BackColor = System.Drawing.Color.Transparent;
+ this.UnusedFunkeysButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.UnusedFunkeysButton.FlatAppearance.BorderSize = 0;
+ this.UnusedFunkeysButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.UnusedFunkeysButton.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.UnusedFunkeysButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.UnusedFunkeysButton.FormToOpen = "UnusedFunkeys";
+ this.UnusedFunkeysButton.KeepCurrentForm = false;
+ this.UnusedFunkeysButton.Location = new System.Drawing.Point(505, 161);
+ this.UnusedFunkeysButton.Name = "UnusedFunkeysButton";
+ this.UnusedFunkeysButton.Size = new System.Drawing.Size(177, 32);
+ this.UnusedFunkeysButton.TabIndex = 18;
+ this.UnusedFunkeysButton.Text = "UNUSED FUNKEYS";
+ this.UnusedFunkeysButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.UnusedFunkeysButton.UseVisualStyleBackColor = false;
+ //
+ // InsertCustomID
+ //
+ this.InsertCustomID.BackColor = System.Drawing.Color.Transparent;
+ this.InsertCustomID.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.InsertCustomID.FlatAppearance.BorderSize = 0;
+ this.InsertCustomID.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.InsertCustomID.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.InsertCustomID.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.InsertCustomID.Location = new System.Drawing.Point(486, 287);
+ this.InsertCustomID.Name = "InsertCustomID";
+ this.InsertCustomID.Size = new System.Drawing.Size(208, 37);
+ this.InsertCustomID.TabIndex = 21;
+ this.InsertCustomID.Text = "INSERT CUSTOM ID";
+ this.InsertCustomID.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.InsertCustomID.UseVisualStyleBackColor = false;
+ this.InsertCustomID.Click += new System.EventHandler(this.InsertCustomID_Click);
+ //
+ // CustomIDTextBox
+ //
+ this.CustomIDTextBox.Location = new System.Drawing.Point(505, 262);
+ this.CustomIDTextBox.Name = "CustomIDTextBox";
+ this.CustomIDTextBox.Size = new System.Drawing.Size(177, 20);
+ this.CustomIDTextBox.TabIndex = 20;
+ //
+ // CustomFunkeysButton
+ //
+ this.CustomFunkeysButton.BackColor = System.Drawing.Color.Transparent;
+ this.CustomFunkeysButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.CustomFunkeysButton.FlatAppearance.BorderSize = 0;
+ this.CustomFunkeysButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.CustomFunkeysButton.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.CustomFunkeysButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.CustomFunkeysButton.FormToOpen = "CustomFunkeys";
+ this.CustomFunkeysButton.KeepCurrentForm = false;
+ this.CustomFunkeysButton.Location = new System.Drawing.Point(505, 199);
+ this.CustomFunkeysButton.Name = "CustomFunkeysButton";
+ this.CustomFunkeysButton.Size = new System.Drawing.Size(177, 31);
+ this.CustomFunkeysButton.TabIndex = 19;
+ this.CustomFunkeysButton.Text = "CUSTOM FUNKEYS";
+ this.CustomFunkeysButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.CustomFunkeysButton.UseVisualStyleBackColor = false;
+ //
+ // Series1Label
+ //
+ this.Series1Label.AutoSize = true;
+ this.Series1Label.BackColor = System.Drawing.Color.Transparent;
+ this.Series1Label.Font = new System.Drawing.Font("Comic Sans MS", 14.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Series1Label.ForeColor = System.Drawing.SystemColors.Control;
+ this.Series1Label.Location = new System.Drawing.Point(113, 137);
+ this.Series1Label.Name = "Series1Label";
+ this.Series1Label.Size = new System.Drawing.Size(104, 27);
+ this.Series1Label.TabIndex = 2;
+ this.Series1Label.Text = "SERIES 1";
+ //
+ // Series2Label
+ //
+ this.Series2Label.AutoSize = true;
+ this.Series2Label.BackColor = System.Drawing.Color.Transparent;
+ this.Series2Label.Font = new System.Drawing.Font("Comic Sans MS", 14.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Series2Label.ForeColor = System.Drawing.SystemColors.Control;
+ this.Series2Label.Location = new System.Drawing.Point(110, 330);
+ this.Series2Label.Name = "Series2Label";
+ this.Series2Label.Size = new System.Drawing.Size(104, 27);
+ this.Series2Label.TabIndex = 7;
+ this.Series2Label.Text = "SERIES 2";
+ //
+ // Series3Label
+ //
+ this.Series3Label.AutoSize = true;
+ this.Series3Label.BackColor = System.Drawing.Color.Transparent;
+ this.Series3Label.Font = new System.Drawing.Font("Comic Sans MS", 14.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Series3Label.ForeColor = System.Drawing.SystemColors.Control;
+ this.Series3Label.Location = new System.Drawing.Point(332, 138);
+ this.Series3Label.Name = "Series3Label";
+ this.Series3Label.Size = new System.Drawing.Size(104, 27);
+ this.Series3Label.TabIndex = 10;
+ this.Series3Label.Text = "SERIES 3";
+ //
+ // Series4Label
+ //
+ this.Series4Label.AutoSize = true;
+ this.Series4Label.BackColor = System.Drawing.Color.Transparent;
+ this.Series4Label.Font = new System.Drawing.Font("Comic Sans MS", 14.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Series4Label.ForeColor = System.Drawing.SystemColors.Control;
+ this.Series4Label.Location = new System.Drawing.Point(332, 265);
+ this.Series4Label.Name = "Series4Label";
+ this.Series4Label.Size = new System.Drawing.Size(104, 27);
+ this.Series4Label.TabIndex = 13;
+ this.Series4Label.Text = "SERIES 4";
+ //
+ // Series5Label
+ //
+ this.Series5Label.AutoSize = true;
+ this.Series5Label.BackColor = System.Drawing.Color.Transparent;
+ this.Series5Label.Font = new System.Drawing.Font("Comic Sans MS", 14.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Series5Label.ForeColor = System.Drawing.SystemColors.Control;
+ this.Series5Label.Location = new System.Drawing.Point(332, 353);
+ this.Series5Label.Name = "Series5Label";
+ this.Series5Label.Size = new System.Drawing.Size(104, 27);
+ this.Series5Label.TabIndex = 15;
+ this.Series5Label.Text = "SERIES 5";
+ //
+ // OtherLabel
+ //
+ this.OtherLabel.AutoSize = true;
+ this.OtherLabel.BackColor = System.Drawing.Color.Transparent;
+ this.OtherLabel.Font = new System.Drawing.Font("Comic Sans MS", 14.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.OtherLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.OtherLabel.Location = new System.Drawing.Point(551, 131);
+ this.OtherLabel.Name = "OtherLabel";
+ this.OtherLabel.Size = new System.Drawing.Size(79, 27);
+ this.OtherLabel.TabIndex = 17;
+ this.OtherLabel.Text = "OTHER";
+ //
+ // minimizeButton
+ //
+ this.minimizeButton.Location = new System.Drawing.Point(642, 16);
+ this.minimizeButton.Name = "minimizeButton";
+ this.minimizeButton.Size = new System.Drawing.Size(26, 22);
+ this.minimizeButton.TabIndex = 24;
+ //
+ // closeButton
+ //
+ this.closeButton.Location = new System.Drawing.Point(681, 18);
+ this.closeButton.Name = "closeButton";
+ this.closeButton.Size = new System.Drawing.Size(26, 20);
+ this.closeButton.TabIndex = 25;
+ //
+ // UB
+ //
+ this.UB.BackColor = System.Drawing.Color.Transparent;
+ this.UB.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("UB.BackgroundImage")));
+ this.UB.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.UB.FlatAppearance.BorderSize = 0;
+ this.UB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.UB.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.UB.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.UB.FunkeyID = "FFFFFFF0";
+ this.UB.Location = new System.Drawing.Point(568, 363);
+ this.UB.Name = "UB";
+ this.UB.Size = new System.Drawing.Size(50, 63);
+ this.UB.TabIndex = 23;
+ this.UB.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.UB.UseVisualStyleBackColor = false;
+ //
+ // FunkeysTownButton
+ //
+ this.FunkeysTownButton.BackColor = System.Drawing.Color.Transparent;
+ this.FunkeysTownButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.FunkeysTownButton.FlatAppearance.BorderSize = 0;
+ this.FunkeysTownButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.FunkeysTownButton.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.FunkeysTownButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.FunkeysTownButton.FormToOpen = "FunkeysTown";
+ this.FunkeysTownButton.KeepCurrentForm = false;
+ this.FunkeysTownButton.Location = new System.Drawing.Point(76, 167);
+ this.FunkeysTownButton.Name = "FunkeysTownButton";
+ this.FunkeysTownButton.Size = new System.Drawing.Size(174, 37);
+ this.FunkeysTownButton.TabIndex = 3;
+ this.FunkeysTownButton.Text = "FUNKEYSTOWN";
+ this.FunkeysTownButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.FunkeysTownButton.UseVisualStyleBackColor = false;
+ //
+ // optionsButton
+ //
+ this.optionsButton.BackColor = System.Drawing.Color.Transparent;
+ this.optionsButton.Location = new System.Drawing.Point(668, 44);
+ this.optionsButton.Name = "optionsButton";
+ this.optionsButton.Size = new System.Drawing.Size(39, 44);
+ this.optionsButton.TabIndex = 26;
//
// Form1
//
@@ -468,70 +440,71 @@ private void InitializeComponent()
this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
this.ClientSize = new System.Drawing.Size(727, 563);
- this.Controls.Add(this.label11);
- this.Controls.Add(this.label10);
- this.Controls.Add(this.label9);
- this.Controls.Add(this.label8);
- this.Controls.Add(this.label7);
- this.Controls.Add(this.label6);
- this.Controls.Add(this.button15);
- this.Controls.Add(this.button17);
- this.Controls.Add(this.button16);
- this.Controls.Add(this.textBox1);
- this.Controls.Add(this.button14);
- this.Controls.Add(this.button13);
- this.Controls.Add(this.label5);
- this.Controls.Add(this.button11);
- this.Controls.Add(this.button12);
- this.Controls.Add(this.button10);
- this.Controls.Add(this.button9);
- this.Controls.Add(this.button8);
- this.Controls.Add(this.button7);
- this.Controls.Add(this.button6);
- this.Controls.Add(this.button5);
- this.Controls.Add(this.button4);
- this.Controls.Add(this.button3);
- this.Controls.Add(this.button2);
- this.Controls.Add(this.button1);
- this.Controls.Add(this.label2);
+ this.Controls.Add(this.optionsButton);
+ this.Controls.Add(this.minimizeButton);
+ this.Controls.Add(this.closeButton);
+ this.Controls.Add(this.OtherLabel);
+ this.Controls.Add(this.Series5Label);
+ this.Controls.Add(this.Series4Label);
+ this.Controls.Add(this.Series3Label);
+ this.Controls.Add(this.Series2Label);
+ this.Controls.Add(this.Series1Label);
+ this.Controls.Add(this.CustomFunkeysButton);
+ this.Controls.Add(this.CustomIDTextBox);
+ this.Controls.Add(this.InsertCustomID);
+ this.Controls.Add(this.UnusedFunkeysButton);
+ this.Controls.Add(this.UBLabel);
+ this.Controls.Add(this.UB);
+ this.Controls.Add(this.ParadoxGreenButton);
+ this.Controls.Add(this.HiddenRealmButton);
+ this.Controls.Add(this.DaydreamOasisButton);
+ this.Controls.Add(this.NightmareRiftButton);
+ this.Controls.Add(this.RoyaltonRacingComplexButton);
+ this.Controls.Add(this.FunkikiIslandButton);
+ this.Controls.Add(this.LaputtaStationButton);
+ this.Controls.Add(this.MagmaGorgeButton);
+ this.Controls.Add(this.KelpyBasinButton);
+ this.Controls.Add(this.FunkeysTownButton);
+ this.Controls.Add(this.titleLabel);
this.DoubleBuffered = true;
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "Form1";
this.Text = "FunkeySelectorGUI";
+ this.TransparencyKey = System.Drawing.Color.Gold;
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Button button2;
- private System.Windows.Forms.Button button3;
- private System.Windows.Forms.Button button4;
- private System.Windows.Forms.Button button5;
- private System.Windows.Forms.Button button6;
- private System.Windows.Forms.Button button7;
- private System.Windows.Forms.Button button8;
- private System.Windows.Forms.Button button9;
- private System.Windows.Forms.Button button10;
- private System.Windows.Forms.Button button12;
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.Button button11;
- private System.Windows.Forms.Button button13;
- private System.Windows.Forms.Button button14;
- private System.Windows.Forms.TextBox textBox1;
- private System.Windows.Forms.Button button16;
- private System.Windows.Forms.Button button17;
- private System.Windows.Forms.Button button15;
- private System.Windows.Forms.Label label6;
- private System.Windows.Forms.Label label7;
- private System.Windows.Forms.Label label8;
- private System.Windows.Forms.Label label9;
- private System.Windows.Forms.Label label10;
- private System.Windows.Forms.Label label11;
+ private System.Windows.Forms.Label titleLabel;
+ private FunkeySelector.UserControls.ChangeFormButton FunkeysTownButton;
+ private FunkeySelector.UserControls.ChangeFormButton MagmaGorgeButton;
+ private FunkeySelector.UserControls.ChangeFormButton LaputtaStationButton;
+ private FunkeySelector.UserControls.ChangeFormButton FunkikiIslandButton;
+ private FunkeySelector.UserControls.ChangeFormButton RoyaltonRacingComplexButton;
+ private FunkeySelector.UserControls.ChangeFormButton NightmareRiftButton;
+ private FunkeySelector.UserControls.ChangeFormButton DaydreamOasisButton;
+ private FunkeySelector.UserControls.ChangeFormButton HiddenRealmButton;
+ private FunkeySelector.UserControls.ChangeFormButton ParadoxGreenButton;
+ private System.Windows.Forms.Label UBLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton UB;
+ private System.Windows.Forms.Button InsertCustomID;
+ private System.Windows.Forms.TextBox CustomIDTextBox;
+ private FunkeySelector.UserControls.ChangeFormButton CustomFunkeysButton;
+ private System.Windows.Forms.Label Series1Label;
+ private System.Windows.Forms.Label Series2Label;
+ private System.Windows.Forms.Label Series3Label;
+ private System.Windows.Forms.Label Series4Label;
+ private System.Windows.Forms.Label Series5Label;
+ private System.Windows.Forms.Label OtherLabel;
+ private UserControls.CloseButton closeButton;
+ private UserControls.MinimizeButton minimizeButton;
+ private UserControls.ChangeFormButton KelpyBasinButton;
+ private UserControls.OptionsButton optionsButton;
+ private FunkeySelector.UserControls.ChangeFormButton UnusedFunkeysButton;
}
}
diff --git a/FunkeySelector/Form1.cs b/FunkeySelector/Form1.cs
index 4c72c71..3604ea7 100644
--- a/FunkeySelector/Form1.cs
+++ b/FunkeySelector/Form1.cs
@@ -11,319 +11,74 @@
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
+using FunkeySelector.UserControls;
namespace FunkeySelector
{
- public partial class Form1 : Form
+ public partial class Form1 : BasicForm
{
- //
- //Initial Setups
- //
+ static bool firstStart = true;
- CustomFManager customF = new CustomFManager(); //Sets the CustomFManager to customf.
- bool firstStart = true;
-
- public Form1() //When the form is opened.
+ public Form1()
{
InitializeComponent();
- this.TransparencyKey = System.Drawing.Color.Gold; //Removes the gold sections to allow the UI to be rounded.
- if (firstStart == true)
- {
- if (Properties.Settings.Default.disableGameCheck == false) //If the game check is allowed.
- {
- if (!File.Exists("UBFunkeys.exe")) //Checks if it's in the RadicaGame folder.
- {
- if (!File.Exists("OpenFK.exe")) //Ensures that OpenFK users won't get warned.
- {
- MessageBox.Show("The U.B. Funkeys game was not found! Did you put FunkeySelectorGUI in the RadicaGame folder?");
- }
- }
- }
- if (Properties.Settings.Default.disableModCheck == false) // Checks if mod check is allowed.
- {
- if (File.Exists("Main.swf")) //Checks if the main.swf is in the directory, to prevent null errors.
- {
- if (CalculateMD5("Main.swf") != "93261ce3dc332fdee5d4335eab0a8e63") //Compares the MD5 hash of the local main.swf with the mod's main.swf.
- {
- if (File.Exists("OpenFK.exe")) //Ensures that OpenFK users won't get warned.
- {
- Debug.WriteLine("OpenFK detected! Skipping mod check.");
- }
- else MessageBox.Show("Could not detect the Funkeys Selection Mod! Did you install the mod?");
- }else if (CalculateMD5("Main.swf") == "93261ce3dc332fdee5d4335eab0a8e63" && File.Exists("OpenFK.exe"))
- {
- MessageBox.Show("You are using OpenFK with the Funkeys Selection Mod. Please use the original Main.swf with OpenFK's customF mode for a better experience.");
- }
- }
- }
- if (Properties.Settings.Default.disableWineCheck == false) //Checks if Wine check is allowed.
- {
- if (Properties.Settings.Default.wineCompat == false) //If wine compatibility is on, it won't check as well, as there's no need to check and prompt for wine compatibility.
- {
- if (checkMachineType() == true) //Calls the Wine checker
- {
- if (MessageBox.Show("FunkeySelectorGUI has detected it is running from Wine. If you want to enable Wine compatibility tweaks, which fixes the selection of Funkeys, click yes.", "Wine detected!", MessageBoxButtons.YesNo) == DialogResult.Yes)
- {
- Properties.Settings.Default.wineCompat = true;
- }
- }
- }
- }
- firstStart = false; //Prevents the checks from running after first start.
- }
- }
-
- protected override void WndProc(ref Message m) //Allows the window to be dragged.
- {
- switch (m.Msg)
+ if (firstStart == false) return;
+ firstStart = false;
+
+ if (
+ Properties.Settings.Default.disableGameCheck == false &&
+ !File.Exists("UBFunkeys.exe") && !File.Exists("OpenFK.exe")
+ ) _ = MessageBox.Show("The U.B. Funkeys game was not found! Did you put FunkeySelectorGUI in the RadicaGame folder?");
+
+ if (
+ Properties.Settings.Default.disableModCheck == false &&
+ File.Exists("Main.swf")
+ )
{
- case 0x84:
- base.WndProc(ref m);
- if ((int)m.Result == 0x1)
- m.Result = (IntPtr)0x2;
- return;
- }
+ string mainSWFMD5 = CalculateMD5("Main.swf");
- base.WndProc(ref m);
- }
+ if (
+ mainSWFMD5 != "93261ce3dc332fdee5d4335eab0a8e63" &&
+ !File.Exists("OpenFK.exe")
+ ) _ = MessageBox.Show("Could not detect the Funkeys Selection Mod! Did you install the mod?");
- public static bool checkMachineType() //Checks if FSGUI is running from Wine or Windows.
- {
- var key = Registry.CurrentUser.OpenSubKey(@"SOFTWARE\Wine\"); //Checks if Wine is detected using a registry key that usually is only used on Wine.
- if (key == null)
- {
- return false; //Windows
- }
- else
- {
- return true; //Wine
+ else if (
+ mainSWFMD5 == "93261ce3dc332fdee5d4335eab0a8e63" &&
+ File.Exists("OpenFK.exe")
+ ) _ = MessageBox.Show("You are using OpenFK with the Funkeys Selection Mod. Please use the original Main.swf with OpenFK's customF mode for a better experience.");
}
- }
-
- static string CalculateMD5(string filename) //Generates the MD5 hash of the main.swf.
- {
- using (var md5 = MD5.Create())
- {
- using (var stream = File.OpenRead(filename)) //Opens the main.swf.
- {
- var hash = md5.ComputeHash(stream); //Computes the MD5 hash of the swf.
- return BitConverter.ToString(hash).Replace("-", "").ToLowerInvariant(); //Converts the hash to a readable string to compare.
- }
- }
- }
-
- //
- // End of Initial Setups
- //
-
- //
- // Button Clicks
- // Most of these just hide this form and shows another one.
- //
-
- //Exit
- private void button1_Click(object sender, EventArgs e)
- {
- Application.Exit();
- }
-
- //Funkeystown
- private void button1_Click_1(object sender, EventArgs e)
- {
- Form2 funktown = new Form2();
- this.Hide();
- funktown.StartPosition = FormStartPosition.CenterParent;
- funktown.ShowDialog(this);
- }
-
- //Kelpy Basin
- private void button2_Click(object sender, EventArgs e)
- {
- Form3 kelp = new Form3();
- this.Hide();
- kelp.StartPosition = FormStartPosition.CenterParent;
- kelp.ShowDialog(this);
- }
-
- //Exit (Again)
- private void button12_Click(object sender, EventArgs e)
- {
- Application.Exit();
- }
-
- //Magma Gorge
- private void button3_Click(object sender, EventArgs e)
- {
- Form4 magma = new Form4();
- this.Hide();
- magma.StartPosition = FormStartPosition.CenterParent;
- magma.ShowDialog(this);
- }
-
- //Laputta Station
- private void button4_Click(object sender, EventArgs e)
- {
- Form5 laput = new Form5();
- this.Hide();
- laput.StartPosition = FormStartPosition.CenterParent;
- laput.ShowDialog(this);
- }
-
- //Funkiki Island
- private void button5_Click(object sender, EventArgs e)
- {
- Form6 funkiki = new Form6();
- this.Hide();
- funkiki.StartPosition = FormStartPosition.CenterParent;
- funkiki.ShowDialog(this);
- }
-
-
- //Royalton Racing Complex
- private void button6_Click(object sender, EventArgs e)
- {
- Form7 rrc = new Form7();
- this.Hide();
- rrc.StartPosition = FormStartPosition.CenterParent;
- rrc.ShowDialog(this);
- }
-
- //Nightmare Rift
- private void button7_Click(object sender, EventArgs e)
- {
- Form8 nightmare = new Form8();
- this.Hide();
- nightmare.StartPosition = FormStartPosition.CenterParent;
- nightmare.ShowDialog(this);
- }
-
- //Daydream Oasis
- private void button8_Click(object sender, EventArgs e)
- {
- Form9 daydream = new Form9();
- this.Hide();
- daydream.StartPosition = FormStartPosition.CenterParent;
- daydream.ShowDialog(this);
- }
-
- //Hidden Realm
- private void button9_Click(object sender, EventArgs e)
- {
- Form10 hrf = new Form10();
- this.Hide();
- hrf.StartPosition = FormStartPosition.CenterParent;
- hrf.ShowDialog(this);
- }
-
- //Paradox Green
- private void button10_Click(object sender, EventArgs e)
- {
- Form11 paradox = new Form11();
- this.Hide();
- paradox.StartPosition = FormStartPosition.CenterParent;
- paradox.ShowDialog(this);
- }
-
- //U.B.
- private void button11_Click(object sender, EventArgs e)
- {
- customF.setFunkey("FFFFFFF0");
- }
-
- //Unused Funkeys
- private void Button13_Click(object sender, EventArgs e)
- {
- Form12 unused = new Form12();
- this.Hide();
- unused.StartPosition = FormStartPosition.CenterParent;
- unused.ShowDialog(this);
- }
-
- //Insert Custom ID
- private void Button14_Click(object sender, EventArgs e)
- {
- customF.setFunkey(textBox1.Text); //Sets customF to the contents of textBox1.
- }
-
- //Custom Funkeys
- private void button16_Click(object sender, EventArgs e)
- {
- Form13 customf = new Form13();
- this.Hide();
- customf.StartPosition = FormStartPosition.CenterParent;
- customf.ShowDialog(this);
- }
- //Options
- private void button17_Click(object sender, EventArgs e)
- {
- Form14 options = new Form14();
- options.StartPosition = FormStartPosition.CenterParent;
- options.ShowDialog();
- }
-
- //Minimize
- private void button15_Click(object sender, EventArgs e)
- {
- this.WindowState = FormWindowState.Minimized;
- }
-
- //
- //End of Button Clicks
- //
-
- //
- //Button Image Swaps
- //
-
- //Options
- private void button17_MouseEnter(object sender, EventArgs e)
- {
- button17.BackgroundImage = Properties.Resources._681;
- }
-
- private void button17_MouseLeave(object sender, EventArgs e)
- {
- button17.BackgroundImage = Properties.Resources._679;
+ // Asks user to enable wine tweaks
+ if (
+ Properties.Settings.Default.disableWineCheck == false &&
+ Properties.Settings.Default.wineCompat == false &&
+ IsWine() &&
+ MessageBox.Show(
+ "FunkeySelectorGUI has detected it is running from Wine. If you want to enable Wine compatibility tweaks, which fixes the selection of Funkeys, click yes.",
+ "Wine detected!",
+ MessageBoxButtons.YesNo
+ ) == DialogResult.Yes
+ ) Properties.Settings.Default.wineCompat = true;
}
- private void button17_MouseDown(object sender, MouseEventArgs e)
+ public static bool IsWine()
{
- button17.BackgroundImage = Properties.Resources._683;
+ // This registry key is usually only present when running from Wine
+ var key = Registry.CurrentUser.OpenSubKey(@"SOFTWARE\Wine\");
+ return key != null;
}
- //Minimize
- private void button15_MouseLeave(object sender, EventArgs e)
+ static string CalculateMD5(string filename)
{
- button15.BackgroundImage = Properties.Resources._150;
+ using var md5 = MD5.Create();
+ using var stream = File.OpenRead(filename);
+ var hash = md5.ComputeHash(stream); // Converts the hash to a readable string to compare.
+ return BitConverter.ToString(hash).Replace("-", "").ToLowerInvariant();
}
- private void button15_MouseEnter(object sender, EventArgs e)
+ private void InsertCustomID_Click(object sender, EventArgs e)
{
- button15.BackgroundImage = Properties.Resources._154;
+ CustomF.SetFunkey(CustomIDTextBox.Text);
}
- private void button15_MouseDown(object sender, MouseEventArgs e)
- {
- button15.BackgroundImage = Properties.Resources._157;
- }
-
- //Close
- private void button12_MouseLeave(object sender, EventArgs e)
- {
- button12.BackgroundImage = Properties.Resources._246;
- }
-
- private void button12_MouseEnter(object sender, EventArgs e)
- {
- button12.BackgroundImage = Properties.Resources._248;
- }
- private void button12_MouseDown(object sender, MouseEventArgs e)
- {
- button12.BackgroundImage = Properties.Resources._250;
- }
-
- //
- // End of Button Images
- //
}
}
\ No newline at end of file
diff --git a/FunkeySelector/Form1.resx b/FunkeySelector/Form1.resx
index e64574c..5120a5d 100644
--- a/FunkeySelector/Form1.resx
+++ b/FunkeySelector/Form1.resx
@@ -118,7 +118,7 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEONJREFUaEPtWWlUVFe25ke/7pX1Xidp5znOY4JGkzhH46wIKoMgMwIFFHMxj8VY
diff --git a/FunkeySelector/Form10.Designer.cs b/FunkeySelector/Form10.Designer.cs
deleted file mode 100644
index 7a1bd34..0000000
--- a/FunkeySelector/Form10.Designer.cs
+++ /dev/null
@@ -1,585 +0,0 @@
-namespace FunkeySelector
-{
- partial class Form10
- {
- ///
- /// Required designer variable.
- ///
- private System.ComponentModel.IContainer components = null;
-
- ///
- /// Clean up any resources being used.
- ///
- /// true if managed resources should be disposed; otherwise, false.
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- ///
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- ///
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form10));
- this.label5 = new System.Windows.Forms.Label();
- this.button11 = new System.Windows.Forms.Button();
- this.button12 = new System.Windows.Forms.Button();
- this.button13 = new System.Windows.Forms.Button();
- this.label4 = new System.Windows.Forms.Label();
- this.button8 = new System.Windows.Forms.Button();
- this.button9 = new System.Windows.Forms.Button();
- this.button10 = new System.Windows.Forms.Button();
- this.label3 = new System.Windows.Forms.Label();
- this.button5 = new System.Windows.Forms.Button();
- this.button6 = new System.Windows.Forms.Button();
- this.button7 = new System.Windows.Forms.Button();
- this.label1 = new System.Windows.Forms.Label();
- this.button4 = new System.Windows.Forms.Button();
- this.button3 = new System.Windows.Forms.Button();
- this.button2 = new System.Windows.Forms.Button();
- this.button1 = new System.Windows.Forms.Button();
- this.label2 = new System.Windows.Forms.Label();
- this.label6 = new System.Windows.Forms.Label();
- this.button14 = new System.Windows.Forms.Button();
- this.button15 = new System.Windows.Forms.Button();
- this.button16 = new System.Windows.Forms.Button();
- this.button22 = new System.Windows.Forms.Button();
- this.button23 = new System.Windows.Forms.Button();
- this.label7 = new System.Windows.Forms.Label();
- this.button17 = new System.Windows.Forms.Button();
- this.button18 = new System.Windows.Forms.Button();
- this.button19 = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.BackColor = System.Drawing.Color.Transparent;
- this.label5.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label5.ForeColor = System.Drawing.SystemColors.Control;
- this.label5.Location = new System.Drawing.Point(320, 353);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(100, 29);
- this.label5.TabIndex = 74;
- this.label5.Text = "BOMBLE";
- //
- // button11
- //
- this.button11.BackColor = System.Drawing.Color.Transparent;
- this.button11.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button11.BackgroundImage")));
- this.button11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button11.FlatAppearance.BorderSize = 0;
- this.button11.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button11.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button11.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button11.Location = new System.Drawing.Point(389, 385);
- this.button11.Name = "button11";
- this.button11.Size = new System.Drawing.Size(50, 63);
- this.button11.TabIndex = 73;
- this.button11.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button11.UseVisualStyleBackColor = false;
- this.button11.Click += new System.EventHandler(this.button11_Click);
- //
- // button12
- //
- this.button12.BackColor = System.Drawing.Color.Transparent;
- this.button12.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button12.BackgroundImage")));
- this.button12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button12.FlatAppearance.BorderSize = 0;
- this.button12.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button12.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button12.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button12.Location = new System.Drawing.Point(338, 385);
- this.button12.Name = "button12";
- this.button12.Size = new System.Drawing.Size(50, 63);
- this.button12.TabIndex = 72;
- this.button12.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button12.UseVisualStyleBackColor = false;
- this.button12.Click += new System.EventHandler(this.button12_Click);
- //
- // button13
- //
- this.button13.BackColor = System.Drawing.Color.Transparent;
- this.button13.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button13.BackgroundImage")));
- this.button13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button13.FlatAppearance.BorderSize = 0;
- this.button13.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button13.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button13.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button13.Location = new System.Drawing.Point(287, 385);
- this.button13.Name = "button13";
- this.button13.Size = new System.Drawing.Size(50, 63);
- this.button13.TabIndex = 71;
- this.button13.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button13.UseVisualStyleBackColor = false;
- this.button13.Click += new System.EventHandler(this.button13_Click);
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.BackColor = System.Drawing.Color.Transparent;
- this.label4.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label4.ForeColor = System.Drawing.SystemColors.Control;
- this.label4.Location = new System.Drawing.Point(333, 164);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(55, 29);
- this.label4.TabIndex = 70;
- this.label4.Text = "RAJ";
- //
- // button8
- //
- this.button8.BackColor = System.Drawing.Color.Transparent;
- this.button8.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button8.BackgroundImage")));
- this.button8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button8.FlatAppearance.BorderSize = 0;
- this.button8.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button8.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button8.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button8.Location = new System.Drawing.Point(389, 196);
- this.button8.Name = "button8";
- this.button8.Size = new System.Drawing.Size(50, 63);
- this.button8.TabIndex = 69;
- this.button8.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button8.UseVisualStyleBackColor = false;
- this.button8.Click += new System.EventHandler(this.button8_Click);
- //
- // button9
- //
- this.button9.BackColor = System.Drawing.Color.Transparent;
- this.button9.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button9.BackgroundImage")));
- this.button9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button9.FlatAppearance.BorderSize = 0;
- this.button9.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button9.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button9.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button9.Location = new System.Drawing.Point(338, 196);
- this.button9.Name = "button9";
- this.button9.Size = new System.Drawing.Size(50, 63);
- this.button9.TabIndex = 68;
- this.button9.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button9.UseVisualStyleBackColor = false;
- this.button9.Click += new System.EventHandler(this.button9_Click);
- //
- // button10
- //
- this.button10.BackColor = System.Drawing.Color.Transparent;
- this.button10.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button10.BackgroundImage")));
- this.button10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button10.FlatAppearance.BorderSize = 0;
- this.button10.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button10.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button10.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button10.Location = new System.Drawing.Point(287, 196);
- this.button10.Name = "button10";
- this.button10.Size = new System.Drawing.Size(50, 63);
- this.button10.TabIndex = 67;
- this.button10.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button10.UseVisualStyleBackColor = false;
- this.button10.Click += new System.EventHandler(this.button10_Click);
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.BackColor = System.Drawing.Color.Transparent;
- this.label3.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label3.ForeColor = System.Drawing.SystemColors.Control;
- this.label3.Location = new System.Drawing.Point(312, 262);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(72, 29);
- this.label3.TabIndex = 66;
- this.label3.Text = "YANG";
- //
- // button5
- //
- this.button5.BackColor = System.Drawing.Color.Transparent;
- this.button5.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button5.BackgroundImage")));
- this.button5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button5.FlatAppearance.BorderSize = 0;
- this.button5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button5.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button5.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button5.Location = new System.Drawing.Point(389, 297);
- this.button5.Name = "button5";
- this.button5.Size = new System.Drawing.Size(50, 63);
- this.button5.TabIndex = 65;
- this.button5.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button5.UseVisualStyleBackColor = false;
- this.button5.Click += new System.EventHandler(this.button5_Click);
- //
- // button6
- //
- this.button6.BackColor = System.Drawing.Color.Transparent;
- this.button6.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button6.BackgroundImage")));
- this.button6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button6.FlatAppearance.BorderSize = 0;
- this.button6.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button6.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button6.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button6.Location = new System.Drawing.Point(338, 297);
- this.button6.Name = "button6";
- this.button6.Size = new System.Drawing.Size(50, 63);
- this.button6.TabIndex = 64;
- this.button6.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button6.UseVisualStyleBackColor = false;
- this.button6.Click += new System.EventHandler(this.button6_Click);
- //
- // button7
- //
- this.button7.BackColor = System.Drawing.Color.Transparent;
- this.button7.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button7.BackgroundImage")));
- this.button7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button7.FlatAppearance.BorderSize = 0;
- this.button7.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button7.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button7.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button7.Location = new System.Drawing.Point(287, 297);
- this.button7.Name = "button7";
- this.button7.Size = new System.Drawing.Size(50, 63);
- this.button7.TabIndex = 63;
- this.button7.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button7.UseVisualStyleBackColor = false;
- this.button7.Click += new System.EventHandler(this.button7_Click);
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.BackColor = System.Drawing.Color.Transparent;
- this.label1.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label1.ForeColor = System.Drawing.SystemColors.Control;
- this.label1.Location = new System.Drawing.Point(317, 58);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(83, 29);
- this.label1.TabIndex = 62;
- this.label1.Text = "SINGE";
- //
- // button4
- //
- this.button4.BackColor = System.Drawing.Color.Transparent;
- this.button4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button4.BackgroundImage")));
- this.button4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button4.FlatAppearance.BorderSize = 0;
- this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button4.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button4.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button4.Location = new System.Drawing.Point(389, 98);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(50, 63);
- this.button4.TabIndex = 61;
- this.button4.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button4.UseVisualStyleBackColor = false;
- this.button4.Click += new System.EventHandler(this.button4_Click);
- //
- // button3
- //
- this.button3.BackColor = System.Drawing.Color.Transparent;
- this.button3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button3.BackgroundImage")));
- this.button3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button3.FlatAppearance.BorderSize = 0;
- this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button3.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button3.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button3.Location = new System.Drawing.Point(338, 98);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(50, 63);
- this.button3.TabIndex = 60;
- this.button3.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button3.UseVisualStyleBackColor = false;
- this.button3.Click += new System.EventHandler(this.button3_Click);
- //
- // button2
- //
- this.button2.BackColor = System.Drawing.Color.Transparent;
- this.button2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button2.BackgroundImage")));
- this.button2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button2.FlatAppearance.BorderSize = 0;
- this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button2.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button2.ForeColor = System.Drawing.Color.Transparent;
- this.button2.Location = new System.Drawing.Point(287, 98);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(50, 63);
- this.button2.TabIndex = 59;
- this.button2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button2.UseVisualStyleBackColor = false;
- this.button2.Click += new System.EventHandler(this.button2_Click);
- //
- // button1
- //
- this.button1.BackColor = System.Drawing.Color.Transparent;
- this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button1.FlatAppearance.BorderSize = 0;
- this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button1.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button1.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button1.Location = new System.Drawing.Point(12, 9);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(101, 48);
- this.button1.TabIndex = 58;
- this.button1.Text = "BACK";
- this.button1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button1.UseVisualStyleBackColor = false;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.BackColor = System.Drawing.Color.Transparent;
- this.label2.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label2.ForeColor = System.Drawing.SystemColors.Control;
- this.label2.Location = new System.Drawing.Point(225, 9);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(314, 52);
- this.label2.TabIndex = 57;
- this.label2.Text = "HIDDEN REALM";
- //
- // label6
- //
- this.label6.AutoSize = true;
- this.label6.BackColor = System.Drawing.Color.Transparent;
- this.label6.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label6.ForeColor = System.Drawing.SystemColors.Control;
- this.label6.Location = new System.Drawing.Point(216, 449);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(74, 29);
- this.label6.TabIndex = 78;
- this.label6.Text = "MAUL";
- //
- // button14
- //
- this.button14.BackColor = System.Drawing.Color.Transparent;
- this.button14.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button14.BackgroundImage")));
- this.button14.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button14.FlatAppearance.BorderSize = 0;
- this.button14.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button14.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button14.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button14.Location = new System.Drawing.Point(285, 481);
- this.button14.Name = "button14";
- this.button14.Size = new System.Drawing.Size(50, 63);
- this.button14.TabIndex = 77;
- this.button14.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button14.UseVisualStyleBackColor = false;
- this.button14.Click += new System.EventHandler(this.button14_Click);
- //
- // button15
- //
- this.button15.BackColor = System.Drawing.Color.Transparent;
- this.button15.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button15.BackgroundImage")));
- this.button15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button15.FlatAppearance.BorderSize = 0;
- this.button15.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button15.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button15.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button15.Location = new System.Drawing.Point(234, 481);
- this.button15.Name = "button15";
- this.button15.Size = new System.Drawing.Size(50, 63);
- this.button15.TabIndex = 76;
- this.button15.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button15.UseVisualStyleBackColor = false;
- this.button15.Click += new System.EventHandler(this.button15_Click);
- //
- // button16
- //
- this.button16.BackColor = System.Drawing.Color.Transparent;
- this.button16.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button16.BackgroundImage")));
- this.button16.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button16.FlatAppearance.BorderSize = 0;
- this.button16.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button16.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button16.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button16.Location = new System.Drawing.Point(183, 481);
- this.button16.Name = "button16";
- this.button16.Size = new System.Drawing.Size(50, 63);
- this.button16.TabIndex = 75;
- this.button16.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button16.UseVisualStyleBackColor = false;
- this.button16.Click += new System.EventHandler(this.button16_Click);
- //
- // button22
- //
- this.button22.BackColor = System.Drawing.Color.Transparent;
- this.button22.BackgroundImage = global::FunkeySelector.Properties.Resources._150;
- this.button22.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button22.FlatAppearance.BorderSize = 0;
- this.button22.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button22.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button22.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button22.Location = new System.Drawing.Point(641, 15);
- this.button22.Name = "button22";
- this.button22.Size = new System.Drawing.Size(26, 22);
- this.button22.TabIndex = 97;
- this.button22.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button22.UseVisualStyleBackColor = false;
- this.button22.Click += new System.EventHandler(this.button22_Click);
- this.button22.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button22_MouseDown);
- this.button22.MouseEnter += new System.EventHandler(this.button22_MouseEnter);
- this.button22.MouseLeave += new System.EventHandler(this.button22_MouseLeave);
- //
- // button23
- //
- this.button23.BackColor = System.Drawing.Color.Transparent;
- this.button23.BackgroundImage = global::FunkeySelector.Properties.Resources._246;
- this.button23.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button23.FlatAppearance.BorderSize = 0;
- this.button23.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button23.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button23.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button23.Location = new System.Drawing.Point(680, 17);
- this.button23.Name = "button23";
- this.button23.Size = new System.Drawing.Size(26, 20);
- this.button23.TabIndex = 96;
- this.button23.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button23.UseVisualStyleBackColor = false;
- this.button23.Click += new System.EventHandler(this.button23_Click);
- this.button23.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button23_MouseDown);
- this.button23.MouseEnter += new System.EventHandler(this.button23_MouseEnter);
- this.button23.MouseLeave += new System.EventHandler(this.button23_MouseLeave);
- //
- // label7
- //
- this.label7.AutoSize = true;
- this.label7.BackColor = System.Drawing.Color.Transparent;
- this.label7.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label7.ForeColor = System.Drawing.SystemColors.Control;
- this.label7.Location = new System.Drawing.Point(407, 446);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(98, 29);
- this.label7.TabIndex = 101;
- this.label7.Text = "NECTAR";
- //
- // button17
- //
- this.button17.BackColor = System.Drawing.Color.Transparent;
- this.button17.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button17.BackgroundImage")));
- this.button17.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button17.FlatAppearance.BorderSize = 0;
- this.button17.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button17.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button17.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button17.Location = new System.Drawing.Point(484, 481);
- this.button17.Name = "button17";
- this.button17.Size = new System.Drawing.Size(50, 63);
- this.button17.TabIndex = 100;
- this.button17.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button17.UseVisualStyleBackColor = false;
- this.button17.Click += new System.EventHandler(this.button17_Click);
- //
- // button18
- //
- this.button18.BackColor = System.Drawing.Color.Transparent;
- this.button18.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button18.BackgroundImage")));
- this.button18.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button18.FlatAppearance.BorderSize = 0;
- this.button18.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button18.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button18.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button18.Location = new System.Drawing.Point(433, 481);
- this.button18.Name = "button18";
- this.button18.Size = new System.Drawing.Size(50, 63);
- this.button18.TabIndex = 99;
- this.button18.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button18.UseVisualStyleBackColor = false;
- this.button18.Click += new System.EventHandler(this.button18_Click);
- //
- // button19
- //
- this.button19.BackColor = System.Drawing.Color.Transparent;
- this.button19.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button19.BackgroundImage")));
- this.button19.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button19.FlatAppearance.BorderSize = 0;
- this.button19.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button19.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button19.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button19.Location = new System.Drawing.Point(382, 481);
- this.button19.Name = "button19";
- this.button19.Size = new System.Drawing.Size(50, 63);
- this.button19.TabIndex = 98;
- this.button19.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button19.UseVisualStyleBackColor = false;
- this.button19.Click += new System.EventHandler(this.button19_Click);
- //
- // Form10
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.Gold;
- this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
- this.ClientSize = new System.Drawing.Size(726, 566);
- this.Controls.Add(this.label7);
- this.Controls.Add(this.button17);
- this.Controls.Add(this.button18);
- this.Controls.Add(this.button19);
- this.Controls.Add(this.button22);
- this.Controls.Add(this.button23);
- this.Controls.Add(this.label6);
- this.Controls.Add(this.button14);
- this.Controls.Add(this.button15);
- this.Controls.Add(this.button16);
- this.Controls.Add(this.label5);
- this.Controls.Add(this.button11);
- this.Controls.Add(this.button12);
- this.Controls.Add(this.button13);
- this.Controls.Add(this.label4);
- this.Controls.Add(this.button8);
- this.Controls.Add(this.button9);
- this.Controls.Add(this.button10);
- this.Controls.Add(this.label3);
- this.Controls.Add(this.button5);
- this.Controls.Add(this.button6);
- this.Controls.Add(this.button7);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.button4);
- this.Controls.Add(this.button3);
- this.Controls.Add(this.button2);
- this.Controls.Add(this.button1);
- this.Controls.Add(this.label2);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.MaximizeBox = false;
- this.Name = "Form10";
- this.Text = "FunkeySelectorGUI";
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
-
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.Button button11;
- private System.Windows.Forms.Button button12;
- private System.Windows.Forms.Button button13;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.Button button8;
- private System.Windows.Forms.Button button9;
- private System.Windows.Forms.Button button10;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Button button5;
- private System.Windows.Forms.Button button6;
- private System.Windows.Forms.Button button7;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Button button4;
- private System.Windows.Forms.Button button3;
- private System.Windows.Forms.Button button2;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Label label6;
- private System.Windows.Forms.Button button14;
- private System.Windows.Forms.Button button15;
- private System.Windows.Forms.Button button16;
- private System.Windows.Forms.Button button22;
- private System.Windows.Forms.Button button23;
- private System.Windows.Forms.Label label7;
- private System.Windows.Forms.Button button17;
- private System.Windows.Forms.Button button18;
- private System.Windows.Forms.Button button19;
- }
-}
\ No newline at end of file
diff --git a/FunkeySelector/Form10.cs b/FunkeySelector/Form10.cs
deleted file mode 100644
index 0a9c9a9..0000000
--- a/FunkeySelector/Form10.cs
+++ /dev/null
@@ -1,221 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Data;
-using System.Diagnostics;
-using System.Drawing;
-using System.IO;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.Windows.Forms;
-
-namespace FunkeySelector
-{
- public partial class Form10 : Form
- {
- //
- //Initial setup
- //
-
- CustomFManager customF = new CustomFManager(); //Sets up CustomFManager.
- public Form10()
- {
- InitializeComponent();
- this.TransparencyKey = System.Drawing.Color.Gold; //Removes the gold sections to allow the UI to be rounded.
- }
-
- protected override void WndProc(ref Message m) //Allows the window to be dragged.
- {
- switch (m.Msg)
- {
- case 0x84:
- base.WndProc(ref m);
- if ((int)m.Result == 0x1)
- m.Result = (IntPtr)0x2;
- return;
- }
-
- base.WndProc(ref m);
- }
-
- //
- //End of initial startup
- //
-
- //
- //Button Clicks
- //
-
- //Back
- private void button1_Click(object sender, EventArgs e)
- {
- Form1 form1 = new Form1();
- this.Hide();
- form1.StartPosition = FormStartPosition.CenterParent;
- form1.ShowDialog(this);
- }
-
- //Singe
- private void button2_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000102");
- }
-
- //Singe R
- private void button3_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000106");
- }
-
- //Singe VR
- private void button4_Click(object sender, EventArgs e)
- {
- customF.setFunkey("0000010D");
- }
-
- //Raj
- private void button10_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000103");
- }
-
- //Raj R
- private void button9_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000107");
- }
-
- //Raj VR
- private void button8_Click(object sender, EventArgs e)
- {
- customF.setFunkey("0000010E");
- }
-
- //Yang
- private void button7_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000104");
- }
-
- //Yang R
- private void button6_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000108");
- }
-
- //Yang VR
- private void button5_Click(object sender, EventArgs e)
- {
- customF.setFunkey("0000010F");
- }
-
- //Bomble
- private void button13_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000105");
- }
-
- //Bomble R
- private void button12_Click(object sender, EventArgs e)
- {
- customF.setFunkey("0000010C");
- }
-
- //Bomble VR
- private void button11_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000110");
- }
-
- //Maul
- private void button16_Click(object sender, EventArgs e)
- {
- customF.setFunkey("0000011A");
- }
-
- //Maul R
- private void button15_Click(object sender, EventArgs e)
- {
- customF.setFunkey("0000011E");
- }
-
- //Maul VR
- private void button14_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000125");
- }
-
- //Close
- private void button23_Click(object sender, EventArgs e)
- {
- Application.Exit();
- }
-
- //Minimize
- private void button22_Click(object sender, EventArgs e)
- {
- this.WindowState = FormWindowState.Minimized;
- }
-
- //
- //End of Button Clicks
- //
-
- //
- //Button Images
- //
-
- //Minimize
- private void button22_MouseLeave(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._150;
- }
-
- private void button22_MouseEnter(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._154;
- }
- private void button22_MouseDown(object sender, MouseEventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._157;
- }
-
- //Close
- private void button23_MouseLeave(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._246;
- }
-
- private void button23_MouseEnter(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._248;
- }
- private void button23_MouseDown(object sender, MouseEventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._250;
- }
-
- //Nectar
- private void button19_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000119");
- }
-
- //Nectar R
- private void button18_Click(object sender, EventArgs e)
- {
- customF.setFunkey("0000011D");
- }
-
- //Nectar VR
- private void button17_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000124");
- }
-
- //
- // End of Button Images
- //
- }
-}
diff --git a/FunkeySelector/Form11.Designer.cs b/FunkeySelector/Form11.Designer.cs
deleted file mode 100644
index b965bdc..0000000
--- a/FunkeySelector/Form11.Designer.cs
+++ /dev/null
@@ -1,355 +0,0 @@
-namespace FunkeySelector
-{
- partial class Form11
- {
- ///
- /// Required designer variable.
- ///
- private System.ComponentModel.IContainer components = null;
-
- ///
- /// Clean up any resources being used.
- ///
- /// true if managed resources should be disposed; otherwise, false.
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- ///
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- ///
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form11));
- this.label6 = new System.Windows.Forms.Label();
- this.button15 = new System.Windows.Forms.Button();
- this.label5 = new System.Windows.Forms.Label();
- this.button12 = new System.Windows.Forms.Button();
- this.label4 = new System.Windows.Forms.Label();
- this.button8 = new System.Windows.Forms.Button();
- this.button9 = new System.Windows.Forms.Button();
- this.button10 = new System.Windows.Forms.Button();
- this.label2 = new System.Windows.Forms.Label();
- this.button1 = new System.Windows.Forms.Button();
- this.button2 = new System.Windows.Forms.Button();
- this.button3 = new System.Windows.Forms.Button();
- this.button4 = new System.Windows.Forms.Button();
- this.label1 = new System.Windows.Forms.Label();
- this.button22 = new System.Windows.Forms.Button();
- this.button23 = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // label6
- //
- this.label6.AutoSize = true;
- this.label6.BackColor = System.Drawing.Color.Transparent;
- this.label6.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label6.ForeColor = System.Drawing.SystemColors.Control;
- this.label6.Location = new System.Drawing.Point(363, 413);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(54, 29);
- this.label6.TabIndex = 100;
- this.label6.Text = "ACE";
- //
- // button15
- //
- this.button15.BackColor = System.Drawing.Color.Transparent;
- this.button15.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button15.BackgroundImage")));
- this.button15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button15.FlatAppearance.BorderSize = 0;
- this.button15.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button15.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button15.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button15.Location = new System.Drawing.Point(368, 445);
- this.button15.Name = "button15";
- this.button15.Size = new System.Drawing.Size(50, 63);
- this.button15.TabIndex = 98;
- this.button15.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button15.UseVisualStyleBackColor = false;
- this.button15.Click += new System.EventHandler(this.button15_Click);
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.BackColor = System.Drawing.Color.Transparent;
- this.label5.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label5.ForeColor = System.Drawing.SystemColors.Control;
- this.label5.Location = new System.Drawing.Point(350, 315);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(88, 29);
- this.label5.TabIndex = 96;
- this.label5.Text = "MULCH";
- //
- // button12
- //
- this.button12.BackColor = System.Drawing.Color.Transparent;
- this.button12.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button12.BackgroundImage")));
- this.button12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button12.FlatAppearance.BorderSize = 0;
- this.button12.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button12.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button12.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button12.Location = new System.Drawing.Point(368, 347);
- this.button12.Name = "button12";
- this.button12.Size = new System.Drawing.Size(50, 63);
- this.button12.TabIndex = 94;
- this.button12.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button12.UseVisualStyleBackColor = false;
- this.button12.Click += new System.EventHandler(this.button12_Click);
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.BackColor = System.Drawing.Color.Transparent;
- this.label4.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label4.ForeColor = System.Drawing.SystemColors.Control;
- this.label4.Location = new System.Drawing.Point(363, 195);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(72, 29);
- this.label4.TabIndex = 92;
- this.label4.Text = "TADD";
- //
- // button8
- //
- this.button8.BackColor = System.Drawing.Color.Transparent;
- this.button8.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button8.BackgroundImage")));
- this.button8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button8.FlatAppearance.BorderSize = 0;
- this.button8.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button8.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button8.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button8.Location = new System.Drawing.Point(419, 227);
- this.button8.Name = "button8";
- this.button8.Size = new System.Drawing.Size(50, 63);
- this.button8.TabIndex = 91;
- this.button8.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button8.UseVisualStyleBackColor = false;
- this.button8.Click += new System.EventHandler(this.button8_Click);
- //
- // button9
- //
- this.button9.BackColor = System.Drawing.Color.Transparent;
- this.button9.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button9.BackgroundImage")));
- this.button9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button9.FlatAppearance.BorderSize = 0;
- this.button9.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button9.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button9.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button9.Location = new System.Drawing.Point(368, 227);
- this.button9.Name = "button9";
- this.button9.Size = new System.Drawing.Size(50, 63);
- this.button9.TabIndex = 90;
- this.button9.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button9.UseVisualStyleBackColor = false;
- this.button9.Click += new System.EventHandler(this.button9_Click);
- //
- // button10
- //
- this.button10.BackColor = System.Drawing.Color.Transparent;
- this.button10.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button10.BackgroundImage")));
- this.button10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button10.FlatAppearance.BorderSize = 0;
- this.button10.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button10.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button10.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button10.Location = new System.Drawing.Point(317, 227);
- this.button10.Name = "button10";
- this.button10.Size = new System.Drawing.Size(50, 63);
- this.button10.TabIndex = 89;
- this.button10.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button10.UseVisualStyleBackColor = false;
- this.button10.Click += new System.EventHandler(this.button10_Click);
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.BackColor = System.Drawing.Color.Transparent;
- this.label2.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label2.ForeColor = System.Drawing.SystemColors.Control;
- this.label2.Location = new System.Drawing.Point(206, 10);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(337, 52);
- this.label2.TabIndex = 79;
- this.label2.Text = "PARADOX GREEN";
- //
- // button1
- //
- this.button1.BackColor = System.Drawing.Color.Transparent;
- this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button1.FlatAppearance.BorderSize = 0;
- this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button1.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button1.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button1.Location = new System.Drawing.Point(12, 10);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(101, 48);
- this.button1.TabIndex = 80;
- this.button1.Text = "BACK";
- this.button1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button1.UseVisualStyleBackColor = false;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- //
- // button2
- //
- this.button2.BackColor = System.Drawing.Color.Transparent;
- this.button2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button2.BackgroundImage")));
- this.button2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button2.FlatAppearance.BorderSize = 0;
- this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button2.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button2.ForeColor = System.Drawing.Color.Transparent;
- this.button2.Location = new System.Drawing.Point(317, 129);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(50, 63);
- this.button2.TabIndex = 81;
- this.button2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button2.UseVisualStyleBackColor = false;
- this.button2.Click += new System.EventHandler(this.button2_Click);
- //
- // button3
- //
- this.button3.BackColor = System.Drawing.Color.Transparent;
- this.button3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button3.BackgroundImage")));
- this.button3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button3.FlatAppearance.BorderSize = 0;
- this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button3.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button3.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button3.Location = new System.Drawing.Point(368, 129);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(50, 63);
- this.button3.TabIndex = 82;
- this.button3.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button3.UseVisualStyleBackColor = false;
- this.button3.Click += new System.EventHandler(this.button3_Click);
- //
- // button4
- //
- this.button4.BackColor = System.Drawing.Color.Transparent;
- this.button4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button4.BackgroundImage")));
- this.button4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button4.FlatAppearance.BorderSize = 0;
- this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button4.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button4.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button4.Location = new System.Drawing.Point(419, 129);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(50, 63);
- this.button4.TabIndex = 83;
- this.button4.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button4.UseVisualStyleBackColor = false;
- this.button4.Click += new System.EventHandler(this.button4_Click);
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.BackColor = System.Drawing.Color.Transparent;
- this.label1.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label1.ForeColor = System.Drawing.SystemColors.Control;
- this.label1.Location = new System.Drawing.Point(350, 97);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(100, 29);
- this.label1.TabIndex = 84;
- this.label1.Text = "RASTRO";
- //
- // button22
- //
- this.button22.BackColor = System.Drawing.Color.Transparent;
- this.button22.BackgroundImage = global::FunkeySelector.Properties.Resources._150;
- this.button22.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button22.FlatAppearance.BorderSize = 0;
- this.button22.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button22.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button22.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button22.Location = new System.Drawing.Point(642, 14);
- this.button22.Name = "button22";
- this.button22.Size = new System.Drawing.Size(26, 22);
- this.button22.TabIndex = 102;
- this.button22.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button22.UseVisualStyleBackColor = false;
- this.button22.Click += new System.EventHandler(this.button22_Click);
- this.button22.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button22_MouseDown);
- this.button22.MouseEnter += new System.EventHandler(this.button22_MouseEnter);
- this.button22.MouseLeave += new System.EventHandler(this.button22_MouseLeave);
- //
- // button23
- //
- this.button23.BackColor = System.Drawing.Color.Transparent;
- this.button23.BackgroundImage = global::FunkeySelector.Properties.Resources._246;
- this.button23.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button23.FlatAppearance.BorderSize = 0;
- this.button23.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button23.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button23.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button23.Location = new System.Drawing.Point(681, 16);
- this.button23.Name = "button23";
- this.button23.Size = new System.Drawing.Size(26, 20);
- this.button23.TabIndex = 101;
- this.button23.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button23.UseVisualStyleBackColor = false;
- this.button23.Click += new System.EventHandler(this.button23_Click);
- this.button23.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button23_MouseDown);
- this.button23.MouseEnter += new System.EventHandler(this.button23_MouseEnter);
- this.button23.MouseLeave += new System.EventHandler(this.button23_MouseLeave);
- //
- // Form11
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.Gold;
- this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
- this.ClientSize = new System.Drawing.Size(726, 566);
- this.Controls.Add(this.button22);
- this.Controls.Add(this.button23);
- this.Controls.Add(this.label6);
- this.Controls.Add(this.button15);
- this.Controls.Add(this.label5);
- this.Controls.Add(this.button12);
- this.Controls.Add(this.label4);
- this.Controls.Add(this.button8);
- this.Controls.Add(this.button9);
- this.Controls.Add(this.button10);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.button4);
- this.Controls.Add(this.button3);
- this.Controls.Add(this.button2);
- this.Controls.Add(this.button1);
- this.Controls.Add(this.label2);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.MaximizeBox = false;
- this.Name = "Form11";
- this.Text = "FunkeySelectorGUI";
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
-
- private System.Windows.Forms.Label label6;
- private System.Windows.Forms.Button button15;
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.Button button12;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.Button button8;
- private System.Windows.Forms.Button button9;
- private System.Windows.Forms.Button button10;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Button button2;
- private System.Windows.Forms.Button button3;
- private System.Windows.Forms.Button button4;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Button button22;
- private System.Windows.Forms.Button button23;
- }
-}
\ No newline at end of file
diff --git a/FunkeySelector/Form11.cs b/FunkeySelector/Form11.cs
deleted file mode 100644
index a2ca09d..0000000
--- a/FunkeySelector/Form11.cs
+++ /dev/null
@@ -1,161 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Data;
-using System.Diagnostics;
-using System.Drawing;
-using System.IO;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.Windows.Forms;
-
-namespace FunkeySelector
-{
- public partial class Form11 : Form
- {
- //
- //Initial setup
- //
-
- CustomFManager customF = new CustomFManager(); //Sets up CustomFManager.
- public Form11()
- {
- InitializeComponent();
- this.TransparencyKey = System.Drawing.Color.Gold; //Removes the gold sections to allow the UI to be rounded.
- }
-
- protected override void WndProc(ref Message m) //Allows the window to be dragged.
- {
- switch (m.Msg)
- {
- case 0x84:
- base.WndProc(ref m);
- if ((int)m.Result == 0x1)
- m.Result = (IntPtr)0x2;
- return;
- }
-
- base.WndProc(ref m);
- }
-
- //
- //End of initial startup
- //
-
- //
- //Button Clicks
- //
-
- //Back
- private void button1_Click(object sender, EventArgs e)
- {
- Form1 form1 = new Form1();
- this.Hide();
- form1.StartPosition = FormStartPosition.CenterParent;
- form1.ShowDialog(this);
- }
-
- //Rastro
- private void button2_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000117");
- }
-
- //Rastro R
- private void button3_Click(object sender, EventArgs e)
- {
- customF.setFunkey("0000011B");
- }
-
- //Rastro VR
- private void button4_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000122");
- }
-
- //Tadd
- private void button10_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000118");
- }
-
- //Tadd R
- private void button9_Click(object sender, EventArgs e)
- {
- customF.setFunkey("0000011C");
- }
-
- //Tadd VR
- private void button8_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000123");
- }
-
- //Mulch
- private void button12_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000126");
- }
-
- //Ace
- private void button15_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000127");
- }
-
- //Close
- private void button23_Click(object sender, EventArgs e)
- {
- Application.Exit();
- }
-
- //Minimize
- private void button22_Click(object sender, EventArgs e)
- {
- this.WindowState = FormWindowState.Minimized;
- }
-
- //
- //End of Button Clicks
- //
-
- //
- //Button Images
- //
-
- //Minimize
- private void button22_MouseLeave(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._150;
- }
-
- private void button22_MouseEnter(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._154;
- }
- private void button22_MouseDown(object sender, MouseEventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._157;
- }
-
- //Close
- private void button23_MouseLeave(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._246;
- }
-
- private void button23_MouseEnter(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._248;
- }
- private void button23_MouseDown(object sender, MouseEventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._250;
- }
-
- //
- // End of Button Images
- //
- }
-}
diff --git a/FunkeySelector/Form12.Designer.cs b/FunkeySelector/Form12.Designer.cs
deleted file mode 100644
index 340a9c2..0000000
--- a/FunkeySelector/Form12.Designer.cs
+++ /dev/null
@@ -1,389 +0,0 @@
-namespace FunkeySelector
-{
- partial class Form12
- {
- ///
- /// Required designer variable.
- ///
- private System.ComponentModel.IContainer components = null;
-
- ///
- /// Clean up any resources being used.
- ///
- /// true if managed resources should be disposed; otherwise, false.
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- ///
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- ///
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form12));
- this.label1 = new System.Windows.Forms.Label();
- this.button4 = new System.Windows.Forms.Button();
- this.button3 = new System.Windows.Forms.Button();
- this.button2 = new System.Windows.Forms.Button();
- this.button1 = new System.Windows.Forms.Button();
- this.label2 = new System.Windows.Forms.Label();
- this.label3 = new System.Windows.Forms.Label();
- this.button5 = new System.Windows.Forms.Button();
- this.label4 = new System.Windows.Forms.Label();
- this.button6 = new System.Windows.Forms.Button();
- this.button7 = new System.Windows.Forms.Button();
- this.button8 = new System.Windows.Forms.Button();
- this.label5 = new System.Windows.Forms.Label();
- this.button10 = new System.Windows.Forms.Button();
- this.label6 = new System.Windows.Forms.Label();
- this.button9 = new System.Windows.Forms.Button();
- this.button22 = new System.Windows.Forms.Button();
- this.button23 = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.BackColor = System.Drawing.Color.Transparent;
- this.label1.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label1.ForeColor = System.Drawing.SystemColors.Control;
- this.label1.Location = new System.Drawing.Point(330, 65);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(71, 29);
- this.label1.TabIndex = 90;
- this.label1.Text = "TACH";
- //
- // button4
- //
- this.button4.BackColor = System.Drawing.Color.Transparent;
- this.button4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button4.BackgroundImage")));
- this.button4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button4.FlatAppearance.BorderSize = 0;
- this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button4.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button4.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button4.Location = new System.Drawing.Point(398, 103);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(50, 63);
- this.button4.TabIndex = 89;
- this.button4.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button4.UseVisualStyleBackColor = false;
- this.button4.Click += new System.EventHandler(this.Button4_Click);
- //
- // button3
- //
- this.button3.BackColor = System.Drawing.Color.Transparent;
- this.button3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button3.BackgroundImage")));
- this.button3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button3.FlatAppearance.BorderSize = 0;
- this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button3.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button3.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button3.Location = new System.Drawing.Point(342, 103);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(50, 63);
- this.button3.TabIndex = 88;
- this.button3.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button3.UseVisualStyleBackColor = false;
- this.button3.Click += new System.EventHandler(this.Button3_Click);
- //
- // button2
- //
- this.button2.BackColor = System.Drawing.Color.Transparent;
- this.button2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button2.BackgroundImage")));
- this.button2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button2.FlatAppearance.BorderSize = 0;
- this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button2.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button2.ForeColor = System.Drawing.Color.Transparent;
- this.button2.Location = new System.Drawing.Point(291, 103);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(50, 63);
- this.button2.TabIndex = 87;
- this.button2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button2.UseVisualStyleBackColor = false;
- this.button2.Click += new System.EventHandler(this.Button2_Click);
- //
- // button1
- //
- this.button1.BackColor = System.Drawing.Color.Transparent;
- this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button1.FlatAppearance.BorderSize = 0;
- this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button1.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button1.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button1.Location = new System.Drawing.Point(12, 12);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(101, 48);
- this.button1.TabIndex = 86;
- this.button1.Text = "BACK";
- this.button1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button1.UseVisualStyleBackColor = false;
- this.button1.Click += new System.EventHandler(this.Button1_Click);
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.BackColor = System.Drawing.Color.Transparent;
- this.label2.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label2.ForeColor = System.Drawing.SystemColors.Control;
- this.label2.Location = new System.Drawing.Point(185, 13);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(367, 52);
- this.label2.TabIndex = 85;
- this.label2.Text = "UNUSED FUNKEYS";
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.BackColor = System.Drawing.Color.Transparent;
- this.label3.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label3.ForeColor = System.Drawing.SystemColors.Control;
- this.label3.Location = new System.Drawing.Point(341, 169);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(60, 29);
- this.label3.TabIndex = 92;
- this.label3.Text = "CON";
- //
- // button5
- //
- this.button5.BackColor = System.Drawing.Color.Transparent;
- this.button5.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button5.BackgroundImage")));
- this.button5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button5.FlatAppearance.BorderSize = 0;
- this.button5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button5.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button5.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button5.Location = new System.Drawing.Point(346, 210);
- this.button5.Name = "button5";
- this.button5.Size = new System.Drawing.Size(50, 63);
- this.button5.TabIndex = 91;
- this.button5.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button5.UseVisualStyleBackColor = false;
- this.button5.Click += new System.EventHandler(this.Button5_Click);
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.BackColor = System.Drawing.Color.Transparent;
- this.label4.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label4.ForeColor = System.Drawing.SystemColors.Control;
- this.label4.Location = new System.Drawing.Point(311, 276);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(137, 29);
- this.label4.TabIndex = 96;
- this.label4.Text = "HENCHMEN";
- //
- // button6
- //
- this.button6.BackColor = System.Drawing.Color.Transparent;
- this.button6.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button6.BackgroundImage")));
- this.button6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button6.FlatAppearance.BorderSize = 0;
- this.button6.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button6.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button6.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button6.Location = new System.Drawing.Point(398, 313);
- this.button6.Name = "button6";
- this.button6.Size = new System.Drawing.Size(50, 63);
- this.button6.TabIndex = 95;
- this.button6.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button6.UseVisualStyleBackColor = false;
- this.button6.Click += new System.EventHandler(this.Button6_Click);
- //
- // button7
- //
- this.button7.BackColor = System.Drawing.Color.Transparent;
- this.button7.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button7.BackgroundImage")));
- this.button7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button7.FlatAppearance.BorderSize = 0;
- this.button7.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button7.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button7.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button7.Location = new System.Drawing.Point(342, 313);
- this.button7.Name = "button7";
- this.button7.Size = new System.Drawing.Size(50, 63);
- this.button7.TabIndex = 94;
- this.button7.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button7.UseVisualStyleBackColor = false;
- this.button7.Click += new System.EventHandler(this.Button7_Click);
- //
- // button8
- //
- this.button8.BackColor = System.Drawing.Color.Transparent;
- this.button8.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button8.BackgroundImage")));
- this.button8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button8.FlatAppearance.BorderSize = 0;
- this.button8.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button8.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button8.ForeColor = System.Drawing.Color.Transparent;
- this.button8.Location = new System.Drawing.Point(291, 313);
- this.button8.Name = "button8";
- this.button8.Size = new System.Drawing.Size(50, 63);
- this.button8.TabIndex = 93;
- this.button8.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button8.UseVisualStyleBackColor = false;
- this.button8.Click += new System.EventHandler(this.Button8_Click);
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.BackColor = System.Drawing.Color.Transparent;
- this.label5.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label5.ForeColor = System.Drawing.SystemColors.Control;
- this.label5.Location = new System.Drawing.Point(341, 378);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(66, 29);
- this.label5.TabIndex = 100;
- this.label5.Text = "DALI";
- //
- // button10
- //
- this.button10.BackColor = System.Drawing.Color.Transparent;
- this.button10.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button10.BackgroundImage")));
- this.button10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button10.FlatAppearance.BorderSize = 0;
- this.button10.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button10.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button10.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button10.Location = new System.Drawing.Point(342, 410);
- this.button10.Name = "button10";
- this.button10.Size = new System.Drawing.Size(50, 63);
- this.button10.TabIndex = 98;
- this.button10.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button10.UseVisualStyleBackColor = false;
- this.button10.Click += new System.EventHandler(this.Button10_Click);
- //
- // label6
- //
- this.label6.AutoSize = true;
- this.label6.BackColor = System.Drawing.Color.Transparent;
- this.label6.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label6.ForeColor = System.Drawing.SystemColors.Control;
- this.label6.Location = new System.Drawing.Point(341, 459);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(72, 29);
- this.label6.TabIndex = 102;
- this.label6.Text = "GOYA";
- //
- // button9
- //
- this.button9.BackColor = System.Drawing.Color.Transparent;
- this.button9.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button9.BackgroundImage")));
- this.button9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button9.FlatAppearance.BorderSize = 0;
- this.button9.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button9.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button9.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button9.Location = new System.Drawing.Point(342, 491);
- this.button9.Name = "button9";
- this.button9.Size = new System.Drawing.Size(50, 63);
- this.button9.TabIndex = 101;
- this.button9.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button9.UseVisualStyleBackColor = false;
- this.button9.Click += new System.EventHandler(this.Button9_Click);
- //
- // button22
- //
- this.button22.BackColor = System.Drawing.Color.Transparent;
- this.button22.BackgroundImage = global::FunkeySelector.Properties.Resources._150;
- this.button22.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button22.FlatAppearance.BorderSize = 0;
- this.button22.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button22.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button22.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button22.Location = new System.Drawing.Point(642, 15);
- this.button22.Name = "button22";
- this.button22.Size = new System.Drawing.Size(26, 22);
- this.button22.TabIndex = 104;
- this.button22.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button22.UseVisualStyleBackColor = false;
- this.button22.Click += new System.EventHandler(this.button22_Click);
- this.button22.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button22_MouseDown);
- this.button22.MouseEnter += new System.EventHandler(this.button22_MouseEnter);
- this.button22.MouseLeave += new System.EventHandler(this.button22_MouseLeave);
- //
- // button23
- //
- this.button23.BackColor = System.Drawing.Color.Transparent;
- this.button23.BackgroundImage = global::FunkeySelector.Properties.Resources._246;
- this.button23.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button23.FlatAppearance.BorderSize = 0;
- this.button23.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button23.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button23.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button23.Location = new System.Drawing.Point(681, 17);
- this.button23.Name = "button23";
- this.button23.Size = new System.Drawing.Size(26, 20);
- this.button23.TabIndex = 103;
- this.button23.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button23.UseVisualStyleBackColor = false;
- this.button23.Click += new System.EventHandler(this.button23_Click);
- this.button23.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button23_MouseDown);
- this.button23.MouseEnter += new System.EventHandler(this.button23_MouseEnter);
- this.button23.MouseLeave += new System.EventHandler(this.button23_MouseLeave);
- //
- // Form12
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.Gold;
- this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
- this.ClientSize = new System.Drawing.Size(726, 566);
- this.Controls.Add(this.button22);
- this.Controls.Add(this.button23);
- this.Controls.Add(this.label6);
- this.Controls.Add(this.button9);
- this.Controls.Add(this.label5);
- this.Controls.Add(this.button10);
- this.Controls.Add(this.label4);
- this.Controls.Add(this.button6);
- this.Controls.Add(this.button7);
- this.Controls.Add(this.button8);
- this.Controls.Add(this.label3);
- this.Controls.Add(this.button5);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.button4);
- this.Controls.Add(this.button3);
- this.Controls.Add(this.button2);
- this.Controls.Add(this.button1);
- this.Controls.Add(this.label2);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.Name = "Form12";
- this.Text = "FunkeySelectorGUI";
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
-
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Button button4;
- private System.Windows.Forms.Button button3;
- private System.Windows.Forms.Button button2;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Button button5;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.Button button6;
- private System.Windows.Forms.Button button7;
- private System.Windows.Forms.Button button8;
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.Button button10;
- private System.Windows.Forms.Label label6;
- private System.Windows.Forms.Button button9;
- private System.Windows.Forms.Button button22;
- private System.Windows.Forms.Button button23;
- }
-}
\ No newline at end of file
diff --git a/FunkeySelector/Form12.cs b/FunkeySelector/Form12.cs
deleted file mode 100644
index 1ab8ca6..0000000
--- a/FunkeySelector/Form12.cs
+++ /dev/null
@@ -1,166 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Data;
-using System.Diagnostics;
-using System.Drawing;
-using System.IO;
-using System.Linq;
-using System.Text;
-using System.Windows.Forms;
-
-namespace FunkeySelector
-{
- public partial class Form12 : Form
- {
- //
- //Initial setup
- //
-
- CustomFManager customF = new CustomFManager(); //Sets up CustomFManager.
- public Form12()
- {
- InitializeComponent();
- this.TransparencyKey = System.Drawing.Color.Gold; //Removes the gold sections to allow the UI to be rounded.
- }
-
- protected override void WndProc(ref Message m) //Allows the window to be dragged.
- {
- switch (m.Msg)
- {
- case 0x84:
- base.WndProc(ref m);
- if ((int)m.Result == 0x1)
- m.Result = (IntPtr)0x2;
- return;
- }
-
- base.WndProc(ref m);
- }
-
- //
- //End of initial startup
- //
-
- //
- //Button Clicks
- //
-
- //Con
- private void Button5_Click(object sender, EventArgs e)
- {
- customF.setFunkey("S0000001");
- }
-
- //TachB
- private void Button2_Click(object sender, EventArgs e)
- {
- customF.setFunkey("T0000001");
- }
-
- //TachY
- private void Button3_Click(object sender, EventArgs e)
- {
- customF.setFunkey("T0000002");
- }
-
- //TachR
- private void Button4_Click(object sender, EventArgs e)
- {
- customF.setFunkey("T0000003");
- }
-
- //HenchmanP
- private void Button8_Click(object sender, EventArgs e)
- {
- customF.setFunkey("h0000001");
- }
-
- //HenchmanG
- private void Button7_Click(object sender, EventArgs e)
- {
- customF.setFunkey("h0000003");
- }
-
- //HenchmanB
- private void Button6_Click(object sender, EventArgs e)
- {
- customF.setFunkey("h0000003");
- }
-
- //Dali
- private void Button10_Click(object sender, EventArgs e)
- {
- customF.setFunkey("h0000007");
- }
-
- //Goya
- private void Button9_Click(object sender, EventArgs e)
- {
- customF.setFunkey("h0000006");
- }
-
- //Back
- private void Button1_Click(object sender, EventArgs e)
- {
- Form1 form1 = new Form1();
- this.Hide();
- form1.StartPosition = FormStartPosition.CenterParent;
- form1.ShowDialog(this);
- }
-
- //Close
- private void button23_Click(object sender, EventArgs e)
- {
- Application.Exit();
- }
-
- //Minimize
- private void button22_Click(object sender, EventArgs e)
- {
- this.WindowState = FormWindowState.Minimized;
- }
-
- //
- //End of Button Clicks
- //
-
- //
- //Button Images
- //
-
- //Minimize
- private void button22_MouseLeave(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._150;
- }
-
- private void button22_MouseEnter(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._154;
- }
- private void button22_MouseDown(object sender, MouseEventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._157;
- }
-
- //Close
- private void button23_MouseLeave(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._246;
- }
-
- private void button23_MouseEnter(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._248;
- }
- private void button23_MouseDown(object sender, MouseEventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._250;
- }
-
- //
- // End of Button Images
- //
- }
-}
diff --git a/FunkeySelector/Form13.Designer.cs b/FunkeySelector/Form13.Designer.cs
deleted file mode 100644
index 5e27653..0000000
--- a/FunkeySelector/Form13.Designer.cs
+++ /dev/null
@@ -1,180 +0,0 @@
-namespace FunkeySelector
-{
- partial class Form13
- {
- ///
- /// Required designer variable.
- ///
- private System.ComponentModel.IContainer components = null;
-
- ///
- /// Clean up any resources being used.
- ///
- /// true if managed resources should be disposed; otherwise, false.
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- ///
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- ///
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form13));
- this.label2 = new System.Windows.Forms.Label();
- this.button1 = new System.Windows.Forms.Button();
- this.button2 = new System.Windows.Forms.Button();
- this.Imagelist = new System.Windows.Forms.ImageList(this.components);
- this.listBox1 = new System.Windows.Forms.ListBox();
- this.button22 = new System.Windows.Forms.Button();
- this.button23 = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.BackColor = System.Drawing.Color.Transparent;
- this.label2.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label2.ForeColor = System.Drawing.SystemColors.Control;
- this.label2.Location = new System.Drawing.Point(241, 31);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(371, 52);
- this.label2.TabIndex = 58;
- this.label2.Text = "CUSTOM FUNKEYS";
- //
- // button1
- //
- this.button1.BackColor = System.Drawing.Color.Transparent;
- this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button1.FlatAppearance.BorderSize = 0;
- this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button1.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button1.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button1.Location = new System.Drawing.Point(12, 12);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(101, 48);
- this.button1.TabIndex = 59;
- this.button1.Text = "BACK";
- this.button1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button1.UseVisualStyleBackColor = false;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- //
- // button2
- //
- this.button2.BackColor = System.Drawing.Color.Transparent;
- this.button2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button2.FlatAppearance.BorderSize = 0;
- this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button2.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button2.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button2.Location = new System.Drawing.Point(119, 12);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(101, 48);
- this.button2.TabIndex = 60;
- this.button2.Text = "HELP";
- this.button2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button2.UseVisualStyleBackColor = false;
- this.button2.Click += new System.EventHandler(this.button2_Click);
- //
- // Imagelist
- //
- this.Imagelist.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
- this.Imagelist.ImageSize = new System.Drawing.Size(128, 128);
- this.Imagelist.TransparentColor = System.Drawing.Color.Transparent;
- //
- // listBox1
- //
- this.listBox1.BackColor = System.Drawing.SystemColors.HotTrack;
- this.listBox1.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.listBox1.ForeColor = System.Drawing.SystemColors.Info;
- this.listBox1.FormattingEnabled = true;
- this.listBox1.ItemHeight = 29;
- this.listBox1.Location = new System.Drawing.Point(31, 104);
- this.listBox1.Name = "listBox1";
- this.listBox1.Size = new System.Drawing.Size(667, 410);
- this.listBox1.TabIndex = 61;
- this.listBox1.SelectedIndexChanged += new System.EventHandler(this.listBox1_SelectedIndexChanged_1);
- //
- // button22
- //
- this.button22.BackColor = System.Drawing.Color.Transparent;
- this.button22.BackgroundImage = global::FunkeySelector.Properties.Resources._150;
- this.button22.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button22.FlatAppearance.BorderSize = 0;
- this.button22.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button22.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button22.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button22.Location = new System.Drawing.Point(642, 15);
- this.button22.Name = "button22";
- this.button22.Size = new System.Drawing.Size(26, 22);
- this.button22.TabIndex = 106;
- this.button22.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button22.UseVisualStyleBackColor = false;
- this.button22.Click += new System.EventHandler(this.button22_Click);
- this.button22.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button22_MouseDown);
- this.button22.MouseEnter += new System.EventHandler(this.button22_MouseEnter);
- this.button22.MouseLeave += new System.EventHandler(this.button22_MouseLeave);
- //
- // button23
- //
- this.button23.BackColor = System.Drawing.Color.Transparent;
- this.button23.BackgroundImage = global::FunkeySelector.Properties.Resources._246;
- this.button23.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button23.FlatAppearance.BorderSize = 0;
- this.button23.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button23.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button23.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button23.Location = new System.Drawing.Point(681, 17);
- this.button23.Name = "button23";
- this.button23.Size = new System.Drawing.Size(26, 20);
- this.button23.TabIndex = 105;
- this.button23.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button23.UseVisualStyleBackColor = false;
- this.button23.Click += new System.EventHandler(this.button23_Click);
- this.button23.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button23_MouseDown);
- this.button23.MouseEnter += new System.EventHandler(this.button23_MouseEnter);
- this.button23.MouseLeave += new System.EventHandler(this.button23_MouseLeave);
- //
- // Form13
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.Gold;
- this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
- this.ClientSize = new System.Drawing.Size(726, 566);
- this.Controls.Add(this.button22);
- this.Controls.Add(this.button23);
- this.Controls.Add(this.listBox1);
- this.Controls.Add(this.button2);
- this.Controls.Add(this.button1);
- this.Controls.Add(this.label2);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.Name = "Form13";
- this.Text = "FunkeySelectorGUI";
- this.Load += new System.EventHandler(this.Form13_Load);
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
-
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Button button2;
- private System.Windows.Forms.ImageList Imagelist;
- private System.Windows.Forms.ListBox listBox1;
- private System.Windows.Forms.Button button22;
- private System.Windows.Forms.Button button23;
- }
-}
\ No newline at end of file
diff --git a/FunkeySelector/Form13.cs b/FunkeySelector/Form13.cs
deleted file mode 100644
index 8d99296..0000000
--- a/FunkeySelector/Form13.cs
+++ /dev/null
@@ -1,139 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Data;
-using System.Diagnostics;
-using System.Drawing;
-using System.IO;
-using System.Linq;
-using System.Text;
-using System.Windows.Forms;
-
-namespace FunkeySelector
-{
- public partial class Form13 : Form
- {
- //
- //Initial setup
- //
-
- public Form13()
- {
- InitializeComponent();
- this.TransparencyKey = System.Drawing.Color.Gold; //Removes the gold sections to allow the UI to be rounded.
- }
-
- protected override void WndProc(ref Message m) //Allows the window to be dragged.
- {
- switch (m.Msg)
- {
- case 0x84:
- base.WndProc(ref m);
- if ((int)m.Result == 0x1)
- m.Result = (IntPtr)0x2;
- return;
- }
-
- base.WndProc(ref m);
- }
-
- //Initializes the listbox with customfunkeys.
- private void Form13_Load(object sender, EventArgs e)
- {
- listBox1.Items.Clear();
- string[] files = Directory.GetFiles("./CustomFunkeys");
-
- foreach (string file in files)
- {
- listBox1.Items.Add(file);
- }
- }
-
- //
- //End of initial startup
- //
-
- //
- //Button Clicks
- //
-
- //Help
- private void button2_Click(object sender, EventArgs e)
- {
- MessageBox.Show("This shows all of the custom Funkeys in the CustomFunkeys folder in the RadicaGame folder. Put the custom Funkey's txt inside the folder, it'll show up here. Click on the custom Funkey you want, and it'll show up in game!");
- }
-
- //Back
- private void button1_Click(object sender, EventArgs e)
- {
- Form1 form1 = new Form1();
- this.Hide();
- form1.StartPosition = FormStartPosition.CenterParent;
- form1.ShowDialog(this);
- }
-
- //Will select Funkey when listbox item is selected.
- private void listBox1_SelectedIndexChanged_1(object sender, EventArgs e)
- {
- System.IO.File.Copy(listBox1.SelectedItem.ToString(), "customF.txt", true); //This does not use CustomFManager as it uses a different method.
- if (Properties.Settings.Default.wineCompat == false)
- {
- Process.GetProcessesByName("UBFunkeys")[0].CloseMainWindow();
- }
- }
-
- //Close
- private void button23_Click(object sender, EventArgs e)
- {
- Application.Exit();
- }
-
- //Minimize
- private void button22_Click(object sender, EventArgs e)
- {
- this.WindowState = FormWindowState.Minimized;
- }
-
- //
- //End of Button Clicks
- //
-
- //
- //Button Images
- //
-
- //Minimize
- private void button22_MouseLeave(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._150;
- }
-
- private void button22_MouseEnter(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._154;
- }
- private void button22_MouseDown(object sender, MouseEventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._157;
- }
-
- //Close
- private void button23_MouseLeave(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._246;
- }
-
- private void button23_MouseEnter(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._248;
- }
- private void button23_MouseDown(object sender, MouseEventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._250;
- }
-
- //
- // End of Button Images
- //
- }
-}
diff --git a/FunkeySelector/Form14.Designer.cs b/FunkeySelector/Form14.Designer.cs
deleted file mode 100644
index 5bd9f6f..0000000
--- a/FunkeySelector/Form14.Designer.cs
+++ /dev/null
@@ -1,177 +0,0 @@
-namespace FunkeySelector
-{
- partial class Form14
- {
- ///
- /// Required designer variable.
- ///
- private System.ComponentModel.IContainer components = null;
-
- ///
- /// Clean up any resources being used.
- ///
- /// true if managed resources should be disposed; otherwise, false.
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- ///
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- ///
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form14));
- this.button1 = new System.Windows.Forms.Button();
- this.label1 = new System.Windows.Forms.Label();
- this.checkBox1 = new System.Windows.Forms.CheckBox();
- this.checkBox2 = new System.Windows.Forms.CheckBox();
- this.checkBox3 = new System.Windows.Forms.CheckBox();
- this.checkBox4 = new System.Windows.Forms.CheckBox();
- this.button2 = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // button1
- //
- this.button1.BackColor = System.Drawing.Color.Transparent;
- this.button1.BackgroundImage = global::FunkeySelector.Properties.Resources._230;
- this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button1.FlatAppearance.BorderSize = 0;
- this.button1.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
- this.button1.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
- this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button1.Location = new System.Drawing.Point(242, 244);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(86, 23);
- this.button1.TabIndex = 0;
- this.button1.UseVisualStyleBackColor = false;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- this.button1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button1_MouseDown);
- this.button1.MouseEnter += new System.EventHandler(this.button1_MouseEnter);
- this.button1.MouseLeave += new System.EventHandler(this.button1_MouseLeave);
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.BackColor = System.Drawing.Color.Transparent;
- this.label1.Font = new System.Drawing.Font("Comic Sans MS", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label1.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.label1.Location = new System.Drawing.Point(234, 25);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(103, 26);
- this.label1.TabIndex = 1;
- this.label1.Text = "OPTIONS";
- //
- // checkBox1
- //
- this.checkBox1.AutoSize = true;
- this.checkBox1.BackColor = System.Drawing.Color.Transparent;
- this.checkBox1.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.checkBox1.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.checkBox1.Location = new System.Drawing.Point(111, 66);
- this.checkBox1.Name = "checkBox1";
- this.checkBox1.Size = new System.Drawing.Size(351, 24);
- this.checkBox1.TabIndex = 2;
- this.checkBox1.Text = "DISABLE FUNKEYS SELECTION MOD CHECK";
- this.checkBox1.UseVisualStyleBackColor = false;
- this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
- //
- // checkBox2
- //
- this.checkBox2.AutoSize = true;
- this.checkBox2.BackColor = System.Drawing.Color.Transparent;
- this.checkBox2.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.checkBox2.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.checkBox2.Location = new System.Drawing.Point(111, 89);
- this.checkBox2.Name = "checkBox2";
- this.checkBox2.Size = new System.Drawing.Size(297, 24);
- this.checkBox2.TabIndex = 3;
- this.checkBox2.Text = "DISABLE U.B. FUNKEYS GAME CHECK";
- this.checkBox2.UseVisualStyleBackColor = false;
- this.checkBox2.CheckedChanged += new System.EventHandler(this.checkBox2_CheckedChanged);
- //
- // checkBox3
- //
- this.checkBox3.AutoSize = true;
- this.checkBox3.BackColor = System.Drawing.Color.Transparent;
- this.checkBox3.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.checkBox3.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.checkBox3.Location = new System.Drawing.Point(111, 135);
- this.checkBox3.Name = "checkBox3";
- this.checkBox3.Size = new System.Drawing.Size(257, 24);
- this.checkBox3.TabIndex = 4;
- this.checkBox3.Text = "WINE/MONO COMPATIBILITY";
- this.checkBox3.UseVisualStyleBackColor = false;
- this.checkBox3.CheckedChanged += new System.EventHandler(this.checkBox3_CheckedChanged);
- //
- // checkBox4
- //
- this.checkBox4.AutoSize = true;
- this.checkBox4.BackColor = System.Drawing.Color.Transparent;
- this.checkBox4.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.checkBox4.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.checkBox4.Location = new System.Drawing.Point(111, 112);
- this.checkBox4.Name = "checkBox4";
- this.checkBox4.Size = new System.Drawing.Size(194, 24);
- this.checkBox4.TabIndex = 5;
- this.checkBox4.Text = "DISABLE WINE CHECK";
- this.checkBox4.UseVisualStyleBackColor = false;
- this.checkBox4.CheckedChanged += new System.EventHandler(this.checkBox4_CheckedChanged);
- //
- // button2
- //
- this.button2.BackColor = System.Drawing.Color.Transparent;
- this.button2.FlatAppearance.BorderSize = 0;
- this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button2.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button2.ForeColor = System.Drawing.SystemColors.ButtonFace;
- this.button2.Location = new System.Drawing.Point(146, 187);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(262, 31);
- this.button2.TabIndex = 6;
- this.button2.Text = "ABOUT FUNKEYSELECTORGUI";
- this.button2.UseVisualStyleBackColor = false;
- this.button2.Click += new System.EventHandler(this.button2_Click);
- //
- // Form14
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.Gold;
- this.BackgroundImage = global::FunkeySelector.Properties.Resources._1841;
- this.ClientSize = new System.Drawing.Size(570, 273);
- this.Controls.Add(this.button2);
- this.Controls.Add(this.checkBox4);
- this.Controls.Add(this.checkBox3);
- this.Controls.Add(this.checkBox2);
- this.Controls.Add(this.checkBox1);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.button1);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.MaximizeBox = false;
- this.Name = "Form14";
- this.Text = "FunkeySelectorGUI";
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
-
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.CheckBox checkBox1;
- private System.Windows.Forms.CheckBox checkBox2;
- private System.Windows.Forms.CheckBox checkBox3;
- private System.Windows.Forms.CheckBox checkBox4;
- private System.Windows.Forms.Button button2;
- }
-}
\ No newline at end of file
diff --git a/FunkeySelector/Form14.cs b/FunkeySelector/Form14.cs
deleted file mode 100644
index c7e2107..0000000
--- a/FunkeySelector/Form14.cs
+++ /dev/null
@@ -1,108 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Data;
-using System.Drawing;
-using System.Linq;
-using System.Text;
-using System.Windows.Forms;
-
-namespace FunkeySelector
-{
- public partial class Form14 : Form
- {
- public Form14()
- {
- InitializeComponent();
- this.TransparencyKey = System.Drawing.Color.Gold;
- checkBox1.Checked = Properties.Settings.Default.disableModCheck;
- checkBox2.Checked = Properties.Settings.Default.disableGameCheck;
- checkBox3.Checked = Properties.Settings.Default.wineCompat;
- checkBox4.Checked = Properties.Settings.Default.disableWineCheck;
- }
-
- private void checkBox1_CheckedChanged(object sender, EventArgs e)
- {
- if (checkBox1.Checked)
- {
- Properties.Settings.Default.disableModCheck = true;
- }
- else
- Properties.Settings.Default.disableModCheck = false;
- Properties.Settings.Default.Save();
- }
-
- private void checkBox2_CheckedChanged(object sender, EventArgs e)
- {
- if (checkBox2.Checked)
- {
- Properties.Settings.Default.disableGameCheck = true;
- }
- else
- Properties.Settings.Default.disableGameCheck = false;
- Properties.Settings.Default.Save();
- }
-
- private void button1_Click(object sender, EventArgs e)
- {
- this.Close();
- }
-
- private void checkBox3_CheckedChanged(object sender, EventArgs e)
- {
- if (checkBox3.Checked)
- {
- Properties.Settings.Default.wineCompat = true;
- }
- else
- Properties.Settings.Default.wineCompat = false;
- Properties.Settings.Default.Save();
- }
-
- private void checkBox4_CheckedChanged(object sender, EventArgs e)
- {
- if (checkBox4.Checked)
- {
- Properties.Settings.Default.disableWineCheck = true;
- }
- else
- Properties.Settings.Default.disableWineCheck = false;
- Properties.Settings.Default.Save();
- }
-
- private void button1_MouseEnter(object sender, EventArgs e)
- {
- button1.BackgroundImage = Properties.Resources._232;
- }
-
- private void button1_MouseLeave(object sender, EventArgs e)
- {
- button1.BackgroundImage = Properties.Resources._230;
- }
-
- private void button1_MouseDown(object sender, MouseEventArgs e)
- {
- button1.BackgroundImage = Properties.Resources._234;
- }
- protected override void WndProc(ref Message m)
- {
- switch (m.Msg)
- {
- case 0x84:
- base.WndProc(ref m);
- if ((int)m.Result == 0x1)
- m.Result = (IntPtr)0x2;
- return;
- }
-
- base.WndProc(ref m);
- }
-
- private void button2_Click(object sender, EventArgs e)
- {
- Form15 form15 = new Form15();
- form15.StartPosition = FormStartPosition.CenterParent;
- form15.ShowDialog();
- }
- }
-}
diff --git a/FunkeySelector/Form15.Designer.cs b/FunkeySelector/Form15.Designer.cs
deleted file mode 100644
index 323a2d6..0000000
--- a/FunkeySelector/Form15.Designer.cs
+++ /dev/null
@@ -1,134 +0,0 @@
-namespace FunkeySelector
-{
- partial class Form15
- {
- ///
- /// Required designer variable.
- ///
- private System.ComponentModel.IContainer components = null;
-
- ///
- /// Clean up any resources being used.
- ///
- /// true if managed resources should be disposed; otherwise, false.
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- ///
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- ///
- private void InitializeComponent()
- {
- this.label1 = new System.Windows.Forms.Label();
- this.button1 = new System.Windows.Forms.Button();
- this.label2 = new System.Windows.Forms.Label();
- this.label3 = new System.Windows.Forms.Label();
- this.label4 = new System.Windows.Forms.Label();
- this.SuspendLayout();
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.BackColor = System.Drawing.Color.Transparent;
- this.label1.Font = new System.Drawing.Font("Comic Sans MS", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label1.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.label1.Location = new System.Drawing.Point(137, 25);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(297, 26);
- this.label1.TabIndex = 3;
- this.label1.Text = "ABOUT FUNKEYSELECTORGUI";
- //
- // button1
- //
- this.button1.BackColor = System.Drawing.Color.Transparent;
- this.button1.BackgroundImage = global::FunkeySelector.Properties.Resources._230;
- this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button1.FlatAppearance.BorderSize = 0;
- this.button1.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
- this.button1.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
- this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button1.Location = new System.Drawing.Point(242, 244);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(86, 23);
- this.button1.TabIndex = 2;
- this.button1.UseVisualStyleBackColor = false;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- this.button1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button1_MouseDown);
- this.button1.MouseEnter += new System.EventHandler(this.button1_MouseEnter);
- this.button1.MouseLeave += new System.EventHandler(this.button1_MouseLeave);
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.BackColor = System.Drawing.Color.Transparent;
- this.label2.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label2.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.label2.Location = new System.Drawing.Point(155, 84);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(260, 20);
- this.label2.TabIndex = 4;
- this.label2.Text = "DEVELOPED BY GITTYMAC (LAKO)";
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.BackColor = System.Drawing.Color.Transparent;
- this.label3.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label3.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.label3.Location = new System.Drawing.Point(122, 126);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(327, 20);
- this.label3.TabIndex = 5;
- this.label3.Text = "MADE FOR THE FUNKEYS SELECTION MOD";
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.BackColor = System.Drawing.Color.Transparent;
- this.label4.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label4.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.label4.Location = new System.Drawing.Point(90, 168);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(390, 20);
- this.label4.TabIndex = 6;
- this.label4.Text = "CREDITS TO DUALSCAR FOR THE ICONS AND IDEA";
- //
- // Form15
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.Gold;
- this.BackgroundImage = global::FunkeySelector.Properties.Resources._1841;
- this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.ClientSize = new System.Drawing.Size(570, 272);
- this.Controls.Add(this.label4);
- this.Controls.Add(this.label3);
- this.Controls.Add(this.label2);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.button1);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Name = "Form15";
- this.Text = "Form15";
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
-
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Label label4;
- }
-}
\ No newline at end of file
diff --git a/FunkeySelector/Form15.cs b/FunkeySelector/Form15.cs
deleted file mode 100644
index 3a35712..0000000
--- a/FunkeySelector/Form15.cs
+++ /dev/null
@@ -1,52 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Data;
-using System.Drawing;
-using System.Linq;
-using System.Text;
-using System.Windows.Forms;
-
-namespace FunkeySelector
-{
- public partial class Form15 : Form
- {
- public Form15()
- {
- InitializeComponent();
- this.TransparencyKey = System.Drawing.Color.Gold;
- }
-
- private void button1_Click(object sender, EventArgs e)
- {
- this.Hide();
- }
- private void button1_MouseEnter(object sender, EventArgs e)
- {
- button1.BackgroundImage = Properties.Resources._232;
- }
-
- private void button1_MouseLeave(object sender, EventArgs e)
- {
- button1.BackgroundImage = Properties.Resources._230;
- }
-
- private void button1_MouseDown(object sender, MouseEventArgs e)
- {
- button1.BackgroundImage = Properties.Resources._234;
- }
- protected override void WndProc(ref Message m)
- {
- switch (m.Msg)
- {
- case 0x84:
- base.WndProc(ref m);
- if ((int)m.Result == 0x1)
- m.Result = (IntPtr)0x2;
- return;
- }
-
- base.WndProc(ref m);
- }
- }
-}
diff --git a/FunkeySelector/Form2.cs b/FunkeySelector/Form2.cs
deleted file mode 100644
index 636334b..0000000
--- a/FunkeySelector/Form2.cs
+++ /dev/null
@@ -1,237 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Data;
-using System.Drawing;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.IO;
-using System.Windows.Forms;
-using System.Diagnostics;
-
-namespace FunkeySelector
-{
- public partial class Form2 : Form
- {
- //
- // Initial Setups
- //
-
- CustomFManager customF = new CustomFManager(); //Assigns CustomFManager to customF.
- public Form2()
- {
- InitializeComponent();
- this.TransparencyKey = System.Drawing.Color.Gold; //Cuts out gold parts to be rounded.
- }
-
- protected override void WndProc(ref Message m) //Allows the window to be dragged.
- {
- switch (m.Msg)
- {
- case 0x84:
- base.WndProc(ref m);
- if ((int)m.Result == 0x1)
- m.Result = (IntPtr)0x2;
- return;
- }
-
- base.WndProc(ref m);
- }
-
- //
- // End of Initial Setups
- //
-
- //
- // Button Clicks
- // Most of these call CustomFManager to set the customF code.
- //
-
- //Back
- private void button1_Click(object sender, EventArgs e)
- {
- Form1 form1 = new Form1();
- this.Hide();
- form1.StartPosition = FormStartPosition.CenterParent;
- form1.ShowDialog(this);
- }
-
- //Scratch
- private void button2_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000047");
- }
-
- //Scratch R
- private void button3_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000048");
- }
-
- //Scratch VR
- private void button4_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000049");
- }
-
- //Lotus
- private void button10_Click(object sender, EventArgs e)
- {
- customF.setFunkey("0000004A");
- }
-
- //Lotus R
- private void button9_Click(object sender, EventArgs e)
- {
- customF.setFunkey("0000004B");
- }
-
- //Lotus VR
- private void button8_Click(object sender, EventArgs e)
- {
- customF.setFunkey("0000004F");
- }
-
- //Drift
- private void button7_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000AA");
- }
-
- //Drift R
- private void button6_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000B7");
- }
-
- //Drift VR
- private void button5_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000C4");
- }
-
- //Waggs
- private void button13_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000AB");
- }
-
- //Waggs R
- private void button12_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000B8");
- }
-
- //Waggs VR
- private void button11_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000C5");
- }
-
- //Dot
- private void button16_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000FC");
- }
-
- //Dot R
- private void button15_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000FD");
- }
-
- //Dot VR
- private void button14_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000101");
- }
-
- //Holler
- private void button20_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000CD");
- }
-
- //Gabby
- private void button21_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000CB");
- }
-
- //Henchman
- private void button18_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000CF");
- }
-
- //Master Lox
- private void button17_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000F7");
- }
-
- //Mayor Sayso
- private void button19_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000F8");
- }
-
- //Close
- private void button23_Click(object sender, EventArgs e)
- {
- Application.Exit();
- }
-
- //Minimize
- private void button22_Click(object sender, EventArgs e)
- {
- this.WindowState = FormWindowState.Minimized;
- }
-
- //
- //End of Button Clicks
- //
-
- //
- //Button Images
- //
-
- //Exit
- private void button23_MouseLeave(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._246;
- }
-
- private void button23_MouseEnter(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._248;
- }
-
- private void button23_MouseDown(object sender, MouseEventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._250;
- }
-
- //Minimize
- private void button22_MouseLeave(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._150;
- }
-
- private void button22_MouseEnter(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._154;
- }
-
- private void button22_MouseDown(object sender, MouseEventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._157;
- }
-
- //
- // End of Button Images
- //
-
- }
-}
diff --git a/FunkeySelector/Form2.designer.cs b/FunkeySelector/Form2.designer.cs
deleted file mode 100644
index 4295b9a..0000000
--- a/FunkeySelector/Form2.designer.cs
+++ /dev/null
@@ -1,686 +0,0 @@
-namespace FunkeySelector
-{
- partial class Form2
- {
- ///
- /// Required designer variable.
- ///
- private System.ComponentModel.IContainer components = null;
-
- ///
- /// Clean up any resources being used.
- ///
- /// true if managed resources should be disposed; otherwise, false.
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- ///
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- ///
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form2));
- this.label2 = new System.Windows.Forms.Label();
- this.button1 = new System.Windows.Forms.Button();
- this.button2 = new System.Windows.Forms.Button();
- this.button3 = new System.Windows.Forms.Button();
- this.button4 = new System.Windows.Forms.Button();
- this.label1 = new System.Windows.Forms.Label();
- this.label3 = new System.Windows.Forms.Label();
- this.button5 = new System.Windows.Forms.Button();
- this.button6 = new System.Windows.Forms.Button();
- this.button7 = new System.Windows.Forms.Button();
- this.label4 = new System.Windows.Forms.Label();
- this.button8 = new System.Windows.Forms.Button();
- this.button9 = new System.Windows.Forms.Button();
- this.button10 = new System.Windows.Forms.Button();
- this.label5 = new System.Windows.Forms.Label();
- this.button11 = new System.Windows.Forms.Button();
- this.button12 = new System.Windows.Forms.Button();
- this.button13 = new System.Windows.Forms.Button();
- this.label6 = new System.Windows.Forms.Label();
- this.button14 = new System.Windows.Forms.Button();
- this.button15 = new System.Windows.Forms.Button();
- this.button16 = new System.Windows.Forms.Button();
- this.label7 = new System.Windows.Forms.Label();
- this.button18 = new System.Windows.Forms.Button();
- this.label8 = new System.Windows.Forms.Label();
- this.button17 = new System.Windows.Forms.Button();
- this.label9 = new System.Windows.Forms.Label();
- this.button19 = new System.Windows.Forms.Button();
- this.label10 = new System.Windows.Forms.Label();
- this.button20 = new System.Windows.Forms.Button();
- this.label11 = new System.Windows.Forms.Label();
- this.button21 = new System.Windows.Forms.Button();
- this.button22 = new System.Windows.Forms.Button();
- this.button23 = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.BackColor = System.Drawing.Color.Transparent;
- this.label2.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label2.ForeColor = System.Drawing.SystemColors.Control;
- this.label2.Location = new System.Drawing.Point(199, 31);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(319, 52);
- this.label2.TabIndex = 2;
- this.label2.Text = "FUNKEYSTOWN";
- //
- // button1
- //
- this.button1.BackColor = System.Drawing.Color.Transparent;
- this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button1.FlatAppearance.BorderSize = 0;
- this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button1.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button1.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button1.Location = new System.Drawing.Point(12, 12);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(101, 48);
- this.button1.TabIndex = 4;
- this.button1.Text = "BACK";
- this.button1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button1.UseVisualStyleBackColor = false;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- //
- // button2
- //
- this.button2.BackColor = System.Drawing.Color.Transparent;
- this.button2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button2.BackgroundImage")));
- this.button2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button2.FlatAppearance.BorderSize = 0;
- this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button2.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button2.ForeColor = System.Drawing.Color.Transparent;
- this.button2.Location = new System.Drawing.Point(13, 168);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(50, 63);
- this.button2.TabIndex = 5;
- this.button2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button2.UseVisualStyleBackColor = false;
- this.button2.Click += new System.EventHandler(this.button2_Click);
- //
- // button3
- //
- this.button3.BackColor = System.Drawing.Color.Transparent;
- this.button3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button3.BackgroundImage")));
- this.button3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button3.FlatAppearance.BorderSize = 0;
- this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button3.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button3.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button3.Location = new System.Drawing.Point(64, 168);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(50, 63);
- this.button3.TabIndex = 6;
- this.button3.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button3.UseVisualStyleBackColor = false;
- this.button3.Click += new System.EventHandler(this.button3_Click);
- //
- // button4
- //
- this.button4.BackColor = System.Drawing.Color.Transparent;
- this.button4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button4.BackgroundImage")));
- this.button4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button4.FlatAppearance.BorderSize = 0;
- this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button4.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button4.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button4.Location = new System.Drawing.Point(115, 168);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(50, 63);
- this.button4.TabIndex = 7;
- this.button4.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button4.UseVisualStyleBackColor = false;
- this.button4.Click += new System.EventHandler(this.button4_Click);
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.BackColor = System.Drawing.Color.Transparent;
- this.label1.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label1.ForeColor = System.Drawing.SystemColors.Control;
- this.label1.Location = new System.Drawing.Point(37, 130);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(113, 29);
- this.label1.TabIndex = 8;
- this.label1.Text = "SCRATCH";
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.BackColor = System.Drawing.Color.Transparent;
- this.label3.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label3.ForeColor = System.Drawing.SystemColors.Control;
- this.label3.Location = new System.Drawing.Point(414, 130);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(79, 29);
- this.label3.TabIndex = 12;
- this.label3.Text = "DRIFT";
- //
- // button5
- //
- this.button5.BackColor = System.Drawing.Color.Transparent;
- this.button5.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button5.BackgroundImage")));
- this.button5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button5.FlatAppearance.BorderSize = 0;
- this.button5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button5.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button5.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button5.Location = new System.Drawing.Point(477, 168);
- this.button5.Name = "button5";
- this.button5.Size = new System.Drawing.Size(50, 63);
- this.button5.TabIndex = 11;
- this.button5.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button5.UseVisualStyleBackColor = false;
- this.button5.Click += new System.EventHandler(this.button5_Click);
- //
- // button6
- //
- this.button6.BackColor = System.Drawing.Color.Transparent;
- this.button6.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button6.BackgroundImage")));
- this.button6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button6.FlatAppearance.BorderSize = 0;
- this.button6.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button6.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button6.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button6.Location = new System.Drawing.Point(426, 168);
- this.button6.Name = "button6";
- this.button6.Size = new System.Drawing.Size(50, 63);
- this.button6.TabIndex = 10;
- this.button6.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button6.UseVisualStyleBackColor = false;
- this.button6.Click += new System.EventHandler(this.button6_Click);
- //
- // button7
- //
- this.button7.BackColor = System.Drawing.Color.Transparent;
- this.button7.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button7.BackgroundImage")));
- this.button7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button7.FlatAppearance.BorderSize = 0;
- this.button7.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button7.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button7.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button7.Location = new System.Drawing.Point(375, 168);
- this.button7.Name = "button7";
- this.button7.Size = new System.Drawing.Size(50, 63);
- this.button7.TabIndex = 9;
- this.button7.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button7.UseVisualStyleBackColor = false;
- this.button7.Click += new System.EventHandler(this.button7_Click);
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.BackColor = System.Drawing.Color.Transparent;
- this.label4.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label4.ForeColor = System.Drawing.SystemColors.Control;
- this.label4.Location = new System.Drawing.Point(228, 130);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(86, 29);
- this.label4.TabIndex = 16;
- this.label4.Text = "LOTUS";
- //
- // button8
- //
- this.button8.BackColor = System.Drawing.Color.Transparent;
- this.button8.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button8.BackgroundImage")));
- this.button8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button8.FlatAppearance.BorderSize = 0;
- this.button8.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button8.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button8.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button8.Location = new System.Drawing.Point(297, 168);
- this.button8.Name = "button8";
- this.button8.Size = new System.Drawing.Size(50, 63);
- this.button8.TabIndex = 15;
- this.button8.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button8.UseVisualStyleBackColor = false;
- this.button8.Click += new System.EventHandler(this.button8_Click);
- //
- // button9
- //
- this.button9.BackColor = System.Drawing.Color.Transparent;
- this.button9.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button9.BackgroundImage")));
- this.button9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button9.FlatAppearance.BorderSize = 0;
- this.button9.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button9.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button9.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button9.Location = new System.Drawing.Point(246, 168);
- this.button9.Name = "button9";
- this.button9.Size = new System.Drawing.Size(50, 63);
- this.button9.TabIndex = 14;
- this.button9.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button9.UseVisualStyleBackColor = false;
- this.button9.Click += new System.EventHandler(this.button9_Click);
- //
- // button10
- //
- this.button10.BackColor = System.Drawing.Color.Transparent;
- this.button10.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button10.BackgroundImage")));
- this.button10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button10.FlatAppearance.BorderSize = 0;
- this.button10.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button10.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button10.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button10.Location = new System.Drawing.Point(195, 168);
- this.button10.Name = "button10";
- this.button10.Size = new System.Drawing.Size(50, 63);
- this.button10.TabIndex = 13;
- this.button10.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button10.UseVisualStyleBackColor = false;
- this.button10.Click += new System.EventHandler(this.button10_Click);
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.BackColor = System.Drawing.Color.Transparent;
- this.label5.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label5.ForeColor = System.Drawing.SystemColors.Control;
- this.label5.Location = new System.Drawing.Point(577, 130);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(93, 29);
- this.label5.TabIndex = 20;
- this.label5.Text = "WAGGS";
- //
- // button11
- //
- this.button11.BackColor = System.Drawing.Color.Transparent;
- this.button11.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button11.BackgroundImage")));
- this.button11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button11.FlatAppearance.BorderSize = 0;
- this.button11.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button11.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button11.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button11.Location = new System.Drawing.Point(653, 168);
- this.button11.Name = "button11";
- this.button11.Size = new System.Drawing.Size(50, 63);
- this.button11.TabIndex = 19;
- this.button11.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button11.UseVisualStyleBackColor = false;
- this.button11.Click += new System.EventHandler(this.button11_Click);
- //
- // button12
- //
- this.button12.BackColor = System.Drawing.Color.Transparent;
- this.button12.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button12.BackgroundImage")));
- this.button12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button12.FlatAppearance.BorderSize = 0;
- this.button12.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button12.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button12.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button12.Location = new System.Drawing.Point(602, 168);
- this.button12.Name = "button12";
- this.button12.Size = new System.Drawing.Size(50, 63);
- this.button12.TabIndex = 18;
- this.button12.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button12.UseVisualStyleBackColor = false;
- this.button12.Click += new System.EventHandler(this.button12_Click);
- //
- // button13
- //
- this.button13.BackColor = System.Drawing.Color.Transparent;
- this.button13.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button13.BackgroundImage")));
- this.button13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button13.FlatAppearance.BorderSize = 0;
- this.button13.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button13.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button13.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button13.Location = new System.Drawing.Point(551, 168);
- this.button13.Name = "button13";
- this.button13.Size = new System.Drawing.Size(50, 63);
- this.button13.TabIndex = 17;
- this.button13.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button13.UseVisualStyleBackColor = false;
- this.button13.Click += new System.EventHandler(this.button13_Click);
- //
- // label6
- //
- this.label6.AutoSize = true;
- this.label6.BackColor = System.Drawing.Color.Transparent;
- this.label6.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label6.ForeColor = System.Drawing.SystemColors.Control;
- this.label6.Location = new System.Drawing.Point(336, 284);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(59, 29);
- this.label6.TabIndex = 24;
- this.label6.Text = "DOT";
- //
- // button14
- //
- this.button14.BackColor = System.Drawing.Color.Transparent;
- this.button14.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button14.BackgroundImage")));
- this.button14.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button14.FlatAppearance.BorderSize = 0;
- this.button14.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button14.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button14.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button14.Location = new System.Drawing.Point(389, 318);
- this.button14.Name = "button14";
- this.button14.Size = new System.Drawing.Size(50, 63);
- this.button14.TabIndex = 23;
- this.button14.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button14.UseVisualStyleBackColor = false;
- this.button14.Click += new System.EventHandler(this.button14_Click);
- //
- // button15
- //
- this.button15.BackColor = System.Drawing.Color.Transparent;
- this.button15.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button15.BackgroundImage")));
- this.button15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button15.FlatAppearance.BorderSize = 0;
- this.button15.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button15.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button15.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button15.Location = new System.Drawing.Point(338, 318);
- this.button15.Name = "button15";
- this.button15.Size = new System.Drawing.Size(50, 63);
- this.button15.TabIndex = 22;
- this.button15.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button15.UseVisualStyleBackColor = false;
- this.button15.Click += new System.EventHandler(this.button15_Click);
- //
- // button16
- //
- this.button16.BackColor = System.Drawing.Color.Transparent;
- this.button16.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button16.BackgroundImage")));
- this.button16.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button16.FlatAppearance.BorderSize = 0;
- this.button16.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button16.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button16.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button16.Location = new System.Drawing.Point(287, 318);
- this.button16.Name = "button16";
- this.button16.Size = new System.Drawing.Size(50, 63);
- this.button16.TabIndex = 21;
- this.button16.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button16.UseVisualStyleBackColor = false;
- this.button16.Click += new System.EventHandler(this.button16_Click);
- //
- // label7
- //
- this.label7.AutoSize = true;
- this.label7.BackColor = System.Drawing.Color.Transparent;
- this.label7.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label7.ForeColor = System.Drawing.SystemColors.Control;
- this.label7.Location = new System.Drawing.Point(89, 426);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(140, 29);
- this.label7.TabIndex = 28;
- this.label7.Text = "HENCHMAN";
- //
- // button18
- //
- this.button18.BackColor = System.Drawing.Color.Transparent;
- this.button18.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button18.BackgroundImage")));
- this.button18.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button18.FlatAppearance.BorderSize = 0;
- this.button18.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button18.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button18.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button18.Location = new System.Drawing.Point(132, 458);
- this.button18.Name = "button18";
- this.button18.Size = new System.Drawing.Size(50, 63);
- this.button18.TabIndex = 26;
- this.button18.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button18.UseVisualStyleBackColor = false;
- this.button18.Click += new System.EventHandler(this.button18_Click);
- //
- // label8
- //
- this.label8.AutoSize = true;
- this.label8.BackColor = System.Drawing.Color.Transparent;
- this.label8.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label8.ForeColor = System.Drawing.SystemColors.Control;
- this.label8.Location = new System.Drawing.Point(287, 426);
- this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(153, 29);
- this.label8.TabIndex = 30;
- this.label8.Text = "MASTER LOX";
- //
- // button17
- //
- this.button17.BackColor = System.Drawing.Color.Transparent;
- this.button17.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button17.BackgroundImage")));
- this.button17.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button17.FlatAppearance.BorderSize = 0;
- this.button17.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button17.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button17.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button17.Location = new System.Drawing.Point(338, 458);
- this.button17.Name = "button17";
- this.button17.Size = new System.Drawing.Size(50, 63);
- this.button17.TabIndex = 29;
- this.button17.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button17.UseVisualStyleBackColor = false;
- this.button17.Click += new System.EventHandler(this.button17_Click);
- //
- // label9
- //
- this.label9.AutoSize = true;
- this.label9.BackColor = System.Drawing.Color.Transparent;
- this.label9.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label9.ForeColor = System.Drawing.SystemColors.Control;
- this.label9.Location = new System.Drawing.Point(493, 426);
- this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(173, 29);
- this.label9.TabIndex = 32;
- this.label9.Text = "MAYOR SAYSO";
- //
- // button19
- //
- this.button19.BackColor = System.Drawing.Color.Transparent;
- this.button19.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button19.BackgroundImage")));
- this.button19.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button19.FlatAppearance.BorderSize = 0;
- this.button19.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button19.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button19.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button19.Location = new System.Drawing.Point(551, 458);
- this.button19.Name = "button19";
- this.button19.Size = new System.Drawing.Size(50, 63);
- this.button19.TabIndex = 31;
- this.button19.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button19.UseVisualStyleBackColor = false;
- this.button19.Click += new System.EventHandler(this.button19_Click);
- //
- // label10
- //
- this.label10.AutoSize = true;
- this.label10.BackColor = System.Drawing.Color.Transparent;
- this.label10.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label10.ForeColor = System.Drawing.SystemColors.Control;
- this.label10.Location = new System.Drawing.Point(110, 286);
- this.label10.Name = "label10";
- this.label10.Size = new System.Drawing.Size(96, 29);
- this.label10.TabIndex = 34;
- this.label10.Text = "HOLLER";
- //
- // button20
- //
- this.button20.BackColor = System.Drawing.Color.Transparent;
- this.button20.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button20.BackgroundImage")));
- this.button20.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button20.FlatAppearance.BorderSize = 0;
- this.button20.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button20.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button20.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button20.Location = new System.Drawing.Point(132, 318);
- this.button20.Name = "button20";
- this.button20.Size = new System.Drawing.Size(50, 63);
- this.button20.TabIndex = 33;
- this.button20.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button20.UseVisualStyleBackColor = false;
- this.button20.Click += new System.EventHandler(this.button20_Click);
- //
- // label11
- //
- this.label11.AutoSize = true;
- this.label11.BackColor = System.Drawing.Color.Transparent;
- this.label11.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label11.ForeColor = System.Drawing.SystemColors.Control;
- this.label11.Location = new System.Drawing.Point(534, 286);
- this.label11.Name = "label11";
- this.label11.Size = new System.Drawing.Size(82, 29);
- this.label11.TabIndex = 36;
- this.label11.Text = "GABBY";
- //
- // button21
- //
- this.button21.BackColor = System.Drawing.Color.Transparent;
- this.button21.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button21.BackgroundImage")));
- this.button21.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button21.FlatAppearance.BorderSize = 0;
- this.button21.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button21.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button21.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button21.Location = new System.Drawing.Point(551, 318);
- this.button21.Name = "button21";
- this.button21.Size = new System.Drawing.Size(50, 63);
- this.button21.TabIndex = 35;
- this.button21.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button21.UseVisualStyleBackColor = false;
- this.button21.Click += new System.EventHandler(this.button21_Click);
- //
- // button22
- //
- this.button22.BackColor = System.Drawing.Color.Transparent;
- this.button22.BackgroundImage = global::FunkeySelector.Properties.Resources._150;
- this.button22.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button22.FlatAppearance.BorderSize = 0;
- this.button22.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button22.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button22.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button22.Location = new System.Drawing.Point(642, 16);
- this.button22.Name = "button22";
- this.button22.Size = new System.Drawing.Size(26, 22);
- this.button22.TabIndex = 81;
- this.button22.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button22.UseVisualStyleBackColor = false;
- this.button22.Click += new System.EventHandler(this.button22_Click);
- this.button22.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button22_MouseDown);
- this.button22.MouseEnter += new System.EventHandler(this.button22_MouseEnter);
- this.button22.MouseLeave += new System.EventHandler(this.button22_MouseLeave);
- //
- // button23
- //
- this.button23.BackColor = System.Drawing.Color.Transparent;
- this.button23.BackgroundImage = global::FunkeySelector.Properties.Resources._246;
- this.button23.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button23.FlatAppearance.BorderSize = 0;
- this.button23.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button23.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button23.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button23.Location = new System.Drawing.Point(681, 18);
- this.button23.Name = "button23";
- this.button23.Size = new System.Drawing.Size(26, 20);
- this.button23.TabIndex = 80;
- this.button23.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button23.UseVisualStyleBackColor = false;
- this.button23.Click += new System.EventHandler(this.button23_Click);
- this.button23.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button23_MouseDown);
- this.button23.MouseEnter += new System.EventHandler(this.button23_MouseEnter);
- this.button23.MouseLeave += new System.EventHandler(this.button23_MouseLeave);
- //
- // Form2
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.Gold;
- this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
- this.ClientSize = new System.Drawing.Size(726, 566);
- this.Controls.Add(this.button22);
- this.Controls.Add(this.button23);
- this.Controls.Add(this.label11);
- this.Controls.Add(this.button21);
- this.Controls.Add(this.label10);
- this.Controls.Add(this.button20);
- this.Controls.Add(this.label9);
- this.Controls.Add(this.button19);
- this.Controls.Add(this.label8);
- this.Controls.Add(this.button17);
- this.Controls.Add(this.label7);
- this.Controls.Add(this.button18);
- this.Controls.Add(this.label6);
- this.Controls.Add(this.button14);
- this.Controls.Add(this.button15);
- this.Controls.Add(this.button16);
- this.Controls.Add(this.label5);
- this.Controls.Add(this.button11);
- this.Controls.Add(this.button12);
- this.Controls.Add(this.button13);
- this.Controls.Add(this.label4);
- this.Controls.Add(this.button8);
- this.Controls.Add(this.button9);
- this.Controls.Add(this.button10);
- this.Controls.Add(this.label3);
- this.Controls.Add(this.button5);
- this.Controls.Add(this.button6);
- this.Controls.Add(this.button7);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.button4);
- this.Controls.Add(this.button3);
- this.Controls.Add(this.button2);
- this.Controls.Add(this.button1);
- this.Controls.Add(this.label2);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.MaximizeBox = false;
- this.Name = "Form2";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
- this.Text = "FunkeySelectorGUI";
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
-
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Button button2;
- private System.Windows.Forms.Button button3;
- private System.Windows.Forms.Button button4;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Button button5;
- private System.Windows.Forms.Button button6;
- private System.Windows.Forms.Button button7;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.Button button8;
- private System.Windows.Forms.Button button9;
- private System.Windows.Forms.Button button10;
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.Button button11;
- private System.Windows.Forms.Button button12;
- private System.Windows.Forms.Button button13;
- private System.Windows.Forms.Label label6;
- private System.Windows.Forms.Button button14;
- private System.Windows.Forms.Button button15;
- private System.Windows.Forms.Button button16;
- private System.Windows.Forms.Label label7;
- private System.Windows.Forms.Button button18;
- private System.Windows.Forms.Label label8;
- private System.Windows.Forms.Button button17;
- private System.Windows.Forms.Label label9;
- private System.Windows.Forms.Button button19;
- private System.Windows.Forms.Label label10;
- private System.Windows.Forms.Button button20;
- private System.Windows.Forms.Label label11;
- private System.Windows.Forms.Button button21;
- private System.Windows.Forms.Button button22;
- private System.Windows.Forms.Button button23;
- }
-}
\ No newline at end of file
diff --git a/FunkeySelector/Form3.Designer.cs b/FunkeySelector/Form3.Designer.cs
deleted file mode 100644
index 1de4c06..0000000
--- a/FunkeySelector/Form3.Designer.cs
+++ /dev/null
@@ -1,435 +0,0 @@
-namespace FunkeySelector
-{
- partial class Form3
- {
- ///
- /// Required designer variable.
- ///
- private System.ComponentModel.IContainer components = null;
-
- ///
- /// Clean up any resources being used.
- ///
- /// true if managed resources should be disposed; otherwise, false.
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- ///
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- ///
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form3));
- this.label5 = new System.Windows.Forms.Label();
- this.button11 = new System.Windows.Forms.Button();
- this.button12 = new System.Windows.Forms.Button();
- this.button13 = new System.Windows.Forms.Button();
- this.label4 = new System.Windows.Forms.Label();
- this.button8 = new System.Windows.Forms.Button();
- this.button9 = new System.Windows.Forms.Button();
- this.button10 = new System.Windows.Forms.Button();
- this.label3 = new System.Windows.Forms.Label();
- this.button5 = new System.Windows.Forms.Button();
- this.button6 = new System.Windows.Forms.Button();
- this.button7 = new System.Windows.Forms.Button();
- this.label1 = new System.Windows.Forms.Label();
- this.button4 = new System.Windows.Forms.Button();
- this.button3 = new System.Windows.Forms.Button();
- this.button2 = new System.Windows.Forms.Button();
- this.button1 = new System.Windows.Forms.Button();
- this.label2 = new System.Windows.Forms.Label();
- this.button22 = new System.Windows.Forms.Button();
- this.button23 = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.BackColor = System.Drawing.Color.Transparent;
- this.label5.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label5.ForeColor = System.Drawing.SystemColors.Control;
- this.label5.Location = new System.Drawing.Point(319, 427);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(91, 29);
- this.label5.TabIndex = 38;
- this.label5.Text = "TWINX";
- //
- // button11
- //
- this.button11.BackColor = System.Drawing.Color.Transparent;
- this.button11.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button11.BackgroundImage")));
- this.button11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button11.FlatAppearance.BorderSize = 0;
- this.button11.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button11.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button11.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button11.Location = new System.Drawing.Point(395, 465);
- this.button11.Name = "button11";
- this.button11.Size = new System.Drawing.Size(50, 63);
- this.button11.TabIndex = 37;
- this.button11.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button11.UseVisualStyleBackColor = false;
- this.button11.Click += new System.EventHandler(this.button11_Click);
- //
- // button12
- //
- this.button12.BackColor = System.Drawing.Color.Transparent;
- this.button12.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button12.BackgroundImage")));
- this.button12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button12.FlatAppearance.BorderSize = 0;
- this.button12.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button12.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button12.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button12.Location = new System.Drawing.Point(344, 465);
- this.button12.Name = "button12";
- this.button12.Size = new System.Drawing.Size(50, 63);
- this.button12.TabIndex = 36;
- this.button12.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button12.UseVisualStyleBackColor = false;
- this.button12.Click += new System.EventHandler(this.button12_Click);
- //
- // button13
- //
- this.button13.BackColor = System.Drawing.Color.Transparent;
- this.button13.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button13.BackgroundImage")));
- this.button13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button13.FlatAppearance.BorderSize = 0;
- this.button13.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button13.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button13.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button13.Location = new System.Drawing.Point(293, 465);
- this.button13.Name = "button13";
- this.button13.Size = new System.Drawing.Size(50, 63);
- this.button13.TabIndex = 35;
- this.button13.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button13.UseVisualStyleBackColor = false;
- this.button13.Click += new System.EventHandler(this.button13_Click);
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.BackColor = System.Drawing.Color.Transparent;
- this.label4.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label4.ForeColor = System.Drawing.SystemColors.Control;
- this.label4.Location = new System.Drawing.Point(326, 216);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(98, 29);
- this.label4.TabIndex = 34;
- this.label4.Text = "SPROUT";
- //
- // button8
- //
- this.button8.BackColor = System.Drawing.Color.Transparent;
- this.button8.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button8.BackgroundImage")));
- this.button8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button8.FlatAppearance.BorderSize = 0;
- this.button8.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button8.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button8.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button8.Location = new System.Drawing.Point(395, 254);
- this.button8.Name = "button8";
- this.button8.Size = new System.Drawing.Size(50, 63);
- this.button8.TabIndex = 33;
- this.button8.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button8.UseVisualStyleBackColor = false;
- this.button8.Click += new System.EventHandler(this.button8_Click);
- //
- // button9
- //
- this.button9.BackColor = System.Drawing.Color.Transparent;
- this.button9.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button9.BackgroundImage")));
- this.button9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button9.FlatAppearance.BorderSize = 0;
- this.button9.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button9.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button9.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button9.Location = new System.Drawing.Point(344, 254);
- this.button9.Name = "button9";
- this.button9.Size = new System.Drawing.Size(50, 63);
- this.button9.TabIndex = 32;
- this.button9.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button9.UseVisualStyleBackColor = false;
- this.button9.Click += new System.EventHandler(this.button9_Click);
- //
- // button10
- //
- this.button10.BackColor = System.Drawing.Color.Transparent;
- this.button10.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button10.BackgroundImage")));
- this.button10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button10.FlatAppearance.BorderSize = 0;
- this.button10.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button10.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button10.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button10.Location = new System.Drawing.Point(293, 254);
- this.button10.Name = "button10";
- this.button10.Size = new System.Drawing.Size(50, 63);
- this.button10.TabIndex = 31;
- this.button10.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button10.UseVisualStyleBackColor = false;
- this.button10.Click += new System.EventHandler(this.button10_Click);
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.BackColor = System.Drawing.Color.Transparent;
- this.label3.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label3.ForeColor = System.Drawing.SystemColors.Control;
- this.label3.Location = new System.Drawing.Point(332, 319);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(62, 29);
- this.label3.TabIndex = 30;
- this.label3.Text = "TIKI";
- //
- // button5
- //
- this.button5.BackColor = System.Drawing.Color.Transparent;
- this.button5.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button5.BackgroundImage")));
- this.button5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button5.FlatAppearance.BorderSize = 0;
- this.button5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button5.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button5.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button5.Location = new System.Drawing.Point(395, 357);
- this.button5.Name = "button5";
- this.button5.Size = new System.Drawing.Size(50, 63);
- this.button5.TabIndex = 29;
- this.button5.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button5.UseVisualStyleBackColor = false;
- this.button5.Click += new System.EventHandler(this.button5_Click);
- //
- // button6
- //
- this.button6.BackColor = System.Drawing.Color.Transparent;
- this.button6.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button6.BackgroundImage")));
- this.button6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button6.FlatAppearance.BorderSize = 0;
- this.button6.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button6.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button6.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button6.Location = new System.Drawing.Point(344, 357);
- this.button6.Name = "button6";
- this.button6.Size = new System.Drawing.Size(50, 63);
- this.button6.TabIndex = 28;
- this.button6.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button6.UseVisualStyleBackColor = false;
- this.button6.Click += new System.EventHandler(this.button6_Click);
- //
- // button7
- //
- this.button7.BackColor = System.Drawing.Color.Transparent;
- this.button7.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button7.BackgroundImage")));
- this.button7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button7.FlatAppearance.BorderSize = 0;
- this.button7.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button7.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button7.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button7.Location = new System.Drawing.Point(293, 357);
- this.button7.Name = "button7";
- this.button7.Size = new System.Drawing.Size(50, 63);
- this.button7.TabIndex = 27;
- this.button7.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button7.UseVisualStyleBackColor = false;
- this.button7.Click += new System.EventHandler(this.button7_Click);
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.BackColor = System.Drawing.Color.Transparent;
- this.label1.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label1.ForeColor = System.Drawing.SystemColors.Control;
- this.label1.Location = new System.Drawing.Point(334, 97);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(67, 29);
- this.label1.TabIndex = 26;
- this.label1.Text = "GLUB";
- //
- // button4
- //
- this.button4.BackColor = System.Drawing.Color.Transparent;
- this.button4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button4.BackgroundImage")));
- this.button4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button4.FlatAppearance.BorderSize = 0;
- this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button4.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button4.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button4.Location = new System.Drawing.Point(395, 136);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(50, 63);
- this.button4.TabIndex = 25;
- this.button4.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button4.UseVisualStyleBackColor = false;
- this.button4.Click += new System.EventHandler(this.button4_Click);
- //
- // button3
- //
- this.button3.BackColor = System.Drawing.Color.Transparent;
- this.button3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button3.BackgroundImage")));
- this.button3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button3.FlatAppearance.BorderSize = 0;
- this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button3.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button3.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button3.Location = new System.Drawing.Point(344, 136);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(50, 63);
- this.button3.TabIndex = 24;
- this.button3.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button3.UseVisualStyleBackColor = false;
- this.button3.Click += new System.EventHandler(this.button3_Click);
- //
- // button2
- //
- this.button2.BackColor = System.Drawing.Color.Transparent;
- this.button2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button2.BackgroundImage")));
- this.button2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button2.FlatAppearance.BorderSize = 0;
- this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button2.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button2.ForeColor = System.Drawing.Color.Transparent;
- this.button2.Location = new System.Drawing.Point(293, 136);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(50, 63);
- this.button2.TabIndex = 23;
- this.button2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button2.UseVisualStyleBackColor = false;
- this.button2.Click += new System.EventHandler(this.button2_Click);
- //
- // button1
- //
- this.button1.BackColor = System.Drawing.Color.Transparent;
- this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button1.FlatAppearance.BorderSize = 0;
- this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button1.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button1.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button1.Location = new System.Drawing.Point(12, 12);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(101, 48);
- this.button1.TabIndex = 22;
- this.button1.Text = "BACK";
- this.button1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button1.UseVisualStyleBackColor = false;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.BackColor = System.Drawing.Color.Transparent;
- this.label2.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label2.ForeColor = System.Drawing.SystemColors.Control;
- this.label2.Location = new System.Drawing.Point(232, 16);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(268, 52);
- this.label2.TabIndex = 21;
- this.label2.Text = "KELPY BASIN";
- //
- // button22
- //
- this.button22.BackColor = System.Drawing.Color.Transparent;
- this.button22.BackgroundImage = global::FunkeySelector.Properties.Resources._150;
- this.button22.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button22.FlatAppearance.BorderSize = 0;
- this.button22.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button22.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button22.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button22.Location = new System.Drawing.Point(642, 16);
- this.button22.Name = "button22";
- this.button22.Size = new System.Drawing.Size(26, 22);
- this.button22.TabIndex = 83;
- this.button22.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button22.UseVisualStyleBackColor = false;
- this.button22.Click += new System.EventHandler(this.button22_Click);
- this.button22.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button22_MouseDown);
- this.button22.MouseEnter += new System.EventHandler(this.button22_MouseEnter);
- this.button22.MouseLeave += new System.EventHandler(this.button22_MouseLeave);
- //
- // button23
- //
- this.button23.BackColor = System.Drawing.Color.Transparent;
- this.button23.BackgroundImage = global::FunkeySelector.Properties.Resources._246;
- this.button23.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button23.FlatAppearance.BorderSize = 0;
- this.button23.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button23.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button23.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button23.Location = new System.Drawing.Point(681, 18);
- this.button23.Name = "button23";
- this.button23.Size = new System.Drawing.Size(26, 20);
- this.button23.TabIndex = 82;
- this.button23.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button23.UseVisualStyleBackColor = false;
- this.button23.Click += new System.EventHandler(this.button23_Click);
- this.button23.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button23_MouseDown);
- this.button23.MouseEnter += new System.EventHandler(this.button23_MouseEnter);
- this.button23.MouseLeave += new System.EventHandler(this.button23_MouseLeave);
- //
- // Form3
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.Gold;
- this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
- this.ClientSize = new System.Drawing.Size(726, 566);
- this.Controls.Add(this.button22);
- this.Controls.Add(this.button23);
- this.Controls.Add(this.label5);
- this.Controls.Add(this.button11);
- this.Controls.Add(this.button12);
- this.Controls.Add(this.button13);
- this.Controls.Add(this.label4);
- this.Controls.Add(this.button8);
- this.Controls.Add(this.button9);
- this.Controls.Add(this.button10);
- this.Controls.Add(this.label3);
- this.Controls.Add(this.button5);
- this.Controls.Add(this.button6);
- this.Controls.Add(this.button7);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.button4);
- this.Controls.Add(this.button3);
- this.Controls.Add(this.button2);
- this.Controls.Add(this.button1);
- this.Controls.Add(this.label2);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.MaximizeBox = false;
- this.Name = "Form3";
- this.Text = "FunkeySelectorGUI";
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
-
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.Button button11;
- private System.Windows.Forms.Button button12;
- private System.Windows.Forms.Button button13;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.Button button8;
- private System.Windows.Forms.Button button9;
- private System.Windows.Forms.Button button10;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Button button5;
- private System.Windows.Forms.Button button6;
- private System.Windows.Forms.Button button7;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Button button4;
- private System.Windows.Forms.Button button3;
- private System.Windows.Forms.Button button2;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Button button22;
- private System.Windows.Forms.Button button23;
- }
-}
\ No newline at end of file
diff --git a/FunkeySelector/Form3.cs b/FunkeySelector/Form3.cs
deleted file mode 100644
index 10d6828..0000000
--- a/FunkeySelector/Form3.cs
+++ /dev/null
@@ -1,187 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Data;
-using System.Diagnostics;
-using System.Drawing;
-using System.IO;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.Windows.Forms;
-
-namespace FunkeySelector
-{
- public partial class Form3 : Form
- {
- //
- //Initial Startup
- //
-
- CustomFManager customF = new CustomFManager(); //Assigns CustomFManager to customF.
-
- public Form3()
- {
- InitializeComponent();
- this.TransparencyKey = System.Drawing.Color.Gold; //Removes the gold sections to allow the UI to be rounded.
- }
-
- protected override void WndProc(ref Message m) //Allows the window to be dragged.
- {
- switch (m.Msg)
- {
- case 0x84:
- base.WndProc(ref m);
- if ((int)m.Result == 0x1)
- m.Result = (IntPtr)0x2;
- return;
- }
-
- base.WndProc(ref m);
- }
-
- //
- //End of Initial Startup
- //
-
- //
- //Start of Button Clicks
- //Most of them switches the customF code.
- //
-
- //Back
- private void button1_Click(object sender, EventArgs e)
- {
- Form1 form1 = new Form1();
- this.Hide();
- form1.StartPosition = FormStartPosition.CenterParent;
- form1.ShowDialog(this);
- }
-
- //Glub
- private void button2_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000014");
- }
-
- //Glub R
- private void button3_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000018");
- }
-
- //Glub VR
- private void button4_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000019");
- }
-
- //Sprout
- private void button10_Click(object sender, EventArgs e)
- {
- customF.setFunkey("0000001A");
- }
-
- //Sprout R
- private void button9_Click(object sender, EventArgs e)
- {
- customF.setFunkey("0000001B");
- }
-
- //Sprout VR
- private void button8_Click(object sender, EventArgs e)
- {
- customF.setFunkey("0000001C");
- }
-
- //Twinx
- private void button7_Click(object sender, EventArgs e)
- {
- customF.setFunkey("0000001D");
- }
-
- //Twinx R
- private void button6_Click(object sender, EventArgs e)
- {
- customF.setFunkey("0000001E");
- }
-
- //Twinx VR
- private void button5_Click(object sender, EventArgs e)
- {
- customF.setFunkey("0000001F");
- }
-
- //Tiki
- private void button13_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000023");
- }
-
- //Tiki R
- private void button12_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000024");
- }
-
- //Tiki VR
- private void button11_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000025");
- }
-
- //Close
- private void button23_Click(object sender, EventArgs e)
- {
- Application.Exit();
- }
-
- //Minimize
- private void button22_Click(object sender, EventArgs e)
- {
- this.WindowState = FormWindowState.Minimized;
- }
-
- //
- //End of Button Clicks
- //
-
- //
- //Button Images
- //
-
- //Minimize
- private void button22_MouseLeave(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._150;
- }
-
- private void button22_MouseEnter(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._154;
- }
- private void button22_MouseDown(object sender, MouseEventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._157;
- }
-
- //Close
- private void button23_MouseLeave(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._246;
- }
-
- private void button23_MouseEnter(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._248;
- }
- private void button23_MouseDown(object sender, MouseEventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._250;
- }
-
- //
- // End of Button Images
- //
- }
-}
diff --git a/FunkeySelector/Form4.Designer.cs b/FunkeySelector/Form4.Designer.cs
deleted file mode 100644
index a163b6b..0000000
--- a/FunkeySelector/Form4.Designer.cs
+++ /dev/null
@@ -1,435 +0,0 @@
-namespace FunkeySelector
-{
- partial class Form4
- {
- ///
- /// Required designer variable.
- ///
- private System.ComponentModel.IContainer components = null;
-
- ///
- /// Clean up any resources being used.
- ///
- /// true if managed resources should be disposed; otherwise, false.
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- ///
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- ///
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form4));
- this.label5 = new System.Windows.Forms.Label();
- this.button11 = new System.Windows.Forms.Button();
- this.button12 = new System.Windows.Forms.Button();
- this.button13 = new System.Windows.Forms.Button();
- this.label4 = new System.Windows.Forms.Label();
- this.button8 = new System.Windows.Forms.Button();
- this.button9 = new System.Windows.Forms.Button();
- this.button10 = new System.Windows.Forms.Button();
- this.label3 = new System.Windows.Forms.Label();
- this.button5 = new System.Windows.Forms.Button();
- this.button6 = new System.Windows.Forms.Button();
- this.button7 = new System.Windows.Forms.Button();
- this.label1 = new System.Windows.Forms.Label();
- this.button4 = new System.Windows.Forms.Button();
- this.button3 = new System.Windows.Forms.Button();
- this.button2 = new System.Windows.Forms.Button();
- this.button1 = new System.Windows.Forms.Button();
- this.label2 = new System.Windows.Forms.Label();
- this.button22 = new System.Windows.Forms.Button();
- this.button23 = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.BackColor = System.Drawing.Color.Transparent;
- this.label5.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label5.ForeColor = System.Drawing.SystemColors.Control;
- this.label5.Location = new System.Drawing.Point(331, 435);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(88, 29);
- this.label5.TabIndex = 56;
- this.label5.Text = "BONES";
- //
- // button11
- //
- this.button11.BackColor = System.Drawing.Color.Transparent;
- this.button11.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button11.BackgroundImage")));
- this.button11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button11.FlatAppearance.BorderSize = 0;
- this.button11.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button11.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button11.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button11.Location = new System.Drawing.Point(400, 475);
- this.button11.Name = "button11";
- this.button11.Size = new System.Drawing.Size(50, 63);
- this.button11.TabIndex = 55;
- this.button11.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button11.UseVisualStyleBackColor = false;
- this.button11.Click += new System.EventHandler(this.button11_Click);
- //
- // button12
- //
- this.button12.BackColor = System.Drawing.Color.Transparent;
- this.button12.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button12.BackgroundImage")));
- this.button12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button12.FlatAppearance.BorderSize = 0;
- this.button12.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button12.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button12.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button12.Location = new System.Drawing.Point(349, 475);
- this.button12.Name = "button12";
- this.button12.Size = new System.Drawing.Size(50, 63);
- this.button12.TabIndex = 54;
- this.button12.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button12.UseVisualStyleBackColor = false;
- this.button12.Click += new System.EventHandler(this.button12_Click);
- //
- // button13
- //
- this.button13.BackColor = System.Drawing.Color.Transparent;
- this.button13.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button13.BackgroundImage")));
- this.button13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button13.FlatAppearance.BorderSize = 0;
- this.button13.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button13.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button13.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button13.Location = new System.Drawing.Point(298, 475);
- this.button13.Name = "button13";
- this.button13.Size = new System.Drawing.Size(50, 63);
- this.button13.TabIndex = 53;
- this.button13.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button13.UseVisualStyleBackColor = false;
- this.button13.Click += new System.EventHandler(this.button13_Click);
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.BackColor = System.Drawing.Color.Transparent;
- this.label4.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label4.ForeColor = System.Drawing.SystemColors.Control;
- this.label4.Location = new System.Drawing.Point(331, 226);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(82, 29);
- this.label4.TabIndex = 52;
- this.label4.Text = "DEUCE";
- //
- // button8
- //
- this.button8.BackColor = System.Drawing.Color.Transparent;
- this.button8.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button8.BackgroundImage")));
- this.button8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button8.FlatAppearance.BorderSize = 0;
- this.button8.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button8.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button8.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button8.Location = new System.Drawing.Point(400, 264);
- this.button8.Name = "button8";
- this.button8.Size = new System.Drawing.Size(50, 63);
- this.button8.TabIndex = 51;
- this.button8.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button8.UseVisualStyleBackColor = false;
- this.button8.Click += new System.EventHandler(this.button8_Click);
- //
- // button9
- //
- this.button9.BackColor = System.Drawing.Color.Transparent;
- this.button9.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button9.BackgroundImage")));
- this.button9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button9.FlatAppearance.BorderSize = 0;
- this.button9.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button9.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button9.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button9.Location = new System.Drawing.Point(349, 264);
- this.button9.Name = "button9";
- this.button9.Size = new System.Drawing.Size(50, 63);
- this.button9.TabIndex = 50;
- this.button9.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button9.UseVisualStyleBackColor = false;
- this.button9.Click += new System.EventHandler(this.button9_Click);
- //
- // button10
- //
- this.button10.BackColor = System.Drawing.Color.Transparent;
- this.button10.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button10.BackgroundImage")));
- this.button10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button10.FlatAppearance.BorderSize = 0;
- this.button10.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button10.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button10.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button10.Location = new System.Drawing.Point(298, 264);
- this.button10.Name = "button10";
- this.button10.Size = new System.Drawing.Size(50, 63);
- this.button10.TabIndex = 49;
- this.button10.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button10.UseVisualStyleBackColor = false;
- this.button10.Click += new System.EventHandler(this.button10_Click);
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.BackColor = System.Drawing.Color.Transparent;
- this.label3.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label3.ForeColor = System.Drawing.SystemColors.Control;
- this.label3.Location = new System.Drawing.Point(323, 332);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(104, 29);
- this.label3.TabIndex = 48;
- this.label3.Text = "WASABI";
- //
- // button5
- //
- this.button5.BackColor = System.Drawing.Color.Transparent;
- this.button5.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button5.BackgroundImage")));
- this.button5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button5.FlatAppearance.BorderSize = 0;
- this.button5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button5.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button5.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button5.Location = new System.Drawing.Point(400, 367);
- this.button5.Name = "button5";
- this.button5.Size = new System.Drawing.Size(50, 63);
- this.button5.TabIndex = 47;
- this.button5.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button5.UseVisualStyleBackColor = false;
- this.button5.Click += new System.EventHandler(this.button5_Click);
- //
- // button6
- //
- this.button6.BackColor = System.Drawing.Color.Transparent;
- this.button6.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button6.BackgroundImage")));
- this.button6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button6.FlatAppearance.BorderSize = 0;
- this.button6.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button6.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button6.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button6.Location = new System.Drawing.Point(349, 367);
- this.button6.Name = "button6";
- this.button6.Size = new System.Drawing.Size(50, 63);
- this.button6.TabIndex = 46;
- this.button6.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button6.UseVisualStyleBackColor = false;
- this.button6.Click += new System.EventHandler(this.button6_Click);
- //
- // button7
- //
- this.button7.BackColor = System.Drawing.Color.Transparent;
- this.button7.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button7.BackgroundImage")));
- this.button7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button7.FlatAppearance.BorderSize = 0;
- this.button7.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button7.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button7.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button7.Location = new System.Drawing.Point(298, 367);
- this.button7.Name = "button7";
- this.button7.Size = new System.Drawing.Size(50, 63);
- this.button7.TabIndex = 45;
- this.button7.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button7.UseVisualStyleBackColor = false;
- this.button7.Click += new System.EventHandler(this.button7_Click);
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.BackColor = System.Drawing.Color.Transparent;
- this.label1.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label1.ForeColor = System.Drawing.SystemColors.Control;
- this.label1.Location = new System.Drawing.Point(328, 106);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(96, 29);
- this.label1.TabIndex = 44;
- this.label1.Text = "STITCH";
- //
- // button4
- //
- this.button4.BackColor = System.Drawing.Color.Transparent;
- this.button4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button4.BackgroundImage")));
- this.button4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button4.FlatAppearance.BorderSize = 0;
- this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button4.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button4.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button4.Location = new System.Drawing.Point(400, 146);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(50, 63);
- this.button4.TabIndex = 43;
- this.button4.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button4.UseVisualStyleBackColor = false;
- this.button4.Click += new System.EventHandler(this.button4_Click);
- //
- // button3
- //
- this.button3.BackColor = System.Drawing.Color.Transparent;
- this.button3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button3.BackgroundImage")));
- this.button3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button3.FlatAppearance.BorderSize = 0;
- this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button3.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button3.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button3.Location = new System.Drawing.Point(349, 146);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(50, 63);
- this.button3.TabIndex = 42;
- this.button3.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button3.UseVisualStyleBackColor = false;
- this.button3.Click += new System.EventHandler(this.button3_Click);
- //
- // button2
- //
- this.button2.BackColor = System.Drawing.Color.Transparent;
- this.button2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button2.BackgroundImage")));
- this.button2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button2.FlatAppearance.BorderSize = 0;
- this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button2.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button2.ForeColor = System.Drawing.Color.Transparent;
- this.button2.Location = new System.Drawing.Point(298, 146);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(50, 63);
- this.button2.TabIndex = 41;
- this.button2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button2.UseVisualStyleBackColor = false;
- this.button2.Click += new System.EventHandler(this.button2_Click);
- //
- // button1
- //
- this.button1.BackColor = System.Drawing.Color.Transparent;
- this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button1.FlatAppearance.BorderSize = 0;
- this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button1.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button1.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button1.Location = new System.Drawing.Point(12, 12);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(101, 48);
- this.button1.TabIndex = 40;
- this.button1.Text = "BACK";
- this.button1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button1.UseVisualStyleBackColor = false;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.BackColor = System.Drawing.Color.Transparent;
- this.label2.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label2.ForeColor = System.Drawing.SystemColors.Control;
- this.label2.Location = new System.Drawing.Point(212, 27);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(305, 52);
- this.label2.TabIndex = 39;
- this.label2.Text = "MAGMA GORGE";
- //
- // button22
- //
- this.button22.BackColor = System.Drawing.Color.Transparent;
- this.button22.BackgroundImage = global::FunkeySelector.Properties.Resources._150;
- this.button22.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button22.FlatAppearance.BorderSize = 0;
- this.button22.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button22.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button22.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button22.Location = new System.Drawing.Point(641, 15);
- this.button22.Name = "button22";
- this.button22.Size = new System.Drawing.Size(26, 22);
- this.button22.TabIndex = 85;
- this.button22.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button22.UseVisualStyleBackColor = false;
- this.button22.Click += new System.EventHandler(this.button22_Click);
- this.button22.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button22_MouseDown);
- this.button22.MouseEnter += new System.EventHandler(this.button22_MouseEnter);
- this.button22.MouseLeave += new System.EventHandler(this.button22_MouseLeave);
- //
- // button23
- //
- this.button23.BackColor = System.Drawing.Color.Transparent;
- this.button23.BackgroundImage = global::FunkeySelector.Properties.Resources._246;
- this.button23.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button23.FlatAppearance.BorderSize = 0;
- this.button23.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button23.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button23.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button23.Location = new System.Drawing.Point(680, 17);
- this.button23.Name = "button23";
- this.button23.Size = new System.Drawing.Size(26, 20);
- this.button23.TabIndex = 84;
- this.button23.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button23.UseVisualStyleBackColor = false;
- this.button23.Click += new System.EventHandler(this.button23_Click);
- this.button23.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button23_MouseDown);
- this.button23.MouseEnter += new System.EventHandler(this.button23_MouseEnter);
- this.button23.MouseLeave += new System.EventHandler(this.button23_MouseLeave);
- //
- // Form4
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.Gold;
- this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
- this.ClientSize = new System.Drawing.Size(726, 566);
- this.Controls.Add(this.button22);
- this.Controls.Add(this.button23);
- this.Controls.Add(this.label5);
- this.Controls.Add(this.button11);
- this.Controls.Add(this.button12);
- this.Controls.Add(this.button13);
- this.Controls.Add(this.label4);
- this.Controls.Add(this.button8);
- this.Controls.Add(this.button9);
- this.Controls.Add(this.button10);
- this.Controls.Add(this.label3);
- this.Controls.Add(this.button5);
- this.Controls.Add(this.button6);
- this.Controls.Add(this.button7);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.button4);
- this.Controls.Add(this.button3);
- this.Controls.Add(this.button2);
- this.Controls.Add(this.button1);
- this.Controls.Add(this.label2);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.MaximizeBox = false;
- this.Name = "Form4";
- this.Text = "FunkeySelectorGUI";
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
-
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.Button button11;
- private System.Windows.Forms.Button button12;
- private System.Windows.Forms.Button button13;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.Button button8;
- private System.Windows.Forms.Button button9;
- private System.Windows.Forms.Button button10;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Button button5;
- private System.Windows.Forms.Button button6;
- private System.Windows.Forms.Button button7;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Button button4;
- private System.Windows.Forms.Button button3;
- private System.Windows.Forms.Button button2;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Button button22;
- private System.Windows.Forms.Button button23;
- }
-}
\ No newline at end of file
diff --git a/FunkeySelector/Form4.cs b/FunkeySelector/Form4.cs
deleted file mode 100644
index ed0a26d..0000000
--- a/FunkeySelector/Form4.cs
+++ /dev/null
@@ -1,185 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Data;
-using System.Diagnostics;
-using System.Drawing;
-using System.IO;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.Windows.Forms;
-
-namespace FunkeySelector
-{
- public partial class Form4 : Form
- {
- //
- //Initial Startup
- //
-
- CustomFManager customF = new CustomFManager(); //Initializes CustomFManager.
- public Form4()
- {
- InitializeComponent();
- this.TransparencyKey = System.Drawing.Color.Gold; //Removes the gold sections to allow the UI to be rounded.
- }
-
- protected override void WndProc(ref Message m) //Allows the window to be dragged.
- {
- switch (m.Msg)
- {
- case 0x84:
- base.WndProc(ref m);
- if ((int)m.Result == 0x1)
- m.Result = (IntPtr)0x2;
- return;
- }
-
- base.WndProc(ref m);
- }
-
- //
- //End of initial startup
- //
-
- //
- //Button Clicks
- //
-
- //Stitch
- private void button2_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000026");
- }
-
- //Stitch R
- private void button3_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000027");
- }
-
- //Stitch VR
- private void button4_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000028");
- }
-
- //Deuce
- private void button10_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000029");
- }
-
- //Deuce R
- private void button9_Click(object sender, EventArgs e)
- {
- customF.setFunkey("0000002A");
- }
-
- //Deuce VR
- private void button8_Click(object sender, EventArgs e)
- {
- customF.setFunkey("0000002E");
- }
-
- //Wasabi
- private void button7_Click(object sender, EventArgs e)
- {
- customF.setFunkey("0000002F");
- }
-
- //Wasabi R
- private void button6_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000030");
- }
-
- //Wasabi VR
- private void button5_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000031");
- }
-
- //Bones
- private void button13_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000032");
- }
-
- //Bones R
- private void button12_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000033");
- }
-
- //Bones VR
- private void button11_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000034");
- }
-
- //Back
- private void button1_Click(object sender, EventArgs e)
- {
- Form1 form1 = new Form1();
- this.Hide();
- form1.StartPosition = FormStartPosition.CenterParent;
- form1.ShowDialog(this);
- }
-
- //Close
- private void button23_Click(object sender, EventArgs e)
- {
- Application.Exit();
- }
-
- //Minimize
- private void button22_Click(object sender, EventArgs e)
- {
- this.WindowState = FormWindowState.Minimized;
- }
-
- //
- //End of Button Clicks
- //
-
- //
- //Button Images
- //
-
- //Minimize
- private void button22_MouseLeave(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._150;
- }
-
- private void button22_MouseEnter(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._154;
- }
- private void button22_MouseDown(object sender, MouseEventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._157;
- }
-
- //Close
- private void button23_MouseLeave(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._246;
- }
-
- private void button23_MouseEnter(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._248;
- }
- private void button23_MouseDown(object sender, MouseEventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._250;
- }
-
- //
- // End of Button Images
- //
- }
-}
diff --git a/FunkeySelector/Form5.Designer.cs b/FunkeySelector/Form5.Designer.cs
deleted file mode 100644
index 43808c0..0000000
--- a/FunkeySelector/Form5.Designer.cs
+++ /dev/null
@@ -1,470 +0,0 @@
-namespace FunkeySelector
-{
- partial class Form5
- {
- ///
- /// Required designer variable.
- ///
- private System.ComponentModel.IContainer components = null;
-
- ///
- /// Clean up any resources being used.
- ///
- /// true if managed resources should be disposed; otherwise, false.
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- ///
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- ///
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form5));
- this.label5 = new System.Windows.Forms.Label();
- this.button11 = new System.Windows.Forms.Button();
- this.button12 = new System.Windows.Forms.Button();
- this.button13 = new System.Windows.Forms.Button();
- this.label4 = new System.Windows.Forms.Label();
- this.button8 = new System.Windows.Forms.Button();
- this.button9 = new System.Windows.Forms.Button();
- this.button10 = new System.Windows.Forms.Button();
- this.label3 = new System.Windows.Forms.Label();
- this.button5 = new System.Windows.Forms.Button();
- this.button6 = new System.Windows.Forms.Button();
- this.button7 = new System.Windows.Forms.Button();
- this.label1 = new System.Windows.Forms.Label();
- this.button4 = new System.Windows.Forms.Button();
- this.button3 = new System.Windows.Forms.Button();
- this.button2 = new System.Windows.Forms.Button();
- this.button1 = new System.Windows.Forms.Button();
- this.label2 = new System.Windows.Forms.Label();
- this.label6 = new System.Windows.Forms.Label();
- this.button14 = new System.Windows.Forms.Button();
- this.button22 = new System.Windows.Forms.Button();
- this.button23 = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.BackColor = System.Drawing.Color.Transparent;
- this.label5.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label5.ForeColor = System.Drawing.SystemColors.Control;
- this.label5.Location = new System.Drawing.Point(341, 420);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(93, 29);
- this.label5.TabIndex = 74;
- this.label5.Text = "VROOM";
- //
- // button11
- //
- this.button11.BackColor = System.Drawing.Color.Transparent;
- this.button11.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button11.BackgroundImage")));
- this.button11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button11.FlatAppearance.BorderSize = 0;
- this.button11.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button11.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button11.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button11.Location = new System.Drawing.Point(410, 460);
- this.button11.Name = "button11";
- this.button11.Size = new System.Drawing.Size(50, 63);
- this.button11.TabIndex = 73;
- this.button11.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button11.UseVisualStyleBackColor = false;
- this.button11.Click += new System.EventHandler(this.button11_Click);
- //
- // button12
- //
- this.button12.BackColor = System.Drawing.Color.Transparent;
- this.button12.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button12.BackgroundImage")));
- this.button12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button12.FlatAppearance.BorderSize = 0;
- this.button12.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button12.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button12.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button12.Location = new System.Drawing.Point(359, 460);
- this.button12.Name = "button12";
- this.button12.Size = new System.Drawing.Size(50, 63);
- this.button12.TabIndex = 72;
- this.button12.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button12.UseVisualStyleBackColor = false;
- this.button12.Click += new System.EventHandler(this.button12_Click);
- //
- // button13
- //
- this.button13.BackColor = System.Drawing.Color.Transparent;
- this.button13.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button13.BackgroundImage")));
- this.button13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button13.FlatAppearance.BorderSize = 0;
- this.button13.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button13.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button13.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button13.Location = new System.Drawing.Point(308, 460);
- this.button13.Name = "button13";
- this.button13.Size = new System.Drawing.Size(50, 63);
- this.button13.TabIndex = 71;
- this.button13.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button13.UseVisualStyleBackColor = false;
- this.button13.Click += new System.EventHandler(this.button13_Click);
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.BackColor = System.Drawing.Color.Transparent;
- this.label4.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label4.ForeColor = System.Drawing.SystemColors.Control;
- this.label4.Location = new System.Drawing.Point(333, 206);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(111, 29);
- this.label4.TabIndex = 70;
- this.label4.Text = "FALLOUT";
- //
- // button8
- //
- this.button8.BackColor = System.Drawing.Color.Transparent;
- this.button8.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button8.BackgroundImage")));
- this.button8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button8.FlatAppearance.BorderSize = 0;
- this.button8.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button8.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button8.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button8.Location = new System.Drawing.Point(410, 249);
- this.button8.Name = "button8";
- this.button8.Size = new System.Drawing.Size(50, 63);
- this.button8.TabIndex = 69;
- this.button8.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button8.UseVisualStyleBackColor = false;
- this.button8.Click += new System.EventHandler(this.button8_Click);
- //
- // button9
- //
- this.button9.BackColor = System.Drawing.Color.Transparent;
- this.button9.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button9.BackgroundImage")));
- this.button9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button9.FlatAppearance.BorderSize = 0;
- this.button9.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button9.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button9.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button9.Location = new System.Drawing.Point(359, 249);
- this.button9.Name = "button9";
- this.button9.Size = new System.Drawing.Size(50, 63);
- this.button9.TabIndex = 68;
- this.button9.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button9.UseVisualStyleBackColor = false;
- this.button9.Click += new System.EventHandler(this.button9_Click);
- //
- // button10
- //
- this.button10.BackColor = System.Drawing.Color.Transparent;
- this.button10.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button10.BackgroundImage")));
- this.button10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button10.FlatAppearance.BorderSize = 0;
- this.button10.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button10.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button10.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button10.Location = new System.Drawing.Point(308, 249);
- this.button10.Name = "button10";
- this.button10.Size = new System.Drawing.Size(50, 63);
- this.button10.TabIndex = 67;
- this.button10.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button10.UseVisualStyleBackColor = false;
- this.button10.Click += new System.EventHandler(this.button10_Click);
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.BackColor = System.Drawing.Color.Transparent;
- this.label3.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label3.ForeColor = System.Drawing.SystemColors.Control;
- this.label3.Location = new System.Drawing.Point(339, 317);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(96, 29);
- this.label3.TabIndex = 66;
- this.label3.Text = "BOGGLE";
- //
- // button5
- //
- this.button5.BackColor = System.Drawing.Color.Transparent;
- this.button5.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button5.BackgroundImage")));
- this.button5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button5.FlatAppearance.BorderSize = 0;
- this.button5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button5.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button5.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button5.Location = new System.Drawing.Point(410, 352);
- this.button5.Name = "button5";
- this.button5.Size = new System.Drawing.Size(50, 63);
- this.button5.TabIndex = 65;
- this.button5.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button5.UseVisualStyleBackColor = false;
- this.button5.Click += new System.EventHandler(this.button5_Click);
- //
- // button6
- //
- this.button6.BackColor = System.Drawing.Color.Transparent;
- this.button6.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button6.BackgroundImage")));
- this.button6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button6.FlatAppearance.BorderSize = 0;
- this.button6.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button6.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button6.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button6.Location = new System.Drawing.Point(359, 352);
- this.button6.Name = "button6";
- this.button6.Size = new System.Drawing.Size(50, 63);
- this.button6.TabIndex = 64;
- this.button6.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button6.UseVisualStyleBackColor = false;
- this.button6.Click += new System.EventHandler(this.button6_Click);
- //
- // button7
- //
- this.button7.BackColor = System.Drawing.Color.Transparent;
- this.button7.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button7.BackgroundImage")));
- this.button7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button7.FlatAppearance.BorderSize = 0;
- this.button7.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button7.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button7.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button7.Location = new System.Drawing.Point(308, 352);
- this.button7.Name = "button7";
- this.button7.Size = new System.Drawing.Size(50, 63);
- this.button7.TabIndex = 63;
- this.button7.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button7.UseVisualStyleBackColor = false;
- this.button7.Click += new System.EventHandler(this.button7_Click);
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.BackColor = System.Drawing.Color.Transparent;
- this.label1.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label1.ForeColor = System.Drawing.SystemColors.Control;
- this.label1.Location = new System.Drawing.Point(338, 91);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(84, 29);
- this.label1.TabIndex = 62;
- this.label1.Text = "XENER";
- //
- // button4
- //
- this.button4.BackColor = System.Drawing.Color.Transparent;
- this.button4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button4.BackgroundImage")));
- this.button4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button4.FlatAppearance.BorderSize = 0;
- this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button4.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button4.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button4.Location = new System.Drawing.Point(410, 131);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(50, 63);
- this.button4.TabIndex = 61;
- this.button4.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button4.UseVisualStyleBackColor = false;
- this.button4.Click += new System.EventHandler(this.button4_Click);
- //
- // button3
- //
- this.button3.BackColor = System.Drawing.Color.Transparent;
- this.button3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button3.BackgroundImage")));
- this.button3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button3.FlatAppearance.BorderSize = 0;
- this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button3.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button3.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button3.Location = new System.Drawing.Point(359, 131);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(50, 63);
- this.button3.TabIndex = 60;
- this.button3.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button3.UseVisualStyleBackColor = false;
- this.button3.Click += new System.EventHandler(this.button3_Click);
- //
- // button2
- //
- this.button2.BackColor = System.Drawing.Color.Transparent;
- this.button2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button2.BackgroundImage")));
- this.button2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button2.FlatAppearance.BorderSize = 0;
- this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button2.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button2.ForeColor = System.Drawing.Color.Transparent;
- this.button2.Location = new System.Drawing.Point(308, 131);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(50, 63);
- this.button2.TabIndex = 59;
- this.button2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button2.UseVisualStyleBackColor = false;
- this.button2.Click += new System.EventHandler(this.button2_Click);
- //
- // button1
- //
- this.button1.BackColor = System.Drawing.Color.Transparent;
- this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button1.FlatAppearance.BorderSize = 0;
- this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button1.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button1.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button1.Location = new System.Drawing.Point(12, 12);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(101, 48);
- this.button1.TabIndex = 58;
- this.button1.Text = "BACK";
- this.button1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button1.UseVisualStyleBackColor = false;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.BackColor = System.Drawing.Color.Transparent;
- this.label2.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label2.ForeColor = System.Drawing.SystemColors.Control;
- this.label2.Location = new System.Drawing.Point(185, 12);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(386, 52);
- this.label2.TabIndex = 57;
- this.label2.Text = "LAPUTTA STATION";
- //
- // label6
- //
- this.label6.AutoSize = true;
- this.label6.BackColor = System.Drawing.Color.Transparent;
- this.label6.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label6.ForeColor = System.Drawing.SystemColors.Control;
- this.label6.Location = new System.Drawing.Point(119, 270);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(62, 29);
- this.label6.TabIndex = 75;
- this.label6.Text = "ROM";
- //
- // button14
- //
- this.button14.BackColor = System.Drawing.Color.Transparent;
- this.button14.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button14.BackgroundImage")));
- this.button14.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button14.FlatAppearance.BorderSize = 0;
- this.button14.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button14.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button14.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button14.Location = new System.Drawing.Point(126, 303);
- this.button14.Name = "button14";
- this.button14.Size = new System.Drawing.Size(50, 63);
- this.button14.TabIndex = 76;
- this.button14.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button14.UseVisualStyleBackColor = false;
- this.button14.Click += new System.EventHandler(this.button14_Click);
- //
- // button22
- //
- this.button22.BackColor = System.Drawing.Color.Transparent;
- this.button22.BackgroundImage = global::FunkeySelector.Properties.Resources._150;
- this.button22.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button22.FlatAppearance.BorderSize = 0;
- this.button22.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button22.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button22.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button22.Location = new System.Drawing.Point(641, 16);
- this.button22.Name = "button22";
- this.button22.Size = new System.Drawing.Size(26, 22);
- this.button22.TabIndex = 87;
- this.button22.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button22.UseVisualStyleBackColor = false;
- this.button22.Click += new System.EventHandler(this.button22_Click);
- this.button22.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button22_MouseDown);
- this.button22.MouseEnter += new System.EventHandler(this.button22_MouseEnter);
- this.button22.MouseLeave += new System.EventHandler(this.button22_MouseLeave);
- //
- // button23
- //
- this.button23.BackColor = System.Drawing.Color.Transparent;
- this.button23.BackgroundImage = global::FunkeySelector.Properties.Resources._246;
- this.button23.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button23.FlatAppearance.BorderSize = 0;
- this.button23.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button23.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button23.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button23.Location = new System.Drawing.Point(680, 18);
- this.button23.Name = "button23";
- this.button23.Size = new System.Drawing.Size(26, 20);
- this.button23.TabIndex = 86;
- this.button23.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button23.UseVisualStyleBackColor = false;
- this.button23.Click += new System.EventHandler(this.button23_Click);
- this.button23.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button23_MouseDown);
- this.button23.MouseEnter += new System.EventHandler(this.button23_MouseEnter);
- this.button23.MouseLeave += new System.EventHandler(this.button23_MouseLeave);
- //
- // Form5
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.Gold;
- this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
- this.ClientSize = new System.Drawing.Size(726, 566);
- this.Controls.Add(this.button22);
- this.Controls.Add(this.button23);
- this.Controls.Add(this.button14);
- this.Controls.Add(this.label6);
- this.Controls.Add(this.label5);
- this.Controls.Add(this.button11);
- this.Controls.Add(this.button12);
- this.Controls.Add(this.button13);
- this.Controls.Add(this.label4);
- this.Controls.Add(this.button8);
- this.Controls.Add(this.button9);
- this.Controls.Add(this.button10);
- this.Controls.Add(this.label3);
- this.Controls.Add(this.button5);
- this.Controls.Add(this.button6);
- this.Controls.Add(this.button7);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.button4);
- this.Controls.Add(this.button3);
- this.Controls.Add(this.button2);
- this.Controls.Add(this.button1);
- this.Controls.Add(this.label2);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.MaximizeBox = false;
- this.Name = "Form5";
- this.Text = "FunkeySelectorGUI";
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
-
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.Button button11;
- private System.Windows.Forms.Button button12;
- private System.Windows.Forms.Button button13;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.Button button8;
- private System.Windows.Forms.Button button9;
- private System.Windows.Forms.Button button10;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Button button5;
- private System.Windows.Forms.Button button6;
- private System.Windows.Forms.Button button7;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Button button4;
- private System.Windows.Forms.Button button3;
- private System.Windows.Forms.Button button2;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Label label6;
- private System.Windows.Forms.Button button14;
- private System.Windows.Forms.Button button22;
- private System.Windows.Forms.Button button23;
- }
-}
\ No newline at end of file
diff --git a/FunkeySelector/Form5.cs b/FunkeySelector/Form5.cs
deleted file mode 100644
index 733c18a..0000000
--- a/FunkeySelector/Form5.cs
+++ /dev/null
@@ -1,190 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Data;
-using System.Diagnostics;
-using System.Drawing;
-using System.IO;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.Windows.Forms;
-
-namespace FunkeySelector
-{
- public partial class Form5 : Form
- {
- //
- //Initial setup
- //
-
- CustomFManager customF = new CustomFManager(); //Sets up CustomFManager.
- public Form5()
- {
- InitializeComponent();
- this.TransparencyKey = System.Drawing.Color.Gold; //Removes the gold sections to allow the UI to be rounded.
- }
-
- protected override void WndProc(ref Message m) //Allows the window to be dragged.
- {
- switch (m.Msg)
- {
- case 0x84:
- base.WndProc(ref m);
- if ((int)m.Result == 0x1)
- m.Result = (IntPtr)0x2;
- return;
- }
-
- base.WndProc(ref m);
- }
-
- //
- //End of initial startup
- //
-
- //
- //Button clicks
- //
-
- //Xener
- private void button2_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000035");
- }
-
- //Xener R
- private void button3_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000039");
- }
-
- //Xener VR
- private void button4_Click(object sender, EventArgs e)
- {
- customF.setFunkey("0000003A");
- }
-
- //Fallout
- private void button10_Click(object sender, EventArgs e)
- {
- customF.setFunkey("0000003B");
- }
-
- //Fallout R
- private void button9_Click(object sender, EventArgs e)
- {
- customF.setFunkey("0000003C");
- }
-
- //Fallout VR
- private void button8_Click(object sender, EventArgs e)
- {
- customF.setFunkey("0000003D");
- }
-
- //Boggle
- private void button7_Click(object sender, EventArgs e)
- {
- customF.setFunkey("0000003E");
- }
-
- //Boggle R
- private void button6_Click(object sender, EventArgs e)
- {
- customF.setFunkey("0000003F");
- }
-
- //Boggle VR
- private void button5_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000040");
- }
-
- //Vroom
- private void button13_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000044");
- }
-
- //Vroom R
- private void button12_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000045");
- }
-
- //Vroom VR
- private void button11_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000046");
- }
-
- //Rom
- private void button14_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000CE");
- }
-
- private void button1_Click(object sender, EventArgs e)
- {
- Form1 form1 = new Form1();
- this.Hide();
- form1.StartPosition = FormStartPosition.CenterParent;
- form1.ShowDialog(this);
- }
-
- //Close
- private void button23_Click(object sender, EventArgs e)
- {
- Application.Exit();
- }
-
- //Minimize
- private void button22_Click(object sender, EventArgs e)
- {
- this.WindowState = FormWindowState.Minimized;
- }
-
- //
- //End of Button Clicks
- //
-
- //
- //Button Images
- //
-
- //Minimize
- private void button22_MouseLeave(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._150;
- }
-
- private void button22_MouseEnter(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._154;
- }
- private void button22_MouseDown(object sender, MouseEventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._157;
- }
-
- //Close
- private void button23_MouseLeave(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._246;
- }
-
- private void button23_MouseEnter(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._248;
- }
- private void button23_MouseDown(object sender, MouseEventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._250;
- }
-
- //
- // End of Button Images
- //
- }
-}
diff --git a/FunkeySelector/Form6.Designer.cs b/FunkeySelector/Form6.Designer.cs
deleted file mode 100644
index 4bce1f2..0000000
--- a/FunkeySelector/Form6.Designer.cs
+++ /dev/null
@@ -1,575 +0,0 @@
-namespace FunkeySelector
-{
- partial class Form6
- {
- ///
- /// Required designer variable.
- ///
- private System.ComponentModel.IContainer components = null;
-
- ///
- /// Clean up any resources being used.
- ///
- /// true if managed resources should be disposed; otherwise, false.
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- ///
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- ///
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form6));
- this.label5 = new System.Windows.Forms.Label();
- this.button11 = new System.Windows.Forms.Button();
- this.button12 = new System.Windows.Forms.Button();
- this.button13 = new System.Windows.Forms.Button();
- this.label4 = new System.Windows.Forms.Label();
- this.button8 = new System.Windows.Forms.Button();
- this.button9 = new System.Windows.Forms.Button();
- this.button10 = new System.Windows.Forms.Button();
- this.label3 = new System.Windows.Forms.Label();
- this.button5 = new System.Windows.Forms.Button();
- this.button6 = new System.Windows.Forms.Button();
- this.button7 = new System.Windows.Forms.Button();
- this.label1 = new System.Windows.Forms.Label();
- this.button4 = new System.Windows.Forms.Button();
- this.button3 = new System.Windows.Forms.Button();
- this.button2 = new System.Windows.Forms.Button();
- this.button1 = new System.Windows.Forms.Button();
- this.label2 = new System.Windows.Forms.Label();
- this.label6 = new System.Windows.Forms.Label();
- this.button14 = new System.Windows.Forms.Button();
- this.label7 = new System.Windows.Forms.Label();
- this.button15 = new System.Windows.Forms.Button();
- this.label8 = new System.Windows.Forms.Label();
- this.button16 = new System.Windows.Forms.Button();
- this.label9 = new System.Windows.Forms.Label();
- this.button17 = new System.Windows.Forms.Button();
- this.button22 = new System.Windows.Forms.Button();
- this.button23 = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.BackColor = System.Drawing.Color.Transparent;
- this.label5.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label5.ForeColor = System.Drawing.SystemColors.Control;
- this.label5.Location = new System.Drawing.Point(325, 425);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(99, 29);
- this.label5.TabIndex = 74;
- this.label5.Text = "WEBLEY";
- //
- // button11
- //
- this.button11.BackColor = System.Drawing.Color.Transparent;
- this.button11.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button11.BackgroundImage")));
- this.button11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button11.FlatAppearance.BorderSize = 0;
- this.button11.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button11.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button11.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button11.Location = new System.Drawing.Point(401, 467);
- this.button11.Name = "button11";
- this.button11.Size = new System.Drawing.Size(50, 63);
- this.button11.TabIndex = 73;
- this.button11.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button11.UseVisualStyleBackColor = false;
- this.button11.Click += new System.EventHandler(this.button11_Click);
- //
- // button12
- //
- this.button12.BackColor = System.Drawing.Color.Transparent;
- this.button12.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button12.BackgroundImage")));
- this.button12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button12.FlatAppearance.BorderSize = 0;
- this.button12.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button12.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button12.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button12.Location = new System.Drawing.Point(350, 467);
- this.button12.Name = "button12";
- this.button12.Size = new System.Drawing.Size(50, 63);
- this.button12.TabIndex = 72;
- this.button12.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button12.UseVisualStyleBackColor = false;
- this.button12.Click += new System.EventHandler(this.button12_Click);
- //
- // button13
- //
- this.button13.BackColor = System.Drawing.Color.Transparent;
- this.button13.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button13.BackgroundImage")));
- this.button13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button13.FlatAppearance.BorderSize = 0;
- this.button13.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button13.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button13.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button13.Location = new System.Drawing.Point(299, 467);
- this.button13.Name = "button13";
- this.button13.Size = new System.Drawing.Size(50, 63);
- this.button13.TabIndex = 71;
- this.button13.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button13.UseVisualStyleBackColor = false;
- this.button13.Click += new System.EventHandler(this.button13_Click);
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.BackColor = System.Drawing.Color.Transparent;
- this.label4.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label4.ForeColor = System.Drawing.SystemColors.Control;
- this.label4.Location = new System.Drawing.Point(332, 218);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(92, 29);
- this.label4.TabIndex = 70;
- this.label4.Text = "NIBBLE";
- //
- // button8
- //
- this.button8.BackColor = System.Drawing.Color.Transparent;
- this.button8.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button8.BackgroundImage")));
- this.button8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button8.FlatAppearance.BorderSize = 0;
- this.button8.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button8.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button8.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button8.Location = new System.Drawing.Point(401, 256);
- this.button8.Name = "button8";
- this.button8.Size = new System.Drawing.Size(50, 63);
- this.button8.TabIndex = 69;
- this.button8.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button8.UseVisualStyleBackColor = false;
- this.button8.Click += new System.EventHandler(this.button8_Click);
- //
- // button9
- //
- this.button9.BackColor = System.Drawing.Color.Transparent;
- this.button9.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button9.BackgroundImage")));
- this.button9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button9.FlatAppearance.BorderSize = 0;
- this.button9.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button9.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button9.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button9.Location = new System.Drawing.Point(350, 256);
- this.button9.Name = "button9";
- this.button9.Size = new System.Drawing.Size(50, 63);
- this.button9.TabIndex = 68;
- this.button9.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button9.UseVisualStyleBackColor = false;
- this.button9.Click += new System.EventHandler(this.button9_Click);
- //
- // button10
- //
- this.button10.BackColor = System.Drawing.Color.Transparent;
- this.button10.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button10.BackgroundImage")));
- this.button10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button10.FlatAppearance.BorderSize = 0;
- this.button10.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button10.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button10.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button10.Location = new System.Drawing.Point(299, 256);
- this.button10.Name = "button10";
- this.button10.Size = new System.Drawing.Size(50, 63);
- this.button10.TabIndex = 67;
- this.button10.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button10.UseVisualStyleBackColor = false;
- this.button10.Click += new System.EventHandler(this.button10_Click);
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.BackColor = System.Drawing.Color.Transparent;
- this.label3.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label3.ForeColor = System.Drawing.SystemColors.Control;
- this.label3.Location = new System.Drawing.Point(347, 324);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(57, 29);
- this.label3.TabIndex = 66;
- this.label3.Text = "SOL";
- //
- // button5
- //
- this.button5.BackColor = System.Drawing.Color.Transparent;
- this.button5.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button5.BackgroundImage")));
- this.button5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button5.FlatAppearance.BorderSize = 0;
- this.button5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button5.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button5.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button5.Location = new System.Drawing.Point(401, 359);
- this.button5.Name = "button5";
- this.button5.Size = new System.Drawing.Size(50, 63);
- this.button5.TabIndex = 65;
- this.button5.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button5.UseVisualStyleBackColor = false;
- this.button5.Click += new System.EventHandler(this.button5_Click);
- //
- // button6
- //
- this.button6.BackColor = System.Drawing.Color.Transparent;
- this.button6.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button6.BackgroundImage")));
- this.button6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button6.FlatAppearance.BorderSize = 0;
- this.button6.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button6.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button6.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button6.Location = new System.Drawing.Point(350, 359);
- this.button6.Name = "button6";
- this.button6.Size = new System.Drawing.Size(50, 63);
- this.button6.TabIndex = 64;
- this.button6.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button6.UseVisualStyleBackColor = false;
- this.button6.Click += new System.EventHandler(this.button6_Click);
- //
- // button7
- //
- this.button7.BackColor = System.Drawing.Color.Transparent;
- this.button7.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button7.BackgroundImage")));
- this.button7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button7.FlatAppearance.BorderSize = 0;
- this.button7.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button7.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button7.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button7.Location = new System.Drawing.Point(299, 359);
- this.button7.Name = "button7";
- this.button7.Size = new System.Drawing.Size(50, 63);
- this.button7.TabIndex = 63;
- this.button7.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button7.UseVisualStyleBackColor = false;
- this.button7.Click += new System.EventHandler(this.button7_Click);
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.BackColor = System.Drawing.Color.Transparent;
- this.label1.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label1.ForeColor = System.Drawing.SystemColors.Control;
- this.label1.Location = new System.Drawing.Point(329, 98);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(92, 29);
- this.label1.TabIndex = 62;
- this.label1.Text = "FLURRY";
- //
- // button4
- //
- this.button4.BackColor = System.Drawing.Color.Transparent;
- this.button4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button4.BackgroundImage")));
- this.button4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button4.FlatAppearance.BorderSize = 0;
- this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button4.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button4.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button4.Location = new System.Drawing.Point(401, 138);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(50, 63);
- this.button4.TabIndex = 61;
- this.button4.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button4.UseVisualStyleBackColor = false;
- this.button4.Click += new System.EventHandler(this.button4_Click);
- //
- // button3
- //
- this.button3.BackColor = System.Drawing.Color.Transparent;
- this.button3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button3.BackgroundImage")));
- this.button3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button3.FlatAppearance.BorderSize = 0;
- this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button3.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button3.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button3.Location = new System.Drawing.Point(350, 138);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(50, 63);
- this.button3.TabIndex = 60;
- this.button3.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button3.UseVisualStyleBackColor = false;
- this.button3.Click += new System.EventHandler(this.button3_Click);
- //
- // button2
- //
- this.button2.BackColor = System.Drawing.Color.Transparent;
- this.button2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button2.BackgroundImage")));
- this.button2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button2.FlatAppearance.BorderSize = 0;
- this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button2.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button2.ForeColor = System.Drawing.Color.Transparent;
- this.button2.Location = new System.Drawing.Point(299, 138);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(50, 63);
- this.button2.TabIndex = 59;
- this.button2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button2.UseVisualStyleBackColor = false;
- this.button2.Click += new System.EventHandler(this.button2_Click);
- //
- // button1
- //
- this.button1.BackColor = System.Drawing.Color.Transparent;
- this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button1.FlatAppearance.BorderSize = 0;
- this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button1.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button1.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button1.Location = new System.Drawing.Point(12, 12);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(101, 48);
- this.button1.TabIndex = 58;
- this.button1.Text = "BACK";
- this.button1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button1.UseVisualStyleBackColor = false;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.BackColor = System.Drawing.Color.Transparent;
- this.label2.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label2.ForeColor = System.Drawing.SystemColors.Control;
- this.label2.Location = new System.Drawing.Point(205, 19);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(347, 52);
- this.label2.TabIndex = 57;
- this.label2.Text = "FUNKIKI ISLAND";
- //
- // label6
- //
- this.label6.AutoSize = true;
- this.label6.BackColor = System.Drawing.Color.Transparent;
- this.label6.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label6.ForeColor = System.Drawing.SystemColors.Control;
- this.label6.Location = new System.Drawing.Point(52, 149);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(173, 29);
- this.label6.TabIndex = 76;
- this.label6.Text = "PINEPPLE KING";
- //
- // button14
- //
- this.button14.BackColor = System.Drawing.Color.Transparent;
- this.button14.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button14.BackgroundImage")));
- this.button14.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button14.FlatAppearance.BorderSize = 0;
- this.button14.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button14.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button14.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button14.Location = new System.Drawing.Point(108, 184);
- this.button14.Name = "button14";
- this.button14.Size = new System.Drawing.Size(50, 63);
- this.button14.TabIndex = 75;
- this.button14.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button14.UseVisualStyleBackColor = false;
- this.button14.Click += new System.EventHandler(this.button14_Click);
- //
- // label7
- //
- this.label7.AutoSize = true;
- this.label7.BackColor = System.Drawing.Color.Transparent;
- this.label7.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label7.ForeColor = System.Drawing.SystemColors.Control;
- this.label7.Location = new System.Drawing.Point(87, 362);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(97, 29);
- this.label7.TabIndex = 78;
- this.label7.Text = "NATIVE";
- //
- // button15
- //
- this.button15.BackColor = System.Drawing.Color.Transparent;
- this.button15.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button15.BackgroundImage")));
- this.button15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button15.FlatAppearance.BorderSize = 0;
- this.button15.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button15.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button15.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button15.Location = new System.Drawing.Point(108, 402);
- this.button15.Name = "button15";
- this.button15.Size = new System.Drawing.Size(50, 63);
- this.button15.TabIndex = 77;
- this.button15.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button15.UseVisualStyleBackColor = false;
- this.button15.Click += new System.EventHandler(this.button15_Click);
- //
- // label8
- //
- this.label8.AutoSize = true;
- this.label8.BackColor = System.Drawing.Color.Transparent;
- this.label8.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label8.ForeColor = System.Drawing.SystemColors.Control;
- this.label8.Location = new System.Drawing.Point(549, 144);
- this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(79, 29);
- this.label8.TabIndex = 80;
- this.label8.Text = "JERRY";
- //
- // button16
- //
- this.button16.BackColor = System.Drawing.Color.Transparent;
- this.button16.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button16.BackgroundImage")));
- this.button16.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button16.FlatAppearance.BorderSize = 0;
- this.button16.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button16.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button16.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button16.Location = new System.Drawing.Point(570, 184);
- this.button16.Name = "button16";
- this.button16.Size = new System.Drawing.Size(50, 63);
- this.button16.TabIndex = 79;
- this.button16.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button16.UseVisualStyleBackColor = false;
- this.button16.Click += new System.EventHandler(this.button16_Click);
- //
- // label9
- //
- this.label9.AutoSize = true;
- this.label9.BackColor = System.Drawing.Color.Transparent;
- this.label9.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label9.ForeColor = System.Drawing.SystemColors.Control;
- this.label9.Location = new System.Drawing.Point(557, 371);
- this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(104, 29);
- this.label9.TabIndex = 82;
- this.label9.Text = "REWIND";
- //
- // button17
- //
- this.button17.BackColor = System.Drawing.Color.Transparent;
- this.button17.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button17.BackgroundImage")));
- this.button17.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button17.FlatAppearance.BorderSize = 0;
- this.button17.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button17.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button17.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button17.Location = new System.Drawing.Point(578, 411);
- this.button17.Name = "button17";
- this.button17.Size = new System.Drawing.Size(50, 63);
- this.button17.TabIndex = 81;
- this.button17.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button17.UseVisualStyleBackColor = false;
- this.button17.Click += new System.EventHandler(this.button17_Click);
- //
- // button22
- //
- this.button22.BackColor = System.Drawing.Color.Transparent;
- this.button22.BackgroundImage = global::FunkeySelector.Properties.Resources._150;
- this.button22.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button22.FlatAppearance.BorderSize = 0;
- this.button22.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button22.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button22.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button22.Location = new System.Drawing.Point(641, 15);
- this.button22.Name = "button22";
- this.button22.Size = new System.Drawing.Size(26, 22);
- this.button22.TabIndex = 89;
- this.button22.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button22.UseVisualStyleBackColor = false;
- this.button22.Click += new System.EventHandler(this.button22_Click);
- this.button22.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button22_MouseDown);
- this.button22.MouseLeave += new System.EventHandler(this.button22_MouseLeave);
- this.button22.MouseHover += new System.EventHandler(this.button22_MouseEnter);
- //
- // button23
- //
- this.button23.BackColor = System.Drawing.Color.Transparent;
- this.button23.BackgroundImage = global::FunkeySelector.Properties.Resources._246;
- this.button23.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button23.FlatAppearance.BorderSize = 0;
- this.button23.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button23.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button23.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button23.Location = new System.Drawing.Point(680, 17);
- this.button23.Name = "button23";
- this.button23.Size = new System.Drawing.Size(26, 20);
- this.button23.TabIndex = 88;
- this.button23.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button23.UseVisualStyleBackColor = false;
- this.button23.Click += new System.EventHandler(this.button23_Click);
- this.button23.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button23_MouseDown);
- this.button23.MouseEnter += new System.EventHandler(this.button23_MouseEnter);
- this.button23.MouseLeave += new System.EventHandler(this.button23_MouseLeave);
- //
- // Form6
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.Gold;
- this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
- this.ClientSize = new System.Drawing.Size(726, 566);
- this.Controls.Add(this.button22);
- this.Controls.Add(this.button23);
- this.Controls.Add(this.label9);
- this.Controls.Add(this.button17);
- this.Controls.Add(this.label8);
- this.Controls.Add(this.button16);
- this.Controls.Add(this.label7);
- this.Controls.Add(this.button15);
- this.Controls.Add(this.label6);
- this.Controls.Add(this.button14);
- this.Controls.Add(this.label5);
- this.Controls.Add(this.button11);
- this.Controls.Add(this.button12);
- this.Controls.Add(this.button13);
- this.Controls.Add(this.label4);
- this.Controls.Add(this.button8);
- this.Controls.Add(this.button9);
- this.Controls.Add(this.button10);
- this.Controls.Add(this.label3);
- this.Controls.Add(this.button5);
- this.Controls.Add(this.button6);
- this.Controls.Add(this.button7);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.button4);
- this.Controls.Add(this.button3);
- this.Controls.Add(this.button2);
- this.Controls.Add(this.button1);
- this.Controls.Add(this.label2);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.MaximizeBox = false;
- this.Name = "Form6";
- this.Text = "FunkeySelectorGUI";
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
-
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.Button button11;
- private System.Windows.Forms.Button button12;
- private System.Windows.Forms.Button button13;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.Button button8;
- private System.Windows.Forms.Button button9;
- private System.Windows.Forms.Button button10;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Button button5;
- private System.Windows.Forms.Button button6;
- private System.Windows.Forms.Button button7;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Button button4;
- private System.Windows.Forms.Button button3;
- private System.Windows.Forms.Button button2;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Label label6;
- private System.Windows.Forms.Button button14;
- private System.Windows.Forms.Label label7;
- private System.Windows.Forms.Button button15;
- private System.Windows.Forms.Label label8;
- private System.Windows.Forms.Button button16;
- private System.Windows.Forms.Label label9;
- private System.Windows.Forms.Button button17;
- private System.Windows.Forms.Button button22;
- private System.Windows.Forms.Button button23;
- }
-}
\ No newline at end of file
diff --git a/FunkeySelector/Form6.cs b/FunkeySelector/Form6.cs
deleted file mode 100644
index ad2e12b..0000000
--- a/FunkeySelector/Form6.cs
+++ /dev/null
@@ -1,209 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Data;
-using System.Diagnostics;
-using System.Drawing;
-using System.IO;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.Windows.Forms;
-
-namespace FunkeySelector
-{
- public partial class Form6 : Form
- {
- //
- //Initial setup
- //
-
- CustomFManager customF = new CustomFManager(); //Sets up CustomFManager.
- public Form6()
- {
- InitializeComponent();
- this.TransparencyKey = System.Drawing.Color.Gold; //Removes the gold sections to allow the UI to be rounded.
- }
-
- protected override void WndProc(ref Message m) //Allows the window to be dragged.
- {
- switch (m.Msg)
- {
- case 0x84:
- base.WndProc(ref m);
- if ((int)m.Result == 0x1)
- m.Result = (IntPtr)0x2;
- return;
- }
-
- base.WndProc(ref m);
- }
-
- //
- //End of initial startup
- //
-
- //
- //Button Clicks
- //
-
- //Back
- private void button1_Click(object sender, EventArgs e)
- {
- Form1 form1 = new Form1();
- this.Hide();
- form1.StartPosition = FormStartPosition.CenterParent;
- form1.ShowDialog(this);
- }
-
- //Flurry
- private void button2_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000050");
- }
-
- //Flurry R
- private void button3_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000051");
- }
-
- //Flurry VR
- private void button4_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000052");
- }
-
- //Nibble
- private void button10_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000053");
- }
-
- //Nibble R
- private void button9_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000054");
- }
-
- //Nibble VR
- private void button8_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000055");
- }
-
- //Sol
- private void button7_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000056");
- }
-
- //Sol R
- private void button6_Click(object sender, EventArgs e)
- {
- customF.setFunkey("0000005A");
- }
-
- //Sol VR
- private void button5_Click(object sender, EventArgs e)
- {
- customF.setFunkey("0000005B");
- }
-
- //Webley
- private void button13_Click(object sender, EventArgs e)
- {
- customF.setFunkey("0000005C");
- }
-
- //Webley R
- private void button12_Click(object sender, EventArgs e)
- {
- customF.setFunkey("0000005D");
- }
-
- //Webley VR
- private void button11_Click(object sender, EventArgs e)
- {
- customF.setFunkey("0000005E");
- }
-
- //Pineapple King
- private void button14_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000F2");
- }
-
- //Native
- private void button15_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000F6");
- }
-
- //Jerry
- private void button16_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000F1");
- }
-
- //Rewind
- private void button17_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000CC");
- }
-
- //Close
- private void button23_Click(object sender, EventArgs e)
- {
- Application.Exit();
- }
-
- //Minimize
- private void button22_Click(object sender, EventArgs e)
- {
- this.WindowState = FormWindowState.Minimized;
- }
-
- //
- //End of Button Clicks
- //
-
- //
- //Button Images
- //
-
- //Minimize
- private void button22_MouseLeave(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._150;
- }
-
- private void button22_MouseEnter(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._154;
- }
- private void button22_MouseDown(object sender, MouseEventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._157;
- }
-
- //Close
- private void button23_MouseLeave(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._246;
- }
-
- private void button23_MouseEnter(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._248;
- }
- private void button23_MouseDown(object sender, MouseEventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._250;
- }
-
- //
- // End of Button Images
- //
- }
-}
diff --git a/FunkeySelector/Form7.Designer.cs b/FunkeySelector/Form7.Designer.cs
deleted file mode 100644
index be589dc..0000000
--- a/FunkeySelector/Form7.Designer.cs
+++ /dev/null
@@ -1,415 +0,0 @@
-namespace FunkeySelector
-{
- partial class Form7
- {
- ///
- /// Required designer variable.
- ///
- private System.ComponentModel.IContainer components = null;
-
- ///
- /// Clean up any resources being used.
- ///
- /// true if managed resources should be disposed; otherwise, false.
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- ///
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- ///
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form7));
- this.label5 = new System.Windows.Forms.Label();
- this.button12 = new System.Windows.Forms.Button();
- this.label4 = new System.Windows.Forms.Label();
- this.button9 = new System.Windows.Forms.Button();
- this.label3 = new System.Windows.Forms.Label();
- this.button6 = new System.Windows.Forms.Button();
- this.label1 = new System.Windows.Forms.Label();
- this.button3 = new System.Windows.Forms.Button();
- this.button1 = new System.Windows.Forms.Button();
- this.label2 = new System.Windows.Forms.Label();
- this.label6 = new System.Windows.Forms.Label();
- this.button2 = new System.Windows.Forms.Button();
- this.label7 = new System.Windows.Forms.Label();
- this.button4 = new System.Windows.Forms.Button();
- this.label8 = new System.Windows.Forms.Label();
- this.button5 = new System.Windows.Forms.Button();
- this.label9 = new System.Windows.Forms.Label();
- this.button7 = new System.Windows.Forms.Button();
- this.button22 = new System.Windows.Forms.Button();
- this.button23 = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.BackColor = System.Drawing.Color.Transparent;
- this.label5.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label5.ForeColor = System.Drawing.SystemColors.Control;
- this.label5.Location = new System.Drawing.Point(152, 436);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(158, 29);
- this.label5.TabIndex = 74;
- this.label5.Text = "SNAKE OILER";
- //
- // button12
- //
- this.button12.BackColor = System.Drawing.Color.Transparent;
- this.button12.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button12.BackgroundImage")));
- this.button12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button12.FlatAppearance.BorderSize = 0;
- this.button12.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button12.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button12.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button12.Location = new System.Drawing.Point(205, 471);
- this.button12.Name = "button12";
- this.button12.Size = new System.Drawing.Size(50, 63);
- this.button12.TabIndex = 72;
- this.button12.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button12.UseVisualStyleBackColor = false;
- this.button12.Click += new System.EventHandler(this.button12_Click);
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.BackColor = System.Drawing.Color.Transparent;
- this.label4.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label4.ForeColor = System.Drawing.SystemColors.Control;
- this.label4.Location = new System.Drawing.Point(187, 222);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(90, 29);
- this.label4.TabIndex = 70;
- this.label4.Text = "TRIXIE";
- //
- // button9
- //
- this.button9.BackColor = System.Drawing.Color.Transparent;
- this.button9.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button9.BackgroundImage")));
- this.button9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button9.FlatAppearance.BorderSize = 0;
- this.button9.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button9.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button9.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button9.Location = new System.Drawing.Point(205, 260);
- this.button9.Name = "button9";
- this.button9.Size = new System.Drawing.Size(50, 63);
- this.button9.TabIndex = 68;
- this.button9.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button9.UseVisualStyleBackColor = false;
- this.button9.Click += new System.EventHandler(this.button9_Click);
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.BackColor = System.Drawing.Color.Transparent;
- this.label3.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label3.ForeColor = System.Drawing.SystemColors.Control;
- this.label3.Location = new System.Drawing.Point(113, 329);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(251, 29);
- this.label3.TabIndex = 66;
- this.label3.Text = "CANNONBALL TAYLOR";
- //
- // button6
- //
- this.button6.BackColor = System.Drawing.Color.Transparent;
- this.button6.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button6.BackgroundImage")));
- this.button6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button6.FlatAppearance.BorderSize = 0;
- this.button6.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button6.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button6.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button6.Location = new System.Drawing.Point(205, 363);
- this.button6.Name = "button6";
- this.button6.Size = new System.Drawing.Size(50, 63);
- this.button6.TabIndex = 64;
- this.button6.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button6.UseVisualStyleBackColor = false;
- this.button6.Click += new System.EventHandler(this.button6_Click);
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.BackColor = System.Drawing.Color.Transparent;
- this.label1.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label1.ForeColor = System.Drawing.SystemColors.Control;
- this.label1.Location = new System.Drawing.Point(184, 102);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(101, 29);
- this.label1.TabIndex = 62;
- this.label1.Text = "RACER X";
- //
- // button3
- //
- this.button3.BackColor = System.Drawing.Color.Transparent;
- this.button3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button3.BackgroundImage")));
- this.button3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button3.FlatAppearance.BorderSize = 0;
- this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button3.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button3.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button3.Location = new System.Drawing.Point(205, 142);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(50, 63);
- this.button3.TabIndex = 60;
- this.button3.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button3.UseVisualStyleBackColor = false;
- this.button3.Click += new System.EventHandler(this.button3_Click);
- //
- // button1
- //
- this.button1.BackColor = System.Drawing.Color.Transparent;
- this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button1.FlatAppearance.BorderSize = 0;
- this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button1.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button1.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button1.Location = new System.Drawing.Point(12, 12);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(101, 48);
- this.button1.TabIndex = 58;
- this.button1.Text = "BACK";
- this.button1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button1.UseVisualStyleBackColor = false;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.BackColor = System.Drawing.Color.Transparent;
- this.label2.Font = new System.Drawing.Font("Comic Sans MS", 21.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label2.ForeColor = System.Drawing.SystemColors.Control;
- this.label2.Location = new System.Drawing.Point(150, 20);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(449, 41);
- this.label2.TabIndex = 57;
- this.label2.Text = "ROYALTON RACING COMPLEX";
- //
- // label6
- //
- this.label6.AutoSize = true;
- this.label6.BackColor = System.Drawing.Color.Transparent;
- this.label6.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label6.ForeColor = System.Drawing.SystemColors.Control;
- this.label6.Location = new System.Drawing.Point(463, 435);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(86, 29);
- this.label6.TabIndex = 82;
- this.label6.Text = "TAEJO";
- //
- // button2
- //
- this.button2.BackColor = System.Drawing.Color.Transparent;
- this.button2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button2.BackgroundImage")));
- this.button2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button2.FlatAppearance.BorderSize = 0;
- this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button2.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button2.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button2.Location = new System.Drawing.Point(479, 471);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(50, 63);
- this.button2.TabIndex = 81;
- this.button2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button2.UseVisualStyleBackColor = false;
- this.button2.Click += new System.EventHandler(this.button2_Click);
- //
- // label7
- //
- this.label7.AutoSize = true;
- this.label7.BackColor = System.Drawing.Color.Transparent;
- this.label7.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label7.ForeColor = System.Drawing.SystemColors.Control;
- this.label7.Location = new System.Drawing.Point(374, 219);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(266, 29);
- this.label7.TabIndex = 80;
- this.label7.Text = "SPEED RACER (PINBALL)";
- //
- // button4
- //
- this.button4.BackColor = System.Drawing.Color.Transparent;
- this.button4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button4.BackgroundImage")));
- this.button4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button4.FlatAppearance.BorderSize = 0;
- this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button4.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button4.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button4.Location = new System.Drawing.Point(479, 260);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(50, 63);
- this.button4.TabIndex = 79;
- this.button4.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button4.UseVisualStyleBackColor = false;
- this.button4.Click += new System.EventHandler(this.button4_Click);
- //
- // label8
- //
- this.label8.AutoSize = true;
- this.label8.BackColor = System.Drawing.Color.Transparent;
- this.label8.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label8.ForeColor = System.Drawing.SystemColors.Control;
- this.label8.Location = new System.Drawing.Point(434, 329);
- this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(140, 29);
- this.label8.TabIndex = 78;
- this.label8.Text = "CHIM-CHIM";
- //
- // button5
- //
- this.button5.BackColor = System.Drawing.Color.Transparent;
- this.button5.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button5.BackgroundImage")));
- this.button5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button5.FlatAppearance.BorderSize = 0;
- this.button5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button5.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button5.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button5.Location = new System.Drawing.Point(479, 363);
- this.button5.Name = "button5";
- this.button5.Size = new System.Drawing.Size(50, 63);
- this.button5.TabIndex = 77;
- this.button5.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button5.UseVisualStyleBackColor = false;
- this.button5.Click += new System.EventHandler(this.button5_Click);
- //
- // label9
- //
- this.label9.AutoSize = true;
- this.label9.BackColor = System.Drawing.Color.Transparent;
- this.label9.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label9.ForeColor = System.Drawing.SystemColors.Control;
- this.label9.Location = new System.Drawing.Point(431, 102);
- this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(153, 29);
- this.label9.TabIndex = 76;
- this.label9.Text = "SPEED RACER";
- //
- // button7
- //
- this.button7.BackColor = System.Drawing.Color.Transparent;
- this.button7.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button7.BackgroundImage")));
- this.button7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button7.FlatAppearance.BorderSize = 0;
- this.button7.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button7.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button7.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button7.Location = new System.Drawing.Point(479, 142);
- this.button7.Name = "button7";
- this.button7.Size = new System.Drawing.Size(50, 63);
- this.button7.TabIndex = 75;
- this.button7.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button7.UseVisualStyleBackColor = false;
- this.button7.Click += new System.EventHandler(this.button7_Click);
- //
- // button22
- //
- this.button22.BackColor = System.Drawing.Color.Transparent;
- this.button22.BackgroundImage = global::FunkeySelector.Properties.Resources._150;
- this.button22.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button22.FlatAppearance.BorderSize = 0;
- this.button22.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button22.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button22.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button22.Location = new System.Drawing.Point(642, 15);
- this.button22.Name = "button22";
- this.button22.Size = new System.Drawing.Size(26, 22);
- this.button22.TabIndex = 91;
- this.button22.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button22.UseVisualStyleBackColor = false;
- this.button22.Click += new System.EventHandler(this.button22_Click);
- this.button22.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button22_MouseDown);
- this.button22.MouseEnter += new System.EventHandler(this.button22_MouseEnter);
- this.button22.MouseLeave += new System.EventHandler(this.button22_MouseLeave);
- //
- // button23
- //
- this.button23.BackColor = System.Drawing.Color.Transparent;
- this.button23.BackgroundImage = global::FunkeySelector.Properties.Resources._246;
- this.button23.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button23.FlatAppearance.BorderSize = 0;
- this.button23.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button23.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button23.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button23.Location = new System.Drawing.Point(681, 17);
- this.button23.Name = "button23";
- this.button23.Size = new System.Drawing.Size(26, 20);
- this.button23.TabIndex = 90;
- this.button23.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button23.UseVisualStyleBackColor = false;
- this.button23.Click += new System.EventHandler(this.button23_Click);
- this.button23.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button23_MouseDown);
- this.button23.MouseEnter += new System.EventHandler(this.button23_MouseEnter);
- this.button23.MouseLeave += new System.EventHandler(this.button23_MouseLeave);
- //
- // Form7
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.Gold;
- this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
- this.ClientSize = new System.Drawing.Size(726, 566);
- this.Controls.Add(this.button22);
- this.Controls.Add(this.button23);
- this.Controls.Add(this.label6);
- this.Controls.Add(this.button2);
- this.Controls.Add(this.label7);
- this.Controls.Add(this.button4);
- this.Controls.Add(this.label8);
- this.Controls.Add(this.button5);
- this.Controls.Add(this.label9);
- this.Controls.Add(this.button7);
- this.Controls.Add(this.label5);
- this.Controls.Add(this.button12);
- this.Controls.Add(this.label4);
- this.Controls.Add(this.button9);
- this.Controls.Add(this.label3);
- this.Controls.Add(this.button6);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.button3);
- this.Controls.Add(this.button1);
- this.Controls.Add(this.label2);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.MaximizeBox = false;
- this.Name = "Form7";
- this.Text = "FunkeySelectorGUI";
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
-
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.Button button12;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.Button button9;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Button button6;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Button button3;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Label label6;
- private System.Windows.Forms.Button button2;
- private System.Windows.Forms.Label label7;
- private System.Windows.Forms.Button button4;
- private System.Windows.Forms.Label label8;
- private System.Windows.Forms.Button button5;
- private System.Windows.Forms.Label label9;
- private System.Windows.Forms.Button button7;
- private System.Windows.Forms.Button button22;
- private System.Windows.Forms.Button button23;
- }
-}
\ No newline at end of file
diff --git a/FunkeySelector/Form7.cs b/FunkeySelector/Form7.cs
deleted file mode 100644
index b950123..0000000
--- a/FunkeySelector/Form7.cs
+++ /dev/null
@@ -1,161 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Data;
-using System.Diagnostics;
-using System.Drawing;
-using System.IO;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.Windows.Forms;
-
-namespace FunkeySelector
-{
- public partial class Form7 : Form
- {
- //
- //Initial setup
- //
-
- CustomFManager customF = new CustomFManager(); //Sets up CustomFManager.
- public Form7()
- {
- InitializeComponent();
- this.TransparencyKey = System.Drawing.Color.Gold; //Removes the gold sections to allow the UI to be rounded.
- }
-
- protected override void WndProc(ref Message m) //Allows the window to be dragged.
- {
- switch (m.Msg)
- {
- case 0x84:
- base.WndProc(ref m);
- if ((int)m.Result == 0x1)
- m.Result = (IntPtr)0x2;
- return;
- }
-
- base.WndProc(ref m);
- }
-
- //
- //End of initial startup
- //
-
- //
- //Button Clicks
- //
-
- //Back
- private void button1_Click(object sender, EventArgs e)
- {
- Form1 form1 = new Form1();
- this.Hide();
- form1.StartPosition = FormStartPosition.CenterParent;
- form1.ShowDialog(this);
- }
-
- //Racer X
- private void button3_Click(object sender, EventArgs e)
- {
- customF.setFunkey("0000005F");
- }
-
- //Trixie
- private void button9_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000083");
- }
-
- //Cannonball Taylor
- private void button6_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000088");
- }
-
- //Snake Oiler
- private void button12_Click(object sender, EventArgs e)
- {
- customF.setFunkey("0000008C");
- }
-
- //Speed Racer
- private void button7_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000093");
- }
-
- //Speed Racer Pinball
- private void button4_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000095");
- }
-
- //Chim-Chim
- private void button5_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000096");
- }
-
- //Taejo
- private void button2_Click(object sender, EventArgs e)
- {
- customF.setFunkey("00000094");
- }
-
- //Close
- private void button23_Click(object sender, EventArgs e)
- {
- Application.Exit();
- }
-
- //Minimize
- private void button22_Click(object sender, EventArgs e)
- {
- this.WindowState = FormWindowState.Minimized;
- }
-
- //
- //End of Button Clicks
- //
-
- //
- //Button Images
- //
-
- //Minimize
- private void button22_MouseLeave(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._150;
- }
-
- private void button22_MouseEnter(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._154;
- }
- private void button22_MouseDown(object sender, MouseEventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._157;
- }
-
- //Close
- private void button23_MouseLeave(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._246;
- }
-
- private void button23_MouseEnter(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._248;
- }
- private void button23_MouseDown(object sender, MouseEventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._250;
- }
-
- //
- // End of Button Images
- //
- }
-}
diff --git a/FunkeySelector/Form8.Designer.cs b/FunkeySelector/Form8.Designer.cs
deleted file mode 100644
index ce59ec0..0000000
--- a/FunkeySelector/Form8.Designer.cs
+++ /dev/null
@@ -1,434 +0,0 @@
-namespace FunkeySelector
-{
- partial class Form8
- {
- ///
- /// Required designer variable.
- ///
- private System.ComponentModel.IContainer components = null;
-
- ///
- /// Clean up any resources being used.
- ///
- /// true if managed resources should be disposed; otherwise, false.
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- ///
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- ///
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form8));
- this.label5 = new System.Windows.Forms.Label();
- this.button11 = new System.Windows.Forms.Button();
- this.button12 = new System.Windows.Forms.Button();
- this.button13 = new System.Windows.Forms.Button();
- this.label4 = new System.Windows.Forms.Label();
- this.button8 = new System.Windows.Forms.Button();
- this.button9 = new System.Windows.Forms.Button();
- this.button10 = new System.Windows.Forms.Button();
- this.label3 = new System.Windows.Forms.Label();
- this.button5 = new System.Windows.Forms.Button();
- this.button6 = new System.Windows.Forms.Button();
- this.button7 = new System.Windows.Forms.Button();
- this.label1 = new System.Windows.Forms.Label();
- this.button4 = new System.Windows.Forms.Button();
- this.button3 = new System.Windows.Forms.Button();
- this.button2 = new System.Windows.Forms.Button();
- this.button1 = new System.Windows.Forms.Button();
- this.label2 = new System.Windows.Forms.Label();
- this.button22 = new System.Windows.Forms.Button();
- this.button23 = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.BackColor = System.Drawing.Color.Transparent;
- this.label5.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label5.ForeColor = System.Drawing.SystemColors.Control;
- this.label5.Location = new System.Drawing.Point(339, 428);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(80, 29);
- this.label5.TabIndex = 74;
- this.label5.Text = "SNIPE";
- //
- // button11
- //
- this.button11.BackColor = System.Drawing.Color.Transparent;
- this.button11.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button11.BackgroundImage")));
- this.button11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button11.FlatAppearance.BorderSize = 0;
- this.button11.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button11.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button11.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button11.Location = new System.Drawing.Point(408, 468);
- this.button11.Name = "button11";
- this.button11.Size = new System.Drawing.Size(50, 63);
- this.button11.TabIndex = 73;
- this.button11.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button11.UseVisualStyleBackColor = false;
- this.button11.Click += new System.EventHandler(this.button11_Click);
- //
- // button12
- //
- this.button12.BackColor = System.Drawing.Color.Transparent;
- this.button12.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button12.BackgroundImage")));
- this.button12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button12.FlatAppearance.BorderSize = 0;
- this.button12.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button12.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button12.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button12.Location = new System.Drawing.Point(357, 468);
- this.button12.Name = "button12";
- this.button12.Size = new System.Drawing.Size(50, 63);
- this.button12.TabIndex = 72;
- this.button12.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button12.UseVisualStyleBackColor = false;
- this.button12.Click += new System.EventHandler(this.button12_Click);
- //
- // button13
- //
- this.button13.BackColor = System.Drawing.Color.Transparent;
- this.button13.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button13.BackgroundImage")));
- this.button13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button13.FlatAppearance.BorderSize = 0;
- this.button13.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button13.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button13.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button13.Location = new System.Drawing.Point(306, 468);
- this.button13.Name = "button13";
- this.button13.Size = new System.Drawing.Size(50, 63);
- this.button13.TabIndex = 71;
- this.button13.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button13.UseVisualStyleBackColor = false;
- this.button13.Click += new System.EventHandler(this.button13_Click);
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.BackColor = System.Drawing.Color.Transparent;
- this.label4.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label4.ForeColor = System.Drawing.SystemColors.Control;
- this.label4.Location = new System.Drawing.Point(324, 218);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(122, 29);
- this.label4.TabIndex = 70;
- this.label4.Text = "SPROCKET";
- //
- // button8
- //
- this.button8.BackColor = System.Drawing.Color.Transparent;
- this.button8.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button8.BackgroundImage")));
- this.button8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button8.FlatAppearance.BorderSize = 0;
- this.button8.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button8.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button8.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button8.Location = new System.Drawing.Point(408, 257);
- this.button8.Name = "button8";
- this.button8.Size = new System.Drawing.Size(50, 63);
- this.button8.TabIndex = 69;
- this.button8.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button8.UseVisualStyleBackColor = false;
- this.button8.Click += new System.EventHandler(this.button8_Click);
- //
- // button9
- //
- this.button9.BackColor = System.Drawing.Color.Transparent;
- this.button9.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button9.BackgroundImage")));
- this.button9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button9.FlatAppearance.BorderSize = 0;
- this.button9.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button9.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button9.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button9.Location = new System.Drawing.Point(357, 257);
- this.button9.Name = "button9";
- this.button9.Size = new System.Drawing.Size(50, 63);
- this.button9.TabIndex = 68;
- this.button9.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button9.UseVisualStyleBackColor = false;
- this.button9.Click += new System.EventHandler(this.button9_Click);
- //
- // button10
- //
- this.button10.BackColor = System.Drawing.Color.Transparent;
- this.button10.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button10.BackgroundImage")));
- this.button10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button10.FlatAppearance.BorderSize = 0;
- this.button10.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button10.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button10.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button10.Location = new System.Drawing.Point(306, 257);
- this.button10.Name = "button10";
- this.button10.Size = new System.Drawing.Size(50, 63);
- this.button10.TabIndex = 67;
- this.button10.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button10.UseVisualStyleBackColor = false;
- this.button10.Click += new System.EventHandler(this.button10_Click);
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.BackColor = System.Drawing.Color.Transparent;
- this.label3.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label3.ForeColor = System.Drawing.SystemColors.Control;
- this.label3.Location = new System.Drawing.Point(346, 325);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(78, 29);
- this.label3.TabIndex = 66;
- this.label3.Text = "VLURP";
- //
- // button5
- //
- this.button5.BackColor = System.Drawing.Color.Transparent;
- this.button5.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button5.BackgroundImage")));
- this.button5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button5.FlatAppearance.BorderSize = 0;
- this.button5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button5.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button5.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button5.Location = new System.Drawing.Point(408, 360);
- this.button5.Name = "button5";
- this.button5.Size = new System.Drawing.Size(50, 63);
- this.button5.TabIndex = 65;
- this.button5.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button5.UseVisualStyleBackColor = false;
- this.button5.Click += new System.EventHandler(this.button5_Click);
- //
- // button6
- //
- this.button6.BackColor = System.Drawing.Color.Transparent;
- this.button6.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button6.BackgroundImage")));
- this.button6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button6.FlatAppearance.BorderSize = 0;
- this.button6.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button6.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button6.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button6.Location = new System.Drawing.Point(357, 360);
- this.button6.Name = "button6";
- this.button6.Size = new System.Drawing.Size(50, 63);
- this.button6.TabIndex = 64;
- this.button6.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button6.UseVisualStyleBackColor = false;
- this.button6.Click += new System.EventHandler(this.button6_Click);
- //
- // button7
- //
- this.button7.BackColor = System.Drawing.Color.Transparent;
- this.button7.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button7.BackgroundImage")));
- this.button7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button7.FlatAppearance.BorderSize = 0;
- this.button7.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button7.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button7.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button7.Location = new System.Drawing.Point(306, 360);
- this.button7.Name = "button7";
- this.button7.Size = new System.Drawing.Size(50, 63);
- this.button7.TabIndex = 63;
- this.button7.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button7.UseVisualStyleBackColor = false;
- this.button7.Click += new System.EventHandler(this.button7_Click);
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.BackColor = System.Drawing.Color.Transparent;
- this.label1.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label1.ForeColor = System.Drawing.SystemColors.Control;
- this.label1.Location = new System.Drawing.Point(354, 102);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(62, 29);
- this.label1.TabIndex = 62;
- this.label1.Text = "PTEP";
- //
- // button4
- //
- this.button4.BackColor = System.Drawing.Color.Transparent;
- this.button4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button4.BackgroundImage")));
- this.button4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button4.FlatAppearance.BorderSize = 0;
- this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button4.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button4.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button4.Location = new System.Drawing.Point(408, 139);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(50, 63);
- this.button4.TabIndex = 61;
- this.button4.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button4.UseVisualStyleBackColor = false;
- this.button4.Click += new System.EventHandler(this.button4_Click);
- //
- // button3
- //
- this.button3.BackColor = System.Drawing.Color.Transparent;
- this.button3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button3.BackgroundImage")));
- this.button3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button3.FlatAppearance.BorderSize = 0;
- this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button3.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button3.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button3.Location = new System.Drawing.Point(357, 139);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(50, 63);
- this.button3.TabIndex = 60;
- this.button3.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button3.UseVisualStyleBackColor = false;
- this.button3.Click += new System.EventHandler(this.button3_Click);
- //
- // button2
- //
- this.button2.BackColor = System.Drawing.Color.Transparent;
- this.button2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button2.BackgroundImage")));
- this.button2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button2.FlatAppearance.BorderSize = 0;
- this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button2.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button2.ForeColor = System.Drawing.Color.Transparent;
- this.button2.Location = new System.Drawing.Point(306, 139);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(50, 63);
- this.button2.TabIndex = 59;
- this.button2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button2.UseVisualStyleBackColor = false;
- this.button2.Click += new System.EventHandler(this.button2_Click);
- //
- // button1
- //
- this.button1.BackColor = System.Drawing.Color.Transparent;
- this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button1.FlatAppearance.BorderSize = 0;
- this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button1.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button1.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button1.Location = new System.Drawing.Point(12, 12);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(101, 48);
- this.button1.TabIndex = 58;
- this.button1.Text = "BACK";
- this.button1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button1.UseVisualStyleBackColor = false;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.BackColor = System.Drawing.Color.Transparent;
- this.label2.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label2.ForeColor = System.Drawing.SystemColors.Control;
- this.label2.Location = new System.Drawing.Point(220, 20);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(357, 52);
- this.label2.TabIndex = 57;
- this.label2.Text = "NIGHTMARE RIFT";
- //
- // button22
- //
- this.button22.BackColor = System.Drawing.Color.Transparent;
- this.button22.BackgroundImage = global::FunkeySelector.Properties.Resources._150;
- this.button22.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button22.FlatAppearance.BorderSize = 0;
- this.button22.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button22.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button22.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button22.Location = new System.Drawing.Point(642, 15);
- this.button22.Name = "button22";
- this.button22.Size = new System.Drawing.Size(26, 22);
- this.button22.TabIndex = 93;
- this.button22.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button22.UseVisualStyleBackColor = false;
- this.button22.Click += new System.EventHandler(this.button22_Click);
- this.button22.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button22_MouseDown);
- this.button22.MouseEnter += new System.EventHandler(this.button22_MouseEnter);
- this.button22.MouseLeave += new System.EventHandler(this.button22_MouseLeave);
- //
- // button23
- //
- this.button23.BackColor = System.Drawing.Color.Transparent;
- this.button23.BackgroundImage = global::FunkeySelector.Properties.Resources._246;
- this.button23.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button23.FlatAppearance.BorderSize = 0;
- this.button23.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button23.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button23.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button23.Location = new System.Drawing.Point(681, 17);
- this.button23.Name = "button23";
- this.button23.Size = new System.Drawing.Size(26, 20);
- this.button23.TabIndex = 92;
- this.button23.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button23.UseVisualStyleBackColor = false;
- this.button23.Click += new System.EventHandler(this.button23_Click);
- this.button23.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button23_MouseDown);
- this.button23.MouseEnter += new System.EventHandler(this.button23_MouseEnter);
- this.button23.MouseLeave += new System.EventHandler(this.button23_MouseLeave);
- //
- // Form8
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
- this.ClientSize = new System.Drawing.Size(726, 566);
- this.Controls.Add(this.button22);
- this.Controls.Add(this.button23);
- this.Controls.Add(this.label5);
- this.Controls.Add(this.button11);
- this.Controls.Add(this.button12);
- this.Controls.Add(this.button13);
- this.Controls.Add(this.label4);
- this.Controls.Add(this.button8);
- this.Controls.Add(this.button9);
- this.Controls.Add(this.button10);
- this.Controls.Add(this.label3);
- this.Controls.Add(this.button5);
- this.Controls.Add(this.button6);
- this.Controls.Add(this.button7);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.button4);
- this.Controls.Add(this.button3);
- this.Controls.Add(this.button2);
- this.Controls.Add(this.button1);
- this.Controls.Add(this.label2);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.MaximizeBox = false;
- this.Name = "Form8";
- this.Text = "FunkeySelectorGUI";
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
-
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.Button button11;
- private System.Windows.Forms.Button button12;
- private System.Windows.Forms.Button button13;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.Button button8;
- private System.Windows.Forms.Button button9;
- private System.Windows.Forms.Button button10;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Button button5;
- private System.Windows.Forms.Button button6;
- private System.Windows.Forms.Button button7;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Button button4;
- private System.Windows.Forms.Button button3;
- private System.Windows.Forms.Button button2;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Button button22;
- private System.Windows.Forms.Button button23;
- }
-}
\ No newline at end of file
diff --git a/FunkeySelector/Form8.cs b/FunkeySelector/Form8.cs
deleted file mode 100644
index af3f0c1..0000000
--- a/FunkeySelector/Form8.cs
+++ /dev/null
@@ -1,185 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Data;
-using System.Diagnostics;
-using System.Drawing;
-using System.IO;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.Windows.Forms;
-
-namespace FunkeySelector
-{
- public partial class Form8 : Form
- {
- //
- //Initial setup
- //
-
- CustomFManager customF = new CustomFManager(); //Sets up CustomFManager.
- public Form8()
- {
- InitializeComponent();
- this.TransparencyKey = System.Drawing.Color.Gold; //Removes the gold sections to allow the UI to be rounded.
- }
-
- protected override void WndProc(ref Message m) //Allows the window to be dragged.
- {
- switch (m.Msg)
- {
- case 0x84:
- base.WndProc(ref m);
- if ((int)m.Result == 0x1)
- m.Result = (IntPtr)0x2;
- return;
- }
-
- base.WndProc(ref m);
- }
-
- //
- //End of initial startup
- //
-
- //
- //Button Clicks
- //
-
- //Back
- private void button1_Click(object sender, EventArgs e)
- {
- Form1 form1 = new Form1();
- this.Hide();
- form1.StartPosition = FormStartPosition.CenterParent;
- form1.ShowDialog(this);
- }
-
- //Ptep
- private void button2_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000A0");
- }
-
- //Ptep R
- private void button3_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000AD");
- }
-
- //Ptep VR
- private void button4_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000BA");
- }
-
- //Sprocket
- private void button10_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000A4");
- }
-
- //Sprocket R
- private void button9_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000B4");
- }
-
- //Sprocket VR
- private void button8_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000C1");
- }
-
- //Vlurp
- private void button7_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000A8");
- }
-
- //Vlurp R
- private void button6_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000B5");
- }
-
- //Vlurp VR
- private void button5_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000C2");
- }
-
- //Snipe
- private void button13_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000AC");
- }
-
- //Snipe R
- private void button12_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000B9");
- }
-
- //Snipe VR
- private void button11_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000CA");
- }
-
- //Close
- private void button23_Click(object sender, EventArgs e)
- {
- Application.Exit();
- }
-
- //Minimize
- private void button22_Click(object sender, EventArgs e)
- {
- this.WindowState = FormWindowState.Minimized;
- }
-
- //
- //End of Button Clicks
- //
-
- //
- //Button Images
- //
-
- //Minimize
- private void button22_MouseLeave(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._150;
- }
-
- private void button22_MouseEnter(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._154;
- }
- private void button22_MouseDown(object sender, MouseEventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._157;
- }
-
- //Close
- private void button23_MouseLeave(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._246;
- }
-
- private void button23_MouseEnter(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._248;
- }
- private void button23_MouseDown(object sender, MouseEventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._250;
- }
-
- //
- // End of Button Images
- //
- }
-}
diff --git a/FunkeySelector/Form9.Designer.cs b/FunkeySelector/Form9.Designer.cs
deleted file mode 100644
index e7bf785..0000000
--- a/FunkeySelector/Form9.Designer.cs
+++ /dev/null
@@ -1,435 +0,0 @@
-namespace FunkeySelector
-{
- partial class Form9
- {
- ///
- /// Required designer variable.
- ///
- private System.ComponentModel.IContainer components = null;
-
- ///
- /// Clean up any resources being used.
- ///
- /// true if managed resources should be disposed; otherwise, false.
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- ///
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- ///
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form9));
- this.label5 = new System.Windows.Forms.Label();
- this.button11 = new System.Windows.Forms.Button();
- this.button12 = new System.Windows.Forms.Button();
- this.button13 = new System.Windows.Forms.Button();
- this.label4 = new System.Windows.Forms.Label();
- this.button8 = new System.Windows.Forms.Button();
- this.button9 = new System.Windows.Forms.Button();
- this.button10 = new System.Windows.Forms.Button();
- this.label3 = new System.Windows.Forms.Label();
- this.button5 = new System.Windows.Forms.Button();
- this.button6 = new System.Windows.Forms.Button();
- this.button7 = new System.Windows.Forms.Button();
- this.label1 = new System.Windows.Forms.Label();
- this.button4 = new System.Windows.Forms.Button();
- this.button3 = new System.Windows.Forms.Button();
- this.button2 = new System.Windows.Forms.Button();
- this.button1 = new System.Windows.Forms.Button();
- this.label2 = new System.Windows.Forms.Label();
- this.button22 = new System.Windows.Forms.Button();
- this.button23 = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.BackColor = System.Drawing.Color.Transparent;
- this.label5.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label5.ForeColor = System.Drawing.SystemColors.Control;
- this.label5.Location = new System.Drawing.Point(320, 431);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(92, 29);
- this.label5.TabIndex = 74;
- this.label5.Text = "BERGER";
- //
- // button11
- //
- this.button11.BackColor = System.Drawing.Color.Transparent;
- this.button11.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button11.BackgroundImage")));
- this.button11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button11.FlatAppearance.BorderSize = 0;
- this.button11.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button11.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button11.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button11.Location = new System.Drawing.Point(389, 471);
- this.button11.Name = "button11";
- this.button11.Size = new System.Drawing.Size(50, 63);
- this.button11.TabIndex = 73;
- this.button11.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button11.UseVisualStyleBackColor = false;
- this.button11.Click += new System.EventHandler(this.button11_Click);
- //
- // button12
- //
- this.button12.BackColor = System.Drawing.Color.Transparent;
- this.button12.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button12.BackgroundImage")));
- this.button12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button12.FlatAppearance.BorderSize = 0;
- this.button12.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button12.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button12.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button12.Location = new System.Drawing.Point(338, 471);
- this.button12.Name = "button12";
- this.button12.Size = new System.Drawing.Size(50, 63);
- this.button12.TabIndex = 72;
- this.button12.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button12.UseVisualStyleBackColor = false;
- this.button12.Click += new System.EventHandler(this.button12_Click);
- //
- // button13
- //
- this.button13.BackColor = System.Drawing.Color.Transparent;
- this.button13.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button13.BackgroundImage")));
- this.button13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button13.FlatAppearance.BorderSize = 0;
- this.button13.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button13.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button13.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button13.Location = new System.Drawing.Point(287, 471);
- this.button13.Name = "button13";
- this.button13.Size = new System.Drawing.Size(50, 63);
- this.button13.TabIndex = 71;
- this.button13.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button13.UseVisualStyleBackColor = false;
- this.button13.Click += new System.EventHandler(this.button13_Click);
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.BackColor = System.Drawing.Color.Transparent;
- this.label4.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label4.ForeColor = System.Drawing.SystemColors.Control;
- this.label4.Location = new System.Drawing.Point(320, 222);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(79, 29);
- this.label4.TabIndex = 70;
- this.label4.Text = "LUCKY";
- //
- // button8
- //
- this.button8.BackColor = System.Drawing.Color.Transparent;
- this.button8.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button8.BackgroundImage")));
- this.button8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button8.FlatAppearance.BorderSize = 0;
- this.button8.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button8.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button8.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button8.Location = new System.Drawing.Point(389, 260);
- this.button8.Name = "button8";
- this.button8.Size = new System.Drawing.Size(50, 63);
- this.button8.TabIndex = 69;
- this.button8.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button8.UseVisualStyleBackColor = false;
- this.button8.Click += new System.EventHandler(this.button8_Click);
- //
- // button9
- //
- this.button9.BackColor = System.Drawing.Color.Transparent;
- this.button9.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button9.BackgroundImage")));
- this.button9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button9.FlatAppearance.BorderSize = 0;
- this.button9.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button9.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button9.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button9.Location = new System.Drawing.Point(338, 260);
- this.button9.Name = "button9";
- this.button9.Size = new System.Drawing.Size(50, 63);
- this.button9.TabIndex = 68;
- this.button9.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button9.UseVisualStyleBackColor = false;
- this.button9.Click += new System.EventHandler(this.button9_Click);
- //
- // button10
- //
- this.button10.BackColor = System.Drawing.Color.Transparent;
- this.button10.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button10.BackgroundImage")));
- this.button10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button10.FlatAppearance.BorderSize = 0;
- this.button10.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button10.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button10.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button10.Location = new System.Drawing.Point(287, 260);
- this.button10.Name = "button10";
- this.button10.Size = new System.Drawing.Size(50, 63);
- this.button10.TabIndex = 67;
- this.button10.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button10.UseVisualStyleBackColor = false;
- this.button10.Click += new System.EventHandler(this.button10_Click);
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.BackColor = System.Drawing.Color.Transparent;
- this.label3.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label3.ForeColor = System.Drawing.SystemColors.Control;
- this.label3.Location = new System.Drawing.Point(327, 328);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(72, 29);
- this.label3.TabIndex = 66;
- this.label3.Text = "TANK";
- //
- // button5
- //
- this.button5.BackColor = System.Drawing.Color.Transparent;
- this.button5.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button5.BackgroundImage")));
- this.button5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button5.FlatAppearance.BorderSize = 0;
- this.button5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button5.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button5.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button5.Location = new System.Drawing.Point(389, 363);
- this.button5.Name = "button5";
- this.button5.Size = new System.Drawing.Size(50, 63);
- this.button5.TabIndex = 65;
- this.button5.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button5.UseVisualStyleBackColor = false;
- this.button5.Click += new System.EventHandler(this.button5_Click);
- //
- // button6
- //
- this.button6.BackColor = System.Drawing.Color.Transparent;
- this.button6.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button6.BackgroundImage")));
- this.button6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button6.FlatAppearance.BorderSize = 0;
- this.button6.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button6.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button6.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button6.Location = new System.Drawing.Point(338, 363);
- this.button6.Name = "button6";
- this.button6.Size = new System.Drawing.Size(50, 63);
- this.button6.TabIndex = 64;
- this.button6.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button6.UseVisualStyleBackColor = false;
- this.button6.Click += new System.EventHandler(this.button6_Click);
- //
- // button7
- //
- this.button7.BackColor = System.Drawing.Color.Transparent;
- this.button7.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button7.BackgroundImage")));
- this.button7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button7.FlatAppearance.BorderSize = 0;
- this.button7.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button7.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button7.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button7.Location = new System.Drawing.Point(287, 363);
- this.button7.Name = "button7";
- this.button7.Size = new System.Drawing.Size(50, 63);
- this.button7.TabIndex = 63;
- this.button7.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button7.UseVisualStyleBackColor = false;
- this.button7.Click += new System.EventHandler(this.button7_Click);
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.BackColor = System.Drawing.Color.Transparent;
- this.label1.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label1.ForeColor = System.Drawing.SystemColors.Control;
- this.label1.Location = new System.Drawing.Point(328, 101);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(67, 29);
- this.label1.TabIndex = 62;
- this.label1.Text = "DYER";
- //
- // button4
- //
- this.button4.BackColor = System.Drawing.Color.Transparent;
- this.button4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button4.BackgroundImage")));
- this.button4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button4.FlatAppearance.BorderSize = 0;
- this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button4.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button4.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button4.Location = new System.Drawing.Point(389, 142);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(50, 63);
- this.button4.TabIndex = 61;
- this.button4.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button4.UseVisualStyleBackColor = false;
- this.button4.Click += new System.EventHandler(this.button4_Click);
- //
- // button3
- //
- this.button3.BackColor = System.Drawing.Color.Transparent;
- this.button3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button3.BackgroundImage")));
- this.button3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button3.FlatAppearance.BorderSize = 0;
- this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button3.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button3.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button3.Location = new System.Drawing.Point(338, 142);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(50, 63);
- this.button3.TabIndex = 60;
- this.button3.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button3.UseVisualStyleBackColor = false;
- this.button3.Click += new System.EventHandler(this.button3_Click);
- //
- // button2
- //
- this.button2.BackColor = System.Drawing.Color.Transparent;
- this.button2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button2.BackgroundImage")));
- this.button2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button2.FlatAppearance.BorderSize = 0;
- this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button2.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button2.ForeColor = System.Drawing.Color.Transparent;
- this.button2.Location = new System.Drawing.Point(287, 142);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(50, 63);
- this.button2.TabIndex = 59;
- this.button2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button2.UseVisualStyleBackColor = false;
- this.button2.Click += new System.EventHandler(this.button2_Click);
- //
- // button1
- //
- this.button1.BackColor = System.Drawing.Color.Transparent;
- this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button1.FlatAppearance.BorderSize = 0;
- this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button1.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button1.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button1.Location = new System.Drawing.Point(12, 12);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(101, 48);
- this.button1.TabIndex = 58;
- this.button1.Text = "BACK";
- this.button1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button1.UseVisualStyleBackColor = false;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.BackColor = System.Drawing.Color.Transparent;
- this.label2.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label2.ForeColor = System.Drawing.SystemColors.Control;
- this.label2.Location = new System.Drawing.Point(176, 24);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(374, 52);
- this.label2.TabIndex = 57;
- this.label2.Text = "DAYDREAM OASIS";
- //
- // button22
- //
- this.button22.BackColor = System.Drawing.Color.Transparent;
- this.button22.BackgroundImage = global::FunkeySelector.Properties.Resources._150;
- this.button22.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button22.FlatAppearance.BorderSize = 0;
- this.button22.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button22.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button22.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button22.Location = new System.Drawing.Point(642, 15);
- this.button22.Name = "button22";
- this.button22.Size = new System.Drawing.Size(26, 22);
- this.button22.TabIndex = 95;
- this.button22.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button22.UseVisualStyleBackColor = false;
- this.button22.Click += new System.EventHandler(this.button22_Click);
- this.button22.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button22_MouseDown);
- this.button22.MouseEnter += new System.EventHandler(this.button22_MouseEnter);
- this.button22.MouseLeave += new System.EventHandler(this.button22_MouseLeave);
- //
- // button23
- //
- this.button23.BackColor = System.Drawing.Color.Transparent;
- this.button23.BackgroundImage = global::FunkeySelector.Properties.Resources._246;
- this.button23.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button23.FlatAppearance.BorderSize = 0;
- this.button23.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button23.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button23.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button23.Location = new System.Drawing.Point(681, 17);
- this.button23.Name = "button23";
- this.button23.Size = new System.Drawing.Size(26, 20);
- this.button23.TabIndex = 94;
- this.button23.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button23.UseVisualStyleBackColor = false;
- this.button23.Click += new System.EventHandler(this.button23_Click);
- this.button23.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button23_MouseDown);
- this.button23.MouseEnter += new System.EventHandler(this.button23_MouseEnter);
- this.button23.MouseLeave += new System.EventHandler(this.button23_MouseLeave);
- //
- // Form9
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.Gold;
- this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
- this.ClientSize = new System.Drawing.Size(726, 566);
- this.Controls.Add(this.button22);
- this.Controls.Add(this.button23);
- this.Controls.Add(this.label5);
- this.Controls.Add(this.button11);
- this.Controls.Add(this.button12);
- this.Controls.Add(this.button13);
- this.Controls.Add(this.label4);
- this.Controls.Add(this.button8);
- this.Controls.Add(this.button9);
- this.Controls.Add(this.button10);
- this.Controls.Add(this.label3);
- this.Controls.Add(this.button5);
- this.Controls.Add(this.button6);
- this.Controls.Add(this.button7);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.button4);
- this.Controls.Add(this.button3);
- this.Controls.Add(this.button2);
- this.Controls.Add(this.button1);
- this.Controls.Add(this.label2);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.MaximizeBox = false;
- this.Name = "Form9";
- this.Text = "FunkeySelectorGUI";
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
-
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.Button button11;
- private System.Windows.Forms.Button button12;
- private System.Windows.Forms.Button button13;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.Button button8;
- private System.Windows.Forms.Button button9;
- private System.Windows.Forms.Button button10;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Button button5;
- private System.Windows.Forms.Button button6;
- private System.Windows.Forms.Button button7;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Button button4;
- private System.Windows.Forms.Button button3;
- private System.Windows.Forms.Button button2;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Button button22;
- private System.Windows.Forms.Button button23;
- }
-}
\ No newline at end of file
diff --git a/FunkeySelector/Form9.cs b/FunkeySelector/Form9.cs
deleted file mode 100644
index 811196c..0000000
--- a/FunkeySelector/Form9.cs
+++ /dev/null
@@ -1,185 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Data;
-using System.Diagnostics;
-using System.Drawing;
-using System.IO;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.Windows.Forms;
-
-namespace FunkeySelector
-{
- public partial class Form9 : Form
- {
- //
- //Initial setup
- //
-
- CustomFManager customF = new CustomFManager(); //Sets up CustomFManager.
- public Form9()
- {
- InitializeComponent();
- this.TransparencyKey = System.Drawing.Color.Gold; //Removes the gold sections to allow the UI to be rounded.
- }
-
- protected override void WndProc(ref Message m) //Allows the window to be dragged.
- {
- switch (m.Msg)
- {
- case 0x84:
- base.WndProc(ref m);
- if ((int)m.Result == 0x1)
- m.Result = (IntPtr)0x2;
- return;
- }
-
- base.WndProc(ref m);
- }
-
- //
- //End of initial startup
- //
-
- //
- //Button Clicks
- //
-
- //Back
- private void button1_Click(object sender, EventArgs e)
- {
- Form1 form1 = new Form1();
- this.Hide();
- form1.StartPosition = FormStartPosition.CenterParent;
- form1.ShowDialog(this);
- }
-
- //Dyer
- private void button2_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000A1");
- }
-
- //Dyer R
- private void button3_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000AE");
- }
-
- //Dyer VR
- private void button4_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000BE");
- }
-
- //Lucky
- private void button10_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000A2");
- }
-
- //Lucky R
- private void button9_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000AF");
- }
-
- //Lucky VR
- private void button8_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000BF");
- }
-
- //Tank
- private void button7_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000A3");
- }
-
- //Tank R
- private void button6_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000B3");
- }
-
- //Tank VR
- private void button5_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000C0");
- }
-
- //Berger
- private void button13_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000A9");
- }
-
- //Berger R
- private void button12_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000B6");
- }
-
- //Berger VR
- private void button11_Click(object sender, EventArgs e)
- {
- customF.setFunkey("000000C3");
- }
-
- //Close
- private void button23_Click(object sender, EventArgs e)
- {
- Application.Exit();
- }
-
- //Minimize
- private void button22_Click(object sender, EventArgs e)
- {
- this.WindowState = FormWindowState.Minimized;
- }
-
- //
- //End of Button Clicks
- //
-
- //
- //Button Images
- //
-
- //Minimize
- private void button22_MouseLeave(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._150;
- }
-
- private void button22_MouseEnter(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._154;
- }
- private void button22_MouseDown(object sender, MouseEventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._157;
- }
-
- //Close
- private void button23_MouseLeave(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._246;
- }
-
- private void button23_MouseEnter(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._248;
- }
- private void button23_MouseDown(object sender, MouseEventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._250;
- }
-
- //
- // End of Button Images
- //
- }
-}
diff --git a/FunkeySelector/FunkeySelector.csproj b/FunkeySelector/FunkeySelector.csproj
index 246dde7..1d5e4f7 100644
--- a/FunkeySelector/FunkeySelector.csproj
+++ b/FunkeySelector/FunkeySelector.csproj
@@ -45,6 +45,7 @@
+
@@ -57,6 +58,30 @@
+
+ Form
+
+
+ Component
+
+
+ UserControl
+
+
+ Helpbutton.cs
+
+
+ Component
+
+
+ Component
+
+
+ UserControl
+
+
+ CloseButton.cs
+
Form
@@ -64,136 +89,155 @@
Form1.cs
-
+
Form
-
- Form10.cs
+
+ HiddenRealm.cs
-
+
Form
-
- Form11.cs
+
+ ParadoxGreen.cs
-
+
Form
-
- Form12.cs
+
+ UnusedFunkeys.cs
-
+
Form
-
- Form13.cs
+
+ CustomFunkeys.cs
-
+
Form
-
- Form14.cs
+
+ Options.cs
-
+
Form
-
- Form15.cs
+
+ About.cs
-
+
Form
-
- Form2.cs
+
+ FunkeysTown.cs
-
+
Form
-
- Form3.cs
+
+ KelpyBasin.cs
-
+
Form
-
- Form4.cs
+
+ MagmaGorge.cs
-
+
Form
-
- Form5.cs
+
+ LaputtaStation.cs
-
+
Form
-
- Form6.cs
+
+ FunkikiIsland.cs
-
+
Form
-
- Form7.cs
+
+ RoyaltonRacingComplex.cs
-
+
Form
-
- Form8.cs
+
+ NightmareRift.cs
-
+
Form
-
- Form9.cs
+
+ DaydreamOasis.cs
+
+ UserControl
+
+
+ MinimizeButton.cs
+
+
+ UserControl
+
+
+ OKButton.cs
+
+
+ UserControl
+
+
+ OptionsButton.cs
+
Form1.cs
-
- Form10.cs
+
+ HiddenRealm.cs
-
- Form11.cs
+
+ ParadoxGreen.cs
-
- Form12.cs
+
+ UnusedFunkeys.cs
-
- Form13.cs
+
+ CustomFunkeys.cs
+ Designer
-
- Form14.cs
+
+ Options.cs
-
- Form15.cs
+
+ About.cs
-
- Form2.cs
+
+ FunkeysTown.cs
-
- Form3.cs
+
+ KelpyBasin.cs
-
- Form4.cs
+
+ MagmaGorge.cs
-
- Form5.cs
+
+ LaputtaStation.cs
-
- Form6.cs
+
+ FunkikiIsland.cs
-
- Form7.cs
+
+ RoyaltonRacingComplex.cs
-
- Form8.cs
+
+ NightmareRift.cs
-
- Form9.cs
+
+ DaydreamOasis.cs
ResXFileCodeGenerator
@@ -205,6 +249,21 @@
Resources.resx
True
+
+ CloseButton.cs
+
+
+ Helpbutton.cs
+
+
+ MinimizeButton.cs
+
+
+ OKButton.cs
+
+
+ OptionsButton.cs
+
SettingsSingleFileGenerator
Settings.Designer.cs
@@ -220,6 +279,9 @@
+
+
+
@@ -241,5 +303,6 @@
+
\ No newline at end of file
diff --git a/FunkeySelector/FunkeysTown.Designer.cs b/FunkeySelector/FunkeysTown.Designer.cs
new file mode 100644
index 0000000..0c7227c
--- /dev/null
+++ b/FunkeySelector/FunkeysTown.Designer.cs
@@ -0,0 +1,662 @@
+namespace FunkeySelector
+{
+ partial class FunkeysTown
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FunkeysTown));
+ this.FunkeysTownLabel = new System.Windows.Forms.Label();
+ this.backButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.Scratch = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.ScratchR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.ScratchVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.ScratchLabel = new System.Windows.Forms.Label();
+ this.DriftLabel = new System.Windows.Forms.Label();
+ this.DriftVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.DriftR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Drift = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.LotusLabel = new System.Windows.Forms.Label();
+ this.LotusVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.LotusR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Lotus = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.WaggsLabel = new System.Windows.Forms.Label();
+ this.WaggsVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.WaggsR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Waggs = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.DotLabel = new System.Windows.Forms.Label();
+ this.DotVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.DotR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Dot = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.HenchmanLabel = new System.Windows.Forms.Label();
+ this.Henchman = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.MasterLoxLabel = new System.Windows.Forms.Label();
+ this.MasterLox = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.MayorSaysoLabel = new System.Windows.Forms.Label();
+ this.MayorSayso = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.HollerLabel = new System.Windows.Forms.Label();
+ this.Holler = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.GabbyLabel = new System.Windows.Forms.Label();
+ this.Gabby = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.closeButton = new FunkeySelector.UserControls.CloseButton();
+ this.minimizeButton = new FunkeySelector.UserControls.MinimizeButton();
+ this.SuspendLayout();
+ //
+ // FunkeysTownLabel
+ //
+ this.FunkeysTownLabel.AutoSize = true;
+ this.FunkeysTownLabel.BackColor = System.Drawing.Color.Transparent;
+ this.FunkeysTownLabel.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.FunkeysTownLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.FunkeysTownLabel.Location = new System.Drawing.Point(199, 31);
+ this.FunkeysTownLabel.Name = "FunkeysTownLabel";
+ this.FunkeysTownLabel.Size = new System.Drawing.Size(319, 52);
+ this.FunkeysTownLabel.TabIndex = 2;
+ this.FunkeysTownLabel.Text = "FUNKEYSTOWN";
+ //
+ // backButton
+ //
+ this.backButton.BackColor = System.Drawing.Color.Transparent;
+ this.backButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.backButton.FlatAppearance.BorderSize = 0;
+ this.backButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.backButton.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.backButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.backButton.FormToOpen = "Form1";
+ this.backButton.KeepCurrentForm = false;
+ this.backButton.Location = new System.Drawing.Point(12, 12);
+ this.backButton.Name = "backButton";
+ this.backButton.Size = new System.Drawing.Size(101, 48);
+ this.backButton.TabIndex = 1;
+ this.backButton.Text = "BACK";
+ this.backButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.backButton.UseVisualStyleBackColor = false;
+ //
+ // Scratch
+ //
+ this.Scratch.BackColor = System.Drawing.Color.Transparent;
+ this.Scratch.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Scratch.BackgroundImage")));
+ this.Scratch.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Scratch.FlatAppearance.BorderSize = 0;
+ this.Scratch.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Scratch.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Scratch.ForeColor = System.Drawing.Color.Transparent;
+ this.Scratch.FunkeyID = "00000047";
+ this.Scratch.Location = new System.Drawing.Point(13, 168);
+ this.Scratch.Name = "Scratch";
+ this.Scratch.Size = new System.Drawing.Size(50, 63);
+ this.Scratch.TabIndex = 4;
+ this.Scratch.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Scratch.UseVisualStyleBackColor = false;
+ //
+ // ScratchR
+ //
+ this.ScratchR.BackColor = System.Drawing.Color.Transparent;
+ this.ScratchR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("ScratchR.BackgroundImage")));
+ this.ScratchR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.ScratchR.FlatAppearance.BorderSize = 0;
+ this.ScratchR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.ScratchR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.ScratchR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.ScratchR.FunkeyID = "00000048";
+ this.ScratchR.Location = new System.Drawing.Point(64, 168);
+ this.ScratchR.Name = "ScratchR";
+ this.ScratchR.Size = new System.Drawing.Size(50, 63);
+ this.ScratchR.TabIndex = 5;
+ this.ScratchR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.ScratchR.UseVisualStyleBackColor = false;
+ //
+ // ScratchVR
+ //
+ this.ScratchVR.BackColor = System.Drawing.Color.Transparent;
+ this.ScratchVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("ScratchVR.BackgroundImage")));
+ this.ScratchVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.ScratchVR.FlatAppearance.BorderSize = 0;
+ this.ScratchVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.ScratchVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.ScratchVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.ScratchVR.FunkeyID = "00000049";
+ this.ScratchVR.Location = new System.Drawing.Point(115, 168);
+ this.ScratchVR.Name = "ScratchVR";
+ this.ScratchVR.Size = new System.Drawing.Size(50, 63);
+ this.ScratchVR.TabIndex = 6;
+ this.ScratchVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.ScratchVR.UseVisualStyleBackColor = false;
+ //
+ // ScratchLabel
+ //
+ this.ScratchLabel.AutoSize = true;
+ this.ScratchLabel.BackColor = System.Drawing.Color.Transparent;
+ this.ScratchLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.ScratchLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.ScratchLabel.Location = new System.Drawing.Point(37, 130);
+ this.ScratchLabel.Name = "ScratchLabel";
+ this.ScratchLabel.Size = new System.Drawing.Size(113, 29);
+ this.ScratchLabel.TabIndex = 3;
+ this.ScratchLabel.Text = "SCRATCH";
+ //
+ // DriftLabel
+ //
+ this.DriftLabel.AutoSize = true;
+ this.DriftLabel.BackColor = System.Drawing.Color.Transparent;
+ this.DriftLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.DriftLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.DriftLabel.Location = new System.Drawing.Point(414, 130);
+ this.DriftLabel.Name = "DriftLabel";
+ this.DriftLabel.Size = new System.Drawing.Size(79, 29);
+ this.DriftLabel.TabIndex = 11;
+ this.DriftLabel.Text = "DRIFT";
+ //
+ // DriftVR
+ //
+ this.DriftVR.BackColor = System.Drawing.Color.Transparent;
+ this.DriftVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("DriftVR.BackgroundImage")));
+ this.DriftVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.DriftVR.FlatAppearance.BorderSize = 0;
+ this.DriftVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.DriftVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.DriftVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.DriftVR.FunkeyID = "000000C4";
+ this.DriftVR.Location = new System.Drawing.Point(477, 168);
+ this.DriftVR.Name = "DriftVR";
+ this.DriftVR.Size = new System.Drawing.Size(50, 63);
+ this.DriftVR.TabIndex = 14;
+ this.DriftVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.DriftVR.UseVisualStyleBackColor = false;
+ //
+ // DriftR
+ //
+ this.DriftR.BackColor = System.Drawing.Color.Transparent;
+ this.DriftR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("DriftR.BackgroundImage")));
+ this.DriftR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.DriftR.FlatAppearance.BorderSize = 0;
+ this.DriftR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.DriftR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.DriftR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.DriftR.FunkeyID = "000000B7";
+ this.DriftR.Location = new System.Drawing.Point(426, 168);
+ this.DriftR.Name = "DriftR";
+ this.DriftR.Size = new System.Drawing.Size(50, 63);
+ this.DriftR.TabIndex = 13;
+ this.DriftR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.DriftR.UseVisualStyleBackColor = false;
+ //
+ // Drift
+ //
+ this.Drift.BackColor = System.Drawing.Color.Transparent;
+ this.Drift.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Drift.BackgroundImage")));
+ this.Drift.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Drift.FlatAppearance.BorderSize = 0;
+ this.Drift.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Drift.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Drift.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Drift.FunkeyID = "000000AA";
+ this.Drift.Location = new System.Drawing.Point(375, 168);
+ this.Drift.Name = "Drift";
+ this.Drift.Size = new System.Drawing.Size(50, 63);
+ this.Drift.TabIndex = 12;
+ this.Drift.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Drift.UseVisualStyleBackColor = false;
+ //
+ // LotusLabel
+ //
+ this.LotusLabel.AutoSize = true;
+ this.LotusLabel.BackColor = System.Drawing.Color.Transparent;
+ this.LotusLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.LotusLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.LotusLabel.Location = new System.Drawing.Point(228, 130);
+ this.LotusLabel.Name = "LotusLabel";
+ this.LotusLabel.Size = new System.Drawing.Size(86, 29);
+ this.LotusLabel.TabIndex = 7;
+ this.LotusLabel.Text = "LOTUS";
+ //
+ // LotusVR
+ //
+ this.LotusVR.BackColor = System.Drawing.Color.Transparent;
+ this.LotusVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("LotusVR.BackgroundImage")));
+ this.LotusVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.LotusVR.FlatAppearance.BorderSize = 0;
+ this.LotusVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.LotusVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.LotusVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.LotusVR.FunkeyID = "0000004F";
+ this.LotusVR.Location = new System.Drawing.Point(297, 168);
+ this.LotusVR.Name = "LotusVR";
+ this.LotusVR.Size = new System.Drawing.Size(50, 63);
+ this.LotusVR.TabIndex = 10;
+ this.LotusVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.LotusVR.UseVisualStyleBackColor = false;
+ //
+ // LotusR
+ //
+ this.LotusR.BackColor = System.Drawing.Color.Transparent;
+ this.LotusR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("LotusR.BackgroundImage")));
+ this.LotusR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.LotusR.FlatAppearance.BorderSize = 0;
+ this.LotusR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.LotusR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.LotusR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.LotusR.FunkeyID = "0000004B";
+ this.LotusR.Location = new System.Drawing.Point(246, 168);
+ this.LotusR.Name = "LotusR";
+ this.LotusR.Size = new System.Drawing.Size(50, 63);
+ this.LotusR.TabIndex = 9;
+ this.LotusR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.LotusR.UseVisualStyleBackColor = false;
+ //
+ // Lotus
+ //
+ this.Lotus.BackColor = System.Drawing.Color.Transparent;
+ this.Lotus.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Lotus.BackgroundImage")));
+ this.Lotus.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Lotus.FlatAppearance.BorderSize = 0;
+ this.Lotus.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Lotus.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Lotus.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Lotus.FunkeyID = "0000004A";
+ this.Lotus.Location = new System.Drawing.Point(195, 168);
+ this.Lotus.Name = "Lotus";
+ this.Lotus.Size = new System.Drawing.Size(50, 63);
+ this.Lotus.TabIndex = 8;
+ this.Lotus.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Lotus.UseVisualStyleBackColor = false;
+ //
+ // WaggsLabel
+ //
+ this.WaggsLabel.AutoSize = true;
+ this.WaggsLabel.BackColor = System.Drawing.Color.Transparent;
+ this.WaggsLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.WaggsLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.WaggsLabel.Location = new System.Drawing.Point(577, 130);
+ this.WaggsLabel.Name = "WaggsLabel";
+ this.WaggsLabel.Size = new System.Drawing.Size(93, 29);
+ this.WaggsLabel.TabIndex = 15;
+ this.WaggsLabel.Text = "WAGGS";
+ //
+ // WaggsVR
+ //
+ this.WaggsVR.BackColor = System.Drawing.Color.Transparent;
+ this.WaggsVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("WaggsVR.BackgroundImage")));
+ this.WaggsVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.WaggsVR.FlatAppearance.BorderSize = 0;
+ this.WaggsVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.WaggsVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.WaggsVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.WaggsVR.FunkeyID = "000000C5";
+ this.WaggsVR.Location = new System.Drawing.Point(653, 168);
+ this.WaggsVR.Name = "WaggsVR";
+ this.WaggsVR.Size = new System.Drawing.Size(50, 63);
+ this.WaggsVR.TabIndex = 18;
+ this.WaggsVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.WaggsVR.UseVisualStyleBackColor = false;
+ //
+ // WaggsR
+ //
+ this.WaggsR.BackColor = System.Drawing.Color.Transparent;
+ this.WaggsR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("WaggsR.BackgroundImage")));
+ this.WaggsR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.WaggsR.FlatAppearance.BorderSize = 0;
+ this.WaggsR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.WaggsR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.WaggsR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.WaggsR.FunkeyID = "000000B8";
+ this.WaggsR.Location = new System.Drawing.Point(602, 168);
+ this.WaggsR.Name = "WaggsR";
+ this.WaggsR.Size = new System.Drawing.Size(50, 63);
+ this.WaggsR.TabIndex = 17;
+ this.WaggsR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.WaggsR.UseVisualStyleBackColor = false;
+ //
+ // Waggs
+ //
+ this.Waggs.BackColor = System.Drawing.Color.Transparent;
+ this.Waggs.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Waggs.BackgroundImage")));
+ this.Waggs.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Waggs.FlatAppearance.BorderSize = 0;
+ this.Waggs.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Waggs.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Waggs.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Waggs.FunkeyID = "000000AB";
+ this.Waggs.Location = new System.Drawing.Point(551, 168);
+ this.Waggs.Name = "Waggs";
+ this.Waggs.Size = new System.Drawing.Size(50, 63);
+ this.Waggs.TabIndex = 16;
+ this.Waggs.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Waggs.UseVisualStyleBackColor = false;
+ //
+ // DotLabel
+ //
+ this.DotLabel.AutoSize = true;
+ this.DotLabel.BackColor = System.Drawing.Color.Transparent;
+ this.DotLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.DotLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.DotLabel.Location = new System.Drawing.Point(336, 284);
+ this.DotLabel.Name = "DotLabel";
+ this.DotLabel.Size = new System.Drawing.Size(59, 29);
+ this.DotLabel.TabIndex = 21;
+ this.DotLabel.Text = "DOT";
+ //
+ // DotVR
+ //
+ this.DotVR.BackColor = System.Drawing.Color.Transparent;
+ this.DotVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("DotVR.BackgroundImage")));
+ this.DotVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.DotVR.FlatAppearance.BorderSize = 0;
+ this.DotVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.DotVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.DotVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.DotVR.FunkeyID = "00000101";
+ this.DotVR.Location = new System.Drawing.Point(389, 318);
+ this.DotVR.Name = "DotVR";
+ this.DotVR.Size = new System.Drawing.Size(50, 63);
+ this.DotVR.TabIndex = 24;
+ this.DotVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.DotVR.UseVisualStyleBackColor = false;
+ //
+ // DotR
+ //
+ this.DotR.BackColor = System.Drawing.Color.Transparent;
+ this.DotR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("DotR.BackgroundImage")));
+ this.DotR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.DotR.FlatAppearance.BorderSize = 0;
+ this.DotR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.DotR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.DotR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.DotR.FunkeyID = "000000FD";
+ this.DotR.Location = new System.Drawing.Point(338, 318);
+ this.DotR.Name = "DotR";
+ this.DotR.Size = new System.Drawing.Size(50, 63);
+ this.DotR.TabIndex = 23;
+ this.DotR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.DotR.UseVisualStyleBackColor = false;
+ //
+ // Dot
+ //
+ this.Dot.BackColor = System.Drawing.Color.Transparent;
+ this.Dot.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Dot.BackgroundImage")));
+ this.Dot.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Dot.FlatAppearance.BorderSize = 0;
+ this.Dot.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Dot.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Dot.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Dot.FunkeyID = "000000FC";
+ this.Dot.Location = new System.Drawing.Point(287, 318);
+ this.Dot.Name = "Dot";
+ this.Dot.Size = new System.Drawing.Size(50, 63);
+ this.Dot.TabIndex = 22;
+ this.Dot.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Dot.UseVisualStyleBackColor = false;
+ //
+ // HenchmanLabel
+ //
+ this.HenchmanLabel.AutoSize = true;
+ this.HenchmanLabel.BackColor = System.Drawing.Color.Transparent;
+ this.HenchmanLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.HenchmanLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.HenchmanLabel.Location = new System.Drawing.Point(89, 426);
+ this.HenchmanLabel.Name = "HenchmanLabel";
+ this.HenchmanLabel.Size = new System.Drawing.Size(140, 29);
+ this.HenchmanLabel.TabIndex = 27;
+ this.HenchmanLabel.Text = "HENCHMAN";
+ //
+ // Henchman
+ //
+ this.Henchman.BackColor = System.Drawing.Color.Transparent;
+ this.Henchman.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Henchman.BackgroundImage")));
+ this.Henchman.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Henchman.FlatAppearance.BorderSize = 0;
+ this.Henchman.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Henchman.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Henchman.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.Henchman.FunkeyID = "000000CF";
+ this.Henchman.Location = new System.Drawing.Point(132, 458);
+ this.Henchman.Name = "Henchman";
+ this.Henchman.Size = new System.Drawing.Size(50, 63);
+ this.Henchman.TabIndex = 28;
+ this.Henchman.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Henchman.UseVisualStyleBackColor = false;
+ //
+ // MasterLoxLabel
+ //
+ this.MasterLoxLabel.AutoSize = true;
+ this.MasterLoxLabel.BackColor = System.Drawing.Color.Transparent;
+ this.MasterLoxLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.MasterLoxLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.MasterLoxLabel.Location = new System.Drawing.Point(287, 426);
+ this.MasterLoxLabel.Name = "MasterLoxLabel";
+ this.MasterLoxLabel.Size = new System.Drawing.Size(153, 29);
+ this.MasterLoxLabel.TabIndex = 29;
+ this.MasterLoxLabel.Text = "MASTER LOX";
+ //
+ // MasterLox
+ //
+ this.MasterLox.BackColor = System.Drawing.Color.Transparent;
+ this.MasterLox.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("MasterLox.BackgroundImage")));
+ this.MasterLox.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.MasterLox.FlatAppearance.BorderSize = 0;
+ this.MasterLox.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.MasterLox.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.MasterLox.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.MasterLox.FunkeyID = "000000F7";
+ this.MasterLox.Location = new System.Drawing.Point(338, 458);
+ this.MasterLox.Name = "MasterLox";
+ this.MasterLox.Size = new System.Drawing.Size(50, 63);
+ this.MasterLox.TabIndex = 30;
+ this.MasterLox.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.MasterLox.UseVisualStyleBackColor = false;
+ //
+ // MayorSaysoLabel
+ //
+ this.MayorSaysoLabel.AutoSize = true;
+ this.MayorSaysoLabel.BackColor = System.Drawing.Color.Transparent;
+ this.MayorSaysoLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.MayorSaysoLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.MayorSaysoLabel.Location = new System.Drawing.Point(493, 426);
+ this.MayorSaysoLabel.Name = "MayorSaysoLabel";
+ this.MayorSaysoLabel.Size = new System.Drawing.Size(173, 29);
+ this.MayorSaysoLabel.TabIndex = 31;
+ this.MayorSaysoLabel.Text = "MAYOR SAYSO";
+ //
+ // MayorSayso
+ //
+ this.MayorSayso.BackColor = System.Drawing.Color.Transparent;
+ this.MayorSayso.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("MayorSayso.BackgroundImage")));
+ this.MayorSayso.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.MayorSayso.FlatAppearance.BorderSize = 0;
+ this.MayorSayso.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.MayorSayso.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.MayorSayso.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.MayorSayso.FunkeyID = "000000F8";
+ this.MayorSayso.Location = new System.Drawing.Point(551, 458);
+ this.MayorSayso.Name = "MayorSayso";
+ this.MayorSayso.Size = new System.Drawing.Size(50, 63);
+ this.MayorSayso.TabIndex = 32;
+ this.MayorSayso.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.MayorSayso.UseVisualStyleBackColor = false;
+ //
+ // HollerLabel
+ //
+ this.HollerLabel.AutoSize = true;
+ this.HollerLabel.BackColor = System.Drawing.Color.Transparent;
+ this.HollerLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.HollerLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.HollerLabel.Location = new System.Drawing.Point(110, 286);
+ this.HollerLabel.Name = "HollerLabel";
+ this.HollerLabel.Size = new System.Drawing.Size(96, 29);
+ this.HollerLabel.TabIndex = 19;
+ this.HollerLabel.Text = "HOLLER";
+ //
+ // Holler
+ //
+ this.Holler.BackColor = System.Drawing.Color.Transparent;
+ this.Holler.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Holler.BackgroundImage")));
+ this.Holler.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Holler.FlatAppearance.BorderSize = 0;
+ this.Holler.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Holler.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Holler.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.Holler.FunkeyID = "000000CD";
+ this.Holler.Location = new System.Drawing.Point(132, 318);
+ this.Holler.Name = "Holler";
+ this.Holler.Size = new System.Drawing.Size(50, 63);
+ this.Holler.TabIndex = 20;
+ this.Holler.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Holler.UseVisualStyleBackColor = false;
+ //
+ // GabbyLabel
+ //
+ this.GabbyLabel.AutoSize = true;
+ this.GabbyLabel.BackColor = System.Drawing.Color.Transparent;
+ this.GabbyLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.GabbyLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.GabbyLabel.Location = new System.Drawing.Point(534, 286);
+ this.GabbyLabel.Name = "GabbyLabel";
+ this.GabbyLabel.Size = new System.Drawing.Size(82, 29);
+ this.GabbyLabel.TabIndex = 25;
+ this.GabbyLabel.Text = "GABBY";
+ //
+ // Gabby
+ //
+ this.Gabby.BackColor = System.Drawing.Color.Transparent;
+ this.Gabby.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Gabby.BackgroundImage")));
+ this.Gabby.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Gabby.FlatAppearance.BorderSize = 0;
+ this.Gabby.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Gabby.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Gabby.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.Gabby.FunkeyID = "000000CB";
+ this.Gabby.Location = new System.Drawing.Point(551, 318);
+ this.Gabby.Name = "Gabby";
+ this.Gabby.Size = new System.Drawing.Size(50, 63);
+ this.Gabby.TabIndex = 26;
+ this.Gabby.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Gabby.UseVisualStyleBackColor = false;
+ //
+ // closeButton
+ //
+ this.closeButton.Location = new System.Drawing.Point(681, 18);
+ this.closeButton.Name = "closeButton";
+ this.closeButton.Size = new System.Drawing.Size(26, 20);
+ this.closeButton.TabIndex = 34;
+ //
+ // minimizeButton
+ //
+ this.minimizeButton.Location = new System.Drawing.Point(642, 16);
+ this.minimizeButton.Name = "minimizeButton";
+ this.minimizeButton.Size = new System.Drawing.Size(26, 22);
+ this.minimizeButton.TabIndex = 33;
+ //
+ // FunkeysTown
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.BackColor = System.Drawing.Color.Gold;
+ this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
+ this.ClientSize = new System.Drawing.Size(726, 566);
+ this.Controls.Add(this.minimizeButton);
+ this.Controls.Add(this.closeButton);
+ this.Controls.Add(this.GabbyLabel);
+ this.Controls.Add(this.Gabby);
+ this.Controls.Add(this.HollerLabel);
+ this.Controls.Add(this.Holler);
+ this.Controls.Add(this.MayorSaysoLabel);
+ this.Controls.Add(this.MayorSayso);
+ this.Controls.Add(this.MasterLoxLabel);
+ this.Controls.Add(this.MasterLox);
+ this.Controls.Add(this.HenchmanLabel);
+ this.Controls.Add(this.Henchman);
+ this.Controls.Add(this.DotLabel);
+ this.Controls.Add(this.DotVR);
+ this.Controls.Add(this.DotR);
+ this.Controls.Add(this.Dot);
+ this.Controls.Add(this.WaggsLabel);
+ this.Controls.Add(this.WaggsVR);
+ this.Controls.Add(this.WaggsR);
+ this.Controls.Add(this.Waggs);
+ this.Controls.Add(this.LotusLabel);
+ this.Controls.Add(this.LotusVR);
+ this.Controls.Add(this.LotusR);
+ this.Controls.Add(this.Lotus);
+ this.Controls.Add(this.DriftLabel);
+ this.Controls.Add(this.DriftVR);
+ this.Controls.Add(this.DriftR);
+ this.Controls.Add(this.Drift);
+ this.Controls.Add(this.ScratchLabel);
+ this.Controls.Add(this.ScratchVR);
+ this.Controls.Add(this.ScratchR);
+ this.Controls.Add(this.Scratch);
+ this.Controls.Add(this.backButton);
+ this.Controls.Add(this.FunkeysTownLabel);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
+ this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+ this.MaximizeBox = false;
+ this.Name = "FunkeysTown";
+ this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
+ this.Text = "FunkeySelectorGUI - Funkeystown";
+ this.TransparencyKey = System.Drawing.Color.Gold;
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Label FunkeysTownLabel;
+ private FunkeySelector.UserControls.ChangeFormButton backButton;
+ private FunkeySelector.UserControls.FunkeyChangerButton Scratch;
+ private FunkeySelector.UserControls.FunkeyChangerButton ScratchR;
+ private FunkeySelector.UserControls.FunkeyChangerButton ScratchVR;
+ private System.Windows.Forms.Label ScratchLabel;
+ private System.Windows.Forms.Label DriftLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton DriftVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton DriftR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Drift;
+ private System.Windows.Forms.Label LotusLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton LotusVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton LotusR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Lotus;
+ private System.Windows.Forms.Label WaggsLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton WaggsVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton WaggsR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Waggs;
+ private System.Windows.Forms.Label DotLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton DotVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton DotR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Dot;
+ private System.Windows.Forms.Label HenchmanLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton Henchman;
+ private System.Windows.Forms.Label MasterLoxLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton MasterLox;
+ private System.Windows.Forms.Label MayorSaysoLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton MayorSayso;
+ private System.Windows.Forms.Label HollerLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton Holler;
+ private System.Windows.Forms.Label GabbyLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton Gabby;
+ private UserControls.CloseButton closeButton;
+ private UserControls.MinimizeButton minimizeButton;
+ }
+}
\ No newline at end of file
diff --git a/FunkeySelector/FunkeysTown.cs b/FunkeySelector/FunkeysTown.cs
new file mode 100644
index 0000000..4c8c451
--- /dev/null
+++ b/FunkeySelector/FunkeysTown.cs
@@ -0,0 +1,23 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.IO;
+using System.Windows.Forms;
+using System.Diagnostics;
+using FunkeySelector.UserControls;
+
+namespace FunkeySelector
+{
+ public partial class FunkeysTown : BasicForm
+ {
+ public FunkeysTown()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/FunkeySelector/Form2.resx b/FunkeySelector/FunkeysTown.resx
similarity index 99%
rename from FunkeySelector/Form2.resx
rename to FunkeySelector/FunkeysTown.resx
index 731d3a9..80b7893 100644
--- a/FunkeySelector/Form2.resx
+++ b/FunkeySelector/FunkeysTown.resx
@@ -118,7 +118,7 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEKpJREFUaEPtmHdso/d5x9WM2rHrJpfz6e50dzoN7r33EilRErWlkyiJGkfteZrU
@@ -195,7 +195,7 @@
vrSykvV45iWP7JE9skf2sJaV9b+nHOeV/g1YwgAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEKpJREFUaEPtmHdso/d5x9WM2rHrJpfz6e50dzoN7r33EilRErWlkyiJGkfteZrU
@@ -272,7 +272,7 @@
vrSykvV45iWP7JE9skf2sJaV9b+nHOeV/g1YwgAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEKpJREFUaEPtmHdso/d5x9WM2rHrJpfz6e50dzoN7r33EilRErWlkyiJGkfteZrU
@@ -349,7 +349,7 @@
vrSykvV45iWP7JE9skf2sJaV9b+nHOeV/g1YwgAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEeFJREFUaEPtWXlsm/d5VtImtuNT90Xxvu9DpERKoi6KkkhRJw8dlEjdoiXKlnVY
@@ -431,7 +431,7 @@
/NRT0/oTp/3GpbMWwfpbCd+8gO/ZPbtn/18tIeG/APITVfCMVOnbAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEshJREFUaEPtWXl003W2T9ekTbM1a5NmT9ukSZNm677vK9i9dF/TfbWF0oJtsQiF
@@ -517,7 +517,7 @@
fevJOO3AEQbXe8st3MIt3MLNgsH4b06jQrzInD2WAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAE1lJREFUaEPtWXlUU/e2PmpFZgMJJGQOISEJIQxhHmSe5wAyz/MsIAKCIgqiqDhL
@@ -606,7 +606,7 @@
RU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEilJREFUaEPtmGdwXPd1xZlkPJOZJJ58cBJnkszEHsWypNiWJcuWZcqmxCqKEsUq
@@ -690,7 +690,7 @@
QmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAElBJREFUaEPtmHdYVWe2xg8qRSlSBLEilljjmGYymkQziTPjOHpTxozRRAVFQXqX
@@ -774,7 +774,7 @@
dzv0x7FIoaE85Ff8il/xK/7fQqH4T2LpH3y1WWYAAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEKFJREFUaEPtmHdUVXe2x1kxjiIq/dLh0quIYnTsmhg1sUWNOHZUpKNwRZoU6VV6
@@ -851,7 +851,7 @@
b+/tvf2/NRmZ/wRKG10/yXulOQAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEuVJREFUaEPtWXlYkweeZrfts93tdqaznbbzTGdnptVWra1azyoeKB54AGKr3Ec4
@@ -938,7 +938,7 @@
AAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEYBJREFUaEPtmWd0k+eSx9nd5Cx7702FNGzcC+6WZdmWbFmSrWL1LlmyLPeGGxgb
@@ -1019,7 +1019,7 @@
m08AAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEnxJREFUaEPtWWlUVGe2rZ7SyetOd+clnU4600sn0bTRJEqLOKKiCGoCoiDzPEMx
@@ -1104,7 +1104,7 @@
8OOAxfpvBEVDcRPc2hkAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAE0RJREFUaEPtWXdU1He2/9HLDDPMAFOZGRiYYYYpgBQRaQKCIoqVplQVbCAWUIo0
@@ -1192,7 +1192,7 @@
0+onxlfx32OmO50/voBf4RVe4RX+H4Bh/guBMDrgdpX7zQAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAE3hJREFUaEPtWWdQVVmXPeQgQRHJSpaMIhhBbTNi2/0pbW4lCU8kNTlJzghIFJAg
@@ -1281,7 +1281,7 @@
HWfK9Nk/H+Dv+I7v+P8Mxv4D/MSsC7vquGMAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEyZJREFUaEPtWXdQ1Pe2J6bYkLKwBdjKVrawu7DLsoAISFOKgBRFiiiCgAawgQEU
@@ -1369,7 +1369,7 @@
zenDeAAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEnpJREFUaEPtWAdQXIeZfpIFCJa2vbDssvQiQHRYyoIoK4QoKkggAcI00REgEFUg
@@ -1454,7 +1454,7 @@
Ygzz38rJKj+rnq9UAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAFOJJREFUaEPtmXl4lOW5xt9kMllm3/d9JpNksmeyBwhEApElAWlYCgqKDVhcUJBd
@@ -1549,7 +1549,7 @@
4Y/PFfwslzeDAdjT7IUfACDE/wCy7XGORG+FHQAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAFspJREFUaEPtWHdUVFe3v4lJLLFESeyKPQZbkI506U3aUIcOAwwMbYABBmaYoQxD
@@ -1652,7 +1652,7 @@
OCFImjsCnDjZXAlQEoV/Bvpmnn+e6/+jUdR/Ax7m6P5UhEo3AAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAG1ZJREFUaEPdendYVNe6/mKGOiJIkSIoYIdYUCxYEQHFUKQNIB0Ghl6kd5DekSbS
@@ -1775,7 +1775,7 @@
AAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAGsRJREFUaEPdendUlVe6/pYuVYqADbGBg8YSozHGiSWJsfdjV1CUKCBI7xy6SO9K
diff --git a/FunkeySelector/FunkikiIsland.Designer.cs b/FunkeySelector/FunkikiIsland.Designer.cs
new file mode 100644
index 0000000..c638e11
--- /dev/null
+++ b/FunkeySelector/FunkikiIsland.Designer.cs
@@ -0,0 +1,551 @@
+namespace FunkeySelector
+{
+ partial class FunkikiIsland
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FunkikiIsland));
+ this.WebleyLabel = new System.Windows.Forms.Label();
+ this.WebleyVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.WebleyR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Webley = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.NibbleLabel = new System.Windows.Forms.Label();
+ this.NibbleVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.NibbleR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Nibble = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.SolLabel = new System.Windows.Forms.Label();
+ this.SolVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.SolR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Sol = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.FlurryLabel = new System.Windows.Forms.Label();
+ this.FlurryVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.FlurryR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Flurry = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.backButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.FunkikiIslandLabel = new System.Windows.Forms.Label();
+ this.PineappleKingLabel = new System.Windows.Forms.Label();
+ this.PineappleKing = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.NativeLabel = new System.Windows.Forms.Label();
+ this.Native = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.JerryLabel = new System.Windows.Forms.Label();
+ this.Jerry = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.RewindLabel = new System.Windows.Forms.Label();
+ this.Rewind = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.minimizeButton = new FunkeySelector.UserControls.MinimizeButton();
+ this.closeButton = new FunkeySelector.UserControls.CloseButton();
+ this.SuspendLayout();
+ //
+ // WebleyLabel
+ //
+ this.WebleyLabel.AutoSize = true;
+ this.WebleyLabel.BackColor = System.Drawing.Color.Transparent;
+ this.WebleyLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.WebleyLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.WebleyLabel.Location = new System.Drawing.Point(325, 425);
+ this.WebleyLabel.Name = "WebleyLabel";
+ this.WebleyLabel.Size = new System.Drawing.Size(99, 29);
+ this.WebleyLabel.TabIndex = 23;
+ this.WebleyLabel.Text = "WEBLEY";
+ //
+ // WebleyVR
+ //
+ this.WebleyVR.BackColor = System.Drawing.Color.Transparent;
+ this.WebleyVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("WebleyVR.BackgroundImage")));
+ this.WebleyVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.WebleyVR.FlatAppearance.BorderSize = 0;
+ this.WebleyVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.WebleyVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.WebleyVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.WebleyVR.FunkeyID = "0000005E";
+ this.WebleyVR.Location = new System.Drawing.Point(401, 450);
+ this.WebleyVR.Name = "WebleyVR";
+ this.WebleyVR.Size = new System.Drawing.Size(50, 63);
+ this.WebleyVR.TabIndex = 26;
+ this.WebleyVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.WebleyVR.UseVisualStyleBackColor = false;
+ //
+ // WebleyR
+ //
+ this.WebleyR.BackColor = System.Drawing.Color.Transparent;
+ this.WebleyR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("WebleyR.BackgroundImage")));
+ this.WebleyR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.WebleyR.FlatAppearance.BorderSize = 0;
+ this.WebleyR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.WebleyR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.WebleyR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.WebleyR.FunkeyID = "0000005D";
+ this.WebleyR.Location = new System.Drawing.Point(350, 450);
+ this.WebleyR.Name = "WebleyR";
+ this.WebleyR.Size = new System.Drawing.Size(50, 63);
+ this.WebleyR.TabIndex = 25;
+ this.WebleyR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.WebleyR.UseVisualStyleBackColor = false;
+ //
+ // Webley
+ //
+ this.Webley.BackColor = System.Drawing.Color.Transparent;
+ this.Webley.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Webley.BackgroundImage")));
+ this.Webley.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Webley.FlatAppearance.BorderSize = 0;
+ this.Webley.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Webley.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Webley.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Webley.FunkeyID = "0000005C";
+ this.Webley.Location = new System.Drawing.Point(299, 450);
+ this.Webley.Name = "Webley";
+ this.Webley.Size = new System.Drawing.Size(50, 63);
+ this.Webley.TabIndex = 24;
+ this.Webley.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Webley.UseVisualStyleBackColor = false;
+ //
+ // NibbleLabel
+ //
+ this.NibbleLabel.AutoSize = true;
+ this.NibbleLabel.BackColor = System.Drawing.Color.Transparent;
+ this.NibbleLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.NibbleLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.NibbleLabel.Location = new System.Drawing.Point(332, 216);
+ this.NibbleLabel.Name = "NibbleLabel";
+ this.NibbleLabel.Size = new System.Drawing.Size(92, 29);
+ this.NibbleLabel.TabIndex = 11;
+ this.NibbleLabel.Text = "NIBBLE";
+ //
+ // NibbleVR
+ //
+ this.NibbleVR.BackColor = System.Drawing.Color.Transparent;
+ this.NibbleVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("NibbleVR.BackgroundImage")));
+ this.NibbleVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.NibbleVR.FlatAppearance.BorderSize = 0;
+ this.NibbleVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.NibbleVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.NibbleVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.NibbleVR.FunkeyID = "00000055";
+ this.NibbleVR.Location = new System.Drawing.Point(401, 245);
+ this.NibbleVR.Name = "NibbleVR";
+ this.NibbleVR.Size = new System.Drawing.Size(50, 63);
+ this.NibbleVR.TabIndex = 14;
+ this.NibbleVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.NibbleVR.UseVisualStyleBackColor = false;
+ //
+ // NibbleR
+ //
+ this.NibbleR.BackColor = System.Drawing.Color.Transparent;
+ this.NibbleR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("NibbleR.BackgroundImage")));
+ this.NibbleR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.NibbleR.FlatAppearance.BorderSize = 0;
+ this.NibbleR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.NibbleR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.NibbleR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.NibbleR.FunkeyID = "00000054";
+ this.NibbleR.Location = new System.Drawing.Point(350, 245);
+ this.NibbleR.Name = "NibbleR";
+ this.NibbleR.Size = new System.Drawing.Size(50, 63);
+ this.NibbleR.TabIndex = 13;
+ this.NibbleR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.NibbleR.UseVisualStyleBackColor = false;
+ //
+ // Nibble
+ //
+ this.Nibble.BackColor = System.Drawing.Color.Transparent;
+ this.Nibble.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Nibble.BackgroundImage")));
+ this.Nibble.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Nibble.FlatAppearance.BorderSize = 0;
+ this.Nibble.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Nibble.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Nibble.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Nibble.FunkeyID = "00000053";
+ this.Nibble.Location = new System.Drawing.Point(299, 245);
+ this.Nibble.Name = "Nibble";
+ this.Nibble.Size = new System.Drawing.Size(50, 63);
+ this.Nibble.TabIndex = 12;
+ this.Nibble.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Nibble.UseVisualStyleBackColor = false;
+ //
+ // SolLabel
+ //
+ this.SolLabel.AutoSize = true;
+ this.SolLabel.BackColor = System.Drawing.Color.Transparent;
+ this.SolLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SolLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.SolLabel.Location = new System.Drawing.Point(347, 321);
+ this.SolLabel.Name = "SolLabel";
+ this.SolLabel.Size = new System.Drawing.Size(57, 29);
+ this.SolLabel.TabIndex = 15;
+ this.SolLabel.Text = "SOL";
+ //
+ // SolVR
+ //
+ this.SolVR.BackColor = System.Drawing.Color.Transparent;
+ this.SolVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("SolVR.BackgroundImage")));
+ this.SolVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.SolVR.FlatAppearance.BorderSize = 0;
+ this.SolVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.SolVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SolVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.SolVR.FunkeyID = "0000005B";
+ this.SolVR.Location = new System.Drawing.Point(401, 348);
+ this.SolVR.Name = "SolVR";
+ this.SolVR.Size = new System.Drawing.Size(50, 63);
+ this.SolVR.TabIndex = 18;
+ this.SolVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.SolVR.UseVisualStyleBackColor = false;
+ //
+ // SolR
+ //
+ this.SolR.BackColor = System.Drawing.Color.Transparent;
+ this.SolR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("SolR.BackgroundImage")));
+ this.SolR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.SolR.FlatAppearance.BorderSize = 0;
+ this.SolR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.SolR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SolR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.SolR.FunkeyID = "0000005A";
+ this.SolR.Location = new System.Drawing.Point(350, 348);
+ this.SolR.Name = "SolR";
+ this.SolR.Size = new System.Drawing.Size(50, 63);
+ this.SolR.TabIndex = 17;
+ this.SolR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.SolR.UseVisualStyleBackColor = false;
+ //
+ // Sol
+ //
+ this.Sol.BackColor = System.Drawing.Color.Transparent;
+ this.Sol.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Sol.BackgroundImage")));
+ this.Sol.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Sol.FlatAppearance.BorderSize = 0;
+ this.Sol.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Sol.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Sol.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Sol.FunkeyID = "00000056";
+ this.Sol.Location = new System.Drawing.Point(299, 348);
+ this.Sol.Name = "Sol";
+ this.Sol.Size = new System.Drawing.Size(50, 63);
+ this.Sol.TabIndex = 16;
+ this.Sol.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Sol.UseVisualStyleBackColor = false;
+ //
+ // FlurryLabel
+ //
+ this.FlurryLabel.AutoSize = true;
+ this.FlurryLabel.BackColor = System.Drawing.Color.Transparent;
+ this.FlurryLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.FlurryLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.FlurryLabel.Location = new System.Drawing.Point(329, 110);
+ this.FlurryLabel.Name = "FlurryLabel";
+ this.FlurryLabel.Size = new System.Drawing.Size(92, 29);
+ this.FlurryLabel.TabIndex = 3;
+ this.FlurryLabel.Text = "FLURRY";
+ //
+ // FlurryVR
+ //
+ this.FlurryVR.BackColor = System.Drawing.Color.Transparent;
+ this.FlurryVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("FlurryVR.BackgroundImage")));
+ this.FlurryVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.FlurryVR.FlatAppearance.BorderSize = 0;
+ this.FlurryVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.FlurryVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.FlurryVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.FlurryVR.FunkeyID = "00000052";
+ this.FlurryVR.Location = new System.Drawing.Point(401, 138);
+ this.FlurryVR.Name = "FlurryVR";
+ this.FlurryVR.Size = new System.Drawing.Size(50, 63);
+ this.FlurryVR.TabIndex = 6;
+ this.FlurryVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.FlurryVR.UseVisualStyleBackColor = false;
+ //
+ // FlurryR
+ //
+ this.FlurryR.BackColor = System.Drawing.Color.Transparent;
+ this.FlurryR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("FlurryR.BackgroundImage")));
+ this.FlurryR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.FlurryR.FlatAppearance.BorderSize = 0;
+ this.FlurryR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.FlurryR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.FlurryR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.FlurryR.FunkeyID = "00000051";
+ this.FlurryR.Location = new System.Drawing.Point(350, 138);
+ this.FlurryR.Name = "FlurryR";
+ this.FlurryR.Size = new System.Drawing.Size(50, 63);
+ this.FlurryR.TabIndex = 5;
+ this.FlurryR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.FlurryR.UseVisualStyleBackColor = false;
+ //
+ // Flurry
+ //
+ this.Flurry.BackColor = System.Drawing.Color.Transparent;
+ this.Flurry.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Flurry.BackgroundImage")));
+ this.Flurry.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Flurry.FlatAppearance.BorderSize = 0;
+ this.Flurry.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Flurry.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Flurry.ForeColor = System.Drawing.Color.Transparent;
+ this.Flurry.FunkeyID = "00000050";
+ this.Flurry.Location = new System.Drawing.Point(299, 138);
+ this.Flurry.Name = "Flurry";
+ this.Flurry.Size = new System.Drawing.Size(50, 63);
+ this.Flurry.TabIndex = 4;
+ this.Flurry.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Flurry.UseVisualStyleBackColor = false;
+ //
+ // backButton
+ //
+ this.backButton.BackColor = System.Drawing.Color.Transparent;
+ this.backButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.backButton.FlatAppearance.BorderSize = 0;
+ this.backButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.backButton.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.backButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.backButton.FormToOpen = "Form1";
+ this.backButton.KeepCurrentForm = false;
+ this.backButton.Location = new System.Drawing.Point(12, 12);
+ this.backButton.Name = "backButton";
+ this.backButton.Size = new System.Drawing.Size(101, 48);
+ this.backButton.TabIndex = 1;
+ this.backButton.Text = "BACK";
+ this.backButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.backButton.UseVisualStyleBackColor = false;
+ //
+ // FunkikiIslandLabel
+ //
+ this.FunkikiIslandLabel.AutoSize = true;
+ this.FunkikiIslandLabel.BackColor = System.Drawing.Color.Transparent;
+ this.FunkikiIslandLabel.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.FunkikiIslandLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.FunkikiIslandLabel.Location = new System.Drawing.Point(205, 19);
+ this.FunkikiIslandLabel.Name = "FunkikiIslandLabel";
+ this.FunkikiIslandLabel.Size = new System.Drawing.Size(347, 52);
+ this.FunkikiIslandLabel.TabIndex = 2;
+ this.FunkikiIslandLabel.Text = "FUNKIKI ISLAND";
+ //
+ // PineappleKingLabel
+ //
+ this.PineappleKingLabel.AutoSize = true;
+ this.PineappleKingLabel.BackColor = System.Drawing.Color.Transparent;
+ this.PineappleKingLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.PineappleKingLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.PineappleKingLabel.Location = new System.Drawing.Point(41, 152);
+ this.PineappleKingLabel.Name = "PineappleKingLabel";
+ this.PineappleKingLabel.Size = new System.Drawing.Size(188, 29);
+ this.PineappleKingLabel.TabIndex = 7;
+ this.PineappleKingLabel.Text = "PINEAPPLE KING";
+ //
+ // PineappleKing
+ //
+ this.PineappleKing.BackColor = System.Drawing.Color.Transparent;
+ this.PineappleKing.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("PineappleKing.BackgroundImage")));
+ this.PineappleKing.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.PineappleKing.FlatAppearance.BorderSize = 0;
+ this.PineappleKing.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.PineappleKing.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.PineappleKing.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.PineappleKing.FunkeyID = "000000F2";
+ this.PineappleKing.Location = new System.Drawing.Point(108, 184);
+ this.PineappleKing.Name = "PineappleKing";
+ this.PineappleKing.Size = new System.Drawing.Size(50, 63);
+ this.PineappleKing.TabIndex = 8;
+ this.PineappleKing.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.PineappleKing.UseVisualStyleBackColor = false;
+ //
+ // NativeLabel
+ //
+ this.NativeLabel.AutoSize = true;
+ this.NativeLabel.BackColor = System.Drawing.Color.Transparent;
+ this.NativeLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.NativeLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.NativeLabel.Location = new System.Drawing.Point(87, 369);
+ this.NativeLabel.Name = "NativeLabel";
+ this.NativeLabel.Size = new System.Drawing.Size(97, 29);
+ this.NativeLabel.TabIndex = 19;
+ this.NativeLabel.Text = "NATIVE";
+ //
+ // Native
+ //
+ this.Native.BackColor = System.Drawing.Color.Transparent;
+ this.Native.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Native.BackgroundImage")));
+ this.Native.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Native.FlatAppearance.BorderSize = 0;
+ this.Native.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Native.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Native.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.Native.FunkeyID = "000000F6";
+ this.Native.Location = new System.Drawing.Point(108, 402);
+ this.Native.Name = "Native";
+ this.Native.Size = new System.Drawing.Size(50, 63);
+ this.Native.TabIndex = 20;
+ this.Native.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Native.UseVisualStyleBackColor = false;
+ //
+ // JerryLabel
+ //
+ this.JerryLabel.AutoSize = true;
+ this.JerryLabel.BackColor = System.Drawing.Color.Transparent;
+ this.JerryLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.JerryLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.JerryLabel.Location = new System.Drawing.Point(556, 157);
+ this.JerryLabel.Name = "JerryLabel";
+ this.JerryLabel.Size = new System.Drawing.Size(79, 29);
+ this.JerryLabel.TabIndex = 9;
+ this.JerryLabel.Text = "JERRY";
+ //
+ // Jerry
+ //
+ this.Jerry.BackColor = System.Drawing.Color.Transparent;
+ this.Jerry.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Jerry.BackgroundImage")));
+ this.Jerry.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Jerry.FlatAppearance.BorderSize = 0;
+ this.Jerry.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Jerry.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Jerry.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.Jerry.FunkeyID = "000000F1";
+ this.Jerry.Location = new System.Drawing.Point(570, 184);
+ this.Jerry.Name = "Jerry";
+ this.Jerry.Size = new System.Drawing.Size(50, 63);
+ this.Jerry.TabIndex = 10;
+ this.Jerry.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Jerry.UseVisualStyleBackColor = false;
+ //
+ // RewindLabel
+ //
+ this.RewindLabel.AutoSize = true;
+ this.RewindLabel.BackColor = System.Drawing.Color.Transparent;
+ this.RewindLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.RewindLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.RewindLabel.Location = new System.Drawing.Point(552, 371);
+ this.RewindLabel.Name = "RewindLabel";
+ this.RewindLabel.Size = new System.Drawing.Size(104, 29);
+ this.RewindLabel.TabIndex = 21;
+ this.RewindLabel.Text = "REWIND";
+ //
+ // Rewind
+ //
+ this.Rewind.BackColor = System.Drawing.Color.Transparent;
+ this.Rewind.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Rewind.BackgroundImage")));
+ this.Rewind.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Rewind.FlatAppearance.BorderSize = 0;
+ this.Rewind.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Rewind.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Rewind.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.Rewind.FunkeyID = "000000CC";
+ this.Rewind.Location = new System.Drawing.Point(576, 397);
+ this.Rewind.Name = "Rewind";
+ this.Rewind.Size = new System.Drawing.Size(50, 63);
+ this.Rewind.TabIndex = 22;
+ this.Rewind.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Rewind.UseVisualStyleBackColor = false;
+ //
+ // minimizeButton
+ //
+ this.minimizeButton.Location = new System.Drawing.Point(641, 15);
+ this.minimizeButton.Name = "minimizeButton";
+ this.minimizeButton.Size = new System.Drawing.Size(26, 22);
+ this.minimizeButton.TabIndex = 27;
+ //
+ // closeButton
+ //
+ this.closeButton.Location = new System.Drawing.Point(680, 17);
+ this.closeButton.Name = "closeButton";
+ this.closeButton.Size = new System.Drawing.Size(26, 20);
+ this.closeButton.TabIndex = 28;
+ //
+ // FunkikiIsland
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.BackColor = System.Drawing.Color.Gold;
+ this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
+ this.ClientSize = new System.Drawing.Size(726, 566);
+ this.Controls.Add(this.closeButton);
+ this.Controls.Add(this.minimizeButton);
+ this.Controls.Add(this.RewindLabel);
+ this.Controls.Add(this.Rewind);
+ this.Controls.Add(this.JerryLabel);
+ this.Controls.Add(this.Jerry);
+ this.Controls.Add(this.NativeLabel);
+ this.Controls.Add(this.Native);
+ this.Controls.Add(this.PineappleKingLabel);
+ this.Controls.Add(this.PineappleKing);
+ this.Controls.Add(this.WebleyLabel);
+ this.Controls.Add(this.WebleyVR);
+ this.Controls.Add(this.WebleyR);
+ this.Controls.Add(this.Webley);
+ this.Controls.Add(this.NibbleLabel);
+ this.Controls.Add(this.NibbleVR);
+ this.Controls.Add(this.NibbleR);
+ this.Controls.Add(this.Nibble);
+ this.Controls.Add(this.SolLabel);
+ this.Controls.Add(this.SolVR);
+ this.Controls.Add(this.SolR);
+ this.Controls.Add(this.Sol);
+ this.Controls.Add(this.FlurryLabel);
+ this.Controls.Add(this.FlurryVR);
+ this.Controls.Add(this.FlurryR);
+ this.Controls.Add(this.Flurry);
+ this.Controls.Add(this.backButton);
+ this.Controls.Add(this.FunkikiIslandLabel);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
+ this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+ this.MaximizeBox = false;
+ this.Name = "FunkikiIsland";
+ this.Text = "FunkeySelectorGUI - Funkiki Island";
+ this.TransparencyKey = System.Drawing.Color.Gold;
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Label WebleyLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton WebleyVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton WebleyR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Webley;
+ private System.Windows.Forms.Label NibbleLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton NibbleVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton NibbleR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Nibble;
+ private System.Windows.Forms.Label SolLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton SolVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton SolR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Sol;
+ private System.Windows.Forms.Label FlurryLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton FlurryVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton FlurryR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Flurry;
+ private FunkeySelector.UserControls.ChangeFormButton backButton;
+ private System.Windows.Forms.Label FunkikiIslandLabel;
+ private System.Windows.Forms.Label PineappleKingLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton PineappleKing;
+ private System.Windows.Forms.Label NativeLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton Native;
+ private System.Windows.Forms.Label JerryLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton Jerry;
+ private System.Windows.Forms.Label RewindLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton Rewind;
+ private UserControls.MinimizeButton minimizeButton;
+ private UserControls.CloseButton closeButton;
+ }
+}
\ No newline at end of file
diff --git a/FunkeySelector/FunkikiIsland.cs b/FunkeySelector/FunkikiIsland.cs
new file mode 100644
index 0000000..5dc6d77
--- /dev/null
+++ b/FunkeySelector/FunkikiIsland.cs
@@ -0,0 +1,23 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Diagnostics;
+using System.Drawing;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+using FunkeySelector.UserControls;
+
+namespace FunkeySelector
+{
+ public partial class FunkikiIsland : BasicForm
+ {
+ public FunkikiIsland()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/FunkeySelector/Form6.resx b/FunkeySelector/FunkikiIsland.resx
similarity index 99%
rename from FunkeySelector/Form6.resx
rename to FunkeySelector/FunkikiIsland.resx
index 1f5797f..b33825a 100644
--- a/FunkeySelector/Form6.resx
+++ b/FunkeySelector/FunkikiIsland.resx
@@ -118,7 +118,7 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEWdJREFUaEPtWXdU1deW5r1M1ps3meTFmNgLWChSBAGR3qsgRTqCgnSkK0U60jtI
@@ -198,7 +198,7 @@
5rkkNdVA3j/sq1k2NkJ/FXzlY3yMj/FPCyGhfwCCbW3riX1FVAAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEsxJREFUaEPtmXd0lOW2xnPvOS6Px4sgXXooCaQnk8ykl5mUSSaTOumk90oapAeS
@@ -284,7 +284,7 @@
wnjrVolO3/AinaCgx7Tv+A2/4Tf8y6Cj818V+m0rUCp5PwAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEAlJREFUaEPtWWlsY+d1VRo7i+OxPYvWGckaaaTRLkqUuFOkuEpcRFEktVEStVKi
@@ -358,7 +358,7 @@
pQAT0eIL2zF/2a8dLNVubAxLE2HZJUVa2hdTlzyzZ/bMPjVLS/sfY+W6N/18XZcAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEo1JREFUaEPtmHdY1VeexnlmJ8/M7kwyxphEpTcFRFREMCpq7GKiUWNBIki59N57
@@ -443,7 +443,7 @@
fi5bTh4LuT/LLvkdv+N3/I7/t5CT+096G/JOO0RROgAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEoZJREFUaEPtWGdYlGe65pzd7Cm7m8QW2jB9mBmGMjMMvXfp0ouAdJSOgoqAAoIi
@@ -528,7 +528,7 @@
yr8qv/Icz/Ecz/GsUFH5L7UfQ6Nx1eGBAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEqtJREFUaEPtmGdUVVmahpnu1WtCr66kVSpRQFBMKCoKUiIgEiTnnKMkCRIlShAU
@@ -614,7 +614,7 @@
kgAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAElFJREFUaEPtmHlQm/edxt/YiZPY8ZHYibFjzI1AQgKEJCRxS+ISN0igAyQOIUAC
@@ -698,7 +698,7 @@
fvON2+8lT7ot/JFP8Sk+xaf4fwtJ+i8OkimEnuSnIAAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEmBJREFUaEPtmHdcVve9x88DDzysh7333lNkyFJkiIgKylLZQxFQBFEZLhBEcaC4
@@ -782,7 +782,7 @@
Ra37+f9NjISImA1xShARSiTBYtaKi1wz0j3yEA/xEA/x/xaK8p/OMtNOM2qJMwAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEsFJREFUaEPtmHdUXWW6h3cqKSSUkIQSSCCQBEhCh1BDh0M5lNMoBzjAofdy6L3X
@@ -868,7 +868,7 @@
lui/8TM/8zM/8/8WQfhvXuLqNcbN1YAAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEj1JREFUaEPtmGdYlGe6x4c6lBlgGBh676BIESkiMIgKSBEQpHcQBMSKGsUWFXsv
@@ -952,7 +952,7 @@
QvGfS7vdhkjfcBoAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEo1JREFUaEPtmIl3k3W6xzlz78y9d8brFREEBQFFQbl63ZGtFAqFUqC00EL3JW3T
@@ -1037,7 +1037,7 @@
f1acPyzi3x2f+Bk/42f8jP+3mDbtfwEBe8/2GiYysQAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAElNJREFUaEPtWGdQm3l+Jrm7mZskV3a99hr3ChgXvK67rmB6EU2IIiSBkBBFQg1V
@@ -1121,7 +1121,7 @@
zszFw1741Wa6/13PJ97gDd7gDV4XXl7/AQzwCMZe3uopAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAE0JJREFUaEPtWGdUlFe7PTBDL9J7ERiqgFhQUUEp0osiVUABEZAiTWBg6E2a9N47
@@ -1209,7 +1209,7 @@
UOyR/3WE1oxDmZ/5Y8IXfMEX/H8GIf8JtLRQRWypDfYAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEDJJREFUaEPtmQdQVdfWx7fSBaQjUhWkcynSQToIgqKCCNIvXO69cL1UKWJDkN4R
@@ -1284,7 +1284,7 @@
CSai503f0++1D3zgAx/4fwYh/wSAa7VhAtsfBAAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAExBJREFUaEPtWAdQ1feW/tGLSBEEC0VBKYqCoqLG3vJ8L4n6TMxLNMkzGlM0sVdU
@@ -1371,7 +1371,7 @@
av47W5m3mxnUf8S0cIgpQY2JT/3rO7zDO7zDO/xfBmP/AJznTO2zk5efAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAGoNJREFUaEPdend4VOW2/preZzLJTDKT3nshJPSEQCAB6cUA0hGkJJAQSghSQpHe
diff --git a/FunkeySelector/HiddenRealm.Designer.cs b/FunkeySelector/HiddenRealm.Designer.cs
new file mode 100644
index 0000000..27fbf25
--- /dev/null
+++ b/FunkeySelector/HiddenRealm.Designer.cs
@@ -0,0 +1,561 @@
+namespace FunkeySelector
+{
+ partial class HiddenRealm
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HiddenRealm));
+ this.BombleLabel = new System.Windows.Forms.Label();
+ this.BombleVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.BombleR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Bomble = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.RajLabel = new System.Windows.Forms.Label();
+ this.RajVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.RajR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Raj = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.YangLabel = new System.Windows.Forms.Label();
+ this.YangVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.YangR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Yang = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.SingeLabel = new System.Windows.Forms.Label();
+ this.SingeVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.SingeR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Singe = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.backButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.HiddenRealmLabel = new System.Windows.Forms.Label();
+ this.MaulLabel = new System.Windows.Forms.Label();
+ this.MaulVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.MaulR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Maul = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.NectarLabel = new System.Windows.Forms.Label();
+ this.NectarVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.NectarR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Nectar = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.minimizeButton = new FunkeySelector.UserControls.MinimizeButton();
+ this.closeButton = new FunkeySelector.UserControls.CloseButton();
+ this.SuspendLayout();
+ //
+ // BombleLabel
+ //
+ this.BombleLabel.AutoSize = true;
+ this.BombleLabel.BackColor = System.Drawing.Color.Transparent;
+ this.BombleLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.BombleLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.BombleLabel.Location = new System.Drawing.Point(314, 360);
+ this.BombleLabel.Name = "BombleLabel";
+ this.BombleLabel.Size = new System.Drawing.Size(100, 29);
+ this.BombleLabel.TabIndex = 15;
+ this.BombleLabel.Text = "BOMBLE";
+ //
+ // BombleVR
+ //
+ this.BombleVR.BackColor = System.Drawing.Color.Transparent;
+ this.BombleVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("BombleVR.BackgroundImage")));
+ this.BombleVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.BombleVR.FlatAppearance.BorderSize = 0;
+ this.BombleVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.BombleVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.BombleVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.BombleVR.FunkeyID = "00000110";
+ this.BombleVR.Location = new System.Drawing.Point(389, 386);
+ this.BombleVR.Name = "BombleVR";
+ this.BombleVR.Size = new System.Drawing.Size(50, 63);
+ this.BombleVR.TabIndex = 18;
+ this.BombleVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.BombleVR.UseVisualStyleBackColor = false;
+ //
+ // BombleR
+ //
+ this.BombleR.BackColor = System.Drawing.Color.Transparent;
+ this.BombleR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("BombleR.BackgroundImage")));
+ this.BombleR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.BombleR.FlatAppearance.BorderSize = 0;
+ this.BombleR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.BombleR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.BombleR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.BombleR.FunkeyID = "0000010C";
+ this.BombleR.Location = new System.Drawing.Point(338, 385);
+ this.BombleR.Name = "BombleR";
+ this.BombleR.Size = new System.Drawing.Size(50, 63);
+ this.BombleR.TabIndex = 17;
+ this.BombleR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.BombleR.UseVisualStyleBackColor = false;
+ //
+ // Bomble
+ //
+ this.Bomble.BackColor = System.Drawing.Color.Transparent;
+ this.Bomble.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Bomble.BackgroundImage")));
+ this.Bomble.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Bomble.FlatAppearance.BorderSize = 0;
+ this.Bomble.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Bomble.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Bomble.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Bomble.FunkeyID = "00000105";
+ this.Bomble.Location = new System.Drawing.Point(287, 385);
+ this.Bomble.Name = "Bomble";
+ this.Bomble.Size = new System.Drawing.Size(50, 63);
+ this.Bomble.TabIndex = 16;
+ this.Bomble.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Bomble.UseVisualStyleBackColor = false;
+ //
+ // RajLabel
+ //
+ this.RajLabel.AutoSize = true;
+ this.RajLabel.BackColor = System.Drawing.Color.Transparent;
+ this.RajLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.RajLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.RajLabel.Location = new System.Drawing.Point(333, 168);
+ this.RajLabel.Name = "RajLabel";
+ this.RajLabel.Size = new System.Drawing.Size(55, 29);
+ this.RajLabel.TabIndex = 7;
+ this.RajLabel.Text = "RAJ";
+ //
+ // RajVR
+ //
+ this.RajVR.BackColor = System.Drawing.Color.Transparent;
+ this.RajVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("RajVR.BackgroundImage")));
+ this.RajVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.RajVR.FlatAppearance.BorderSize = 0;
+ this.RajVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.RajVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.RajVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.RajVR.FunkeyID = "0000010E";
+ this.RajVR.Location = new System.Drawing.Point(389, 192);
+ this.RajVR.Name = "RajVR";
+ this.RajVR.Size = new System.Drawing.Size(50, 63);
+ this.RajVR.TabIndex = 10;
+ this.RajVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.RajVR.UseVisualStyleBackColor = false;
+ //
+ // RajR
+ //
+ this.RajR.BackColor = System.Drawing.Color.Transparent;
+ this.RajR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("RajR.BackgroundImage")));
+ this.RajR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.RajR.FlatAppearance.BorderSize = 0;
+ this.RajR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.RajR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.RajR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.RajR.FunkeyID = "00000107";
+ this.RajR.Location = new System.Drawing.Point(338, 192);
+ this.RajR.Name = "RajR";
+ this.RajR.Size = new System.Drawing.Size(50, 63);
+ this.RajR.TabIndex = 9;
+ this.RajR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.RajR.UseVisualStyleBackColor = false;
+ //
+ // Raj
+ //
+ this.Raj.BackColor = System.Drawing.Color.Transparent;
+ this.Raj.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Raj.BackgroundImage")));
+ this.Raj.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Raj.FlatAppearance.BorderSize = 0;
+ this.Raj.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Raj.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Raj.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Raj.FunkeyID = "00000103";
+ this.Raj.Location = new System.Drawing.Point(287, 192);
+ this.Raj.Name = "Raj";
+ this.Raj.Size = new System.Drawing.Size(50, 63);
+ this.Raj.TabIndex = 8;
+ this.Raj.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Raj.UseVisualStyleBackColor = false;
+ //
+ // YangLabel
+ //
+ this.YangLabel.AutoSize = true;
+ this.YangLabel.BackColor = System.Drawing.Color.Transparent;
+ this.YangLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.YangLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.YangLabel.Location = new System.Drawing.Point(326, 264);
+ this.YangLabel.Name = "YangLabel";
+ this.YangLabel.Size = new System.Drawing.Size(72, 29);
+ this.YangLabel.TabIndex = 11;
+ this.YangLabel.Text = "YANG";
+ //
+ // YangVR
+ //
+ this.YangVR.BackColor = System.Drawing.Color.Transparent;
+ this.YangVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("YangVR.BackgroundImage")));
+ this.YangVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.YangVR.FlatAppearance.BorderSize = 0;
+ this.YangVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.YangVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.YangVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.YangVR.FunkeyID = "0000010F";
+ this.YangVR.Location = new System.Drawing.Point(389, 289);
+ this.YangVR.Name = "YangVR";
+ this.YangVR.Size = new System.Drawing.Size(50, 63);
+ this.YangVR.TabIndex = 14;
+ this.YangVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.YangVR.UseVisualStyleBackColor = false;
+ //
+ // YangR
+ //
+ this.YangR.BackColor = System.Drawing.Color.Transparent;
+ this.YangR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("YangR.BackgroundImage")));
+ this.YangR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.YangR.FlatAppearance.BorderSize = 0;
+ this.YangR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.YangR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.YangR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.YangR.FunkeyID = "00000108";
+ this.YangR.Location = new System.Drawing.Point(338, 289);
+ this.YangR.Name = "YangR";
+ this.YangR.Size = new System.Drawing.Size(50, 63);
+ this.YangR.TabIndex = 13;
+ this.YangR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.YangR.UseVisualStyleBackColor = false;
+ //
+ // Yang
+ //
+ this.Yang.BackColor = System.Drawing.Color.Transparent;
+ this.Yang.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Yang.BackgroundImage")));
+ this.Yang.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Yang.FlatAppearance.BorderSize = 0;
+ this.Yang.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Yang.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Yang.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Yang.FunkeyID = "00000104";
+ this.Yang.Location = new System.Drawing.Point(287, 289);
+ this.Yang.Name = "Yang";
+ this.Yang.Size = new System.Drawing.Size(50, 63);
+ this.Yang.TabIndex = 12;
+ this.Yang.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Yang.UseVisualStyleBackColor = false;
+ //
+ // SingeLabel
+ //
+ this.SingeLabel.AutoSize = true;
+ this.SingeLabel.BackColor = System.Drawing.Color.Transparent;
+ this.SingeLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SingeLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.SingeLabel.Location = new System.Drawing.Point(322, 72);
+ this.SingeLabel.Name = "SingeLabel";
+ this.SingeLabel.Size = new System.Drawing.Size(83, 29);
+ this.SingeLabel.TabIndex = 3;
+ this.SingeLabel.Text = "SINGE";
+ //
+ // SingeVR
+ //
+ this.SingeVR.BackColor = System.Drawing.Color.Transparent;
+ this.SingeVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("SingeVR.BackgroundImage")));
+ this.SingeVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.SingeVR.FlatAppearance.BorderSize = 0;
+ this.SingeVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.SingeVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SingeVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.SingeVR.FunkeyID = "0000010D";
+ this.SingeVR.Location = new System.Drawing.Point(389, 98);
+ this.SingeVR.Name = "SingeVR";
+ this.SingeVR.Size = new System.Drawing.Size(50, 63);
+ this.SingeVR.TabIndex = 6;
+ this.SingeVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.SingeVR.UseVisualStyleBackColor = false;
+ //
+ // SingeR
+ //
+ this.SingeR.BackColor = System.Drawing.Color.Transparent;
+ this.SingeR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("SingeR.BackgroundImage")));
+ this.SingeR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.SingeR.FlatAppearance.BorderSize = 0;
+ this.SingeR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.SingeR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SingeR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.SingeR.FunkeyID = "00000106";
+ this.SingeR.Location = new System.Drawing.Point(338, 98);
+ this.SingeR.Name = "SingeR";
+ this.SingeR.Size = new System.Drawing.Size(50, 63);
+ this.SingeR.TabIndex = 5;
+ this.SingeR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.SingeR.UseVisualStyleBackColor = false;
+ //
+ // Singe
+ //
+ this.Singe.BackColor = System.Drawing.Color.Transparent;
+ this.Singe.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Singe.BackgroundImage")));
+ this.Singe.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Singe.FlatAppearance.BorderSize = 0;
+ this.Singe.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Singe.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Singe.ForeColor = System.Drawing.Color.Transparent;
+ this.Singe.FunkeyID = "00000102";
+ this.Singe.Location = new System.Drawing.Point(287, 98);
+ this.Singe.Name = "Singe";
+ this.Singe.Size = new System.Drawing.Size(50, 63);
+ this.Singe.TabIndex = 4;
+ this.Singe.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Singe.UseVisualStyleBackColor = false;
+ //
+ // backButton
+ //
+ this.backButton.BackColor = System.Drawing.Color.Transparent;
+ this.backButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.backButton.FlatAppearance.BorderSize = 0;
+ this.backButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.backButton.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.backButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.backButton.FormToOpen = "Form1";
+ this.backButton.KeepCurrentForm = false;
+ this.backButton.Location = new System.Drawing.Point(12, 9);
+ this.backButton.Name = "backButton";
+ this.backButton.Size = new System.Drawing.Size(101, 48);
+ this.backButton.TabIndex = 1;
+ this.backButton.Text = "BACK";
+ this.backButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.backButton.UseVisualStyleBackColor = false;
+ //
+ // HiddenRealmLabel
+ //
+ this.HiddenRealmLabel.AutoSize = true;
+ this.HiddenRealmLabel.BackColor = System.Drawing.Color.Transparent;
+ this.HiddenRealmLabel.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.HiddenRealmLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.HiddenRealmLabel.Location = new System.Drawing.Point(225, 9);
+ this.HiddenRealmLabel.Name = "HiddenRealmLabel";
+ this.HiddenRealmLabel.Size = new System.Drawing.Size(314, 52);
+ this.HiddenRealmLabel.TabIndex = 2;
+ this.HiddenRealmLabel.Text = "HIDDEN REALM";
+ //
+ // MaulLabel
+ //
+ this.MaulLabel.AutoSize = true;
+ this.MaulLabel.BackColor = System.Drawing.Color.Transparent;
+ this.MaulLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.MaulLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.MaulLabel.Location = new System.Drawing.Point(224, 456);
+ this.MaulLabel.Name = "MaulLabel";
+ this.MaulLabel.Size = new System.Drawing.Size(74, 29);
+ this.MaulLabel.TabIndex = 19;
+ this.MaulLabel.Text = "MAUL";
+ //
+ // MaulVR
+ //
+ this.MaulVR.BackColor = System.Drawing.Color.Transparent;
+ this.MaulVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("MaulVR.BackgroundImage")));
+ this.MaulVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.MaulVR.FlatAppearance.BorderSize = 0;
+ this.MaulVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.MaulVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.MaulVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.MaulVR.FunkeyID = "00000125";
+ this.MaulVR.Location = new System.Drawing.Point(285, 481);
+ this.MaulVR.Name = "MaulVR";
+ this.MaulVR.Size = new System.Drawing.Size(50, 63);
+ this.MaulVR.TabIndex = 22;
+ this.MaulVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.MaulVR.UseVisualStyleBackColor = false;
+ //
+ // MaulR
+ //
+ this.MaulR.BackColor = System.Drawing.Color.Transparent;
+ this.MaulR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("MaulR.BackgroundImage")));
+ this.MaulR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.MaulR.FlatAppearance.BorderSize = 0;
+ this.MaulR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.MaulR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.MaulR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.MaulR.FunkeyID = "0000011E";
+ this.MaulR.Location = new System.Drawing.Point(234, 481);
+ this.MaulR.Name = "MaulR";
+ this.MaulR.Size = new System.Drawing.Size(50, 63);
+ this.MaulR.TabIndex = 21;
+ this.MaulR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.MaulR.UseVisualStyleBackColor = false;
+ //
+ // Maul
+ //
+ this.Maul.BackColor = System.Drawing.Color.Transparent;
+ this.Maul.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Maul.BackgroundImage")));
+ this.Maul.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Maul.FlatAppearance.BorderSize = 0;
+ this.Maul.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Maul.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Maul.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Maul.FunkeyID = "0000011A";
+ this.Maul.Location = new System.Drawing.Point(183, 481);
+ this.Maul.Name = "Maul";
+ this.Maul.Size = new System.Drawing.Size(50, 63);
+ this.Maul.TabIndex = 20;
+ this.Maul.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Maul.UseVisualStyleBackColor = false;
+ //
+ // NectarLabel
+ //
+ this.NectarLabel.AutoSize = true;
+ this.NectarLabel.BackColor = System.Drawing.Color.Transparent;
+ this.NectarLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.NectarLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.NectarLabel.Location = new System.Drawing.Point(411, 458);
+ this.NectarLabel.Name = "NectarLabel";
+ this.NectarLabel.Size = new System.Drawing.Size(98, 29);
+ this.NectarLabel.TabIndex = 23;
+ this.NectarLabel.Text = "NECTAR";
+ //
+ // NectarVR
+ //
+ this.NectarVR.BackColor = System.Drawing.Color.Transparent;
+ this.NectarVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("NectarVR.BackgroundImage")));
+ this.NectarVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.NectarVR.FlatAppearance.BorderSize = 0;
+ this.NectarVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.NectarVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.NectarVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.NectarVR.FunkeyID = "00000124";
+ this.NectarVR.Location = new System.Drawing.Point(484, 481);
+ this.NectarVR.Name = "NectarVR";
+ this.NectarVR.Size = new System.Drawing.Size(50, 63);
+ this.NectarVR.TabIndex = 26;
+ this.NectarVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.NectarVR.UseVisualStyleBackColor = false;
+ //
+ // NectarR
+ //
+ this.NectarR.BackColor = System.Drawing.Color.Transparent;
+ this.NectarR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("NectarR.BackgroundImage")));
+ this.NectarR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.NectarR.FlatAppearance.BorderSize = 0;
+ this.NectarR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.NectarR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.NectarR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.NectarR.FunkeyID = "0000011D";
+ this.NectarR.Location = new System.Drawing.Point(433, 481);
+ this.NectarR.Name = "NectarR";
+ this.NectarR.Size = new System.Drawing.Size(50, 63);
+ this.NectarR.TabIndex = 25;
+ this.NectarR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.NectarR.UseVisualStyleBackColor = false;
+ //
+ // Nectar
+ //
+ this.Nectar.BackColor = System.Drawing.Color.Transparent;
+ this.Nectar.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Nectar.BackgroundImage")));
+ this.Nectar.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Nectar.FlatAppearance.BorderSize = 0;
+ this.Nectar.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Nectar.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Nectar.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Nectar.FunkeyID = "00000119";
+ this.Nectar.Location = new System.Drawing.Point(382, 481);
+ this.Nectar.Name = "Nectar";
+ this.Nectar.Size = new System.Drawing.Size(50, 63);
+ this.Nectar.TabIndex = 24;
+ this.Nectar.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Nectar.UseVisualStyleBackColor = false;
+ //
+ // minimizeButton
+ //
+ this.minimizeButton.Location = new System.Drawing.Point(641, 15);
+ this.minimizeButton.Name = "minimizeButton";
+ this.minimizeButton.Size = new System.Drawing.Size(26, 22);
+ this.minimizeButton.TabIndex = 27;
+ //
+ // closeButton
+ //
+ this.closeButton.Location = new System.Drawing.Point(680, 17);
+ this.closeButton.Name = "closeButton";
+ this.closeButton.Size = new System.Drawing.Size(26, 20);
+ this.closeButton.TabIndex = 28;
+ //
+ // HiddenRealm
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.BackColor = System.Drawing.Color.Gold;
+ this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
+ this.ClientSize = new System.Drawing.Size(726, 566);
+ this.Controls.Add(this.closeButton);
+ this.Controls.Add(this.minimizeButton);
+ this.Controls.Add(this.NectarLabel);
+ this.Controls.Add(this.NectarVR);
+ this.Controls.Add(this.NectarR);
+ this.Controls.Add(this.Nectar);
+ this.Controls.Add(this.MaulLabel);
+ this.Controls.Add(this.MaulVR);
+ this.Controls.Add(this.MaulR);
+ this.Controls.Add(this.Maul);
+ this.Controls.Add(this.BombleLabel);
+ this.Controls.Add(this.BombleVR);
+ this.Controls.Add(this.BombleR);
+ this.Controls.Add(this.Bomble);
+ this.Controls.Add(this.RajLabel);
+ this.Controls.Add(this.RajVR);
+ this.Controls.Add(this.RajR);
+ this.Controls.Add(this.Raj);
+ this.Controls.Add(this.YangLabel);
+ this.Controls.Add(this.YangVR);
+ this.Controls.Add(this.YangR);
+ this.Controls.Add(this.Yang);
+ this.Controls.Add(this.SingeLabel);
+ this.Controls.Add(this.SingeVR);
+ this.Controls.Add(this.SingeR);
+ this.Controls.Add(this.Singe);
+ this.Controls.Add(this.backButton);
+ this.Controls.Add(this.HiddenRealmLabel);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
+ this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+ this.MaximizeBox = false;
+ this.Name = "HiddenRealm";
+ this.Text = "FunkeySelectorGUI - Hidden Realm";
+ this.TransparencyKey = System.Drawing.Color.Gold;
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Label BombleLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton BombleVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton BombleR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Bomble;
+ private System.Windows.Forms.Label RajLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton RajVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton RajR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Raj;
+ private System.Windows.Forms.Label YangLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton YangVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton YangR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Yang;
+ private System.Windows.Forms.Label SingeLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton SingeVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton SingeR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Singe;
+ private FunkeySelector.UserControls.ChangeFormButton backButton;
+ private System.Windows.Forms.Label HiddenRealmLabel;
+ private System.Windows.Forms.Label MaulLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton MaulVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton MaulR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Maul;
+ private System.Windows.Forms.Label NectarLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton NectarVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton NectarR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Nectar;
+ private UserControls.MinimizeButton minimizeButton;
+ private UserControls.CloseButton closeButton;
+ }
+}
\ No newline at end of file
diff --git a/FunkeySelector/HiddenRealm.cs b/FunkeySelector/HiddenRealm.cs
new file mode 100644
index 0000000..b1b1585
--- /dev/null
+++ b/FunkeySelector/HiddenRealm.cs
@@ -0,0 +1,23 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Diagnostics;
+using System.Drawing;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+using FunkeySelector.UserControls;
+
+namespace FunkeySelector
+{
+ public partial class HiddenRealm : BasicForm
+ {
+ public HiddenRealm()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/FunkeySelector/Form10.resx b/FunkeySelector/HiddenRealm.resx
similarity index 99%
rename from FunkeySelector/Form10.resx
rename to FunkeySelector/HiddenRealm.resx
index d5ff875..eb35ef8 100644
--- a/FunkeySelector/Form10.resx
+++ b/FunkeySelector/HiddenRealm.resx
@@ -118,7 +118,7 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEiNJREFUaEPtWXlw3Hd13xbqYOpE12q1933f931qL61Wq5V2tdJKq9Xqvm/rsuUj
@@ -201,7 +201,7 @@
+ZMH1JlZTratJK3E+/nF/MkP2yuVuvraW+7jPu7jPv7fgsH4d4UaWgcs7EseAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEnxJREFUaEPtWXlUk3e65k5Pz9y5nekyVNyoCAIKLoALiCBgVASVsK8hGMJOCEtY
@@ -286,7 +286,7 @@
/n0wMPhv7VAYMBj7I5kAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAE7pJREFUaEPtWXdUk2m+ZvfO6s66s3PHsSuICKLoUBSQIh0B6R2SEAgtgSS0QAgk
@@ -376,7 +376,7 @@
ZFrqpx7q9kL9l/TvH8Cv8Aqv8N+gofEftA3ZpD9kT2AAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAFHtJREFUaEPtWWdYlFe3HfPdGKN+auwFOzaKCEgTAel9KMMwtGmUAYY+9M5Qhw5S
@@ -469,7 +469,7 @@
ML5WUmIMn63NGKemxhgzdChj2OTJjAHyz95P+Rt/498cDMZ/AshnUEFyANJ7AAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAFD5JREFUaEPtWXds3Od5/m7vzeORxzvuJQ5xipsUtyhuiiIp7r03Ke4t7iXurUFR
@@ -561,7 +561,7 @@
7r9SgFrm4Q/+OUzLspg1O8cMJEJV7CoTf/ja5/gcf+1g7L8Ap+y47WL7gsEAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAFKZJREFUaEPtV3lQ1Fe6vexrgzSryCY0u2yyqyDKIoLIvgk0TbM3skOzNs3S0DTd
@@ -655,7 +655,7 @@
IzEW2hNdofDfUE5/wS/4d4CQvwNLp2Dsgpas/QAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEk9JREFUaEPtWXdYVNe3HZU+zAxMYXqfoQuoYBdEBBuiiAgoKDaMDUVUihoFCxrU
@@ -739,7 +739,7 @@
npa+IaAD8F//4vQRH/ER/xB4vP8A1714KpjFPuwAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAExVJREFUaEPtWXl01Od1/aTR7Pu+7yPNqhntu0AggSRASEL7gswOAoQACxAYIbCE
@@ -826,7 +826,7 @@
5fwTVaiXqcydTJNwhBl9U8zieZkJZ0nM/u7+e7/Hf47P8VcLxv4HAzgNZEhItNkAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAE2dJREFUaEPtWWdwXOd1fRI7ie29vu379u3b3ht2ASyARS8ESDQCJApJsRdJpCh2
@@ -915,7 +915,7 @@
Xw5w+yOckoYNAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAFDZJREFUaEPtWXlU02mWzfT09FJdy+lqSx13LdxwFxVFZBcQUAHZQoAAgRC2BJJA
@@ -1007,7 +1007,7 @@
ZkxnbGdMY3gzPmeEMP75DfwrfsWv+P8MBuM/AEFNwv9grYy8AAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEw5JREFUaEPtWXlsHPd1HvHYXc7Ozs7OzN73kru8RIqkeN+XKJ46eN/ioYMiRVLi
@@ -1094,7 +1094,7 @@
/wujOleQi+8wjOnH//N/eJ78z9/AX9gX9oX9fzaG+W+Uap4pgcAgYgAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAE3RJREFUaEPtWWlwW9d5RZMmUayNC0AQALHv+8O+vIflPewACZAgwX0nJZIiKYqr
@@ -1183,7 +1183,7 @@
Hz6BP8En+AT/n8Hj/RfVupCD7kD4PQAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAESNJREFUaEPtWAdUlGe6njSNUWOPRmO71piNaXeTuMmaTVw30U3cNFMUewGkjwhD
@@ -1262,7 +1262,7 @@
crRoT3q4YKPi60/kiTyRf4nweH8Hf7AdJvVp9RcAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEotJREFUaEPtl3dw1PeZxokdO2djsI1NMd02YDAgIVEsBAIhgVDvq957byutVm2l
@@ -1347,7 +1347,7 @@
tU677664tcv07sd4jMf4m2PFiv8C3AtHUUZ4up0AAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEXlJREFUaEPtWHdsm3d6Zs6Jk3hvW7Jjy7b2lqhNSSQliuIQh0hxk+KSKJGUqL2X
@@ -1428,7 +1428,7 @@
RU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEQxJREFUaEPtWHlYzum7f5X20jLGmLGMbTBFE1lmNMWMMNmyFNlGi6VIJamotKM9
@@ -1507,7 +1507,7 @@
k95t9bB4AAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEaFJREFUaEPtWHd0lGXWf6aX953eMy2ZyaQnBFIINSqhJBQNnQghkgRCqCsEiCK9
@@ -1588,7 +1588,7 @@
pakRt4uRPPfbRLl4T6Qknr4qV+Wq/MdFiH8BiZWE5LnA7/4AAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEzVJREFUaEPtWXdU1Oe2/ab3gWGGMnSkCUhRxG64UVC5WFCDBUEsoKL0XqSIgogS
diff --git a/FunkeySelector/KelpyBasin.Designer.cs b/FunkeySelector/KelpyBasin.Designer.cs
new file mode 100644
index 0000000..459c9ce
--- /dev/null
+++ b/FunkeySelector/KelpyBasin.Designer.cs
@@ -0,0 +1,411 @@
+namespace FunkeySelector
+{
+ partial class KelpyBasin
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(KelpyBasin));
+ this.TwinxLabel = new System.Windows.Forms.Label();
+ this.TwinxVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.TwinxR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Twinx = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.SproutLabel = new System.Windows.Forms.Label();
+ this.SproutVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.SproutR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Sprout = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.TikiLabel = new System.Windows.Forms.Label();
+ this.TikiVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.TikiR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Tiki = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.GlubLabel = new System.Windows.Forms.Label();
+ this.GlubVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.GlubR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Glub = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.backButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.KelpyBasinLabel = new System.Windows.Forms.Label();
+ this.minimizeButton = new FunkeySelector.UserControls.MinimizeButton();
+ this.closeButton = new FunkeySelector.UserControls.CloseButton();
+ this.SuspendLayout();
+ //
+ // TwinxLabel
+ //
+ this.TwinxLabel.AutoSize = true;
+ this.TwinxLabel.BackColor = System.Drawing.Color.Transparent;
+ this.TwinxLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.TwinxLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.TwinxLabel.Location = new System.Drawing.Point(316, 421);
+ this.TwinxLabel.Name = "TwinxLabel";
+ this.TwinxLabel.Size = new System.Drawing.Size(91, 29);
+ this.TwinxLabel.TabIndex = 15;
+ this.TwinxLabel.Text = "TWINX";
+ //
+ // TwinxVR
+ //
+ this.TwinxVR.BackColor = System.Drawing.Color.Transparent;
+ this.TwinxVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("TwinxVR.BackgroundImage")));
+ this.TwinxVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.TwinxVR.FlatAppearance.BorderSize = 0;
+ this.TwinxVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.TwinxVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.TwinxVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.TwinxVR.FunkeyID = "0000001F";
+ this.TwinxVR.Location = new System.Drawing.Point(390, 448);
+ this.TwinxVR.Name = "TwinxVR";
+ this.TwinxVR.Size = new System.Drawing.Size(50, 63);
+ this.TwinxVR.TabIndex = 18;
+ this.TwinxVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.TwinxVR.UseVisualStyleBackColor = false;
+ //
+ // TwinxR
+ //
+ this.TwinxR.BackColor = System.Drawing.Color.Transparent;
+ this.TwinxR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("TwinxR.BackgroundImage")));
+ this.TwinxR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.TwinxR.FlatAppearance.BorderSize = 0;
+ this.TwinxR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.TwinxR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.TwinxR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.TwinxR.FunkeyID = "0000001E";
+ this.TwinxR.Location = new System.Drawing.Point(339, 448);
+ this.TwinxR.Name = "TwinxR";
+ this.TwinxR.Size = new System.Drawing.Size(50, 63);
+ this.TwinxR.TabIndex = 17;
+ this.TwinxR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.TwinxR.UseVisualStyleBackColor = false;
+ //
+ // Twinx
+ //
+ this.Twinx.BackColor = System.Drawing.Color.Transparent;
+ this.Twinx.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Twinx.BackgroundImage")));
+ this.Twinx.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Twinx.FlatAppearance.BorderSize = 0;
+ this.Twinx.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Twinx.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Twinx.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Twinx.FunkeyID = "0000001D";
+ this.Twinx.Location = new System.Drawing.Point(288, 448);
+ this.Twinx.Name = "Twinx";
+ this.Twinx.Size = new System.Drawing.Size(50, 63);
+ this.Twinx.TabIndex = 16;
+ this.Twinx.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Twinx.UseVisualStyleBackColor = false;
+ //
+ // SproutLabel
+ //
+ this.SproutLabel.AutoSize = true;
+ this.SproutLabel.BackColor = System.Drawing.Color.Transparent;
+ this.SproutLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SproutLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.SproutLabel.Location = new System.Drawing.Point(315, 205);
+ this.SproutLabel.Name = "SproutLabel";
+ this.SproutLabel.Size = new System.Drawing.Size(98, 29);
+ this.SproutLabel.TabIndex = 7;
+ this.SproutLabel.Text = "SPROUT";
+ //
+ // SproutVR
+ //
+ this.SproutVR.BackColor = System.Drawing.Color.Transparent;
+ this.SproutVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("SproutVR.BackgroundImage")));
+ this.SproutVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.SproutVR.FlatAppearance.BorderSize = 0;
+ this.SproutVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.SproutVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SproutVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.SproutVR.FunkeyID = "0000001C";
+ this.SproutVR.Location = new System.Drawing.Point(390, 230);
+ this.SproutVR.Name = "SproutVR";
+ this.SproutVR.Size = new System.Drawing.Size(50, 63);
+ this.SproutVR.TabIndex = 10;
+ this.SproutVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.SproutVR.UseVisualStyleBackColor = false;
+ //
+ // SproutR
+ //
+ this.SproutR.BackColor = System.Drawing.Color.Transparent;
+ this.SproutR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("SproutR.BackgroundImage")));
+ this.SproutR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.SproutR.FlatAppearance.BorderSize = 0;
+ this.SproutR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.SproutR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SproutR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.SproutR.FunkeyID = "0000001B";
+ this.SproutR.Location = new System.Drawing.Point(339, 230);
+ this.SproutR.Name = "SproutR";
+ this.SproutR.Size = new System.Drawing.Size(50, 63);
+ this.SproutR.TabIndex = 9;
+ this.SproutR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.SproutR.UseVisualStyleBackColor = false;
+ //
+ // Sprout
+ //
+ this.Sprout.BackColor = System.Drawing.Color.Transparent;
+ this.Sprout.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Sprout.BackgroundImage")));
+ this.Sprout.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Sprout.FlatAppearance.BorderSize = 0;
+ this.Sprout.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Sprout.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Sprout.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Sprout.FunkeyID = "0000001A";
+ this.Sprout.Location = new System.Drawing.Point(288, 230);
+ this.Sprout.Name = "Sprout";
+ this.Sprout.Size = new System.Drawing.Size(50, 63);
+ this.Sprout.TabIndex = 8;
+ this.Sprout.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Sprout.UseVisualStyleBackColor = false;
+ //
+ // TikiLabel
+ //
+ this.TikiLabel.AutoSize = true;
+ this.TikiLabel.BackColor = System.Drawing.Color.Transparent;
+ this.TikiLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.TikiLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.TikiLabel.Location = new System.Drawing.Point(333, 313);
+ this.TikiLabel.Name = "TikiLabel";
+ this.TikiLabel.Size = new System.Drawing.Size(62, 29);
+ this.TikiLabel.TabIndex = 11;
+ this.TikiLabel.Text = "TIKI";
+ //
+ // TikiVR
+ //
+ this.TikiVR.BackColor = System.Drawing.Color.Transparent;
+ this.TikiVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("TikiVR.BackgroundImage")));
+ this.TikiVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.TikiVR.FlatAppearance.BorderSize = 0;
+ this.TikiVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.TikiVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.TikiVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.TikiVR.FunkeyID = "00000025";
+ this.TikiVR.Location = new System.Drawing.Point(391, 338);
+ this.TikiVR.Name = "TikiVR";
+ this.TikiVR.Size = new System.Drawing.Size(50, 63);
+ this.TikiVR.TabIndex = 14;
+ this.TikiVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.TikiVR.UseVisualStyleBackColor = false;
+ //
+ // TikiR
+ //
+ this.TikiR.BackColor = System.Drawing.Color.Transparent;
+ this.TikiR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("TikiR.BackgroundImage")));
+ this.TikiR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.TikiR.FlatAppearance.BorderSize = 0;
+ this.TikiR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.TikiR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.TikiR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.TikiR.FunkeyID = "00000024";
+ this.TikiR.Location = new System.Drawing.Point(340, 338);
+ this.TikiR.Name = "TikiR";
+ this.TikiR.Size = new System.Drawing.Size(50, 63);
+ this.TikiR.TabIndex = 13;
+ this.TikiR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.TikiR.UseVisualStyleBackColor = false;
+ //
+ // Tiki
+ //
+ this.Tiki.BackColor = System.Drawing.Color.Transparent;
+ this.Tiki.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Tiki.BackgroundImage")));
+ this.Tiki.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Tiki.FlatAppearance.BorderSize = 0;
+ this.Tiki.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Tiki.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Tiki.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Tiki.FunkeyID = "00000023";
+ this.Tiki.Location = new System.Drawing.Point(289, 338);
+ this.Tiki.Name = "Tiki";
+ this.Tiki.Size = new System.Drawing.Size(50, 63);
+ this.Tiki.TabIndex = 12;
+ this.Tiki.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Tiki.UseVisualStyleBackColor = false;
+ //
+ // GlubLabel
+ //
+ this.GlubLabel.AutoSize = true;
+ this.GlubLabel.BackColor = System.Drawing.Color.Transparent;
+ this.GlubLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.GlubLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.GlubLabel.Location = new System.Drawing.Point(333, 98);
+ this.GlubLabel.Name = "GlubLabel";
+ this.GlubLabel.Size = new System.Drawing.Size(67, 29);
+ this.GlubLabel.TabIndex = 3;
+ this.GlubLabel.Text = "GLUB";
+ //
+ // GlubVR
+ //
+ this.GlubVR.BackColor = System.Drawing.Color.Transparent;
+ this.GlubVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("GlubVR.BackgroundImage")));
+ this.GlubVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.GlubVR.FlatAppearance.BorderSize = 0;
+ this.GlubVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.GlubVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.GlubVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.GlubVR.FunkeyID = "00000019";
+ this.GlubVR.Location = new System.Drawing.Point(392, 123);
+ this.GlubVR.Name = "GlubVR";
+ this.GlubVR.Size = new System.Drawing.Size(50, 63);
+ this.GlubVR.TabIndex = 6;
+ this.GlubVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.GlubVR.UseVisualStyleBackColor = false;
+ //
+ // GlubR
+ //
+ this.GlubR.BackColor = System.Drawing.Color.Transparent;
+ this.GlubR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("GlubR.BackgroundImage")));
+ this.GlubR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.GlubR.FlatAppearance.BorderSize = 0;
+ this.GlubR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.GlubR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.GlubR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.GlubR.FunkeyID = "00000018";
+ this.GlubR.Location = new System.Drawing.Point(341, 123);
+ this.GlubR.Name = "GlubR";
+ this.GlubR.Size = new System.Drawing.Size(50, 63);
+ this.GlubR.TabIndex = 5;
+ this.GlubR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.GlubR.UseVisualStyleBackColor = false;
+ //
+ // Glub
+ //
+ this.Glub.BackColor = System.Drawing.Color.Transparent;
+ this.Glub.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Glub.BackgroundImage")));
+ this.Glub.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Glub.FlatAppearance.BorderSize = 0;
+ this.Glub.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Glub.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Glub.ForeColor = System.Drawing.Color.Transparent;
+ this.Glub.FunkeyID = "00000014";
+ this.Glub.Location = new System.Drawing.Point(290, 123);
+ this.Glub.Name = "Glub";
+ this.Glub.Size = new System.Drawing.Size(50, 63);
+ this.Glub.TabIndex = 4;
+ this.Glub.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Glub.UseVisualStyleBackColor = false;
+ //
+ // backButton
+ //
+ this.backButton.BackColor = System.Drawing.Color.Transparent;
+ this.backButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.backButton.FlatAppearance.BorderSize = 0;
+ this.backButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.backButton.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.backButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.backButton.FormToOpen = "Form1";
+ this.backButton.KeepCurrentForm = false;
+ this.backButton.Location = new System.Drawing.Point(12, 12);
+ this.backButton.Name = "backButton";
+ this.backButton.Size = new System.Drawing.Size(101, 48);
+ this.backButton.TabIndex = 1;
+ this.backButton.Text = "BACK";
+ this.backButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.backButton.UseVisualStyleBackColor = false;
+ //
+ // KelpyBasinLabel
+ //
+ this.KelpyBasinLabel.AutoSize = true;
+ this.KelpyBasinLabel.BackColor = System.Drawing.Color.Transparent;
+ this.KelpyBasinLabel.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.KelpyBasinLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.KelpyBasinLabel.Location = new System.Drawing.Point(232, 16);
+ this.KelpyBasinLabel.Name = "KelpyBasinLabel";
+ this.KelpyBasinLabel.Size = new System.Drawing.Size(268, 52);
+ this.KelpyBasinLabel.TabIndex = 2;
+ this.KelpyBasinLabel.Text = "KELPY BASIN";
+ //
+ // minimizeButton
+ //
+ this.minimizeButton.Location = new System.Drawing.Point(642, 16);
+ this.minimizeButton.Name = "minimizeButton";
+ this.minimizeButton.Size = new System.Drawing.Size(26, 22);
+ this.minimizeButton.TabIndex = 19;
+ //
+ // closeButton
+ //
+ this.closeButton.Location = new System.Drawing.Point(681, 18);
+ this.closeButton.Name = "closeButton";
+ this.closeButton.Size = new System.Drawing.Size(26, 20);
+ this.closeButton.TabIndex = 20;
+ //
+ // KelpyBasin
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.BackColor = System.Drawing.Color.Gold;
+ this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
+ this.ClientSize = new System.Drawing.Size(726, 566);
+ this.Controls.Add(this.closeButton);
+ this.Controls.Add(this.minimizeButton);
+ this.Controls.Add(this.TwinxLabel);
+ this.Controls.Add(this.TwinxVR);
+ this.Controls.Add(this.TwinxR);
+ this.Controls.Add(this.Twinx);
+ this.Controls.Add(this.SproutLabel);
+ this.Controls.Add(this.SproutVR);
+ this.Controls.Add(this.SproutR);
+ this.Controls.Add(this.Sprout);
+ this.Controls.Add(this.TikiLabel);
+ this.Controls.Add(this.TikiVR);
+ this.Controls.Add(this.TikiR);
+ this.Controls.Add(this.Tiki);
+ this.Controls.Add(this.GlubLabel);
+ this.Controls.Add(this.GlubVR);
+ this.Controls.Add(this.GlubR);
+ this.Controls.Add(this.Glub);
+ this.Controls.Add(this.backButton);
+ this.Controls.Add(this.KelpyBasinLabel);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
+ this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+ this.MaximizeBox = false;
+ this.Name = "KelpyBasin";
+ this.Text = "FunkeySelectorGUI - Kelpy Basin";
+ this.TransparencyKey = System.Drawing.Color.Gold;
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Label TwinxLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton TwinxVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton TwinxR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Twinx;
+ private System.Windows.Forms.Label SproutLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton SproutVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton SproutR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Sprout;
+ private System.Windows.Forms.Label TikiLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton TikiVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton TikiR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Tiki;
+ private System.Windows.Forms.Label GlubLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton GlubVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton GlubR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Glub;
+ private FunkeySelector.UserControls.ChangeFormButton backButton;
+ private System.Windows.Forms.Label KelpyBasinLabel;
+ private UserControls.MinimizeButton minimizeButton;
+ private UserControls.CloseButton closeButton;
+ }
+}
\ No newline at end of file
diff --git a/FunkeySelector/KelpyBasin.cs b/FunkeySelector/KelpyBasin.cs
new file mode 100644
index 0000000..776ee31
--- /dev/null
+++ b/FunkeySelector/KelpyBasin.cs
@@ -0,0 +1,24 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Diagnostics;
+using System.Drawing;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+using FunkeySelector;
+using FunkeySelector.UserControls;
+
+namespace FunkeySelector
+{
+ public partial class KelpyBasin : BasicForm
+ {
+ public KelpyBasin()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/FunkeySelector/Form3.resx b/FunkeySelector/KelpyBasin.resx
similarity index 99%
rename from FunkeySelector/Form3.resx
rename to FunkeySelector/KelpyBasin.resx
index cf380ee..549e2fe 100644
--- a/FunkeySelector/Form3.resx
+++ b/FunkeySelector/KelpyBasin.resx
@@ -118,7 +118,7 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEadJREFUaEPtWHdUlPeaZjd7d8/d3BQTa/Qau7H3roAoGjQW7KL0gYGhDH3oQ+8M
@@ -199,7 +199,7 @@
woPzU8KsV0T77l/mZ6Y0xXKtwt/lr3zER3zEvwwKCv8DrbfzevAYjfMAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEqFJREFUaEPtmHdQ3dl1x5Xtq5VAFMGjV4FoEqIIiSqa6L2LXh+id3g8yqP3jkB0
@@ -285,7 +285,7 @@
QmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAErlJREFUaEPtmHdUleeaxc/c3Dt3Zt2VMTasNEFBQHqXDiIoSFFQ6b13ESnSm3RE
@@ -371,7 +371,7 @@
xz8MEsl/AesSeo+fEVMNAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEn9JREFUaEPtmHdUlGe+x2fv3b3Z3ZuNq9h7TVQsKCqoaBQ1atRYiQVBkd6rAoMw
@@ -456,7 +456,7 @@
v+E3/MsgkfwXlR5Cgbt5fI4AAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEuJJREFUaEPtl3dUVWe6xk+SyZ0UTWIZLNEYjSUqYkUsKPZCEVFBkN5BevdQBJTi
@@ -543,7 +543,7 @@
SUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEqVJREFUaEPtmHdUlle6xY8KohQpAtLho0gH6Yg0KRppSlOkSQcREBGlioAIggKi
@@ -629,7 +629,7 @@
RU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEmFJREFUaEPtWXdUVPfW5XvRRJTeBqRKEcXyNEaNmqIxiS0xQUBEsCFVkI6MtIGh
@@ -713,7 +713,7 @@
z26YiSns3fX99P08p3k5PKO5qVaz1EzUxMRFl3zER3zE3wYxsX8BuBEG3qXjWUMAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEstJREFUaEPtmHdUVNfaxo83MQrShoFhhjbA0BGlqNijMcZEE0vsFRFFASsqIKAU
@@ -799,7 +799,7 @@
IHllrJW8KwokS3FfR/vI3/gbf+O/Bkn6HxulSbAemGhQAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEoxJREFUaEPtmHdUVle6xhlvMjFR6SC9SBfBhgiigiBKkSKKIkjno320j957E5Ai
@@ -884,7 +884,7 @@
8Q3dYT0Uxp6V3/ILfsEv+KdBQeE/AaW/sOEXSmObAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEMtJREFUaEPtWHl0VfW1vmpBJJKBOyS58zyde4Y7T7lDQkIgE4RAmAICYRTBQNQA
@@ -962,7 +962,7 @@
kgAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEh9JREFUaEPtWGlUlGeaZSYnZ2b6zEzntJ10ook5dpI2Md1Ro0ajxn1pBVFU4oYI
@@ -1045,7 +1045,7 @@
Gl8XhB9dlx2wc91t8e9WwFvtX1Vb3uEd3uEd3hZqav8FQsJ15CLDbpoAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEllJREFUaEPtmHdUVWe6xje9F2mCiiUW7GEmmWsmlkRNmcSS2IIFBRsqKiIWQJoB
diff --git a/FunkeySelector/LaputtaStation.Designer.cs b/FunkeySelector/LaputtaStation.Designer.cs
new file mode 100644
index 0000000..29a36f9
--- /dev/null
+++ b/FunkeySelector/LaputtaStation.Designer.cs
@@ -0,0 +1,446 @@
+namespace FunkeySelector
+{
+ partial class LaputtaStation
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LaputtaStation));
+ this.VroomLabel = new System.Windows.Forms.Label();
+ this.VroomVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.VroomR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Vroom = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.FalloutLabel = new System.Windows.Forms.Label();
+ this.FalloutVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.FalloutR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Fallout = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.BoggleLabel = new System.Windows.Forms.Label();
+ this.BoggleVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.BoggleR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Boggle = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.XenerLabel = new System.Windows.Forms.Label();
+ this.XenerVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.XenerR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Xener = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.backButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.LaputtaStationLabel = new System.Windows.Forms.Label();
+ this.RomLabel = new System.Windows.Forms.Label();
+ this.Rom = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.minimizeButton = new FunkeySelector.UserControls.MinimizeButton();
+ this.closeButton = new FunkeySelector.UserControls.CloseButton();
+ this.SuspendLayout();
+ //
+ // VroomLabel
+ //
+ this.VroomLabel.AutoSize = true;
+ this.VroomLabel.BackColor = System.Drawing.Color.Transparent;
+ this.VroomLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.VroomLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.VroomLabel.Location = new System.Drawing.Point(340, 427);
+ this.VroomLabel.Name = "VroomLabel";
+ this.VroomLabel.Size = new System.Drawing.Size(93, 29);
+ this.VroomLabel.TabIndex = 17;
+ this.VroomLabel.Text = "VROOM";
+ //
+ // VroomVR
+ //
+ this.VroomVR.BackColor = System.Drawing.Color.Transparent;
+ this.VroomVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("VroomVR.BackgroundImage")));
+ this.VroomVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.VroomVR.FlatAppearance.BorderSize = 0;
+ this.VroomVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.VroomVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.VroomVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.VroomVR.FunkeyID = "00000046";
+ this.VroomVR.Location = new System.Drawing.Point(410, 449);
+ this.VroomVR.Name = "VroomVR";
+ this.VroomVR.Size = new System.Drawing.Size(50, 63);
+ this.VroomVR.TabIndex = 20;
+ this.VroomVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.VroomVR.UseVisualStyleBackColor = false;
+ //
+ // VroomR
+ //
+ this.VroomR.BackColor = System.Drawing.Color.Transparent;
+ this.VroomR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("VroomR.BackgroundImage")));
+ this.VroomR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.VroomR.FlatAppearance.BorderSize = 0;
+ this.VroomR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.VroomR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.VroomR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.VroomR.FunkeyID = "00000045";
+ this.VroomR.Location = new System.Drawing.Point(359, 449);
+ this.VroomR.Name = "VroomR";
+ this.VroomR.Size = new System.Drawing.Size(50, 63);
+ this.VroomR.TabIndex = 19;
+ this.VroomR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.VroomR.UseVisualStyleBackColor = false;
+ //
+ // Vroom
+ //
+ this.Vroom.BackColor = System.Drawing.Color.Transparent;
+ this.Vroom.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Vroom.BackgroundImage")));
+ this.Vroom.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Vroom.FlatAppearance.BorderSize = 0;
+ this.Vroom.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Vroom.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Vroom.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Vroom.FunkeyID = "00000044";
+ this.Vroom.Location = new System.Drawing.Point(308, 449);
+ this.Vroom.Name = "Vroom";
+ this.Vroom.Size = new System.Drawing.Size(50, 63);
+ this.Vroom.TabIndex = 18;
+ this.Vroom.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Vroom.UseVisualStyleBackColor = false;
+ //
+ // FalloutLabel
+ //
+ this.FalloutLabel.AutoSize = true;
+ this.FalloutLabel.BackColor = System.Drawing.Color.Transparent;
+ this.FalloutLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.FalloutLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.FalloutLabel.Location = new System.Drawing.Point(331, 204);
+ this.FalloutLabel.Name = "FalloutLabel";
+ this.FalloutLabel.Size = new System.Drawing.Size(111, 29);
+ this.FalloutLabel.TabIndex = 7;
+ this.FalloutLabel.Text = "FALLOUT";
+ //
+ // FalloutVR
+ //
+ this.FalloutVR.BackColor = System.Drawing.Color.Transparent;
+ this.FalloutVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("FalloutVR.BackgroundImage")));
+ this.FalloutVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.FalloutVR.FlatAppearance.BorderSize = 0;
+ this.FalloutVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.FalloutVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.FalloutVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.FalloutVR.FunkeyID = "0000003D";
+ this.FalloutVR.Location = new System.Drawing.Point(410, 231);
+ this.FalloutVR.Name = "FalloutVR";
+ this.FalloutVR.Size = new System.Drawing.Size(50, 63);
+ this.FalloutVR.TabIndex = 10;
+ this.FalloutVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.FalloutVR.UseVisualStyleBackColor = false;
+ //
+ // FalloutR
+ //
+ this.FalloutR.BackColor = System.Drawing.Color.Transparent;
+ this.FalloutR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("FalloutR.BackgroundImage")));
+ this.FalloutR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.FalloutR.FlatAppearance.BorderSize = 0;
+ this.FalloutR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.FalloutR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.FalloutR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.FalloutR.FunkeyID = "0000003C";
+ this.FalloutR.Location = new System.Drawing.Point(359, 231);
+ this.FalloutR.Name = "FalloutR";
+ this.FalloutR.Size = new System.Drawing.Size(50, 63);
+ this.FalloutR.TabIndex = 9;
+ this.FalloutR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.FalloutR.UseVisualStyleBackColor = false;
+ //
+ // Fallout
+ //
+ this.Fallout.BackColor = System.Drawing.Color.Transparent;
+ this.Fallout.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Fallout.BackgroundImage")));
+ this.Fallout.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Fallout.FlatAppearance.BorderSize = 0;
+ this.Fallout.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Fallout.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Fallout.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Fallout.FunkeyID = "0000003B";
+ this.Fallout.Location = new System.Drawing.Point(308, 231);
+ this.Fallout.Name = "Fallout";
+ this.Fallout.Size = new System.Drawing.Size(50, 63);
+ this.Fallout.TabIndex = 8;
+ this.Fallout.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Fallout.UseVisualStyleBackColor = false;
+ //
+ // BoggleLabel
+ //
+ this.BoggleLabel.AutoSize = true;
+ this.BoggleLabel.BackColor = System.Drawing.Color.Transparent;
+ this.BoggleLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.BoggleLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.BoggleLabel.Location = new System.Drawing.Point(337, 314);
+ this.BoggleLabel.Name = "BoggleLabel";
+ this.BoggleLabel.Size = new System.Drawing.Size(96, 29);
+ this.BoggleLabel.TabIndex = 13;
+ this.BoggleLabel.Text = "BOGGLE";
+ //
+ // BoggleVR
+ //
+ this.BoggleVR.BackColor = System.Drawing.Color.Transparent;
+ this.BoggleVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("BoggleVR.BackgroundImage")));
+ this.BoggleVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.BoggleVR.FlatAppearance.BorderSize = 0;
+ this.BoggleVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.BoggleVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.BoggleVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.BoggleVR.FunkeyID = "00000040";
+ this.BoggleVR.Location = new System.Drawing.Point(410, 340);
+ this.BoggleVR.Name = "BoggleVR";
+ this.BoggleVR.Size = new System.Drawing.Size(50, 63);
+ this.BoggleVR.TabIndex = 16;
+ this.BoggleVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.BoggleVR.UseVisualStyleBackColor = false;
+ //
+ // BoggleR
+ //
+ this.BoggleR.BackColor = System.Drawing.Color.Transparent;
+ this.BoggleR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("BoggleR.BackgroundImage")));
+ this.BoggleR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.BoggleR.FlatAppearance.BorderSize = 0;
+ this.BoggleR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.BoggleR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.BoggleR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.BoggleR.FunkeyID = "0000003F";
+ this.BoggleR.Location = new System.Drawing.Point(359, 340);
+ this.BoggleR.Name = "BoggleR";
+ this.BoggleR.Size = new System.Drawing.Size(50, 63);
+ this.BoggleR.TabIndex = 15;
+ this.BoggleR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.BoggleR.UseVisualStyleBackColor = false;
+ //
+ // Boggle
+ //
+ this.Boggle.BackColor = System.Drawing.Color.Transparent;
+ this.Boggle.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Boggle.BackgroundImage")));
+ this.Boggle.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Boggle.FlatAppearance.BorderSize = 0;
+ this.Boggle.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Boggle.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Boggle.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Boggle.FunkeyID = "0000003E";
+ this.Boggle.Location = new System.Drawing.Point(308, 340);
+ this.Boggle.Name = "Boggle";
+ this.Boggle.Size = new System.Drawing.Size(50, 63);
+ this.Boggle.TabIndex = 14;
+ this.Boggle.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Boggle.UseVisualStyleBackColor = false;
+ //
+ // XenerLabel
+ //
+ this.XenerLabel.AutoSize = true;
+ this.XenerLabel.BackColor = System.Drawing.Color.Transparent;
+ this.XenerLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.XenerLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.XenerLabel.Location = new System.Drawing.Point(344, 103);
+ this.XenerLabel.Name = "XenerLabel";
+ this.XenerLabel.Size = new System.Drawing.Size(84, 29);
+ this.XenerLabel.TabIndex = 3;
+ this.XenerLabel.Text = "XENER";
+ //
+ // XenerVR
+ //
+ this.XenerVR.BackColor = System.Drawing.Color.Transparent;
+ this.XenerVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("XenerVR.BackgroundImage")));
+ this.XenerVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.XenerVR.FlatAppearance.BorderSize = 0;
+ this.XenerVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.XenerVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.XenerVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.XenerVR.FunkeyID = "0000003A";
+ this.XenerVR.Location = new System.Drawing.Point(410, 123);
+ this.XenerVR.Name = "XenerVR";
+ this.XenerVR.Size = new System.Drawing.Size(50, 63);
+ this.XenerVR.TabIndex = 6;
+ this.XenerVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.XenerVR.UseVisualStyleBackColor = false;
+ //
+ // XenerR
+ //
+ this.XenerR.BackColor = System.Drawing.Color.Transparent;
+ this.XenerR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("XenerR.BackgroundImage")));
+ this.XenerR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.XenerR.FlatAppearance.BorderSize = 0;
+ this.XenerR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.XenerR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.XenerR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.XenerR.FunkeyID = "00000039";
+ this.XenerR.Location = new System.Drawing.Point(359, 123);
+ this.XenerR.Name = "XenerR";
+ this.XenerR.Size = new System.Drawing.Size(50, 63);
+ this.XenerR.TabIndex = 5;
+ this.XenerR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.XenerR.UseVisualStyleBackColor = false;
+ //
+ // Xener
+ //
+ this.Xener.BackColor = System.Drawing.Color.Transparent;
+ this.Xener.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Xener.BackgroundImage")));
+ this.Xener.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Xener.FlatAppearance.BorderSize = 0;
+ this.Xener.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Xener.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Xener.ForeColor = System.Drawing.Color.Transparent;
+ this.Xener.FunkeyID = "00000035";
+ this.Xener.Location = new System.Drawing.Point(308, 123);
+ this.Xener.Name = "Xener";
+ this.Xener.Size = new System.Drawing.Size(50, 63);
+ this.Xener.TabIndex = 4;
+ this.Xener.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Xener.UseVisualStyleBackColor = false;
+ //
+ // backButton
+ //
+ this.backButton.BackColor = System.Drawing.Color.Transparent;
+ this.backButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.backButton.FlatAppearance.BorderSize = 0;
+ this.backButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.backButton.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.backButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.backButton.FormToOpen = "Form1";
+ this.backButton.KeepCurrentForm = false;
+ this.backButton.Location = new System.Drawing.Point(12, 12);
+ this.backButton.Name = "backButton";
+ this.backButton.Size = new System.Drawing.Size(101, 48);
+ this.backButton.TabIndex = 1;
+ this.backButton.Text = "BACK";
+ this.backButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.backButton.UseVisualStyleBackColor = false;
+ //
+ // LaputtaStationLabel
+ //
+ this.LaputtaStationLabel.AutoSize = true;
+ this.LaputtaStationLabel.BackColor = System.Drawing.Color.Transparent;
+ this.LaputtaStationLabel.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.LaputtaStationLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.LaputtaStationLabel.Location = new System.Drawing.Point(185, 12);
+ this.LaputtaStationLabel.Name = "LaputtaStationLabel";
+ this.LaputtaStationLabel.Size = new System.Drawing.Size(386, 52);
+ this.LaputtaStationLabel.TabIndex = 2;
+ this.LaputtaStationLabel.Text = "LAPUTTA STATION";
+ //
+ // RomLabel
+ //
+ this.RomLabel.AutoSize = true;
+ this.RomLabel.BackColor = System.Drawing.Color.Transparent;
+ this.RomLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.RomLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.RomLabel.Location = new System.Drawing.Point(128, 258);
+ this.RomLabel.Name = "RomLabel";
+ this.RomLabel.Size = new System.Drawing.Size(62, 29);
+ this.RomLabel.TabIndex = 11;
+ this.RomLabel.Text = "ROM";
+ //
+ // Rom
+ //
+ this.Rom.BackColor = System.Drawing.Color.Transparent;
+ this.Rom.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Rom.BackgroundImage")));
+ this.Rom.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Rom.FlatAppearance.BorderSize = 0;
+ this.Rom.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Rom.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Rom.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Rom.FunkeyID = "000000CE";
+ this.Rom.Location = new System.Drawing.Point(135, 291);
+ this.Rom.Name = "Rom";
+ this.Rom.Size = new System.Drawing.Size(50, 63);
+ this.Rom.TabIndex = 12;
+ this.Rom.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Rom.UseVisualStyleBackColor = false;
+ //
+ // minimizeButton
+ //
+ this.minimizeButton.Location = new System.Drawing.Point(641, 16);
+ this.minimizeButton.Name = "minimizeButton";
+ this.minimizeButton.Size = new System.Drawing.Size(26, 22);
+ this.minimizeButton.TabIndex = 21;
+ //
+ // closeButton
+ //
+ this.closeButton.Location = new System.Drawing.Point(680, 18);
+ this.closeButton.Name = "closeButton";
+ this.closeButton.Size = new System.Drawing.Size(26, 20);
+ this.closeButton.TabIndex = 22;
+ //
+ // LaputtaStation
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.BackColor = System.Drawing.Color.Gold;
+ this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
+ this.ClientSize = new System.Drawing.Size(726, 566);
+ this.Controls.Add(this.closeButton);
+ this.Controls.Add(this.minimizeButton);
+ this.Controls.Add(this.Rom);
+ this.Controls.Add(this.RomLabel);
+ this.Controls.Add(this.VroomLabel);
+ this.Controls.Add(this.VroomVR);
+ this.Controls.Add(this.VroomR);
+ this.Controls.Add(this.Vroom);
+ this.Controls.Add(this.FalloutLabel);
+ this.Controls.Add(this.FalloutVR);
+ this.Controls.Add(this.FalloutR);
+ this.Controls.Add(this.Fallout);
+ this.Controls.Add(this.BoggleLabel);
+ this.Controls.Add(this.BoggleVR);
+ this.Controls.Add(this.BoggleR);
+ this.Controls.Add(this.Boggle);
+ this.Controls.Add(this.XenerLabel);
+ this.Controls.Add(this.XenerVR);
+ this.Controls.Add(this.XenerR);
+ this.Controls.Add(this.Xener);
+ this.Controls.Add(this.backButton);
+ this.Controls.Add(this.LaputtaStationLabel);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
+ this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+ this.MaximizeBox = false;
+ this.Name = "LaputtaStation";
+ this.Text = "FunkeySelectorGUI - Laputta Station";
+ this.TransparencyKey = System.Drawing.Color.Gold;
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Label VroomLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton VroomVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton VroomR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Vroom;
+ private System.Windows.Forms.Label FalloutLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton FalloutVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton FalloutR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Fallout;
+ private System.Windows.Forms.Label BoggleLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton BoggleVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton BoggleR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Boggle;
+ private System.Windows.Forms.Label XenerLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton XenerVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton XenerR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Xener;
+ private FunkeySelector.UserControls.ChangeFormButton backButton;
+ private System.Windows.Forms.Label LaputtaStationLabel;
+ private System.Windows.Forms.Label RomLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton Rom;
+ private UserControls.MinimizeButton minimizeButton;
+ private UserControls.CloseButton closeButton;
+ }
+}
\ No newline at end of file
diff --git a/FunkeySelector/LaputtaStation.cs b/FunkeySelector/LaputtaStation.cs
new file mode 100644
index 0000000..60cd80e
--- /dev/null
+++ b/FunkeySelector/LaputtaStation.cs
@@ -0,0 +1,23 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Diagnostics;
+using System.Drawing;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+using FunkeySelector.UserControls;
+
+namespace FunkeySelector
+{
+ public partial class LaputtaStation : BasicForm
+ {
+ public LaputtaStation()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/FunkeySelector/Form5.resx b/FunkeySelector/LaputtaStation.resx
similarity index 99%
rename from FunkeySelector/Form5.resx
rename to FunkeySelector/LaputtaStation.resx
index ca8667b..f246986 100644
--- a/FunkeySelector/Form5.resx
+++ b/FunkeySelector/LaputtaStation.resx
@@ -118,7 +118,7 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAADo5JREFUaEPtmWlsXOd1hmnJkiVbO0Ut3IYzw9n3O/s+Q3K4DTeRHNIUaVIjSiS1
@@ -186,7 +186,7 @@
ZCP+3rBO+5EH8SAexIO436ip+S+0djqfxaSGUgAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEXtJREFUaEPtWGlso3l9fnPYjo/4SJxzZnLfTuIcTpzLdpzEieMkdhLHV+w4vuMc
@@ -267,7 +267,7 @@
AElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEe1JREFUaEPtWXlQm/eZJo2dxNkkNqfBHEKcEggQCBCnOAVCSEhCQhcgJNANiEOA
@@ -350,7 +350,7 @@
QmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAERpJREFUaEPtWGdUlFe3ZuV+dyXr+0wsqIgCFor0KiqoqCBYQDqIdOm9DGUY2tA7
@@ -429,7 +429,7 @@
9/be3tt7e1eTkvof/ydY4VDtSW0AAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEo9JREFUaEPtmGd0XPWZxmdJSMBYsnrvGs2oF8uSrD7qGquX0UijrhmNZtSL1asl
@@ -514,7 +514,7 @@
nf5AEqZ6TuIsjt9huuIWbuEWbuFmIZH8BWvCgVP9K+v1AAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEjtJREFUaEPtl2dwXNd5hi9BAkQH0XvvvVeid4DoIHpdYNHbovcOEAQILAhWsEFi
@@ -598,7 +598,7 @@
AtN5N5wzBaWaAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEP9JREFUaEPtmGlQlGe2x607lapbt8q4I8hOQzd0Nw29d0N30+z7voqsSrMI2Aoo
@@ -677,7 +677,7 @@
RK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEpRJREFUaEPtmHdw1OedxnUpMze5S8YzcSZOsc/YYIEQoAJCveyqt1XvWvW+6m0l
@@ -762,7 +762,7 @@
bydpGbyb/309yrV+IZ7/q+ZPnuIpnuIpnhRaWv8J2+s0MLl/+h8AAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEqdJREFUaEPtmHdQlVmaxqnZnardnQ2zMz1Tk3pmOjhtt46NsbtNbUBFBCTnnLnk
@@ -848,7 +848,7 @@
AElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAADopJREFUaEPtmflvlHd+x0noBsJlG9/32HN6xh6Pj/H4PvCBDcQOt4PB4ciG+zTY
@@ -916,7 +916,7 @@
OPHLFLfX6/V6vTxY8+b9B747dhbHHiKqAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAElBJREFUaEPtWHd01PWendRJJjOZPplMZtImfSaBkEIRQiAiQgBZFQtdCSAoSAnp
@@ -1000,7 +1000,7 @@
pIOgUoXyvZ7maLnlKZ7iKf5lEAj+E30bQeBTjBeYAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEpNJREFUaEPtmHdUlVe6xje9yaGqCEgNIkVURBQbKlJUepGmiCBVkF4OHQ7lAFJF
@@ -1085,7 +1085,7 @@
tdggPESMLKEhYp6oFPbycyPNEw/xEA/xb4MQ/wM8KZllvXxzogAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAF+hJREFUaEPdemdwXNeZ5UWjMxpo5IxGBhqNjAZA5BwJEgBJNRhBEgQJJjGKlEgx
diff --git a/FunkeySelector/MagmaGorge.Designer.cs b/FunkeySelector/MagmaGorge.Designer.cs
new file mode 100644
index 0000000..b033b48
--- /dev/null
+++ b/FunkeySelector/MagmaGorge.Designer.cs
@@ -0,0 +1,411 @@
+namespace FunkeySelector
+{
+ partial class MagmaGorge
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MagmaGorge));
+ this.BonesLabel = new System.Windows.Forms.Label();
+ this.BonesVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.BonesR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Bones = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.DeuceLabel = new System.Windows.Forms.Label();
+ this.DeuceVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.DeuceR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Deuce = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.WasabiLabel = new System.Windows.Forms.Label();
+ this.WasabiVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.WasabiR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Wasabi = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.StitchLabel = new System.Windows.Forms.Label();
+ this.StitchVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.StitchR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Stitch = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.backButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.MagmaGorgeLabel = new System.Windows.Forms.Label();
+ this.minimizeButton = new FunkeySelector.UserControls.MinimizeButton();
+ this.closeButton = new FunkeySelector.UserControls.CloseButton();
+ this.SuspendLayout();
+ //
+ // BonesLabel
+ //
+ this.BonesLabel.AutoSize = true;
+ this.BonesLabel.BackColor = System.Drawing.Color.Transparent;
+ this.BonesLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.BonesLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.BonesLabel.Location = new System.Drawing.Point(331, 437);
+ this.BonesLabel.Name = "BonesLabel";
+ this.BonesLabel.Size = new System.Drawing.Size(88, 29);
+ this.BonesLabel.TabIndex = 15;
+ this.BonesLabel.Text = "BONES";
+ //
+ // BonesVR
+ //
+ this.BonesVR.BackColor = System.Drawing.Color.Transparent;
+ this.BonesVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("BonesVR.BackgroundImage")));
+ this.BonesVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.BonesVR.FlatAppearance.BorderSize = 0;
+ this.BonesVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.BonesVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.BonesVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.BonesVR.FunkeyID = "00000034";
+ this.BonesVR.Location = new System.Drawing.Point(400, 460);
+ this.BonesVR.Name = "BonesVR";
+ this.BonesVR.Size = new System.Drawing.Size(50, 63);
+ this.BonesVR.TabIndex = 18;
+ this.BonesVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.BonesVR.UseVisualStyleBackColor = false;
+ //
+ // BonesR
+ //
+ this.BonesR.BackColor = System.Drawing.Color.Transparent;
+ this.BonesR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("BonesR.BackgroundImage")));
+ this.BonesR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.BonesR.FlatAppearance.BorderSize = 0;
+ this.BonesR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.BonesR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.BonesR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.BonesR.FunkeyID = "00000033";
+ this.BonesR.Location = new System.Drawing.Point(349, 460);
+ this.BonesR.Name = "BonesR";
+ this.BonesR.Size = new System.Drawing.Size(50, 63);
+ this.BonesR.TabIndex = 17;
+ this.BonesR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.BonesR.UseVisualStyleBackColor = false;
+ //
+ // Bones
+ //
+ this.Bones.BackColor = System.Drawing.Color.Transparent;
+ this.Bones.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Bones.BackgroundImage")));
+ this.Bones.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Bones.FlatAppearance.BorderSize = 0;
+ this.Bones.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Bones.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Bones.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Bones.FunkeyID = "00000032";
+ this.Bones.Location = new System.Drawing.Point(298, 460);
+ this.Bones.Name = "Bones";
+ this.Bones.Size = new System.Drawing.Size(50, 63);
+ this.Bones.TabIndex = 16;
+ this.Bones.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Bones.UseVisualStyleBackColor = false;
+ //
+ // DeuceLabel
+ //
+ this.DeuceLabel.AutoSize = true;
+ this.DeuceLabel.BackColor = System.Drawing.Color.Transparent;
+ this.DeuceLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.DeuceLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.DeuceLabel.Location = new System.Drawing.Point(331, 221);
+ this.DeuceLabel.Name = "DeuceLabel";
+ this.DeuceLabel.Size = new System.Drawing.Size(82, 29);
+ this.DeuceLabel.TabIndex = 7;
+ this.DeuceLabel.Text = "DEUCE";
+ //
+ // DeuceVR
+ //
+ this.DeuceVR.BackColor = System.Drawing.Color.Transparent;
+ this.DeuceVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("DeuceVR.BackgroundImage")));
+ this.DeuceVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.DeuceVR.FlatAppearance.BorderSize = 0;
+ this.DeuceVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.DeuceVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.DeuceVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.DeuceVR.FunkeyID = "0000002E";
+ this.DeuceVR.Location = new System.Drawing.Point(400, 245);
+ this.DeuceVR.Name = "DeuceVR";
+ this.DeuceVR.Size = new System.Drawing.Size(50, 63);
+ this.DeuceVR.TabIndex = 10;
+ this.DeuceVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.DeuceVR.UseVisualStyleBackColor = false;
+ //
+ // DeuceR
+ //
+ this.DeuceR.BackColor = System.Drawing.Color.Transparent;
+ this.DeuceR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("DeuceR.BackgroundImage")));
+ this.DeuceR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.DeuceR.FlatAppearance.BorderSize = 0;
+ this.DeuceR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.DeuceR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.DeuceR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.DeuceR.FunkeyID = "0000002A";
+ this.DeuceR.Location = new System.Drawing.Point(349, 245);
+ this.DeuceR.Name = "DeuceR";
+ this.DeuceR.Size = new System.Drawing.Size(50, 63);
+ this.DeuceR.TabIndex = 9;
+ this.DeuceR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.DeuceR.UseVisualStyleBackColor = false;
+ //
+ // Deuce
+ //
+ this.Deuce.BackColor = System.Drawing.Color.Transparent;
+ this.Deuce.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Deuce.BackgroundImage")));
+ this.Deuce.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Deuce.FlatAppearance.BorderSize = 0;
+ this.Deuce.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Deuce.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Deuce.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Deuce.FunkeyID = "00000029";
+ this.Deuce.Location = new System.Drawing.Point(298, 245);
+ this.Deuce.Name = "Deuce";
+ this.Deuce.Size = new System.Drawing.Size(50, 63);
+ this.Deuce.TabIndex = 8;
+ this.Deuce.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Deuce.UseVisualStyleBackColor = false;
+ //
+ // WasabiLabel
+ //
+ this.WasabiLabel.AutoSize = true;
+ this.WasabiLabel.BackColor = System.Drawing.Color.Transparent;
+ this.WasabiLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.WasabiLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.WasabiLabel.Location = new System.Drawing.Point(323, 328);
+ this.WasabiLabel.Name = "WasabiLabel";
+ this.WasabiLabel.Size = new System.Drawing.Size(104, 29);
+ this.WasabiLabel.TabIndex = 11;
+ this.WasabiLabel.Text = "WASABI";
+ //
+ // WasabiVR
+ //
+ this.WasabiVR.BackColor = System.Drawing.Color.Transparent;
+ this.WasabiVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("WasabiVR.BackgroundImage")));
+ this.WasabiVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.WasabiVR.FlatAppearance.BorderSize = 0;
+ this.WasabiVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.WasabiVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.WasabiVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.WasabiVR.FunkeyID = "00000031";
+ this.WasabiVR.Location = new System.Drawing.Point(400, 351);
+ this.WasabiVR.Name = "WasabiVR";
+ this.WasabiVR.Size = new System.Drawing.Size(50, 63);
+ this.WasabiVR.TabIndex = 14;
+ this.WasabiVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.WasabiVR.UseVisualStyleBackColor = false;
+ //
+ // WasabiR
+ //
+ this.WasabiR.BackColor = System.Drawing.Color.Transparent;
+ this.WasabiR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("WasabiR.BackgroundImage")));
+ this.WasabiR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.WasabiR.FlatAppearance.BorderSize = 0;
+ this.WasabiR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.WasabiR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.WasabiR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.WasabiR.FunkeyID = "00000030";
+ this.WasabiR.Location = new System.Drawing.Point(349, 351);
+ this.WasabiR.Name = "WasabiR";
+ this.WasabiR.Size = new System.Drawing.Size(50, 63);
+ this.WasabiR.TabIndex = 13;
+ this.WasabiR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.WasabiR.UseVisualStyleBackColor = false;
+ //
+ // Wasabi
+ //
+ this.Wasabi.BackColor = System.Drawing.Color.Transparent;
+ this.Wasabi.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Wasabi.BackgroundImage")));
+ this.Wasabi.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Wasabi.FlatAppearance.BorderSize = 0;
+ this.Wasabi.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Wasabi.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Wasabi.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Wasabi.FunkeyID = "0000002F";
+ this.Wasabi.Location = new System.Drawing.Point(298, 351);
+ this.Wasabi.Name = "Wasabi";
+ this.Wasabi.Size = new System.Drawing.Size(50, 63);
+ this.Wasabi.TabIndex = 12;
+ this.Wasabi.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Wasabi.UseVisualStyleBackColor = false;
+ //
+ // StitchLabel
+ //
+ this.StitchLabel.AutoSize = true;
+ this.StitchLabel.BackColor = System.Drawing.Color.Transparent;
+ this.StitchLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.StitchLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.StitchLabel.Location = new System.Drawing.Point(328, 122);
+ this.StitchLabel.Name = "StitchLabel";
+ this.StitchLabel.Size = new System.Drawing.Size(96, 29);
+ this.StitchLabel.TabIndex = 3;
+ this.StitchLabel.Text = "STITCH";
+ //
+ // StitchVR
+ //
+ this.StitchVR.BackColor = System.Drawing.Color.Transparent;
+ this.StitchVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("StitchVR.BackgroundImage")));
+ this.StitchVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.StitchVR.FlatAppearance.BorderSize = 0;
+ this.StitchVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.StitchVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.StitchVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.StitchVR.FunkeyID = "00000028";
+ this.StitchVR.Location = new System.Drawing.Point(400, 146);
+ this.StitchVR.Name = "StitchVR";
+ this.StitchVR.Size = new System.Drawing.Size(50, 63);
+ this.StitchVR.TabIndex = 6;
+ this.StitchVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.StitchVR.UseVisualStyleBackColor = false;
+ //
+ // StitchR
+ //
+ this.StitchR.BackColor = System.Drawing.Color.Transparent;
+ this.StitchR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("StitchR.BackgroundImage")));
+ this.StitchR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.StitchR.FlatAppearance.BorderSize = 0;
+ this.StitchR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.StitchR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.StitchR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.StitchR.FunkeyID = "00000027";
+ this.StitchR.Location = new System.Drawing.Point(349, 146);
+ this.StitchR.Name = "StitchR";
+ this.StitchR.Size = new System.Drawing.Size(50, 63);
+ this.StitchR.TabIndex = 5;
+ this.StitchR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.StitchR.UseVisualStyleBackColor = false;
+ //
+ // Stitch
+ //
+ this.Stitch.BackColor = System.Drawing.Color.Transparent;
+ this.Stitch.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Stitch.BackgroundImage")));
+ this.Stitch.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Stitch.FlatAppearance.BorderSize = 0;
+ this.Stitch.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Stitch.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Stitch.ForeColor = System.Drawing.Color.Transparent;
+ this.Stitch.FunkeyID = "00000026";
+ this.Stitch.Location = new System.Drawing.Point(298, 146);
+ this.Stitch.Name = "Stitch";
+ this.Stitch.Size = new System.Drawing.Size(50, 63);
+ this.Stitch.TabIndex = 4;
+ this.Stitch.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Stitch.UseVisualStyleBackColor = false;
+ //
+ // backButton
+ //
+ this.backButton.BackColor = System.Drawing.Color.Transparent;
+ this.backButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.backButton.FlatAppearance.BorderSize = 0;
+ this.backButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.backButton.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.backButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.backButton.FormToOpen = "Form1";
+ this.backButton.KeepCurrentForm = false;
+ this.backButton.Location = new System.Drawing.Point(12, 12);
+ this.backButton.Name = "backButton";
+ this.backButton.Size = new System.Drawing.Size(101, 48);
+ this.backButton.TabIndex = 1;
+ this.backButton.Text = "BACK";
+ this.backButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.backButton.UseVisualStyleBackColor = false;
+ //
+ // MagmaGorgeLabel
+ //
+ this.MagmaGorgeLabel.AutoSize = true;
+ this.MagmaGorgeLabel.BackColor = System.Drawing.Color.Transparent;
+ this.MagmaGorgeLabel.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.MagmaGorgeLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.MagmaGorgeLabel.Location = new System.Drawing.Point(212, 27);
+ this.MagmaGorgeLabel.Name = "MagmaGorgeLabel";
+ this.MagmaGorgeLabel.Size = new System.Drawing.Size(305, 52);
+ this.MagmaGorgeLabel.TabIndex = 2;
+ this.MagmaGorgeLabel.Text = "MAGMA GORGE";
+ //
+ // minimizeButton
+ //
+ this.minimizeButton.Location = new System.Drawing.Point(641, 15);
+ this.minimizeButton.Name = "minimizeButton";
+ this.minimizeButton.Size = new System.Drawing.Size(26, 22);
+ this.minimizeButton.TabIndex = 19;
+ //
+ // closeButton
+ //
+ this.closeButton.Location = new System.Drawing.Point(680, 17);
+ this.closeButton.Name = "closeButton";
+ this.closeButton.Size = new System.Drawing.Size(26, 20);
+ this.closeButton.TabIndex = 20;
+ //
+ // MagmaGorge
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.BackColor = System.Drawing.Color.Gold;
+ this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
+ this.ClientSize = new System.Drawing.Size(726, 566);
+ this.Controls.Add(this.closeButton);
+ this.Controls.Add(this.minimizeButton);
+ this.Controls.Add(this.BonesLabel);
+ this.Controls.Add(this.BonesVR);
+ this.Controls.Add(this.BonesR);
+ this.Controls.Add(this.Bones);
+ this.Controls.Add(this.DeuceLabel);
+ this.Controls.Add(this.DeuceVR);
+ this.Controls.Add(this.DeuceR);
+ this.Controls.Add(this.Deuce);
+ this.Controls.Add(this.WasabiLabel);
+ this.Controls.Add(this.WasabiVR);
+ this.Controls.Add(this.WasabiR);
+ this.Controls.Add(this.Wasabi);
+ this.Controls.Add(this.StitchLabel);
+ this.Controls.Add(this.StitchVR);
+ this.Controls.Add(this.StitchR);
+ this.Controls.Add(this.Stitch);
+ this.Controls.Add(this.backButton);
+ this.Controls.Add(this.MagmaGorgeLabel);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
+ this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+ this.MaximizeBox = false;
+ this.Name = "MagmaGorge";
+ this.Text = "FunkeySelectorGUI - Magma Gorge";
+ this.TransparencyKey = System.Drawing.Color.Gold;
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Label BonesLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton BonesVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton BonesR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Bones;
+ private System.Windows.Forms.Label DeuceLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton DeuceVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton DeuceR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Deuce;
+ private System.Windows.Forms.Label WasabiLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton WasabiVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton WasabiR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Wasabi;
+ private System.Windows.Forms.Label StitchLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton StitchVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton StitchR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Stitch;
+ private FunkeySelector.UserControls.ChangeFormButton backButton;
+ private System.Windows.Forms.Label MagmaGorgeLabel;
+ private UserControls.MinimizeButton minimizeButton;
+ private UserControls.CloseButton closeButton;
+ }
+}
\ No newline at end of file
diff --git a/FunkeySelector/MagmaGorge.cs b/FunkeySelector/MagmaGorge.cs
new file mode 100644
index 0000000..d1002a2
--- /dev/null
+++ b/FunkeySelector/MagmaGorge.cs
@@ -0,0 +1,23 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Diagnostics;
+using System.Drawing;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+using FunkeySelector.UserControls;
+
+namespace FunkeySelector
+{
+ public partial class MagmaGorge : BasicForm
+ {
+ public MagmaGorge()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/FunkeySelector/Form4.resx b/FunkeySelector/MagmaGorge.resx
similarity index 99%
rename from FunkeySelector/Form4.resx
rename to FunkeySelector/MagmaGorge.resx
index 91b35ab..0ccc583 100644
--- a/FunkeySelector/Form4.resx
+++ b/FunkeySelector/MagmaGorge.resx
@@ -118,7 +118,7 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEStJREFUaEPtWGdYVde25bvv5ktyk6iJiL0mxhajL4mmmZhyTaLxRqNJvIkGpQjS
@@ -197,7 +197,7 @@
7cxKOrTTSktiZe5aiRfElzyzZ/bMntnTmoTEfwHhyTHYpUDX1wAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAElhJREFUaEPtmHdclmXbx28ETGRzb+7F3lPEzXDv1Fw5UMwETdME0dBInCgOhgsM
@@ -281,7 +281,7 @@
CYopcVIE4aqIkutoMYNYA+sjL/ESL/ESfxcKxf8Ai/T5Xg8VotoAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAELFJREFUaEPtWGdUVNfa9rvfyrolJhZ6G/oMw3SGOgNMYWYYZmDoWFARpVhARAFB
@@ -358,7 +358,7 @@
qePSlQvm2H0KdH3+5LzliT2xJ/bEHtf69PkH1c92mRV6QCsAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAD/JJREFUaEPtmFlso9d1x2V7EmcCz3jsWazxrPJ4PKtszWi0i6Q2SqKojaJWaiFF
@@ -432,7 +432,7 @@
8a3wLc/tuT235/asFhHx34FAxyqT32NNAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEZ1JREFUaEPtWHdsHPZ1Zux4yNYgeYPH4+299+Ttve+4N4+b4pC4RMmiuCSKEoes
@@ -513,7 +513,7 @@
LsGcWUddRR9eLD/jKZ7iKZ7iSVFR8Z98EQx8ha5XZwAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEZNJREFUaEPtWWdUleeWPr1/p1cO7dCRImIHxEaMvcTEFkssYEMEFAgWRLCAKCgi
@@ -594,7 +594,7 @@
ffJYHstjeSxtFZHoHz5HBXaQ0NqmAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEZlJREFUaEPtWHlUVfXaptJrlpWplVmWmkra1axb3cybmlnXLJu8aJkmKpOMMh/m
@@ -675,7 +675,7 @@
K15XUJBbKjv/GI/xGP81yMn9D5Akr1B7l17/AAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAErdJREFUaEPtmHd01XWaxu+oiAIJSW56SO8JCWlAICGFdBJCeu+9l5sE0nsvN72S
@@ -761,7 +761,7 @@
T4NE8l9VjCi9mUOwgAAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAD/hJREFUaEPtmXls1Gd6x52DBELA+MA2vj323Pd9j2fsmfE5NtjYBnxifGAOGxsb
@@ -835,7 +835,7 @@
Nu63Zdb1x62JveWJPbEn9o1ZXNz/ANxR1vfU1QqFAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEUFJREFUaEPtWXdYVGe+dhNLsGDMqsk1u7mb3Gx2n8RN2yR3Y4oajSa68ZpijERF
@@ -915,7 +915,7 @@
AAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAElBJREFUaEPtWHlQm/e1lR0nduJ4SZw4fo5TL9jGYIMXdiQhQCBAQoAWhNCGJEDs
@@ -999,7 +999,7 @@
LmfjGNsmGYwXbW95hmd4hn8aGIz/Ba7KTTZ8cE9GAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEeFJREFUaEPtWXdQ23l2/3ld6MUgQBKSQBIIRC+id4ToohfTDKaYYkwvpnfTm2kG
diff --git a/FunkeySelector/NightmareRift.Designer.cs b/FunkeySelector/NightmareRift.Designer.cs
new file mode 100644
index 0000000..aa39665
--- /dev/null
+++ b/FunkeySelector/NightmareRift.Designer.cs
@@ -0,0 +1,410 @@
+namespace FunkeySelector
+{
+ partial class NightmareRift
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(NightmareRift));
+ this.SnipeLabel = new System.Windows.Forms.Label();
+ this.SnipeVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.SnipeR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Snipe = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.SprocketLabel = new System.Windows.Forms.Label();
+ this.SprocketVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.SprocketR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Sprocket = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.VlurpLabel = new System.Windows.Forms.Label();
+ this.VlurpVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.VlurpR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Vlurp = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.PtepLabel = new System.Windows.Forms.Label();
+ this.PtepVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.PtepR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Ptep = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.backButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.NightmareRiftLabel = new System.Windows.Forms.Label();
+ this.minimizeButton = new FunkeySelector.UserControls.MinimizeButton();
+ this.closeButton = new FunkeySelector.UserControls.CloseButton();
+ this.SuspendLayout();
+ //
+ // SnipeLabel
+ //
+ this.SnipeLabel.AutoSize = true;
+ this.SnipeLabel.BackColor = System.Drawing.Color.Transparent;
+ this.SnipeLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SnipeLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.SnipeLabel.Location = new System.Drawing.Point(341, 432);
+ this.SnipeLabel.Name = "SnipeLabel";
+ this.SnipeLabel.Size = new System.Drawing.Size(80, 29);
+ this.SnipeLabel.TabIndex = 15;
+ this.SnipeLabel.Text = "SNIPE";
+ //
+ // SnipeVR
+ //
+ this.SnipeVR.BackColor = System.Drawing.Color.Transparent;
+ this.SnipeVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("SnipeVR.BackgroundImage")));
+ this.SnipeVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.SnipeVR.FlatAppearance.BorderSize = 0;
+ this.SnipeVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.SnipeVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SnipeVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.SnipeVR.FunkeyID = "000000CA";
+ this.SnipeVR.Location = new System.Drawing.Point(408, 454);
+ this.SnipeVR.Name = "SnipeVR";
+ this.SnipeVR.Size = new System.Drawing.Size(50, 63);
+ this.SnipeVR.TabIndex = 18;
+ this.SnipeVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.SnipeVR.UseVisualStyleBackColor = false;
+ //
+ // SnipeR
+ //
+ this.SnipeR.BackColor = System.Drawing.Color.Transparent;
+ this.SnipeR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("SnipeR.BackgroundImage")));
+ this.SnipeR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.SnipeR.FlatAppearance.BorderSize = 0;
+ this.SnipeR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.SnipeR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SnipeR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.SnipeR.FunkeyID = "000000B9";
+ this.SnipeR.Location = new System.Drawing.Point(357, 454);
+ this.SnipeR.Name = "SnipeR";
+ this.SnipeR.Size = new System.Drawing.Size(50, 63);
+ this.SnipeR.TabIndex = 17;
+ this.SnipeR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.SnipeR.UseVisualStyleBackColor = false;
+ //
+ // Snipe
+ //
+ this.Snipe.BackColor = System.Drawing.Color.Transparent;
+ this.Snipe.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Snipe.BackgroundImage")));
+ this.Snipe.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Snipe.FlatAppearance.BorderSize = 0;
+ this.Snipe.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Snipe.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Snipe.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Snipe.FunkeyID = "000000AC";
+ this.Snipe.Location = new System.Drawing.Point(306, 454);
+ this.Snipe.Name = "Snipe";
+ this.Snipe.Size = new System.Drawing.Size(50, 63);
+ this.Snipe.TabIndex = 16;
+ this.Snipe.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Snipe.UseVisualStyleBackColor = false;
+ //
+ // SprocketLabel
+ //
+ this.SprocketLabel.AutoSize = true;
+ this.SprocketLabel.BackColor = System.Drawing.Color.Transparent;
+ this.SprocketLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SprocketLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.SprocketLabel.Location = new System.Drawing.Point(321, 209);
+ this.SprocketLabel.Name = "SprocketLabel";
+ this.SprocketLabel.Size = new System.Drawing.Size(122, 29);
+ this.SprocketLabel.TabIndex = 7;
+ this.SprocketLabel.Text = "SPROCKET";
+ //
+ // SprocketVR
+ //
+ this.SprocketVR.BackColor = System.Drawing.Color.Transparent;
+ this.SprocketVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("SprocketVR.BackgroundImage")));
+ this.SprocketVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.SprocketVR.FlatAppearance.BorderSize = 0;
+ this.SprocketVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.SprocketVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SprocketVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.SprocketVR.FunkeyID = "000000C1";
+ this.SprocketVR.Location = new System.Drawing.Point(408, 233);
+ this.SprocketVR.Name = "SprocketVR";
+ this.SprocketVR.Size = new System.Drawing.Size(50, 63);
+ this.SprocketVR.TabIndex = 10;
+ this.SprocketVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.SprocketVR.UseVisualStyleBackColor = false;
+ //
+ // SprocketR
+ //
+ this.SprocketR.BackColor = System.Drawing.Color.Transparent;
+ this.SprocketR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("SprocketR.BackgroundImage")));
+ this.SprocketR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.SprocketR.FlatAppearance.BorderSize = 0;
+ this.SprocketR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.SprocketR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SprocketR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.SprocketR.FunkeyID = "000000B4";
+ this.SprocketR.Location = new System.Drawing.Point(357, 233);
+ this.SprocketR.Name = "SprocketR";
+ this.SprocketR.Size = new System.Drawing.Size(50, 63);
+ this.SprocketR.TabIndex = 9;
+ this.SprocketR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.SprocketR.UseVisualStyleBackColor = false;
+ //
+ // Sprocket
+ //
+ this.Sprocket.BackColor = System.Drawing.Color.Transparent;
+ this.Sprocket.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Sprocket.BackgroundImage")));
+ this.Sprocket.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Sprocket.FlatAppearance.BorderSize = 0;
+ this.Sprocket.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Sprocket.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Sprocket.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Sprocket.FunkeyID = "000000A4";
+ this.Sprocket.Location = new System.Drawing.Point(306, 233);
+ this.Sprocket.Name = "Sprocket";
+ this.Sprocket.Size = new System.Drawing.Size(50, 63);
+ this.Sprocket.TabIndex = 8;
+ this.Sprocket.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Sprocket.UseVisualStyleBackColor = false;
+ //
+ // VlurpLabel
+ //
+ this.VlurpLabel.AutoSize = true;
+ this.VlurpLabel.BackColor = System.Drawing.Color.Transparent;
+ this.VlurpLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.VlurpLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.VlurpLabel.Location = new System.Drawing.Point(344, 322);
+ this.VlurpLabel.Name = "VlurpLabel";
+ this.VlurpLabel.Size = new System.Drawing.Size(78, 29);
+ this.VlurpLabel.TabIndex = 11;
+ this.VlurpLabel.Text = "VLURP";
+ //
+ // VlurpVR
+ //
+ this.VlurpVR.BackColor = System.Drawing.Color.Transparent;
+ this.VlurpVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("VlurpVR.BackgroundImage")));
+ this.VlurpVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.VlurpVR.FlatAppearance.BorderSize = 0;
+ this.VlurpVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.VlurpVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.VlurpVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.VlurpVR.FunkeyID = "000000C2";
+ this.VlurpVR.Location = new System.Drawing.Point(408, 345);
+ this.VlurpVR.Name = "VlurpVR";
+ this.VlurpVR.Size = new System.Drawing.Size(50, 63);
+ this.VlurpVR.TabIndex = 14;
+ this.VlurpVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.VlurpVR.UseVisualStyleBackColor = false;
+ //
+ // VlurpR
+ //
+ this.VlurpR.BackColor = System.Drawing.Color.Transparent;
+ this.VlurpR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("VlurpR.BackgroundImage")));
+ this.VlurpR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.VlurpR.FlatAppearance.BorderSize = 0;
+ this.VlurpR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.VlurpR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.VlurpR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.VlurpR.FunkeyID = "000000B5";
+ this.VlurpR.Location = new System.Drawing.Point(357, 345);
+ this.VlurpR.Name = "VlurpR";
+ this.VlurpR.Size = new System.Drawing.Size(50, 63);
+ this.VlurpR.TabIndex = 13;
+ this.VlurpR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.VlurpR.UseVisualStyleBackColor = false;
+ //
+ // Vlurp
+ //
+ this.Vlurp.BackColor = System.Drawing.Color.Transparent;
+ this.Vlurp.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Vlurp.BackgroundImage")));
+ this.Vlurp.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Vlurp.FlatAppearance.BorderSize = 0;
+ this.Vlurp.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Vlurp.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Vlurp.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Vlurp.FunkeyID = "000000A8";
+ this.Vlurp.Location = new System.Drawing.Point(306, 345);
+ this.Vlurp.Name = "Vlurp";
+ this.Vlurp.Size = new System.Drawing.Size(50, 63);
+ this.Vlurp.TabIndex = 12;
+ this.Vlurp.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Vlurp.UseVisualStyleBackColor = false;
+ //
+ // PtepLabel
+ //
+ this.PtepLabel.AutoSize = true;
+ this.PtepLabel.BackColor = System.Drawing.Color.Transparent;
+ this.PtepLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.PtepLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.PtepLabel.Location = new System.Drawing.Point(352, 101);
+ this.PtepLabel.Name = "PtepLabel";
+ this.PtepLabel.Size = new System.Drawing.Size(62, 29);
+ this.PtepLabel.TabIndex = 3;
+ this.PtepLabel.Text = "PTEP";
+ //
+ // PtepVR
+ //
+ this.PtepVR.BackColor = System.Drawing.Color.Transparent;
+ this.PtepVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("PtepVR.BackgroundImage")));
+ this.PtepVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.PtepVR.FlatAppearance.BorderSize = 0;
+ this.PtepVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.PtepVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.PtepVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.PtepVR.FunkeyID = "000000BA";
+ this.PtepVR.Location = new System.Drawing.Point(408, 125);
+ this.PtepVR.Name = "PtepVR";
+ this.PtepVR.Size = new System.Drawing.Size(50, 63);
+ this.PtepVR.TabIndex = 6;
+ this.PtepVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.PtepVR.UseVisualStyleBackColor = false;
+ //
+ // PtepR
+ //
+ this.PtepR.BackColor = System.Drawing.Color.Transparent;
+ this.PtepR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("PtepR.BackgroundImage")));
+ this.PtepR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.PtepR.FlatAppearance.BorderSize = 0;
+ this.PtepR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.PtepR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.PtepR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.PtepR.FunkeyID = "000000AD";
+ this.PtepR.Location = new System.Drawing.Point(357, 125);
+ this.PtepR.Name = "PtepR";
+ this.PtepR.Size = new System.Drawing.Size(50, 63);
+ this.PtepR.TabIndex = 5;
+ this.PtepR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.PtepR.UseVisualStyleBackColor = false;
+ //
+ // Ptep
+ //
+ this.Ptep.BackColor = System.Drawing.Color.Transparent;
+ this.Ptep.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Ptep.BackgroundImage")));
+ this.Ptep.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Ptep.FlatAppearance.BorderSize = 0;
+ this.Ptep.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Ptep.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Ptep.ForeColor = System.Drawing.Color.Transparent;
+ this.Ptep.FunkeyID = "000000A0";
+ this.Ptep.Location = new System.Drawing.Point(306, 125);
+ this.Ptep.Name = "Ptep";
+ this.Ptep.Size = new System.Drawing.Size(50, 63);
+ this.Ptep.TabIndex = 4;
+ this.Ptep.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Ptep.UseVisualStyleBackColor = false;
+ //
+ // backButton
+ //
+ this.backButton.BackColor = System.Drawing.Color.Transparent;
+ this.backButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.backButton.FlatAppearance.BorderSize = 0;
+ this.backButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.backButton.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.backButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.backButton.FormToOpen = "Form1";
+ this.backButton.KeepCurrentForm = false;
+ this.backButton.Location = new System.Drawing.Point(12, 12);
+ this.backButton.Name = "backButton";
+ this.backButton.Size = new System.Drawing.Size(101, 48);
+ this.backButton.TabIndex = 1;
+ this.backButton.Text = "BACK";
+ this.backButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.backButton.UseVisualStyleBackColor = false;
+ //
+ // NightmareRiftLabel
+ //
+ this.NightmareRiftLabel.AutoSize = true;
+ this.NightmareRiftLabel.BackColor = System.Drawing.Color.Transparent;
+ this.NightmareRiftLabel.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.NightmareRiftLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.NightmareRiftLabel.Location = new System.Drawing.Point(220, 20);
+ this.NightmareRiftLabel.Name = "NightmareRiftLabel";
+ this.NightmareRiftLabel.Size = new System.Drawing.Size(357, 52);
+ this.NightmareRiftLabel.TabIndex = 2;
+ this.NightmareRiftLabel.Text = "NIGHTMARE RIFT";
+ //
+ // minimizeButton
+ //
+ this.minimizeButton.Location = new System.Drawing.Point(642, 15);
+ this.minimizeButton.Name = "minimizeButton";
+ this.minimizeButton.Size = new System.Drawing.Size(26, 22);
+ this.minimizeButton.TabIndex = 19;
+ //
+ // closeButton
+ //
+ this.closeButton.Location = new System.Drawing.Point(681, 17);
+ this.closeButton.Name = "closeButton";
+ this.closeButton.Size = new System.Drawing.Size(26, 20);
+ this.closeButton.TabIndex = 20;
+ //
+ // NightmareRift
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
+ this.ClientSize = new System.Drawing.Size(726, 566);
+ this.Controls.Add(this.closeButton);
+ this.Controls.Add(this.minimizeButton);
+ this.Controls.Add(this.SnipeLabel);
+ this.Controls.Add(this.SnipeVR);
+ this.Controls.Add(this.SnipeR);
+ this.Controls.Add(this.Snipe);
+ this.Controls.Add(this.SprocketLabel);
+ this.Controls.Add(this.SprocketVR);
+ this.Controls.Add(this.SprocketR);
+ this.Controls.Add(this.Sprocket);
+ this.Controls.Add(this.VlurpLabel);
+ this.Controls.Add(this.VlurpVR);
+ this.Controls.Add(this.VlurpR);
+ this.Controls.Add(this.Vlurp);
+ this.Controls.Add(this.PtepLabel);
+ this.Controls.Add(this.PtepVR);
+ this.Controls.Add(this.PtepR);
+ this.Controls.Add(this.Ptep);
+ this.Controls.Add(this.backButton);
+ this.Controls.Add(this.NightmareRiftLabel);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
+ this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+ this.MaximizeBox = false;
+ this.Name = "NightmareRift";
+ this.Text = "FunkeySelectorGUI - Nightmare Rift";
+ this.TransparencyKey = System.Drawing.Color.Gold;
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Label SnipeLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton SnipeVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton SnipeR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Snipe;
+ private System.Windows.Forms.Label SprocketLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton SprocketVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton SprocketR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Sprocket;
+ private System.Windows.Forms.Label VlurpLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton VlurpVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton VlurpR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Vlurp;
+ private System.Windows.Forms.Label PtepLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton PtepVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton PtepR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Ptep;
+ private FunkeySelector.UserControls.ChangeFormButton backButton;
+ private System.Windows.Forms.Label NightmareRiftLabel;
+ private UserControls.MinimizeButton minimizeButton;
+ private UserControls.CloseButton closeButton;
+ }
+}
\ No newline at end of file
diff --git a/FunkeySelector/NightmareRift.cs b/FunkeySelector/NightmareRift.cs
new file mode 100644
index 0000000..27e3916
--- /dev/null
+++ b/FunkeySelector/NightmareRift.cs
@@ -0,0 +1,23 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Diagnostics;
+using System.Drawing;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+using FunkeySelector.UserControls;
+
+namespace FunkeySelector
+{
+ public partial class NightmareRift : BasicForm
+ {
+ public NightmareRift()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/FunkeySelector/Form8.resx b/FunkeySelector/NightmareRift.resx
similarity index 99%
rename from FunkeySelector/Form8.resx
rename to FunkeySelector/NightmareRift.resx
index 4896d96..07c1361 100644
--- a/FunkeySelector/Form8.resx
+++ b/FunkeySelector/NightmareRift.resx
@@ -118,7 +118,7 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEfRJREFUaEPtV3lYzevaXkiGZChKaJKmlQaVitA8z5MmDZrnuURzKRkTSmUIqch0
@@ -201,7 +201,7 @@
AABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEVNJREFUaEPtV2dspOdx3iu8QvLYyWXnctnJ5XI7t5Dbe+X2zl0uyWUnl70c25G8
@@ -281,7 +281,7 @@
T/AE/+/AYPwXVPbyIy5B9RwAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAD8ZJREFUaEPtWWlsnNd15SJKoiRTXIYc7px9uMy+7/vGmSFnuAyHHA6H+05x0U5F
@@ -354,7 +354,7 @@
BX9MPdaXX/3Ol/pfXi6q2fn5A3kgD+SBPJD/b1JU9N+J8T59DiBu2gAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAENxJREFUaEPtWWlsI4d13jYwjDr27uriKZ7iOZyLnCGH9ylRIkVS0krUrZW0Olfn
@@ -432,7 +432,7 @@
Pbfn9qx26tT/AjpOjr+3xeYuAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEjVJREFUaEPtWGlQ2/eZ1jZH2yS2AXPfoFuAJHSiAx3oRBICCQQCxCGQkATivs1l
@@ -516,7 +516,7 @@
kHkPAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEGlJREFUaEPtWFlsXId1ZexosyXLJkVR4r7MDGff933fOStnJznDGZIzJGfnKpIS
@@ -592,7 +592,7 @@
+89je2yP7bH9v7O+vv8Ea1AcxNOU+dAAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEnNJREFUaEPtmAdQlXe6xg/SLagYNSbGaLLJxp2b7iYb1yQbEzcbS2I0bmJixULv
@@ -677,7 +677,7 @@
XaiwCkcAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAETBJREFUaEPtmHdUVPe2x0dAUIyxx2hsGBITTSzYOxEbajRqABsqIJ2hD9J7r9J7
@@ -756,7 +756,7 @@
+7XV/ObywsgUQYKZWuc5JVm6Tezd3R/0QR/0Qf9/xOH8A6+H2dZnxd2YAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEP9JREFUaEPtWHdUVPe6BRRQEA32gi3RxBI1RtHEqIkl6hNNLMEoCoj0Mg4DAwx1
@@ -835,7 +835,7 @@
RK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAELBJREFUaEPtWXlso/lZ9s7OZGZy35dzO4kTO77i+77v246d2I6dOJdj53Cca3LM
@@ -912,7 +912,7 @@
6i+9vaMwczjXqpd5bs/tuT235/b/yTic/wCMSORRIx+tHQAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEfdJREFUaEPtWXlw2/WVz8zObKeFtiwtZRcKpBxJyGE7+L5kWZaty5J1W6d1WIdl
@@ -995,7 +995,7 @@
XAAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEbpJREFUaEPtWWdQXFeaZXa9O7uz5S17drzeWdfYHgd5vPbYlke2xnKWlS1LViAJ
diff --git a/FunkeySelector/Options.Designer.cs b/FunkeySelector/Options.Designer.cs
new file mode 100644
index 0000000..add92c7
--- /dev/null
+++ b/FunkeySelector/Options.Designer.cs
@@ -0,0 +1,168 @@
+namespace FunkeySelector
+{
+ partial class Options
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Options));
+ this.OptionsLabel = new System.Windows.Forms.Label();
+ this.disableModCheck = new FunkeySelector.UserControls.SettingCheckBox();
+ this.disableGameCheck = new FunkeySelector.UserControls.SettingCheckBox();
+ this.wineCompat = new FunkeySelector.UserControls.SettingCheckBox();
+ this.disableWineCheck = new FunkeySelector.UserControls.SettingCheckBox();
+ this.aboutButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.okButton = new FunkeySelector.UserControls.OKButton();
+ this.SuspendLayout();
+ //
+ // OptionsLabel
+ //
+ this.OptionsLabel.AutoSize = true;
+ this.OptionsLabel.BackColor = System.Drawing.Color.Transparent;
+ this.OptionsLabel.Font = new System.Drawing.Font("Comic Sans MS", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.OptionsLabel.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.OptionsLabel.Location = new System.Drawing.Point(234, 25);
+ this.OptionsLabel.Name = "OptionsLabel";
+ this.OptionsLabel.Size = new System.Drawing.Size(103, 26);
+ this.OptionsLabel.TabIndex = 1;
+ this.OptionsLabel.Text = "OPTIONS";
+ //
+ // disableModCheck
+ //
+ this.disableModCheck.AutoSize = true;
+ this.disableModCheck.BackColor = System.Drawing.Color.Transparent;
+ this.disableModCheck.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.disableModCheck.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.disableModCheck.Location = new System.Drawing.Point(111, 66);
+ this.disableModCheck.Name = "disableModCheck";
+ this.disableModCheck.SettingName = "disableModCheck";
+ this.disableModCheck.Size = new System.Drawing.Size(351, 24);
+ this.disableModCheck.TabIndex = 2;
+ this.disableModCheck.Text = "DISABLE FUNKEYS SELECTION MOD CHECK";
+ this.disableModCheck.UseVisualStyleBackColor = false;
+ //
+ // disableGameCheck
+ //
+ this.disableGameCheck.AutoSize = true;
+ this.disableGameCheck.BackColor = System.Drawing.Color.Transparent;
+ this.disableGameCheck.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.disableGameCheck.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.disableGameCheck.Location = new System.Drawing.Point(111, 89);
+ this.disableGameCheck.Name = "disableGameCheck";
+ this.disableGameCheck.SettingName = "disableGameCheck";
+ this.disableGameCheck.Size = new System.Drawing.Size(297, 24);
+ this.disableGameCheck.TabIndex = 3;
+ this.disableGameCheck.Text = "DISABLE U.B. FUNKEYS GAME CHECK";
+ this.disableGameCheck.UseVisualStyleBackColor = false;
+ //
+ // wineCompat
+ //
+ this.wineCompat.AutoSize = true;
+ this.wineCompat.BackColor = System.Drawing.Color.Transparent;
+ this.wineCompat.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.wineCompat.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.wineCompat.Location = new System.Drawing.Point(111, 135);
+ this.wineCompat.Name = "wineCompat";
+ this.wineCompat.SettingName = "wineCompat";
+ this.wineCompat.Size = new System.Drawing.Size(257, 24);
+ this.wineCompat.TabIndex = 5;
+ this.wineCompat.Text = "WINE/MONO COMPATIBILITY";
+ this.wineCompat.UseVisualStyleBackColor = false;
+ //
+ // disableWineCheck
+ //
+ this.disableWineCheck.AutoSize = true;
+ this.disableWineCheck.BackColor = System.Drawing.Color.Transparent;
+ this.disableWineCheck.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.disableWineCheck.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.disableWineCheck.Location = new System.Drawing.Point(111, 112);
+ this.disableWineCheck.Name = "disableWineCheck";
+ this.disableWineCheck.SettingName = "disableWineCheck";
+ this.disableWineCheck.Size = new System.Drawing.Size(194, 24);
+ this.disableWineCheck.TabIndex = 4;
+ this.disableWineCheck.Text = "DISABLE WINE CHECK";
+ this.disableWineCheck.UseVisualStyleBackColor = false;
+ //
+ // aboutButton
+ //
+ this.aboutButton.BackColor = System.Drawing.Color.Transparent;
+ this.aboutButton.FlatAppearance.BorderSize = 0;
+ this.aboutButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.aboutButton.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.aboutButton.ForeColor = System.Drawing.SystemColors.ButtonFace;
+ this.aboutButton.FormToOpen = "About";
+ this.aboutButton.KeepCurrentForm = true;
+ this.aboutButton.Location = new System.Drawing.Point(146, 187);
+ this.aboutButton.Name = "aboutButton";
+ this.aboutButton.Size = new System.Drawing.Size(262, 31);
+ this.aboutButton.TabIndex = 6;
+ this.aboutButton.Text = "ABOUT FUNKEYSELECTORGUI";
+ this.aboutButton.UseVisualStyleBackColor = false;
+ //
+ // okButton
+ //
+ this.okButton.BackColor = System.Drawing.Color.Transparent;
+ this.okButton.CloseForm = true;
+ this.okButton.Location = new System.Drawing.Point(242, 244);
+ this.okButton.Name = "okButton";
+ this.okButton.Size = new System.Drawing.Size(86, 23);
+ this.okButton.TabIndex = 7;
+ //
+ // Options
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.BackColor = System.Drawing.Color.Gold;
+ this.BackgroundImage = global::FunkeySelector.Properties.Resources._1841;
+ this.ClientSize = new System.Drawing.Size(570, 273);
+ this.Controls.Add(this.okButton);
+ this.Controls.Add(this.aboutButton);
+ this.Controls.Add(this.disableWineCheck);
+ this.Controls.Add(this.wineCompat);
+ this.Controls.Add(this.disableGameCheck);
+ this.Controls.Add(this.disableModCheck);
+ this.Controls.Add(this.OptionsLabel);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
+ this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+ this.MaximizeBox = false;
+ this.Name = "Options";
+ this.Text = "FunkeySelectorGUI - Options";
+ this.TransparencyKey = System.Drawing.Color.Gold;
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+ private System.Windows.Forms.Label OptionsLabel;
+ private FunkeySelector.UserControls.SettingCheckBox disableModCheck;
+ private FunkeySelector.UserControls.SettingCheckBox disableGameCheck;
+ private FunkeySelector.UserControls.SettingCheckBox wineCompat;
+ private FunkeySelector.UserControls.SettingCheckBox disableWineCheck;
+ private FunkeySelector.UserControls.ChangeFormButton aboutButton;
+ private UserControls.OKButton okButton;
+ }
+}
\ No newline at end of file
diff --git a/FunkeySelector/Options.cs b/FunkeySelector/Options.cs
new file mode 100644
index 0000000..e2ccb28
--- /dev/null
+++ b/FunkeySelector/Options.cs
@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Linq;
+using System.Text;
+using System.Windows.Forms;
+using FunkeySelector.UserControls;
+
+namespace FunkeySelector
+{
+ public partial class Options : BasicForm
+ {
+ public Options()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/FunkeySelector/Form13.resx b/FunkeySelector/Options.resx
similarity index 99%
rename from FunkeySelector/Form13.resx
rename to FunkeySelector/Options.resx
index ba402d1..f3b2f68 100644
--- a/FunkeySelector/Form13.resx
+++ b/FunkeySelector/Options.resx
@@ -117,9 +117,6 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 17, 17
-
diff --git a/FunkeySelector/ParadoxGreen.Designer.cs b/FunkeySelector/ParadoxGreen.Designer.cs
new file mode 100644
index 0000000..9bd54b9
--- /dev/null
+++ b/FunkeySelector/ParadoxGreen.Designer.cs
@@ -0,0 +1,331 @@
+namespace FunkeySelector
+{
+ partial class ParadoxGreen
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ParadoxGreen));
+ this.AceLabel = new System.Windows.Forms.Label();
+ this.Ace = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.MulchLabel = new System.Windows.Forms.Label();
+ this.Mulch = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.TaddLabel = new System.Windows.Forms.Label();
+ this.TaddVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.TaddR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Tadd = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.ParadoxGreenLabel = new System.Windows.Forms.Label();
+ this.backButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.Rastro = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.RastroR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.RastroVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.RastroLabel = new System.Windows.Forms.Label();
+ this.minimizeButton = new FunkeySelector.UserControls.MinimizeButton();
+ this.closeButton = new FunkeySelector.UserControls.CloseButton();
+ this.SuspendLayout();
+ //
+ // AceLabel
+ //
+ this.AceLabel.AutoSize = true;
+ this.AceLabel.BackColor = System.Drawing.Color.Transparent;
+ this.AceLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.AceLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.AceLabel.Location = new System.Drawing.Point(366, 442);
+ this.AceLabel.Name = "AceLabel";
+ this.AceLabel.Size = new System.Drawing.Size(54, 29);
+ this.AceLabel.TabIndex = 13;
+ this.AceLabel.Text = "ACE";
+ //
+ // Ace
+ //
+ this.Ace.BackColor = System.Drawing.Color.Transparent;
+ this.Ace.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Ace.BackgroundImage")));
+ this.Ace.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Ace.FlatAppearance.BorderSize = 0;
+ this.Ace.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Ace.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Ace.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.Ace.FunkeyID = "00000127";
+ this.Ace.Location = new System.Drawing.Point(368, 460);
+ this.Ace.Name = "Ace";
+ this.Ace.Size = new System.Drawing.Size(50, 63);
+ this.Ace.TabIndex = 14;
+ this.Ace.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Ace.UseVisualStyleBackColor = false;
+ //
+ // MulchLabel
+ //
+ this.MulchLabel.AutoSize = true;
+ this.MulchLabel.BackColor = System.Drawing.Color.Transparent;
+ this.MulchLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.MulchLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.MulchLabel.Location = new System.Drawing.Point(350, 333);
+ this.MulchLabel.Name = "MulchLabel";
+ this.MulchLabel.Size = new System.Drawing.Size(88, 29);
+ this.MulchLabel.TabIndex = 11;
+ this.MulchLabel.Text = "MULCH";
+ //
+ // Mulch
+ //
+ this.Mulch.BackColor = System.Drawing.Color.Transparent;
+ this.Mulch.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Mulch.BackgroundImage")));
+ this.Mulch.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Mulch.FlatAppearance.BorderSize = 0;
+ this.Mulch.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Mulch.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Mulch.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.Mulch.FunkeyID = "00000126";
+ this.Mulch.Location = new System.Drawing.Point(368, 352);
+ this.Mulch.Name = "Mulch";
+ this.Mulch.Size = new System.Drawing.Size(50, 63);
+ this.Mulch.TabIndex = 12;
+ this.Mulch.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Mulch.UseVisualStyleBackColor = false;
+ //
+ // TaddLabel
+ //
+ this.TaddLabel.AutoSize = true;
+ this.TaddLabel.BackColor = System.Drawing.Color.Transparent;
+ this.TaddLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.TaddLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.TaddLabel.Location = new System.Drawing.Point(360, 221);
+ this.TaddLabel.Name = "TaddLabel";
+ this.TaddLabel.Size = new System.Drawing.Size(72, 29);
+ this.TaddLabel.TabIndex = 7;
+ this.TaddLabel.Text = "TADD";
+ //
+ // TaddVR
+ //
+ this.TaddVR.BackColor = System.Drawing.Color.Transparent;
+ this.TaddVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("TaddVR.BackgroundImage")));
+ this.TaddVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.TaddVR.FlatAppearance.BorderSize = 0;
+ this.TaddVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.TaddVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.TaddVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.TaddVR.FunkeyID = "00000123";
+ this.TaddVR.Location = new System.Drawing.Point(419, 242);
+ this.TaddVR.Name = "TaddVR";
+ this.TaddVR.Size = new System.Drawing.Size(50, 63);
+ this.TaddVR.TabIndex = 10;
+ this.TaddVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.TaddVR.UseVisualStyleBackColor = false;
+ //
+ // TaddR
+ //
+ this.TaddR.BackColor = System.Drawing.Color.Transparent;
+ this.TaddR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("TaddR.BackgroundImage")));
+ this.TaddR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.TaddR.FlatAppearance.BorderSize = 0;
+ this.TaddR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.TaddR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.TaddR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.TaddR.FunkeyID = "0000011C";
+ this.TaddR.Location = new System.Drawing.Point(368, 242);
+ this.TaddR.Name = "TaddR";
+ this.TaddR.Size = new System.Drawing.Size(50, 63);
+ this.TaddR.TabIndex = 9;
+ this.TaddR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.TaddR.UseVisualStyleBackColor = false;
+ //
+ // Tadd
+ //
+ this.Tadd.BackColor = System.Drawing.Color.Transparent;
+ this.Tadd.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Tadd.BackgroundImage")));
+ this.Tadd.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Tadd.FlatAppearance.BorderSize = 0;
+ this.Tadd.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Tadd.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Tadd.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Tadd.FunkeyID = "00000118";
+ this.Tadd.Location = new System.Drawing.Point(317, 242);
+ this.Tadd.Name = "Tadd";
+ this.Tadd.Size = new System.Drawing.Size(50, 63);
+ this.Tadd.TabIndex = 8;
+ this.Tadd.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Tadd.UseVisualStyleBackColor = false;
+ //
+ // ParadoxGreenLabel
+ //
+ this.ParadoxGreenLabel.AutoSize = true;
+ this.ParadoxGreenLabel.BackColor = System.Drawing.Color.Transparent;
+ this.ParadoxGreenLabel.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.ParadoxGreenLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.ParadoxGreenLabel.Location = new System.Drawing.Point(206, 10);
+ this.ParadoxGreenLabel.Name = "ParadoxGreenLabel";
+ this.ParadoxGreenLabel.Size = new System.Drawing.Size(337, 52);
+ this.ParadoxGreenLabel.TabIndex = 2;
+ this.ParadoxGreenLabel.Text = "PARADOX GREEN";
+ //
+ // backButton
+ //
+ this.backButton.BackColor = System.Drawing.Color.Transparent;
+ this.backButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.backButton.FlatAppearance.BorderSize = 0;
+ this.backButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.backButton.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.backButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.backButton.FormToOpen = "Form1";
+ this.backButton.KeepCurrentForm = false;
+ this.backButton.Location = new System.Drawing.Point(12, 10);
+ this.backButton.Name = "backButton";
+ this.backButton.Size = new System.Drawing.Size(101, 48);
+ this.backButton.TabIndex = 1;
+ this.backButton.Text = "BACK";
+ this.backButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.backButton.UseVisualStyleBackColor = false;
+ //
+ // Rastro
+ //
+ this.Rastro.BackColor = System.Drawing.Color.Transparent;
+ this.Rastro.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Rastro.BackgroundImage")));
+ this.Rastro.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Rastro.FlatAppearance.BorderSize = 0;
+ this.Rastro.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Rastro.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Rastro.ForeColor = System.Drawing.Color.Transparent;
+ this.Rastro.FunkeyID = "00000117";
+ this.Rastro.Location = new System.Drawing.Point(317, 128);
+ this.Rastro.Name = "Rastro";
+ this.Rastro.Size = new System.Drawing.Size(50, 63);
+ this.Rastro.TabIndex = 4;
+ this.Rastro.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Rastro.UseVisualStyleBackColor = false;
+ //
+ // RastroR
+ //
+ this.RastroR.BackColor = System.Drawing.Color.Transparent;
+ this.RastroR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("RastroR.BackgroundImage")));
+ this.RastroR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.RastroR.FlatAppearance.BorderSize = 0;
+ this.RastroR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.RastroR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.RastroR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.RastroR.FunkeyID = "0000011B";
+ this.RastroR.Location = new System.Drawing.Point(368, 128);
+ this.RastroR.Name = "RastroR";
+ this.RastroR.Size = new System.Drawing.Size(50, 63);
+ this.RastroR.TabIndex = 5;
+ this.RastroR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.RastroR.UseVisualStyleBackColor = false;
+ //
+ // RastroVR
+ //
+ this.RastroVR.BackColor = System.Drawing.Color.Transparent;
+ this.RastroVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("RastroVR.BackgroundImage")));
+ this.RastroVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.RastroVR.FlatAppearance.BorderSize = 0;
+ this.RastroVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.RastroVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.RastroVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.RastroVR.FunkeyID = "00000122";
+ this.RastroVR.Location = new System.Drawing.Point(419, 128);
+ this.RastroVR.Name = "RastroVR";
+ this.RastroVR.Size = new System.Drawing.Size(50, 63);
+ this.RastroVR.TabIndex = 6;
+ this.RastroVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.RastroVR.UseVisualStyleBackColor = false;
+ //
+ // RastroLabel
+ //
+ this.RastroLabel.AutoSize = true;
+ this.RastroLabel.BackColor = System.Drawing.Color.Transparent;
+ this.RastroLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.RastroLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.RastroLabel.Location = new System.Drawing.Point(344, 106);
+ this.RastroLabel.Name = "RastroLabel";
+ this.RastroLabel.Size = new System.Drawing.Size(100, 29);
+ this.RastroLabel.TabIndex = 3;
+ this.RastroLabel.Text = "RASTRO";
+ //
+ // minimizeButton
+ //
+ this.minimizeButton.Location = new System.Drawing.Point(642, 14);
+ this.minimizeButton.Name = "minimizeButton";
+ this.minimizeButton.Size = new System.Drawing.Size(26, 22);
+ this.minimizeButton.TabIndex = 15;
+ //
+ // closeButton
+ //
+ this.closeButton.Location = new System.Drawing.Point(681, 16);
+ this.closeButton.Name = "closeButton";
+ this.closeButton.Size = new System.Drawing.Size(26, 20);
+ this.closeButton.TabIndex = 16;
+ //
+ // ParadoxGreen
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.BackColor = System.Drawing.Color.Gold;
+ this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
+ this.ClientSize = new System.Drawing.Size(726, 566);
+ this.Controls.Add(this.closeButton);
+ this.Controls.Add(this.minimizeButton);
+ this.Controls.Add(this.AceLabel);
+ this.Controls.Add(this.Ace);
+ this.Controls.Add(this.MulchLabel);
+ this.Controls.Add(this.Mulch);
+ this.Controls.Add(this.TaddLabel);
+ this.Controls.Add(this.TaddVR);
+ this.Controls.Add(this.TaddR);
+ this.Controls.Add(this.Tadd);
+ this.Controls.Add(this.RastroLabel);
+ this.Controls.Add(this.RastroVR);
+ this.Controls.Add(this.RastroR);
+ this.Controls.Add(this.Rastro);
+ this.Controls.Add(this.backButton);
+ this.Controls.Add(this.ParadoxGreenLabel);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
+ this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+ this.MaximizeBox = false;
+ this.Name = "ParadoxGreen";
+ this.Text = "FunkeySelectorGUI - Paradox Green";
+ this.TransparencyKey = System.Drawing.Color.Gold;
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Label AceLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton Ace;
+ private System.Windows.Forms.Label MulchLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton Mulch;
+ private System.Windows.Forms.Label TaddLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton TaddVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton TaddR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Tadd;
+ private System.Windows.Forms.Label ParadoxGreenLabel;
+ private FunkeySelector.UserControls.ChangeFormButton backButton;
+ private FunkeySelector.UserControls.FunkeyChangerButton Rastro;
+ private FunkeySelector.UserControls.FunkeyChangerButton RastroR;
+ private FunkeySelector.UserControls.FunkeyChangerButton RastroVR;
+ private System.Windows.Forms.Label RastroLabel;
+ private UserControls.MinimizeButton minimizeButton;
+ private UserControls.CloseButton closeButton;
+ }
+}
\ No newline at end of file
diff --git a/FunkeySelector/ParadoxGreen.cs b/FunkeySelector/ParadoxGreen.cs
new file mode 100644
index 0000000..0abcc3c
--- /dev/null
+++ b/FunkeySelector/ParadoxGreen.cs
@@ -0,0 +1,23 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Diagnostics;
+using System.Drawing;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+using FunkeySelector.UserControls;
+
+namespace FunkeySelector
+{
+ public partial class ParadoxGreen : BasicForm
+ {
+ public ParadoxGreen()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/FunkeySelector/Form11.resx b/FunkeySelector/ParadoxGreen.resx
similarity index 99%
rename from FunkeySelector/Form11.resx
rename to FunkeySelector/ParadoxGreen.resx
index d781e0b..94a579d 100644
--- a/FunkeySelector/Form11.resx
+++ b/FunkeySelector/ParadoxGreen.resx
@@ -118,7 +118,7 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEz9JREFUaEPtWGl0k+eVVpamDZmSkIQ0kEDAYGMb4wUvyPtuybK8S7KsXbKs1Vqs
@@ -206,7 +206,7 @@
ZMUKysKIsWxxxRM8wRM8wZ8HhfLvaVITYOxDrVIAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAE4tJREFUaEPtmQdQVVmaxy85Z8lIjoKCPlEki+QgiDySPEByRgmSRIKARBHECAIK
@@ -295,7 +295,7 @@
aKhOMzbW1NXREdWWlqZUZs3ilqDZU9zk0v8YD3znO/9/oaj/AriFJ8Zrqyb9AAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEt9JREFUaEPtmHdQlHmax1/JSFJyDiooqEgyIEqQnCQ0IEkwgEqQnKGb0N10k5qG
@@ -382,7 +382,7 @@
RK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAE1tJREFUaEPtV3dUVPeffQIjCKMoVQRs2AAVEQ0WlN4GpLeRXkS6MHSkSxMpSpMi
@@ -471,7 +471,7 @@
AElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEhJJREFUaEPtWHdU1eeW/RCQ3kQERLErmliidCygdKT33nu99HbpVXovV7oIAgIC
@@ -554,7 +554,7 @@
+kED5qDF2Ebhz1/jNV7jDwVj/wHwt2p5V+TFGAAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEyJJREFUaEPtmWdUVle3hY9BRRGU3ouKNaAQjSVqNNgLNspL7wLy0pGidASVIiio
@@ -642,7 +642,7 @@
AAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAE9hJREFUaEPtmXdUVFe7xieJBUTFXmOJBhV7QcWCYMFCbyJ1GNowDEMvQ+9dFFAs
@@ -733,7 +733,7 @@
BpEAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAE0BJREFUaEPtWXl0k3W6TtpsTZomaelOF7olaZqlWZu0aZI23dOF7vvepvtOoaUL
diff --git a/FunkeySelector/Program.cs b/FunkeySelector/Program.cs
index f7b2bd1..a31d8a1 100644
--- a/FunkeySelector/Program.cs
+++ b/FunkeySelector/Program.cs
@@ -17,18 +17,16 @@ static class Program
[STAThread]
static void Main(string[] args)
{
- CustomFManager customF = new CustomFManager();
- if (args != null && args.Length > 0) //If there's an argument in the execution.
+ // If called with an argument
+ if (args != null && args.Length > 0)
{
- string funkeyCodeNum = args[0];
- customF.setFunkey(funkeyCodeNum);
- }
- else
- {
- Application.EnableVisualStyles();
- Application.SetCompatibleTextRenderingDefault(false);
- Application.Run(new Form1());
+ CustomF.SetFunkey(args[0]);
+ return;
}
+
+ Application.EnableVisualStyles();
+ Application.SetCompatibleTextRenderingDefault(false);
+ Application.Run(new Form1());
}
}
}
diff --git a/FunkeySelector/Properties/Resources.Designer.cs b/FunkeySelector/Properties/Resources.Designer.cs
index f2262b7..d28050a 100644
--- a/FunkeySelector/Properties/Resources.Designer.cs
+++ b/FunkeySelector/Properties/Resources.Designer.cs
@@ -170,6 +170,36 @@ internal static System.Drawing.Bitmap _250 {
}
}
+ ///
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap _542 {
+ get {
+ object obj = ResourceManager.GetObject("542", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap _544 {
+ get {
+ object obj = ResourceManager.GetObject("544", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap _546 {
+ get {
+ object obj = ResourceManager.GetObject("546", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
diff --git a/FunkeySelector/Properties/Resources.resx b/FunkeySelector/Properties/Resources.resx
index 1bea303..6a9590f 100644
--- a/FunkeySelector/Properties/Resources.resx
+++ b/FunkeySelector/Properties/Resources.resx
@@ -121,17 +121,14 @@
..\Resources\232.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
- ..\Resources\250.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ ..\Resources\234.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
..\Resources\154.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
- ..\Resources\150.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
-
- ..\Resources\230.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ ..\Resources\1841.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
..\Resources\2432.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
@@ -139,25 +136,37 @@
..\Resources\248.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ ..\Resources\250.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
..\Resources\679.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
- ..\Resources\246.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ ..\Resources\544.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\542.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\230.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
..\Resources\683.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ ..\Resources\246.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
..\Resources\157.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
- ..\Resources\234.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ ..\Resources\150.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\546.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
..\Resources\681.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
- ..\Resources\1841.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
\ No newline at end of file
diff --git a/FunkeySelector/Resources/542.png b/FunkeySelector/Resources/542.png
new file mode 100644
index 0000000..1aa5da0
Binary files /dev/null and b/FunkeySelector/Resources/542.png differ
diff --git a/FunkeySelector/Resources/544.png b/FunkeySelector/Resources/544.png
new file mode 100644
index 0000000..1250094
Binary files /dev/null and b/FunkeySelector/Resources/544.png differ
diff --git a/FunkeySelector/Resources/546.png b/FunkeySelector/Resources/546.png
new file mode 100644
index 0000000..a8230aa
Binary files /dev/null and b/FunkeySelector/Resources/546.png differ
diff --git a/FunkeySelector/RoyaltonRacingComplex.Designer.cs b/FunkeySelector/RoyaltonRacingComplex.Designer.cs
new file mode 100644
index 0000000..1cda02a
--- /dev/null
+++ b/FunkeySelector/RoyaltonRacingComplex.Designer.cs
@@ -0,0 +1,391 @@
+namespace FunkeySelector
+{
+ partial class RoyaltonRacingComplex
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RoyaltonRacingComplex));
+ this.SnakeOilerLabel = new System.Windows.Forms.Label();
+ this.SnakeOiler = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.TrixieLabel = new System.Windows.Forms.Label();
+ this.Trixie = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.CannonballTaylorLabel = new System.Windows.Forms.Label();
+ this.CannonballTaylor = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.RacerXLabel = new System.Windows.Forms.Label();
+ this.RacerX = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.backButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.RoyaltonRacingComplexLabel = new System.Windows.Forms.Label();
+ this.TaejoLabel = new System.Windows.Forms.Label();
+ this.Taejo = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.SpeedRacerPinballLabel = new System.Windows.Forms.Label();
+ this.SpeedRacerPinball = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.ChimChimLabel = new System.Windows.Forms.Label();
+ this.ChimChim = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.SpeedRacerLabel = new System.Windows.Forms.Label();
+ this.SpeedRacer = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.minimizeButton = new FunkeySelector.UserControls.MinimizeButton();
+ this.closeButton = new FunkeySelector.UserControls.CloseButton();
+ this.SuspendLayout();
+ //
+ // SnakeOilerLabel
+ //
+ this.SnakeOilerLabel.AutoSize = true;
+ this.SnakeOilerLabel.BackColor = System.Drawing.Color.Transparent;
+ this.SnakeOilerLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SnakeOilerLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.SnakeOilerLabel.Location = new System.Drawing.Point(152, 436);
+ this.SnakeOilerLabel.Name = "SnakeOilerLabel";
+ this.SnakeOilerLabel.Size = new System.Drawing.Size(158, 29);
+ this.SnakeOilerLabel.TabIndex = 15;
+ this.SnakeOilerLabel.Text = "SNAKE OILER";
+ //
+ // SnakeOiler
+ //
+ this.SnakeOiler.BackColor = System.Drawing.Color.Transparent;
+ this.SnakeOiler.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("SnakeOiler.BackgroundImage")));
+ this.SnakeOiler.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.SnakeOiler.FlatAppearance.BorderSize = 0;
+ this.SnakeOiler.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.SnakeOiler.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SnakeOiler.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.SnakeOiler.FunkeyID = "0000008C";
+ this.SnakeOiler.Location = new System.Drawing.Point(205, 471);
+ this.SnakeOiler.Name = "SnakeOiler";
+ this.SnakeOiler.Size = new System.Drawing.Size(50, 63);
+ this.SnakeOiler.TabIndex = 16;
+ this.SnakeOiler.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.SnakeOiler.UseVisualStyleBackColor = false;
+ //
+ // TrixieLabel
+ //
+ this.TrixieLabel.AutoSize = true;
+ this.TrixieLabel.BackColor = System.Drawing.Color.Transparent;
+ this.TrixieLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.TrixieLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.TrixieLabel.Location = new System.Drawing.Point(187, 222);
+ this.TrixieLabel.Name = "TrixieLabel";
+ this.TrixieLabel.Size = new System.Drawing.Size(90, 29);
+ this.TrixieLabel.TabIndex = 7;
+ this.TrixieLabel.Text = "TRIXIE";
+ //
+ // Trixie
+ //
+ this.Trixie.BackColor = System.Drawing.Color.Transparent;
+ this.Trixie.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Trixie.BackgroundImage")));
+ this.Trixie.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Trixie.FlatAppearance.BorderSize = 0;
+ this.Trixie.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Trixie.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Trixie.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.Trixie.FunkeyID = "00000083";
+ this.Trixie.Location = new System.Drawing.Point(205, 260);
+ this.Trixie.Name = "Trixie";
+ this.Trixie.Size = new System.Drawing.Size(50, 63);
+ this.Trixie.TabIndex = 8;
+ this.Trixie.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Trixie.UseVisualStyleBackColor = false;
+ //
+ // CannonballTaylorLabel
+ //
+ this.CannonballTaylorLabel.AutoSize = true;
+ this.CannonballTaylorLabel.BackColor = System.Drawing.Color.Transparent;
+ this.CannonballTaylorLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.CannonballTaylorLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.CannonballTaylorLabel.Location = new System.Drawing.Point(113, 329);
+ this.CannonballTaylorLabel.Name = "CannonballTaylorLabel";
+ this.CannonballTaylorLabel.Size = new System.Drawing.Size(251, 29);
+ this.CannonballTaylorLabel.TabIndex = 11;
+ this.CannonballTaylorLabel.Text = "CANNONBALL TAYLOR";
+ //
+ // CannonballTaylor
+ //
+ this.CannonballTaylor.BackColor = System.Drawing.Color.Transparent;
+ this.CannonballTaylor.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("CannonballTaylor.BackgroundImage")));
+ this.CannonballTaylor.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.CannonballTaylor.FlatAppearance.BorderSize = 0;
+ this.CannonballTaylor.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.CannonballTaylor.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.CannonballTaylor.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.CannonballTaylor.FunkeyID = "00000088";
+ this.CannonballTaylor.Location = new System.Drawing.Point(205, 363);
+ this.CannonballTaylor.Name = "CannonballTaylor";
+ this.CannonballTaylor.Size = new System.Drawing.Size(50, 63);
+ this.CannonballTaylor.TabIndex = 12;
+ this.CannonballTaylor.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.CannonballTaylor.UseVisualStyleBackColor = false;
+ //
+ // RacerXLabel
+ //
+ this.RacerXLabel.AutoSize = true;
+ this.RacerXLabel.BackColor = System.Drawing.Color.Transparent;
+ this.RacerXLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.RacerXLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.RacerXLabel.Location = new System.Drawing.Point(184, 102);
+ this.RacerXLabel.Name = "RacerXLabel";
+ this.RacerXLabel.Size = new System.Drawing.Size(101, 29);
+ this.RacerXLabel.TabIndex = 3;
+ this.RacerXLabel.Text = "RACER X";
+ //
+ // RacerX
+ //
+ this.RacerX.BackColor = System.Drawing.Color.Transparent;
+ this.RacerX.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("RacerX.BackgroundImage")));
+ this.RacerX.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.RacerX.FlatAppearance.BorderSize = 0;
+ this.RacerX.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.RacerX.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.RacerX.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.RacerX.FunkeyID = "0000005F";
+ this.RacerX.Location = new System.Drawing.Point(205, 142);
+ this.RacerX.Name = "RacerX";
+ this.RacerX.Size = new System.Drawing.Size(50, 63);
+ this.RacerX.TabIndex = 4;
+ this.RacerX.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.RacerX.UseVisualStyleBackColor = false;
+ //
+ // backButton
+ //
+ this.backButton.BackColor = System.Drawing.Color.Transparent;
+ this.backButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.backButton.FlatAppearance.BorderSize = 0;
+ this.backButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.backButton.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.backButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.backButton.FormToOpen = "Form1";
+ this.backButton.KeepCurrentForm = false;
+ this.backButton.Location = new System.Drawing.Point(12, 12);
+ this.backButton.Name = "backButton";
+ this.backButton.Size = new System.Drawing.Size(101, 48);
+ this.backButton.TabIndex = 1;
+ this.backButton.Text = "BACK";
+ this.backButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.backButton.UseVisualStyleBackColor = false;
+ //
+ // RoyaltonRacingComplexLabel
+ //
+ this.RoyaltonRacingComplexLabel.AutoSize = true;
+ this.RoyaltonRacingComplexLabel.BackColor = System.Drawing.Color.Transparent;
+ this.RoyaltonRacingComplexLabel.Font = new System.Drawing.Font("Comic Sans MS", 21.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.RoyaltonRacingComplexLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.RoyaltonRacingComplexLabel.Location = new System.Drawing.Point(150, 20);
+ this.RoyaltonRacingComplexLabel.Name = "RoyaltonRacingComplexLabel";
+ this.RoyaltonRacingComplexLabel.Size = new System.Drawing.Size(449, 41);
+ this.RoyaltonRacingComplexLabel.TabIndex = 2;
+ this.RoyaltonRacingComplexLabel.Text = "ROYALTON RACING COMPLEX";
+ //
+ // TaejoLabel
+ //
+ this.TaejoLabel.AutoSize = true;
+ this.TaejoLabel.BackColor = System.Drawing.Color.Transparent;
+ this.TaejoLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.TaejoLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.TaejoLabel.Location = new System.Drawing.Point(463, 435);
+ this.TaejoLabel.Name = "TaejoLabel";
+ this.TaejoLabel.Size = new System.Drawing.Size(86, 29);
+ this.TaejoLabel.TabIndex = 17;
+ this.TaejoLabel.Text = "TAEJO";
+ //
+ // Taejo
+ //
+ this.Taejo.BackColor = System.Drawing.Color.Transparent;
+ this.Taejo.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Taejo.BackgroundImage")));
+ this.Taejo.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Taejo.FlatAppearance.BorderSize = 0;
+ this.Taejo.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Taejo.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Taejo.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.Taejo.FunkeyID = "00000094";
+ this.Taejo.Location = new System.Drawing.Point(479, 471);
+ this.Taejo.Name = "Taejo";
+ this.Taejo.Size = new System.Drawing.Size(50, 63);
+ this.Taejo.TabIndex = 18;
+ this.Taejo.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Taejo.UseVisualStyleBackColor = false;
+ //
+ // SpeedRacerPinballLabel
+ //
+ this.SpeedRacerPinballLabel.AutoSize = true;
+ this.SpeedRacerPinballLabel.BackColor = System.Drawing.Color.Transparent;
+ this.SpeedRacerPinballLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SpeedRacerPinballLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.SpeedRacerPinballLabel.Location = new System.Drawing.Point(374, 219);
+ this.SpeedRacerPinballLabel.Name = "SpeedRacerPinballLabel";
+ this.SpeedRacerPinballLabel.Size = new System.Drawing.Size(266, 29);
+ this.SpeedRacerPinballLabel.TabIndex = 9;
+ this.SpeedRacerPinballLabel.Text = "SPEED RACER (PINBALL)";
+ //
+ // SpeedRacerPinball
+ //
+ this.SpeedRacerPinball.BackColor = System.Drawing.Color.Transparent;
+ this.SpeedRacerPinball.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("SpeedRacerPinball.BackgroundImage")));
+ this.SpeedRacerPinball.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.SpeedRacerPinball.FlatAppearance.BorderSize = 0;
+ this.SpeedRacerPinball.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.SpeedRacerPinball.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SpeedRacerPinball.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.SpeedRacerPinball.FunkeyID = "00000095";
+ this.SpeedRacerPinball.Location = new System.Drawing.Point(479, 260);
+ this.SpeedRacerPinball.Name = "SpeedRacerPinball";
+ this.SpeedRacerPinball.Size = new System.Drawing.Size(50, 63);
+ this.SpeedRacerPinball.TabIndex = 10;
+ this.SpeedRacerPinball.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.SpeedRacerPinball.UseVisualStyleBackColor = false;
+ //
+ // ChimChimLabel
+ //
+ this.ChimChimLabel.AutoSize = true;
+ this.ChimChimLabel.BackColor = System.Drawing.Color.Transparent;
+ this.ChimChimLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.ChimChimLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.ChimChimLabel.Location = new System.Drawing.Point(434, 329);
+ this.ChimChimLabel.Name = "ChimChimLabel";
+ this.ChimChimLabel.Size = new System.Drawing.Size(140, 29);
+ this.ChimChimLabel.TabIndex = 13;
+ this.ChimChimLabel.Text = "CHIM-CHIM";
+ //
+ // ChimChim
+ //
+ this.ChimChim.BackColor = System.Drawing.Color.Transparent;
+ this.ChimChim.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("ChimChim.BackgroundImage")));
+ this.ChimChim.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.ChimChim.FlatAppearance.BorderSize = 0;
+ this.ChimChim.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.ChimChim.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.ChimChim.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.ChimChim.FunkeyID = "00000096";
+ this.ChimChim.Location = new System.Drawing.Point(479, 363);
+ this.ChimChim.Name = "ChimChim";
+ this.ChimChim.Size = new System.Drawing.Size(50, 63);
+ this.ChimChim.TabIndex = 14;
+ this.ChimChim.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.ChimChim.UseVisualStyleBackColor = false;
+ //
+ // SpeedRacerLabel
+ //
+ this.SpeedRacerLabel.AutoSize = true;
+ this.SpeedRacerLabel.BackColor = System.Drawing.Color.Transparent;
+ this.SpeedRacerLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SpeedRacerLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.SpeedRacerLabel.Location = new System.Drawing.Point(431, 102);
+ this.SpeedRacerLabel.Name = "SpeedRacerLabel";
+ this.SpeedRacerLabel.Size = new System.Drawing.Size(153, 29);
+ this.SpeedRacerLabel.TabIndex = 5;
+ this.SpeedRacerLabel.Text = "SPEED RACER";
+ //
+ // SpeedRacer
+ //
+ this.SpeedRacer.BackColor = System.Drawing.Color.Transparent;
+ this.SpeedRacer.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("SpeedRacer.BackgroundImage")));
+ this.SpeedRacer.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.SpeedRacer.FlatAppearance.BorderSize = 0;
+ this.SpeedRacer.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.SpeedRacer.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SpeedRacer.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.SpeedRacer.FunkeyID = "00000093";
+ this.SpeedRacer.Location = new System.Drawing.Point(479, 142);
+ this.SpeedRacer.Name = "SpeedRacer";
+ this.SpeedRacer.Size = new System.Drawing.Size(50, 63);
+ this.SpeedRacer.TabIndex = 6;
+ this.SpeedRacer.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.SpeedRacer.UseVisualStyleBackColor = false;
+ //
+ // minimizeButton
+ //
+ this.minimizeButton.Location = new System.Drawing.Point(642, 15);
+ this.minimizeButton.Name = "minimizeButton";
+ this.minimizeButton.Size = new System.Drawing.Size(26, 22);
+ this.minimizeButton.TabIndex = 19;
+ //
+ // closeButton
+ //
+ this.closeButton.Location = new System.Drawing.Point(681, 17);
+ this.closeButton.Name = "closeButton";
+ this.closeButton.Size = new System.Drawing.Size(26, 20);
+ this.closeButton.TabIndex = 20;
+ //
+ // RoyaltonRacingComplex
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.BackColor = System.Drawing.Color.Gold;
+ this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
+ this.ClientSize = new System.Drawing.Size(726, 566);
+ this.Controls.Add(this.closeButton);
+ this.Controls.Add(this.minimizeButton);
+ this.Controls.Add(this.TaejoLabel);
+ this.Controls.Add(this.Taejo);
+ this.Controls.Add(this.SpeedRacerPinballLabel);
+ this.Controls.Add(this.SpeedRacerPinball);
+ this.Controls.Add(this.ChimChimLabel);
+ this.Controls.Add(this.ChimChim);
+ this.Controls.Add(this.SpeedRacerLabel);
+ this.Controls.Add(this.SpeedRacer);
+ this.Controls.Add(this.SnakeOilerLabel);
+ this.Controls.Add(this.SnakeOiler);
+ this.Controls.Add(this.TrixieLabel);
+ this.Controls.Add(this.Trixie);
+ this.Controls.Add(this.CannonballTaylorLabel);
+ this.Controls.Add(this.CannonballTaylor);
+ this.Controls.Add(this.RacerXLabel);
+ this.Controls.Add(this.RacerX);
+ this.Controls.Add(this.backButton);
+ this.Controls.Add(this.RoyaltonRacingComplexLabel);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
+ this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+ this.MaximizeBox = false;
+ this.Name = "RoyaltonRacingComplex";
+ this.Text = "FunkeySelectorGUI - Royalton Racing Complex";
+ this.TransparencyKey = System.Drawing.Color.Gold;
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Label SnakeOilerLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton SnakeOiler;
+ private System.Windows.Forms.Label TrixieLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton Trixie;
+ private System.Windows.Forms.Label CannonballTaylorLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton CannonballTaylor;
+ private System.Windows.Forms.Label RacerXLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton RacerX;
+ private FunkeySelector.UserControls.ChangeFormButton backButton;
+ private System.Windows.Forms.Label RoyaltonRacingComplexLabel;
+ private System.Windows.Forms.Label TaejoLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton Taejo;
+ private System.Windows.Forms.Label SpeedRacerPinballLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton SpeedRacerPinball;
+ private System.Windows.Forms.Label ChimChimLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton ChimChim;
+ private System.Windows.Forms.Label SpeedRacerLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton SpeedRacer;
+ private UserControls.MinimizeButton minimizeButton;
+ private UserControls.CloseButton closeButton;
+ }
+}
\ No newline at end of file
diff --git a/FunkeySelector/RoyaltonRacingComplex.cs b/FunkeySelector/RoyaltonRacingComplex.cs
new file mode 100644
index 0000000..3f77c54
--- /dev/null
+++ b/FunkeySelector/RoyaltonRacingComplex.cs
@@ -0,0 +1,23 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Diagnostics;
+using System.Drawing;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+using FunkeySelector.UserControls;
+
+namespace FunkeySelector
+{
+ public partial class RoyaltonRacingComplex : BasicForm
+ {
+ public RoyaltonRacingComplex()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/FunkeySelector/Form7.resx b/FunkeySelector/RoyaltonRacingComplex.resx
similarity index 99%
rename from FunkeySelector/Form7.resx
rename to FunkeySelector/RoyaltonRacingComplex.resx
index fc478b0..cc6e26c 100644
--- a/FunkeySelector/Form7.resx
+++ b/FunkeySelector/RoyaltonRacingComplex.resx
@@ -118,7 +118,7 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEdNJREFUaEPtWXl0lOW9/ohZJ8tsmX3f933JPpPJTCbJhJCdJCSB7AtJkNUQEUlY
@@ -200,7 +200,7 @@
8vdJ6ru4i7u4i7v45sEw/wtmg+zrKmoCGgAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEZJJREFUaEPtWGlQVGmWTZFF2ZLcNzKTTMgEkn1fRUAEEQGBEmTVBGQRARFEUQQX
@@ -281,7 +281,7 @@
Hd7hHd7h/yM4nP8GNtK8n0sgG8EAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEclJREFUaEPtmFdwnPd1xSHZckRTYgFJkAAIkiAK0Xvvu+iLRVss6gJYdCzqoi2A
@@ -363,7 +363,7 @@
4I8IB4f/AUGRWQMVO5t6AAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAENVJREFUaEPtWHl0k2W+7lyvVwXa0lK6J23SpGnSNG2WNkmTNmma7mu67/u+LxQo
@@ -441,7 +441,7 @@
Ln8HdhgCdtkA8HMAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEPdJREFUaEPtWWdYVNfaHdoAQxt6G+m9RogFMVY0GhMjaoyKioBSpPc+lKF3EEQs
@@ -519,7 +519,7 @@
Kb5xaSmeYYWZfj45GR7zSkqm2jU2cmgD/AZv8AZv8P8PHM7/ANFDJKrmgN+2AAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEdRJREFUaEPtmXd0lOeVxpWNU2wn2LEBgWOD7dg4sZONWTvrzdrYjoOdBDvY2AZT
@@ -601,7 +601,7 @@
5OY2zHX7AzzAAzzA/zu4uf0HrYW6UMng3ycAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEhJJREFUaEPtWHdQm3eaVjZ919k4sR0bx44rbhTTmwQIEAIkJCSBAElICFGEEEgC
@@ -684,7 +684,7 @@
cevzvt6vPcADPMADPMD/VzAY/wX3RPeB1ri21gAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEiNJREFUaEPtmHdYlGe6xtk9u2c3a/ZkNWhi142R6GrU2GLWXWOJJdgFRXrvMEMb
diff --git a/FunkeySelector/UnusedFunkeys.Designer.cs b/FunkeySelector/UnusedFunkeys.Designer.cs
new file mode 100644
index 0000000..cc7fab9
--- /dev/null
+++ b/FunkeySelector/UnusedFunkeys.Designer.cs
@@ -0,0 +1,365 @@
+namespace FunkeySelector
+{
+ partial class UnusedFunkeys
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UnusedFunkeys));
+ this.TachLabel = new System.Windows.Forms.Label();
+ this.TachRed = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.TachYellow = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.TachBlue = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.backButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.UnusedFunkeysLabel = new System.Windows.Forms.Label();
+ this.ConLabel = new System.Windows.Forms.Label();
+ this.Con = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.HenchmenLabel = new System.Windows.Forms.Label();
+ this.HenchmanBlue = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.HenchmanGreen = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.HenchmanPurple = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.DaliLabel = new System.Windows.Forms.Label();
+ this.Dali = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.GoyaLabel = new System.Windows.Forms.Label();
+ this.Goya = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.minimizeButton = new FunkeySelector.UserControls.MinimizeButton();
+ this.closeButton = new FunkeySelector.UserControls.CloseButton();
+ this.SuspendLayout();
+ //
+ // TachLabel
+ //
+ this.TachLabel.AutoSize = true;
+ this.TachLabel.BackColor = System.Drawing.Color.Transparent;
+ this.TachLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.TachLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.TachLabel.Location = new System.Drawing.Point(330, 74);
+ this.TachLabel.Name = "TachLabel";
+ this.TachLabel.Size = new System.Drawing.Size(71, 29);
+ this.TachLabel.TabIndex = 3;
+ this.TachLabel.Text = "TACH";
+ //
+ // TachRed
+ //
+ this.TachRed.BackColor = System.Drawing.Color.Transparent;
+ this.TachRed.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("TachRed.BackgroundImage")));
+ this.TachRed.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.TachRed.FlatAppearance.BorderSize = 0;
+ this.TachRed.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.TachRed.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.TachRed.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.TachRed.FunkeyID = "T0000003";
+ this.TachRed.Location = new System.Drawing.Point(394, 103);
+ this.TachRed.Name = "TachRed";
+ this.TachRed.Size = new System.Drawing.Size(50, 63);
+ this.TachRed.TabIndex = 6;
+ this.TachRed.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.TachRed.UseVisualStyleBackColor = false;
+ //
+ // TachYellow
+ //
+ this.TachYellow.BackColor = System.Drawing.Color.Transparent;
+ this.TachYellow.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("TachYellow.BackgroundImage")));
+ this.TachYellow.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.TachYellow.FlatAppearance.BorderSize = 0;
+ this.TachYellow.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.TachYellow.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.TachYellow.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.TachYellow.FunkeyID = "T0000002";
+ this.TachYellow.Location = new System.Drawing.Point(342, 103);
+ this.TachYellow.Name = "TachYellow";
+ this.TachYellow.Size = new System.Drawing.Size(50, 63);
+ this.TachYellow.TabIndex = 5;
+ this.TachYellow.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.TachYellow.UseVisualStyleBackColor = false;
+ //
+ // TachBlue
+ //
+ this.TachBlue.BackColor = System.Drawing.Color.Transparent;
+ this.TachBlue.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("TachBlue.BackgroundImage")));
+ this.TachBlue.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.TachBlue.FlatAppearance.BorderSize = 0;
+ this.TachBlue.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.TachBlue.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.TachBlue.ForeColor = System.Drawing.Color.Transparent;
+ this.TachBlue.FunkeyID = "T0000001";
+ this.TachBlue.Location = new System.Drawing.Point(291, 103);
+ this.TachBlue.Name = "TachBlue";
+ this.TachBlue.Size = new System.Drawing.Size(50, 63);
+ this.TachBlue.TabIndex = 4;
+ this.TachBlue.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.TachBlue.UseVisualStyleBackColor = false;
+ //
+ // backButton
+ //
+ this.backButton.BackColor = System.Drawing.Color.Transparent;
+ this.backButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.backButton.FlatAppearance.BorderSize = 0;
+ this.backButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.backButton.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.backButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.backButton.FormToOpen = "Form1";
+ this.backButton.KeepCurrentForm = false;
+ this.backButton.Location = new System.Drawing.Point(12, 12);
+ this.backButton.Name = "backButton";
+ this.backButton.Size = new System.Drawing.Size(101, 48);
+ this.backButton.TabIndex = 1;
+ this.backButton.Text = "BACK";
+ this.backButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.backButton.UseVisualStyleBackColor = false;
+ //
+ // UnusedFunkeysLabel
+ //
+ this.UnusedFunkeysLabel.AutoSize = true;
+ this.UnusedFunkeysLabel.BackColor = System.Drawing.Color.Transparent;
+ this.UnusedFunkeysLabel.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.UnusedFunkeysLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.UnusedFunkeysLabel.Location = new System.Drawing.Point(185, 13);
+ this.UnusedFunkeysLabel.Name = "UnusedFunkeysLabel";
+ this.UnusedFunkeysLabel.Size = new System.Drawing.Size(367, 52);
+ this.UnusedFunkeysLabel.TabIndex = 2;
+ this.UnusedFunkeysLabel.Text = "UNUSED FUNKEYS";
+ //
+ // ConLabel
+ //
+ this.ConLabel.AutoSize = true;
+ this.ConLabel.BackColor = System.Drawing.Color.Transparent;
+ this.ConLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.ConLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.ConLabel.Location = new System.Drawing.Point(338, 184);
+ this.ConLabel.Name = "ConLabel";
+ this.ConLabel.Size = new System.Drawing.Size(60, 29);
+ this.ConLabel.TabIndex = 7;
+ this.ConLabel.Text = "CON";
+ //
+ // Con
+ //
+ this.Con.BackColor = System.Drawing.Color.Transparent;
+ this.Con.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Con.BackgroundImage")));
+ this.Con.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Con.FlatAppearance.BorderSize = 0;
+ this.Con.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Con.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Con.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.Con.FunkeyID = "S0000001";
+ this.Con.Location = new System.Drawing.Point(341, 205);
+ this.Con.Name = "Con";
+ this.Con.Size = new System.Drawing.Size(50, 63);
+ this.Con.TabIndex = 8;
+ this.Con.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Con.UseVisualStyleBackColor = false;
+ //
+ // HenchmenLabel
+ //
+ this.HenchmenLabel.AutoSize = true;
+ this.HenchmenLabel.BackColor = System.Drawing.Color.Transparent;
+ this.HenchmenLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.HenchmenLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.HenchmenLabel.Location = new System.Drawing.Point(301, 279);
+ this.HenchmenLabel.Name = "HenchmenLabel";
+ this.HenchmenLabel.Size = new System.Drawing.Size(137, 29);
+ this.HenchmenLabel.TabIndex = 9;
+ this.HenchmenLabel.Text = "HENCHMEN";
+ //
+ // HenchmanBlue
+ //
+ this.HenchmanBlue.BackColor = System.Drawing.Color.Transparent;
+ this.HenchmanBlue.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("HenchmanBlue.BackgroundImage")));
+ this.HenchmanBlue.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.HenchmanBlue.FlatAppearance.BorderSize = 0;
+ this.HenchmanBlue.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.HenchmanBlue.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.HenchmanBlue.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.HenchmanBlue.FunkeyID = "h0000004";
+ this.HenchmanBlue.Location = new System.Drawing.Point(394, 313);
+ this.HenchmanBlue.Name = "HenchmanBlue";
+ this.HenchmanBlue.Size = new System.Drawing.Size(50, 63);
+ this.HenchmanBlue.TabIndex = 12;
+ this.HenchmanBlue.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.HenchmanBlue.UseVisualStyleBackColor = false;
+ //
+ // HenchmanGreen
+ //
+ this.HenchmanGreen.BackColor = System.Drawing.Color.Transparent;
+ this.HenchmanGreen.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("HenchmanGreen.BackgroundImage")));
+ this.HenchmanGreen.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.HenchmanGreen.FlatAppearance.BorderSize = 0;
+ this.HenchmanGreen.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.HenchmanGreen.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.HenchmanGreen.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.HenchmanGreen.FunkeyID = "h0000003";
+ this.HenchmanGreen.Location = new System.Drawing.Point(342, 313);
+ this.HenchmanGreen.Name = "HenchmanGreen";
+ this.HenchmanGreen.Size = new System.Drawing.Size(50, 63);
+ this.HenchmanGreen.TabIndex = 11;
+ this.HenchmanGreen.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.HenchmanGreen.UseVisualStyleBackColor = false;
+ //
+ // HenchmanPurple
+ //
+ this.HenchmanPurple.BackColor = System.Drawing.Color.Transparent;
+ this.HenchmanPurple.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("HenchmanPurple.BackgroundImage")));
+ this.HenchmanPurple.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.HenchmanPurple.FlatAppearance.BorderSize = 0;
+ this.HenchmanPurple.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.HenchmanPurple.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.HenchmanPurple.ForeColor = System.Drawing.Color.Transparent;
+ this.HenchmanPurple.FunkeyID = "h0000001";
+ this.HenchmanPurple.Location = new System.Drawing.Point(291, 313);
+ this.HenchmanPurple.Name = "HenchmanPurple";
+ this.HenchmanPurple.Size = new System.Drawing.Size(50, 63);
+ this.HenchmanPurple.TabIndex = 10;
+ this.HenchmanPurple.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.HenchmanPurple.UseVisualStyleBackColor = false;
+ //
+ // DaliLabel
+ //
+ this.DaliLabel.AutoSize = true;
+ this.DaliLabel.BackColor = System.Drawing.Color.Transparent;
+ this.DaliLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.DaliLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.DaliLabel.Location = new System.Drawing.Point(337, 381);
+ this.DaliLabel.Name = "DaliLabel";
+ this.DaliLabel.Size = new System.Drawing.Size(66, 29);
+ this.DaliLabel.TabIndex = 13;
+ this.DaliLabel.Text = "DALI";
+ //
+ // Dali
+ //
+ this.Dali.BackColor = System.Drawing.Color.Transparent;
+ this.Dali.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Dali.BackgroundImage")));
+ this.Dali.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Dali.FlatAppearance.BorderSize = 0;
+ this.Dali.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Dali.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Dali.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.Dali.FunkeyID = "h0000007";
+ this.Dali.Location = new System.Drawing.Point(342, 400);
+ this.Dali.Name = "Dali";
+ this.Dali.Size = new System.Drawing.Size(50, 63);
+ this.Dali.TabIndex = 14;
+ this.Dali.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Dali.UseVisualStyleBackColor = false;
+ //
+ // GoyaLabel
+ //
+ this.GoyaLabel.AutoSize = true;
+ this.GoyaLabel.BackColor = System.Drawing.Color.Transparent;
+ this.GoyaLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.GoyaLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.GoyaLabel.Location = new System.Drawing.Point(335, 465);
+ this.GoyaLabel.Name = "GoyaLabel";
+ this.GoyaLabel.Size = new System.Drawing.Size(72, 29);
+ this.GoyaLabel.TabIndex = 15;
+ this.GoyaLabel.Text = "GOYA";
+ //
+ // Goya
+ //
+ this.Goya.BackColor = System.Drawing.Color.Transparent;
+ this.Goya.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Goya.BackgroundImage")));
+ this.Goya.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Goya.FlatAppearance.BorderSize = 0;
+ this.Goya.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Goya.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Goya.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.Goya.FunkeyID = "h0000006";
+ this.Goya.Location = new System.Drawing.Point(344, 480);
+ this.Goya.Name = "Goya";
+ this.Goya.Size = new System.Drawing.Size(50, 63);
+ this.Goya.TabIndex = 16;
+ this.Goya.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Goya.UseVisualStyleBackColor = false;
+ //
+ // minimizeButton
+ //
+ this.minimizeButton.Location = new System.Drawing.Point(642, 15);
+ this.minimizeButton.Name = "minimizeButton";
+ this.minimizeButton.Size = new System.Drawing.Size(26, 22);
+ this.minimizeButton.TabIndex = 17;
+ //
+ // closeButton
+ //
+ this.closeButton.Location = new System.Drawing.Point(681, 17);
+ this.closeButton.Name = "closeButton";
+ this.closeButton.Size = new System.Drawing.Size(26, 20);
+ this.closeButton.TabIndex = 18;
+ //
+ // UnusedFunkeys
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.BackColor = System.Drawing.Color.Gold;
+ this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
+ this.ClientSize = new System.Drawing.Size(726, 566);
+ this.Controls.Add(this.closeButton);
+ this.Controls.Add(this.minimizeButton);
+ this.Controls.Add(this.GoyaLabel);
+ this.Controls.Add(this.Goya);
+ this.Controls.Add(this.DaliLabel);
+ this.Controls.Add(this.Dali);
+ this.Controls.Add(this.HenchmenLabel);
+ this.Controls.Add(this.HenchmanBlue);
+ this.Controls.Add(this.HenchmanGreen);
+ this.Controls.Add(this.HenchmanPurple);
+ this.Controls.Add(this.ConLabel);
+ this.Controls.Add(this.Con);
+ this.Controls.Add(this.TachLabel);
+ this.Controls.Add(this.TachRed);
+ this.Controls.Add(this.TachYellow);
+ this.Controls.Add(this.TachBlue);
+ this.Controls.Add(this.backButton);
+ this.Controls.Add(this.UnusedFunkeysLabel);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
+ this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+ this.Name = "UnusedFunkeys";
+ this.Text = "FunkeySelectorGUI - Unused Funkeys";
+ this.TransparencyKey = System.Drawing.Color.Gold;
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Label TachLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton TachRed;
+ private FunkeySelector.UserControls.FunkeyChangerButton TachYellow;
+ private FunkeySelector.UserControls.FunkeyChangerButton TachBlue;
+ private FunkeySelector.UserControls.ChangeFormButton backButton;
+ private System.Windows.Forms.Label UnusedFunkeysLabel;
+ private System.Windows.Forms.Label ConLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton Con;
+ private System.Windows.Forms.Label HenchmenLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton HenchmanBlue;
+ private FunkeySelector.UserControls.FunkeyChangerButton HenchmanGreen;
+ private FunkeySelector.UserControls.FunkeyChangerButton HenchmanPurple;
+ private System.Windows.Forms.Label DaliLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton Dali;
+ private System.Windows.Forms.Label GoyaLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton Goya;
+ private UserControls.MinimizeButton minimizeButton;
+ private UserControls.CloseButton closeButton;
+ }
+}
\ No newline at end of file
diff --git a/FunkeySelector/UnusedFunkeys.cs b/FunkeySelector/UnusedFunkeys.cs
new file mode 100644
index 0000000..10f78ed
--- /dev/null
+++ b/FunkeySelector/UnusedFunkeys.cs
@@ -0,0 +1,22 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Diagnostics;
+using System.Drawing;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Windows.Forms;
+using FunkeySelector.UserControls;
+
+namespace FunkeySelector
+{
+ public partial class UnusedFunkeys : BasicForm
+ {
+ public UnusedFunkeys()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/FunkeySelector/Form12.resx b/FunkeySelector/UnusedFunkeys.resx
similarity index 99%
rename from FunkeySelector/Form12.resx
rename to FunkeySelector/UnusedFunkeys.resx
index 8993aa8..1676ffe 100644
--- a/FunkeySelector/Form12.resx
+++ b/FunkeySelector/UnusedFunkeys.resx
@@ -118,7 +118,7 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
iVBORw0KGgoAAAANSUhEUgAAADcAAAA3CAYAAACo29JGAAAABGdBTUEAALGPC/xhBQAAHfBJREFUaEPV
egdUVWca7bXF3rDGFDNG46hRVEQF6b0jvYPSe++9V0FFEZEm9oKIvWvU2MeYmEk3MRM1kxij6UWF/fZ3
@@ -251,7 +251,7 @@
qJ+bm05/a2vrvqFaWv8quNVk1fGphhB/+rVshprMf5mQSvU/AM56pWCnXVXjAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADcAAAA3CAYAAACo29JGAAAABGdBTUEAALGPC/xhBQAAHkJJREFUaEPV
mgdUVWfe7k+i0ZgykxhnJjGJ3ZjYFRApAtKkCSJFepXeewdBpBcBAUFEBURFLIC9lyTWmBiTmEmMKWpi
@@ -386,7 +386,7 @@
Uag88DbDiwAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADcAAAA3CAYAAACo29JGAAAABGdBTUEAALGPC/xhBQAAHlhJREFUaEPV
egd0lWW69UdCFRsIKCII2BAQCEkI6YX03k4K6b333nvvjYSQkIQU0iuhhhRACM0CCOrFMrbRGR3HNiNg
@@ -521,7 +521,7 @@
m5CSleanFEz8/td8GFIyfzAhQfhPyF5Aap1by9MAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADgAAAA/CAYAAAC1gwumAAAABGdBTUEAALGPC/xhBQAAEk9JREFUaEPt
WmlQ2+ed1rSbtDltDL6wOQwYkLjPgEAH4hD3JcQtxA0CCZAQAkkIgSSEBOIGc58GjLlsQnzGiZM6aZ1k
@@ -605,7 +605,7 @@
l6htGNGXoe0AAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADgAAAA/CAYAAAC1gwumAAAABGdBTUEAALGPC/xhBQAAEE9JREFUaEPt
WndM22maRlrdanS72tXsJDTTe+iE0EILvYaSSYBQEhIILfReY8Bggw0mxhRjcAXbYDDNdEidzGg12r22
@@ -680,7 +680,7 @@
t/w/wR7etdr81/esfvnL77O/+Q7f4X8FK6t/B5VwszzGMMJhAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADgAAAA/CAYAAAC1gwumAAAABGdBTUEAALGPC/xhBQAAENxJREFUaEPt
WnlM22l6trSz3e7OzmSzyXCfNvcZ7vsKBAg3ISRg7jNAuMHYnMYGzGlzHz44jAGDMfdNIJlkMp1VNWo7
@@ -758,7 +758,7 @@
AElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADgAAAA/CAYAAAC1gwumAAAABGdBTUEAALGPC/xhBQAAEMdJREFUaEPt
WnlMm3l6Rqq6u5rt7DQX930HwhUgJNyHuQ9DgHAfDuG+b3OYw9wYsAFjbC5jDhtsbnNDQhKyuzPTTlfp
@@ -835,7 +835,7 @@
z9S6fJn8iUWWjvPFl9V7vMd7vMd7/L9BR+e/AfR0yoNqpHcOAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAD61JREFUaEPtmXdUVWe6xjeiCAjSO1Kkgxx6OyBSBA4g9UiXoiAIKBYQARWQqoKC
@@ -908,7 +908,7 @@
gn85SNJ/AiK8U5qBatHsAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAAEcAAABDCAYAAADOIRgJAAAABGdBTUEAALGPC/xhBQAAEaBJREFUeF7t
mglUU9e6x1mrr31drvfeXV3vdrhOra1TcSrFqWqtWqfWilUEBEEBIZBACJlDQkiYMwIhJBAIgTCFIRAm
diff --git a/FunkeySelector/UserControls/BasicForm.cs b/FunkeySelector/UserControls/BasicForm.cs
new file mode 100644
index 0000000..651ded8
--- /dev/null
+++ b/FunkeySelector/UserControls/BasicForm.cs
@@ -0,0 +1,19 @@
+using System;
+using System.Windows.Forms;
+
+namespace FunkeySelector.UserControls
+{
+ public class BasicForm : Form
+ {
+ protected override void WndProc(ref Message message)
+ {
+ base.WndProc(ref message);
+
+ // Allows the window to be dragged.
+ if (message.Msg == 0x84 && (int)message.Result == 0x1)
+ {
+ message.Result = (IntPtr)0x2;
+ }
+ }
+ }
+}
diff --git a/FunkeySelector/UserControls/ChangeFormButton.cs b/FunkeySelector/UserControls/ChangeFormButton.cs
new file mode 100644
index 0000000..c076ff7
--- /dev/null
+++ b/FunkeySelector/UserControls/ChangeFormButton.cs
@@ -0,0 +1,68 @@
+using System;
+using System.Linq;
+using System.Reflection;
+using System.Windows.Forms;
+using System.ComponentModel;
+
+namespace FunkeySelector.UserControls
+{
+ class ChangeFormButton : Button
+ {
+ [
+ Category("Behavior"),
+ Description("The form to open when clicked.")
+ ]
+ public string FormToOpen { get; set; } = "Form1";
+
+ [
+ Category("Behavior"),
+ Description("Whether to keep this form opened.")
+ ]
+ public bool KeepCurrentForm { get; set; } = false;
+
+ public ChangeFormButton()
+ {
+ this.Click += new EventHandler(OnClick);
+ }
+
+ private void OnClick(object sender, EventArgs e)
+ {
+ ChangeForm();
+ }
+
+ public void ChangeForm()
+ {
+ Form currentForm = this.FindForm();
+ Form parentForm = currentForm.Owner;
+
+ // Flex Seal™️
+ if (FormToOpen == "Form1" && parentForm.Name == "Form1")
+ {
+ parentForm.Show();
+ parentForm.Location = currentForm.Location;
+ currentForm.Close();
+ return;
+ }
+
+ Form zoneForm = GetClassInstance