├── .gitattributes ├── .gitignore ├── InstaCreator.sln └── InstaCreator ├── Account.cs ├── App.config ├── InstaCreator.csproj ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── favicon.ico ├── frmMain.Designer.cs ├── frmMain.cs └── frmMain.resx /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows image file caches 2 | Thumbs.db 3 | ehthumbs.db 4 | 5 | # Folder config file 6 | Desktop.ini 7 | 8 | # Recycle Bin used on file shares 9 | $RECYCLE.BIN/ 10 | 11 | # Windows Installer files 12 | *.cab 13 | *.msi 14 | *.msm 15 | *.msp 16 | 17 | # Windows shortcuts 18 | *.lnk 19 | 20 | # ========================= 21 | # Operating System Files 22 | # ========================= 23 | 24 | # OSX 25 | # ========================= 26 | 27 | .DS_Store 28 | .AppleDouble 29 | .LSOverride 30 | 31 | # Thumbnails 32 | ._* 33 | 34 | # Files that might appear on external disk 35 | .Spotlight-V100 36 | .Trashes 37 | 38 | # Directories potentially created on remote AFP share 39 | .AppleDB 40 | .AppleDesktop 41 | Network Trash Folder 42 | Temporary Items 43 | .apdisk 44 | -------------------------------------------------------------------------------- /InstaCreator.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 2013 4 | VisualStudioVersion = 12.0.31101.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "InstaCreator", "InstaCreator\InstaCreator.csproj", "{842DFC36-58E2-4301-BE2D-3408E1B9DA90}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {842DFC36-58E2-4301-BE2D-3408E1B9DA90}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {842DFC36-58E2-4301-BE2D-3408E1B9DA90}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {842DFC36-58E2-4301-BE2D-3408E1B9DA90}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {842DFC36-58E2-4301-BE2D-3408E1B9DA90}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /InstaCreator/Account.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | using System.Net; 8 | using System.IO; 9 | using System.Text.RegularExpressions; 10 | using System.Security.Cryptography; 11 | using System.Threading; 12 | 13 | namespace InstaCreator 14 | { 15 | class Account 16 | { 17 | private Random rnd = new Random(); 18 | private readonly Encoding encoding = Encoding.UTF8; 19 | 20 | private const string SecretKey = "3f0a7d75e094c7385e3dbaa026877f2e067cbd1a4dbcf3867748f6b26f257117"; 21 | private string DeviceID = null; 22 | private string guid = null; 23 | private string CSRF = null; 24 | private string mid = null; 25 | CookieContainer Cookies = new CookieContainer(); 26 | 27 | public Account(string Username, string Password, string Email) 28 | { 29 | DeviceID = "android-" + HMAC(rnd.Next(1000, 9999).ToString(), "1337").ToString().Substring(0, Math.Min(64, 16)); 30 | guid = RandomString(8) + "-" + RandomString(4) + "-" + RandomString(4) + "-" + RandomString(4) + "-" + RandomString(12); 31 | mid = "VjzMwwAEAAGFO33NbLSpjPGBnXJ_"; 32 | CSRF = GetCSRF(GetHTML()); 33 | Register(Username, Password, Email); 34 | } 35 | 36 | private void Register(string Username, string Password, string Email) 37 | { 38 | string Config = @"{""username"":""" + Username + @""",""first_name"":""Name"",""password"":""" + Password + @""",""guid"":""" + guid + @""",""email"":""" + Email + @""",""device_id"":""" + DeviceID + @"""}"; 39 | byte[] bytes = ASCIIEncoding.UTF8.GetBytes("signed_body=" + HMAC(Config, SecretKey) + "." + EncodeUrl(Config) + "&ig_sig_key_version=4"); 40 | HttpWebRequest postReq = (HttpWebRequest)WebRequest.Create("https://i.instagram.com/api/v1/accounts/create/"); 41 | postReq.AutomaticDecompression = DecompressionMethods.GZip; 42 | WebHeaderCollection postHeaders = postReq.Headers; 43 | postReq.Method = "POST"; 44 | postReq.Host = "i.instagram.com"; 45 | postReq.UserAgent = "Instagram 7.1.1 Android (21/5.0.2; 480dpi; 1080x1776; LGE/Google; Nexus 5; hammerhead; hammerhead; en_US)"; 46 | postReq.ContentType = "application/x-www-form-urlencoded; charset=UTF-8"; 47 | Cookies = new CookieContainer(); 48 | Cookies.Add(new Cookie("csrftoken", CSRF) { Domain = postReq.Host }); 49 | Cookies.Add(new Cookie("mid", mid) { Domain = postReq.Host }); 50 | postReq.CookieContainer = Cookies; 51 | postHeaders.Add("Cookie2", "$Version=1"); 52 | postHeaders.Add("Accept-Language", "en-US"); 53 | postHeaders.Add("X-IG-Connection-Type", "WIFI"); 54 | postHeaders.Add("X-IG-Capabilities", "BQ=="); 55 | postHeaders.Add("Accept-Encoding", "gzip"); 56 | 57 | Stream postStream = postReq.GetRequestStream(); 58 | postStream.Write(bytes, 0, bytes.Length); 59 | postStream.Close(); 60 | HttpWebResponse postResponse; 61 | postResponse = (HttpWebResponse)postReq.GetResponse(); 62 | StreamReader reader = new StreamReader(postResponse.GetResponseStream()); 63 | string Response = reader.ReadToEnd(); 64 | } 65 | 66 | private string GetCSRF(string HTML) 67 | { 68 | Regex Regex = new Regex(@"csrf_token"":""(.*)""},"""); 69 | return Regex.Match(HTML).Groups[1].ToString(); 70 | } 71 | 72 | private string GetHTML(string url = "https://instagram.com/") 73 | { 74 | HttpWebRequest myRequest = (HttpWebRequest)WebRequest.Create(url); 75 | WebHeaderCollection getHeaders = myRequest.Headers; 76 | myRequest.Method = "GET"; 77 | myRequest.CookieContainer = Cookies; 78 | WebResponse myResponse = myRequest.GetResponse(); 79 | StreamReader sr = new StreamReader(myResponse.GetResponseStream(), System.Text.Encoding.UTF8); 80 | string result = sr.ReadToEnd(); 81 | sr.Close(); 82 | myResponse.Close(); 83 | return result; 84 | } 85 | 86 | private string ByteToString(byte[] buff) 87 | { 88 | string sbinary = ""; 89 | for (int i = 0; i < buff.Length; i++) 90 | sbinary += buff[i].ToString("X2"); 91 | return sbinary; 92 | } 93 | 94 | private string HMAC(string String, string Key) 95 | { 96 | var keyByte = encoding.GetBytes(Key); 97 | using (var hmacsha256 = new HMACSHA256(keyByte)) 98 | { 99 | hmacsha256.ComputeHash(encoding.GetBytes(String)); 100 | return ByteToString(hmacsha256.Hash).ToLower(); 101 | } 102 | } 103 | 104 | private string RandomString(int length) 105 | { 106 | const string chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"; 107 | var random = new Random(); 108 | return new string(Enumerable.Repeat(chars, length).Select(s => s[random.Next(s.Length)]).ToArray()).ToLower(); 109 | } 110 | 111 | private string EncodeUrl(string Url) 112 | { 113 | return System.Uri.EscapeDataString(Url); 114 | } 115 | } 116 | } 117 | -------------------------------------------------------------------------------- /InstaCreator/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /InstaCreator/InstaCreator.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {842DFC36-58E2-4301-BE2D-3408E1B9DA90} 8 | WinExe 9 | Properties 10 | InstaCreator 11 | InstaCreator 12 | v4.5 13 | 512 14 | 15 | 16 | AnyCPU 17 | true 18 | full 19 | false 20 | bin\Debug\ 21 | DEBUG;TRACE 22 | prompt 23 | 4 24 | 25 | 26 | AnyCPU 27 | pdbonly 28 | true 29 | bin\Release\ 30 | TRACE 31 | prompt 32 | 4 33 | 34 | 35 | favicon.ico 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | Form 53 | 54 | 55 | frmMain.cs 56 | 57 | 58 | 59 | 60 | frmMain.cs 61 | 62 | 63 | ResXFileCodeGenerator 64 | Resources.Designer.cs 65 | Designer 66 | 67 | 68 | True 69 | Resources.resx 70 | 71 | 72 | SettingsSingleFileGenerator 73 | Settings.Designer.cs 74 | 75 | 76 | True 77 | Settings.settings 78 | True 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 95 | -------------------------------------------------------------------------------- /InstaCreator/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace InstaCreator 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// The main entry point for the application. 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new frmMain()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /InstaCreator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("InstaCreator")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("InstaCreator")] 13 | [assembly: AssemblyCopyright("Copyright © 2015")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("1281edb0-b2c9-4060-b35e-e745916d9e08")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /InstaCreator/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.0 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace InstaCreator.Properties 12 | { 13 | 14 | 15 | /// 16 | /// A strongly-typed resource class, for looking up localized strings, etc. 17 | /// 18 | // This class was auto-generated by the StronglyTypedResourceBuilder 19 | // class via a tool like ResGen or Visual Studio. 20 | // To add or remove a member, edit your .ResX file then rerun ResGen 21 | // with the /str option, or rebuild your VS project. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources 26 | { 27 | 28 | private static global::System.Resources.ResourceManager resourceMan; 29 | 30 | private static global::System.Globalization.CultureInfo resourceCulture; 31 | 32 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 33 | internal Resources() 34 | { 35 | } 36 | 37 | /// 38 | /// Returns the cached ResourceManager instance used by this class. 39 | /// 40 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 41 | internal static global::System.Resources.ResourceManager ResourceManager 42 | { 43 | get 44 | { 45 | if ((resourceMan == null)) 46 | { 47 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("InstaCreator.Properties.Resources", typeof(Resources).Assembly); 48 | resourceMan = temp; 49 | } 50 | return resourceMan; 51 | } 52 | } 53 | 54 | /// 55 | /// Overrides the current thread's CurrentUICulture property for all 56 | /// resource lookups using this strongly typed resource class. 57 | /// 58 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 59 | internal static global::System.Globalization.CultureInfo Culture 60 | { 61 | get 62 | { 63 | return resourceCulture; 64 | } 65 | set 66 | { 67 | resourceCulture = value; 68 | } 69 | } 70 | } 71 | } 72 | -------------------------------------------------------------------------------- /InstaCreator/Properties/Resources.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | text/microsoft-resx 107 | 108 | 109 | 2.0 110 | 111 | 112 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 113 | 114 | 115 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | -------------------------------------------------------------------------------- /InstaCreator/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.0 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace InstaCreator.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /InstaCreator/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /InstaCreator/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiby7e/InstaCreator/02a9c7ba6830bc1fb5f94d23835bfa0da7e42ff5/InstaCreator/favicon.ico -------------------------------------------------------------------------------- /InstaCreator/frmMain.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace InstaCreator 2 | { 3 | partial class frmMain 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows Form Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain)); 32 | this.txtUser = new System.Windows.Forms.TextBox(); 33 | this.txtPass = new System.Windows.Forms.TextBox(); 34 | this.btnRegister = new System.Windows.Forms.Button(); 35 | this.txtEmail = new System.Windows.Forms.TextBox(); 36 | this.SuspendLayout(); 37 | // 38 | // txtUser 39 | // 40 | this.txtUser.Location = new System.Drawing.Point(32, 12); 41 | this.txtUser.Name = "txtUser"; 42 | this.txtUser.Size = new System.Drawing.Size(136, 20); 43 | this.txtUser.TabIndex = 0; 44 | this.txtUser.Text = "Username"; 45 | this.txtUser.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; 46 | // 47 | // txtPass 48 | // 49 | this.txtPass.Location = new System.Drawing.Point(32, 38); 50 | this.txtPass.Name = "txtPass"; 51 | this.txtPass.Size = new System.Drawing.Size(136, 20); 52 | this.txtPass.TabIndex = 1; 53 | this.txtPass.Text = "Password"; 54 | this.txtPass.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; 55 | this.txtPass.UseSystemPasswordChar = true; 56 | // 57 | // btnRegister 58 | // 59 | this.btnRegister.Location = new System.Drawing.Point(32, 90); 60 | this.btnRegister.Name = "btnRegister"; 61 | this.btnRegister.Size = new System.Drawing.Size(136, 24); 62 | this.btnRegister.TabIndex = 3; 63 | this.btnRegister.Text = "Register"; 64 | this.btnRegister.UseVisualStyleBackColor = true; 65 | this.btnRegister.Click += new System.EventHandler(this.btnRegister_Click); 66 | // 67 | // txtEmail 68 | // 69 | this.txtEmail.Location = new System.Drawing.Point(32, 64); 70 | this.txtEmail.Name = "txtEmail"; 71 | this.txtEmail.Size = new System.Drawing.Size(136, 20); 72 | this.txtEmail.TabIndex = 2; 73 | this.txtEmail.Text = "Email"; 74 | this.txtEmail.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; 75 | // 76 | // frmMain 77 | // 78 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 79 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 80 | this.ClientSize = new System.Drawing.Size(199, 125); 81 | this.Controls.Add(this.btnRegister); 82 | this.Controls.Add(this.txtPass); 83 | this.Controls.Add(this.txtEmail); 84 | this.Controls.Add(this.txtUser); 85 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; 86 | this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); 87 | this.MaximizeBox = false; 88 | this.Name = "frmMain"; 89 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; 90 | this.Text = "InstaCreator"; 91 | this.ResumeLayout(false); 92 | this.PerformLayout(); 93 | 94 | } 95 | 96 | #endregion 97 | 98 | private System.Windows.Forms.TextBox txtUser; 99 | private System.Windows.Forms.TextBox txtPass; 100 | private System.Windows.Forms.Button btnRegister; 101 | private System.Windows.Forms.TextBox txtEmail; 102 | 103 | } 104 | } 105 | 106 | -------------------------------------------------------------------------------- /InstaCreator/frmMain.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | using System.Windows.Forms; 10 | 11 | namespace InstaCreator //Coded by Multibyte - Hackforums.net 12 | { 13 | public partial class frmMain : Form 14 | { 15 | public frmMain() 16 | { 17 | InitializeComponent(); 18 | MessageBox.Show("Coded by Multibyte - Hackforums.net"); 19 | } 20 | 21 | private void btnRegister_Click(object sender, EventArgs e) 22 | { 23 | Account Acc = new Account(txtUser.Text, txtPass.Text, txtEmail.Text); 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /InstaCreator/frmMain.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 122 | 123 | AAABAAIAICAAAAEAIAAoEQAAJgAAABAQAAABACAAaAQAAE4RAAAoAAAAIAAAAEAAAAABACAAAAAAAAAA 124 | AAAAAAAAAAAAAAAAAAAAAAAA////AP///wD///8AGyI2Jh4nOpAlL0XQKjNM7iw3UPIuOFDyLjhQ8i44 125 | UfIuOFHyLzpS8i86U/IuOVLyLjlS8i44UfItOFDyLDdO8io3TfIqNU3yKTVM8ikzSvIoL0byJi5D8iQs 126 | P+4hKDjQHCIwkBQbKCb///8A////AP///wD///8A////AB0kOmovOVT/Sl18/1xykv9mf53/bIOj/26F 127 | pP9wh6T/comn/3SMqP91jan/do2q/3WNqf9zjKj/c4qo/3GIpf9vh6P/bYSh/2uCnv9pgZz/ZnyZ/2F3 128 | lf9ec5D/Wm2L/1JkgP9CUGj/KjFF/x0iMGr///8A////AP///wAeJTlnO0dl/2h9nP95kq//gpu0/4mj 129 | u/+Opr7/kavB/5Stw/+WsMT/mbHE/5iwxf+Zr8T/la3A/5Oqvv+Tqr7/kqq//5Krwf+Tq8D/kam//46m 130 | u/+JpLj/g5+z/3+asf95k6z/c42k/2qCnP9ZbYr/ND9W/xsgMmf///8ALDVPHTE7Vv9qgJ//gpqy/4yj 131 | uf+VrMH/nbTI/6K4y/+jusv/pLrM/6O6zP+guMr/nbTG/5mtwP+Sprr/j6K2/46itP+Qpbn/lau//5qw 132 | wf+cssT/m7TG/5qyxP+VrsD/kKu9/4mkuP+DnLH/eZKp/3CHoP9bbov/KjNI/ywsPh0pL0eXU2SC/4Oa 133 | sv+Qprv/m7HF/6W7zf+rwNH/rcLT/6/D1f+vw9P/q8DR/6O4yv+Yq77/ipyx/3+Qpv92h5z/doab/3uN 134 | ov+Gma7/k6a5/5yyxP+iucr/ornL/6K4yv+ft8b/nLTD/5Osvf+HobT/eZOq/2yEn/9EU23/Iyk5ly42 135 | Td5pfJn/j6W7/56zxv+ovc//rsPT/7DG1v+1ydf/t8rY/7bI1v+sv83/m6u9/4aUqv9yf5b/ZXCI/15p 136 | f/9cZnz/YGuB/2x6kP+AkKP/kqW4/6K2x/+mvM3/p77N/6e8y/+mu8r/orbG/5iuv/+GoLP/d5Co/1Zp 137 | g/8mLT7eMjtT9HSHo/+YrcP/pbrL/67B0v+zx9f/uc3Y/7zP2/+9ztv/tsbT/6Oyw/+ImKr/cXyV/1tj 138 | fP9IT2L/PEJT/zk/T/9AR1j/Ulxw/2p3jf+Dk6f/may6/6e8yv+txND/rsPR/6vBz/+nvMr/n7TE/5Oq 139 | vP+EnLD/YXWP/yoxRPQyPVb0eoyp/56yxv+qvM3/ssTV/7nK2f++0Nz/wtPd/77O2/+uvcv/mKW4/3SB 140 | mP8/Rln/HyQw/yElL/8oKjf/Jik0/x0fKv8XGST/LTJB/2Zyhv+Upbf/pLjG/67D0P+yx9P/r8XR/6rA 141 | zf+gtsb/mK2//4qjtf9nepL/LDFF9DU+WfJ+kq3/orXK/67B0f+3ytj/vtDd/8TV4P/F1eD/vcnX/668 142 | y/93g5j/KjBB/zU4R/9YXWz/UFdo/0lQYf9JT2H/TVJl/1RZaf8zNkH/Fxol/1xnef+qvM3/ssbS/7TJ 143 | 1v+yydX/rMHQ/6S6yv+bscH/j6W4/2yAl/8tNEfyOEBc8oGUr/+mucv/ssTT/7zO2//E1eH/ytrj/8fV 144 | 3v/E0N3/i5mq/zM5Tf9aXXD/Zmt6/z49Rf85LCr/SjQn/0s3KP85Lyr/OTc//19ic/9eYm//HB8s/2Zy 145 | g//B1OH/uc3Y/7nN2P+yx9P/qsDN/6C3xf+Tqbz/cIOa/y42SfI6Q1/yhJey/6i7zP+2yNb/wdDd/8nY 146 | 4//P3uf/ztri/7bD0f9NVmr/aW6D/1RXYP8MCAf/IxMI/1k/JP94XTP/fWg2/2NWLf8xKRP/DAkF/0pL 147 | Wf9ydYX/KjA+/5Sjsf/N3+r/vdHc/7fM2P+wxdL/pbvJ/5itvv90hp7/MDdK8jpDYPKEl7L/q7zO/7nJ 148 | 1//D0+D/zdvm/9Tg6P/d6fH/fYiZ/2tyiv9PUFn/AAAA/x8UDP83Lh7/LS8c/yQqGv8nLB3/Nzom/0ZH 149 | Lf81NR//AAAA/0tPWv9scYH/UFln/9Tk7P/K2+X/vc/c/7TI1f+rwMz/nLHB/3eJoP8zOUzyOkRg8oSZ 150 | s/+svdD/usnY/8TU4f/O3eb/3Ofv/9fj6/+FjqT/YWVz/wAAAP8PCgf/HRoS/xMWDf8PEQ3/FRUT/xcV 151 | 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 193 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 194 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 195 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 196 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAEAAAACAA 197 | AAABACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIixLBTdJbYpSao3jY3ub8mp/nvJsgp/ycoek8nOI 198 | pfJwhqPybIGf8md+m/Jhd5XyWW+N8kxhf+M2RGKKICpHBT9Pc5B6lLH/nrfL/67E1f+0yNj/tsrZ/7TG 199 | 1f+rvcv/qbzK/7DD0v+xxtT/q8HQ/6S7y/+Ur8L/cIqm/zhHaIlhdZTiqL7P/8DS3v/I2eP/zNvl/8HQ 200 | 2/+gr8D/e4qf/3aFmf+YqLj/usrW/8HU3v+/0tv/uMvW/5q0xv9TaYbhb4Of8rjJ2P/K2uT/0t/n/9bh 201 | 6v+cp7j/VWF6/zxIZP82QVz/SFRs/42cq//J2eL/x9jg/8DS2/+swc7/ZHiR8nKGovK+ztv/0uDp/9/r 202 | 8P+6xtP/Z3KK/01NWP9hV1H/YltR/0ZHUf9YYXb/rbzJ/9Xk7f/E1t//ssXR/2l6kvJzh6TywdHd/9rm 203 | 7f/l7/b/mKO3/0tLVf88LRn/XVAo/2piNP9NSzP/Q0hU/4uWqP/b6e//0uDp/7nL1/9sfJTydImm8sHS 204 | 3//i7fT/5vP7/3qAi/8CAAD/FBMC/w0VEf8OERf/NTkq/0pNM/+KjZL/3+v0/+Lu8//B0d3/b4CY8niN 205 | qfLE1OH/6fP4/+j2/v9cW2D/BQAA/xccD/81JC//Lxk5/ycnMf92c0j/kZGE/+fw/f/w9/z/ytji/3SE 206 | nPJ5jKfyx9bh/+nz+P/x+///ZGBm/xgNCP8eJhT/XkZN/2hDYf9lXGL/XWI//4CFfv/2+v//9fr9/9Te 207 | 5/97iJ/ygZSv8tfl6f/0+Pz//////6ass/8ZGRn/KyUO/29wTf+MhGf/a2dJ/xkZGf+ws7r///////// 208 | ///r8/j/i5ar8niIn/K9yMz/0NPZ/93i6f/c4+f/hYSF/0Y0If+Xfkn/pZVX/0tDIf+JiY7/5efs/+7y 209 | +f/i6PH/ztXb/4CJmfIdGETyMD/X/0S80f/GoED/akFS/1Nzrf+WnK3/u6yo/7+xqv+am6v/aXii/y48 210 | Zf8pM0//GStF/yQxVv8bIz7yGhNO8j1N//9i7////9FW/4FXbf8aRZz/V3S0/2B+uf9aeLT/TWal/zdS 211 | mv8bKk//Fw8L/3lkSv9DSEr/CBhK8iUfVeFhZP//jff////bev+MdIf/Q2+2/1x9rP9Ud6b/WHyp/15/ 212 | rf9hg8H/IC5B/zQgE/+9ioH/U09C/wwdR+EjG0GQQU7g/4Tw////5Hv/knqH/0h0uP9uj7b/dZe4/3ia 213 | uf9skLT/YIS7/y88YP8QDAj/FBMP/xYYKv81PmyJIyAuBRUge4o2jqfjz6tK8o9rf/JGbazya4as8nOQ 214 | sfJyj67ya4qs8l56o/JQZZbyOUh28ig1X+M6RHaKQkl2BQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 215 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 216 | 217 | 218 | --------------------------------------------------------------------------------