├── Game ├── EntryPoint.cs ├── Extensions │ ├── EventHandlerExtensions.cs │ ├── MathExtensions.cs │ ├── NumberExtensions.cs │ └── SharpDX │ │ ├── DataStreamExtensions.cs │ │ └── Direct3D │ │ └── VertexElementExtensions.cs ├── Game.csproj ├── GameContext.cs ├── Graphics │ ├── IDrawable.cs │ ├── Menu.cs │ └── MenuItem.cs ├── Hooks │ ├── Graphics │ │ ├── Direct3D9.cs │ │ ├── Direct3D9Hook.Events.cs │ │ ├── Direct3D9Hook.HookActivation.cs │ │ ├── Direct3D9Hook.HookSetup.cs │ │ ├── Direct3D9Hook.Hooks.cs │ │ ├── Direct3D9Hook.OnPrepareHook.cs │ │ ├── Direct3D9Hook.UtilityMethods.cs │ │ └── Direct3D9Hook.cs │ └── HookBase.cs ├── Input │ └── Key.cs ├── Interfaces │ ├── IAttachable.cs │ └── IInstallable.cs ├── Interpreters │ ├── Graphics │ │ └── GraphicsInterpreter.cs │ └── InterpreterBase.cs ├── Managers │ ├── GraphicsManager.cs │ ├── InputManager.cs │ └── StateManager.cs ├── Properties │ └── AssemblyInfo.cs ├── Providers │ ├── GraphicsProvider.cs │ ├── InputProvider.cs │ └── StateProvider.cs ├── State │ ├── GraphicsState.cs │ └── InputState.cs ├── StrongName.snk ├── Transformers │ ├── Graphics │ │ ├── Direct3D9Transformer.cs │ │ ├── Mirrors │ │ │ ├── Direct3D9Mirror.Fields.cs │ │ │ ├── Direct3D9Mirror.Hooks.cs │ │ │ └── Direct3D9Mirror.cs │ │ └── Overlays │ │ │ ├── Console │ │ │ └── ConsoleOverlay.cs │ │ │ ├── Direct3D9Overlay.cs │ │ │ ├── Fps │ │ │ ├── FpsOverlay.Drawing.cs │ │ │ └── FpsOverlay.cs │ │ │ ├── OverlayBase.cs │ │ │ └── StrideLogger │ │ │ ├── Model.cs │ │ │ └── StrideLoggerOverlay.cs │ ├── MirrorBase.cs │ └── TransformerBase.cs ├── Utilities │ ├── Direct3DUtil.cs │ └── Windows.cs ├── bin │ └── Debug │ │ ├── EasyHook.dll │ │ ├── EasyHook.pdb │ │ ├── EasyHook.xml │ │ ├── Game.dll │ │ ├── Game.pdb │ │ ├── Logging.dll │ │ ├── Logging.pdb │ │ ├── NLog.dll │ │ ├── NLog.xml │ │ ├── SharpDX.Direct3D9.dll │ │ └── SharpDX.dll └── obj │ └── Debug │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── Game.csproj.FileListAbsolute.txt │ ├── Game.csprojResolveAssemblyReference.cache │ ├── Game.dll │ ├── Game.pdb │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── Injector ├── Configuration │ ├── Config.cs │ ├── InjectionConfiguration.cs │ └── WindowConfiguration.cs ├── Controls │ ├── ToggleButton.Designer.cs │ ├── ToggleButton.cs │ └── ToggleButton.resx ├── Extensions │ ├── AssemblyExtensions.cs │ └── IconExtensions.cs ├── FormMain.Designer.cs ├── FormMain.cs ├── FormMain.resx ├── InjectionHelper.cs ├── Injector.csproj ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ └── sc2.ico ├── app.config ├── bin │ └── Debug │ │ ├── Cinchoo.Core.ExtensionMethods.dll │ │ ├── Cinchoo.Core.Win32.dll │ │ ├── Cinchoo.Core.dll │ │ ├── Config │ │ ├── ChoAPMSettings.xml │ │ ├── ChoConsoleSettings.xml │ │ ├── ChoCoreFrx.xml │ │ ├── ChoIniSettings.xml │ │ ├── Controller.exe.xml │ │ ├── Controller.exe.xml.cho │ │ └── Meta │ │ │ └── Controller.exe.meta │ │ ├── Console.dll │ │ ├── Controller.exe │ │ ├── Controller.exe.config │ │ ├── Controller.pdb │ │ ├── Controller.vshost.exe.config │ │ ├── Controller.vshost.exe.manifest │ │ ├── ControllerConfig.ini │ │ ├── Direct3D9Hook.dll │ │ ├── EasyHook.dll │ │ ├── EasyHook.pdb │ │ ├── EasyHook.xml │ │ ├── EasyHook32.dll │ │ ├── EasyHook32Svc.exe │ │ ├── EasyHook64.dll │ │ ├── EasyHook64Svc.exe │ │ ├── FpsOverlay.dll │ │ ├── Game.dll │ │ ├── Injector.exe │ │ ├── Injector.exe.config │ │ ├── Injector.pdb │ │ ├── Injector.vshost.exe │ │ ├── Injector.vshost.exe.config │ │ ├── Injector.vshost.exe.manifest │ │ ├── Interceptor.dll │ │ ├── Logging.dll │ │ ├── Logging.pdb │ │ ├── Logs │ │ ├── 01-02-2013.01 │ │ │ └── cholog.00.txt │ │ ├── 01-02-2013 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.01 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.02 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.03 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.04 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.05 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.06 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.07 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.08 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.09 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.10 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.11 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.12 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.13 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.14 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.15 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.16 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.17 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.18 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.19 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.20 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.21 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.22 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.23 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.24 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.25 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.26 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.27 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.28 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.29 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.30 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.31 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.32 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.33 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.34 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.35 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.36 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.37 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.38 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.39 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.40 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.41 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.42 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.43 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.44 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.45 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.46 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.47 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.48 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.49 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.50 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.51 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.52 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.53 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.54 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.55 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.56 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.57 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.58 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.59 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.60 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.61 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.62 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.63 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.64 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.65 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.66 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.67 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.68 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.69 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.70 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.71 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.72 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.73 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.74 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.75 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.76 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.77 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.78 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.79 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.80 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.81 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.82 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.83 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.84 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.85 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.86 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.87 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.88 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.89 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.90 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.91 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.92 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012.93 │ │ │ └── cholog.00.txt │ │ ├── 11-12-2012 │ │ │ └── cholog.00.txt │ │ ├── 11-13-2012.01 │ │ │ └── cholog.00.txt │ │ ├── 11-13-2012.02 │ │ │ └── cholog.00.txt │ │ ├── 11-13-2012.03 │ │ │ └── cholog.00.txt │ │ ├── 11-13-2012.04 │ │ │ └── cholog.00.txt │ │ ├── 11-13-2012.05 │ │ │ └── cholog.00.txt │ │ ├── 11-13-2012.06 │ │ │ └── cholog.00.txt │ │ ├── 11-13-2012.07 │ │ │ └── cholog.00.txt │ │ ├── 11-13-2012.08 │ │ │ └── cholog.00.txt │ │ ├── 11-13-2012.09 │ │ │ └── cholog.00.txt │ │ ├── 11-13-2012.10 │ │ │ └── cholog.00.txt │ │ ├── 11-13-2012.11 │ │ │ └── cholog.00.txt │ │ ├── 11-13-2012.12 │ │ │ └── cholog.00.txt │ │ ├── 11-13-2012.13 │ │ │ └── cholog.00.txt │ │ ├── 11-13-2012.14 │ │ │ └── cholog.00.txt │ │ ├── 11-13-2012.15 │ │ │ └── cholog.00.txt │ │ ├── 11-13-2012.16 │ │ │ └── cholog.00.txt │ │ ├── 11-13-2012.17 │ │ │ └── cholog.00.txt │ │ ├── 11-13-2012 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.01 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.02 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.03 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.04 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.05 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.06 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.07 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.08 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.09 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.10 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.11 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.12 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.13 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.14 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.15 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.16 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.17 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.18 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.19 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.20 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.21 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.22 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.23 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.24 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.25 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.26 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.27 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.28 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.29 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.30 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.31 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.32 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.33 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.34 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.35 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.36 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.37 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.38 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.39 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.40 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.41 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.42 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.43 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.44 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.45 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.46 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.47 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.48 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.49 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.50 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.51 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.52 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.53 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.54 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.55 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.56 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.57 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.58 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.59 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.60 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.61 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.62 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.63 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.64 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.65 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.66 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.67 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.68 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.69 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.70 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.71 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.72 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.73 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.74 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.75 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.76 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.77 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.78 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.79 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.80 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.81 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012.82 │ │ │ └── cholog.00.txt │ │ ├── 11-14-2012 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.01 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.02 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.03 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.04 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.05 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.06 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.07 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.08 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.09 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.10 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.11 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.12 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.13 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.14 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.15 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.16 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.17 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.18 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.19 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.20 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.21 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.22 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.23 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.24 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.25 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.26 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.27 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.28 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.29 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.30 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.31 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.32 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.33 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.34 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.35 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.36 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.37 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.38 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.39 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.40 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.41 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.42 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.43 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.44 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.45 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.46 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.47 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012.48 │ │ │ └── cholog.00.txt │ │ ├── 11-15-2012 │ │ │ └── cholog.00.txt │ │ ├── 11-16-2012.01 │ │ │ └── cholog.00.txt │ │ ├── 11-16-2012.02 │ │ │ └── cholog.00.txt │ │ ├── 11-16-2012.03 │ │ │ └── cholog.00.txt │ │ ├── 11-16-2012.04 │ │ │ └── cholog.00.txt │ │ ├── 11-16-2012.05 │ │ │ └── cholog.00.txt │ │ ├── 11-16-2012.06 │ │ │ └── cholog.00.txt │ │ ├── 11-16-2012.07 │ │ │ └── cholog.00.txt │ │ ├── 11-16-2012 │ │ │ └── cholog.00.txt │ │ ├── 11-17-2012.01 │ │ │ └── cholog.00.txt │ │ ├── 11-17-2012.02 │ │ │ └── cholog.00.txt │ │ ├── 11-17-2012.03 │ │ │ └── cholog.00.txt │ │ ├── 11-17-2012.04 │ │ │ └── cholog.00.txt │ │ ├── 11-17-2012.05 │ │ │ └── cholog.00.txt │ │ ├── 11-17-2012.06 │ │ │ └── cholog.00.txt │ │ ├── 11-17-2012.07 │ │ │ └── cholog.00.txt │ │ ├── 11-17-2012.08 │ │ │ └── cholog.00.txt │ │ ├── 11-17-2012.09 │ │ │ └── cholog.00.txt │ │ ├── 11-17-2012.10 │ │ │ └── cholog.00.txt │ │ ├── 11-17-2012.11 │ │ │ └── cholog.00.txt │ │ ├── 11-17-2012.12 │ │ │ └── cholog.00.txt │ │ ├── 11-17-2012.13 │ │ │ └── cholog.00.txt │ │ ├── 11-17-2012.14 │ │ │ └── cholog.00.txt │ │ ├── 11-17-2012.15 │ │ │ └── cholog.00.txt │ │ ├── 11-17-2012.16 │ │ │ └── cholog.00.txt │ │ ├── 11-17-2012.17 │ │ │ └── cholog.00.txt │ │ ├── 11-17-2012.18 │ │ │ └── cholog.00.txt │ │ ├── 11-17-2012.19 │ │ │ └── cholog.00.txt │ │ ├── 11-17-2012.20 │ │ │ └── cholog.00.txt │ │ ├── 11-17-2012.21 │ │ │ └── cholog.00.txt │ │ ├── 11-17-2012.22 │ │ │ └── cholog.00.txt │ │ ├── 11-17-2012.23 │ │ │ └── cholog.00.txt │ │ ├── 11-17-2012.24 │ │ │ └── cholog.00.txt │ │ ├── 11-17-2012.25 │ │ │ └── cholog.00.txt │ │ ├── 11-17-2012.26 │ │ │ └── cholog.00.txt │ │ ├── 11-17-2012.27 │ │ │ └── cholog.00.txt │ │ ├── 11-17-2012.28 │ │ │ └── cholog.00.txt │ │ ├── 11-17-2012.29 │ │ │ └── cholog.00.txt │ │ ├── 11-17-2012.30 │ │ │ └── cholog.00.txt │ │ ├── 11-17-2012.31 │ │ │ └── cholog.00.txt │ │ ├── 11-17-2012 │ │ │ └── cholog.00.txt │ │ ├── 11-18-2012.01 │ │ │ └── cholog.00.txt │ │ ├── 11-18-2012.02 │ │ │ └── cholog.00.txt │ │ ├── 11-18-2012.03 │ │ │ └── cholog.00.txt │ │ ├── 11-18-2012 │ │ │ └── cholog.00.txt │ │ ├── 11-20-2012 │ │ │ └── cholog.00.txt │ │ ├── 11-21-2012.01 │ │ │ └── cholog.00.txt │ │ ├── 11-21-2012 │ │ │ └── cholog.00.txt │ │ ├── 11-22-2012.01 │ │ │ └── cholog.00.txt │ │ ├── 11-22-2012.02 │ │ │ └── cholog.00.txt │ │ ├── 11-22-2012.03 │ │ │ └── cholog.00.txt │ │ ├── 11-22-2012.04 │ │ │ └── cholog.00.txt │ │ ├── 11-22-2012.05 │ │ │ └── cholog.00.txt │ │ ├── 11-22-2012.06 │ │ │ └── cholog.00.txt │ │ ├── 11-22-2012.07 │ │ │ └── cholog.00.txt │ │ ├── 11-22-2012.08 │ │ │ └── cholog.00.txt │ │ ├── 11-22-2012.09 │ │ │ └── cholog.00.txt │ │ ├── 11-22-2012.10 │ │ │ └── cholog.00.txt │ │ ├── 11-22-2012.11 │ │ │ └── cholog.00.txt │ │ ├── 11-22-2012.12 │ │ │ └── cholog.00.txt │ │ ├── 11-22-2012.13 │ │ │ └── cholog.00.txt │ │ ├── 11-22-2012.14 │ │ │ └── cholog.00.txt │ │ ├── 11-22-2012.15 │ │ │ └── cholog.00.txt │ │ ├── 11-22-2012.16 │ │ │ └── cholog.00.txt │ │ ├── 11-22-2012.17 │ │ │ └── cholog.00.txt │ │ ├── 11-22-2012.18 │ │ │ └── cholog.00.txt │ │ ├── 11-22-2012.19 │ │ │ └── cholog.00.txt │ │ ├── 11-22-2012.20 │ │ │ └── cholog.00.txt │ │ ├── 11-22-2012.21 │ │ │ └── cholog.00.txt │ │ ├── 11-22-2012.22 │ │ │ └── cholog.00.txt │ │ ├── 11-22-2012.23 │ │ │ └── cholog.00.txt │ │ ├── 11-22-2012.24 │ │ │ └── cholog.00.txt │ │ ├── 11-22-2012.25 │ │ │ └── cholog.00.txt │ │ ├── 11-22-2012.26 │ │ │ └── cholog.00.txt │ │ ├── 11-22-2012 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.01 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.02 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.03 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.04 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.05 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.06 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.07 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.08 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.09 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.10 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.11 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.12 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.13 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.14 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.15 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.16 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.17 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.18 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.19 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.20 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.21 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.22 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.23 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.24 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.25 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.26 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.27 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.28 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.29 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.30 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.31 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.32 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.33 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.34 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.35 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.36 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.37 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.38 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.39 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.40 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.41 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012.42 │ │ │ └── cholog.00.txt │ │ ├── 11-23-2012 │ │ │ └── cholog.00.txt │ │ ├── 11-24-2012.01 │ │ │ └── cholog.00.txt │ │ ├── 11-24-2012.02 │ │ │ └── cholog.00.txt │ │ ├── 11-24-2012.03 │ │ │ └── cholog.00.txt │ │ ├── 11-24-2012.04 │ │ │ └── cholog.00.txt │ │ ├── 11-24-2012.05 │ │ │ └── cholog.00.txt │ │ ├── 11-24-2012.06 │ │ │ └── cholog.00.txt │ │ ├── 11-24-2012.07 │ │ │ └── cholog.00.txt │ │ ├── 11-24-2012.08 │ │ │ └── cholog.00.txt │ │ ├── 11-24-2012.09 │ │ │ └── cholog.00.txt │ │ ├── 11-24-2012.10 │ │ │ └── cholog.00.txt │ │ ├── 11-24-2012.11 │ │ │ └── cholog.00.txt │ │ ├── 11-24-2012.12 │ │ │ └── cholog.00.txt │ │ ├── 11-24-2012.13 │ │ │ └── cholog.00.txt │ │ ├── 11-24-2012.14 │ │ │ └── cholog.00.txt │ │ ├── 11-24-2012.15 │ │ │ └── cholog.00.txt │ │ ├── 11-24-2012.16 │ │ │ └── cholog.00.txt │ │ ├── 11-24-2012.17 │ │ │ └── cholog.00.txt │ │ ├── 11-24-2012.18 │ │ │ └── cholog.00.txt │ │ ├── 11-24-2012.19 │ │ │ └── cholog.00.txt │ │ ├── 11-24-2012.20 │ │ │ └── cholog.00.txt │ │ ├── 11-24-2012 │ │ │ └── cholog.00.txt │ │ ├── 11-25-2012.01 │ │ │ └── cholog.00.txt │ │ ├── 11-25-2012.02 │ │ │ └── cholog.00.txt │ │ ├── 11-25-2012.03 │ │ │ └── cholog.00.txt │ │ ├── 11-25-2012.04 │ │ │ └── cholog.00.txt │ │ ├── 11-25-2012.05 │ │ │ └── cholog.00.txt │ │ ├── 11-25-2012.06 │ │ │ └── cholog.00.txt │ │ ├── 11-25-2012 │ │ │ └── cholog.00.txt │ │ ├── 11-26-2012.01 │ │ │ └── cholog.00.txt │ │ ├── 11-26-2012.02 │ │ │ └── cholog.00.txt │ │ ├── 11-26-2012.03 │ │ │ └── cholog.00.txt │ │ ├── 11-26-2012.04 │ │ │ └── cholog.00.txt │ │ ├── 11-26-2012.05 │ │ │ └── cholog.00.txt │ │ ├── 11-26-2012.06 │ │ │ └── cholog.00.txt │ │ ├── 11-26-2012.07 │ │ │ └── cholog.00.txt │ │ ├── 11-26-2012.08 │ │ │ └── cholog.00.txt │ │ ├── 11-26-2012.09 │ │ │ └── cholog.00.txt │ │ ├── 11-26-2012.10 │ │ │ └── cholog.00.txt │ │ ├── 11-26-2012.11 │ │ │ └── cholog.00.txt │ │ ├── 11-26-2012.12 │ │ │ └── cholog.00.txt │ │ ├── 11-26-2012.13 │ │ │ └── cholog.00.txt │ │ ├── 11-26-2012.14 │ │ │ └── cholog.00.txt │ │ ├── 11-26-2012 │ │ │ └── cholog.00.txt │ │ ├── 12-01-2012.01 │ │ │ └── cholog.00.txt │ │ ├── 12-01-2012.02 │ │ │ └── cholog.00.txt │ │ ├── 12-01-2012.03 │ │ │ └── cholog.00.txt │ │ ├── 12-01-2012.04 │ │ │ └── cholog.00.txt │ │ ├── 12-01-2012.05 │ │ │ └── cholog.00.txt │ │ ├── 12-01-2012 │ │ │ └── cholog.00.txt │ │ ├── 12-02-2012.01 │ │ │ └── cholog.00.txt │ │ ├── 12-02-2012.02 │ │ │ └── cholog.00.txt │ │ ├── 12-02-2012.03 │ │ │ └── cholog.00.txt │ │ ├── 12-02-2012.04 │ │ │ └── cholog.00.txt │ │ ├── 12-02-2012.05 │ │ │ └── cholog.00.txt │ │ ├── 12-02-2012.06 │ │ │ └── cholog.00.txt │ │ ├── 12-02-2012.07 │ │ │ └── cholog.00.txt │ │ ├── 12-02-2012.08 │ │ │ └── cholog.00.txt │ │ ├── 12-02-2012.09 │ │ │ └── cholog.00.txt │ │ ├── 12-02-2012.10 │ │ │ └── cholog.00.txt │ │ ├── 12-02-2012.11 │ │ │ └── cholog.00.txt │ │ ├── 12-02-2012.12 │ │ │ └── cholog.00.txt │ │ ├── 12-02-2012.13 │ │ │ └── cholog.00.txt │ │ ├── 12-02-2012.14 │ │ │ └── cholog.00.txt │ │ ├── 12-02-2012.15 │ │ │ └── cholog.00.txt │ │ ├── 12-02-2012.16 │ │ │ └── cholog.00.txt │ │ ├── 12-02-2012.17 │ │ │ └── cholog.00.txt │ │ ├── 12-02-2012.18 │ │ │ └── cholog.00.txt │ │ ├── 12-02-2012.19 │ │ │ └── cholog.00.txt │ │ ├── 12-02-2012.20 │ │ │ └── cholog.00.txt │ │ ├── 12-02-2012.21 │ │ │ └── cholog.00.txt │ │ ├── 12-02-2012.22 │ │ │ └── cholog.00.txt │ │ ├── 12-02-2012.23 │ │ │ └── cholog.00.txt │ │ ├── 12-02-2012.24 │ │ │ └── cholog.00.txt │ │ ├── 12-02-2012.25 │ │ │ └── cholog.00.txt │ │ ├── 12-02-2012.26 │ │ │ └── cholog.00.txt │ │ ├── 12-02-2012.27 │ │ │ └── cholog.00.txt │ │ ├── 12-02-2012.28 │ │ │ └── cholog.00.txt │ │ ├── 12-02-2012.29 │ │ │ └── cholog.00.txt │ │ ├── 12-02-2012.30 │ │ │ └── cholog.00.txt │ │ ├── 12-02-2012.31 │ │ │ └── cholog.00.txt │ │ ├── 12-02-2012.32 │ │ │ └── cholog.00.txt │ │ ├── 12-02-2012.33 │ │ │ └── cholog.00.txt │ │ ├── 12-02-2012.34 │ │ │ └── cholog.00.txt │ │ ├── 12-02-2012.35 │ │ │ └── cholog.00.txt │ │ ├── 12-02-2012.36 │ │ │ └── cholog.00.txt │ │ ├── 12-02-2012.37 │ │ │ └── cholog.00.txt │ │ ├── 12-02-2012.38 │ │ │ └── cholog.00.txt │ │ ├── 12-02-2012 │ │ │ └── cholog.00.txt │ │ ├── Settings │ │ │ ├── Cinchoo.Core.ChoPropertyManagerSettings.log │ │ │ ├── Cinchoo.Core.ChoTypesManagerSettings.log │ │ │ ├── Cinchoo.Core.Diagnostics.ChoFileProfileSettings.log │ │ │ ├── Cinchoo.Core.Diagnostics.ChoTraceSettings.log │ │ │ ├── Cinchoo.Core.Reflection.ChoAssemblySettings.log │ │ │ ├── Controller.Configuration.InjectionConfiguration.log │ │ │ └── Controller.Configuration.WindowConfiguration.log │ │ └── cholog.txt │ │ ├── NLog.dll │ │ ├── NLog.xml │ │ ├── RemotingInterface.dll │ │ ├── RemotingInterface.pdb │ │ ├── SharpDX.Direct3D9.dll │ │ └── SharpDX.dll └── obj │ ├── Debug │ ├── Controller.Controls.ToggleButton.resources │ ├── Controller.FormMain.resources │ ├── Controller.Properties.Resources.resources │ ├── Controller.csproj.FileListAbsolute.txt │ ├── Controller.csproj.GenerateResource.Cache │ ├── Controller.csprojResolveAssemblyReference.cache │ ├── Controller.exe │ ├── Controller.pdb │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── Injector.Controls.ToggleButton.resources │ ├── Injector.FormMain.resources │ ├── Injector.Properties.Resources.resources │ ├── Injector.csproj.FileListAbsolute.txt │ ├── Injector.csproj.GenerateResource.Cache │ ├── Injector.csprojResolveAssemblyReference.cache │ ├── Injector.exe │ ├── Injector.pdb │ ├── TempPE │ │ └── Properties.Resources.Designer.cs.dll │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── Release │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── Interceptor ├── EntryPoint.cs ├── Extensions │ └── ProcessExtensions.cs ├── Interceptor.csproj ├── NLog.xsd ├── Properties │ └── AssemblyInfo.cs ├── StrongName.snk ├── XMLFile1.xml ├── bin │ └── Debug │ │ ├── EasyHook.dll │ │ ├── EasyHook.pdb │ │ ├── EasyHook.xml │ │ ├── Game.dll │ │ ├── Game.pdb │ │ ├── Interceptor.dll │ │ ├── Interceptor.pdb │ │ ├── Logging.dll │ │ ├── Logging.pdb │ │ ├── NLog.dll │ │ ├── NLog.xml │ │ ├── RemotingInterface.dll │ │ ├── RemotingInterface.pdb │ │ ├── SharpDX.Direct3D9.dll │ │ └── SharpDX.dll ├── obj │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── Interceptor.csproj.FileListAbsolute.txt │ │ ├── Interceptor.csprojResolveAssemblyReference.cache │ │ ├── Interceptor.dll │ │ ├── Interceptor.pdb │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs └── packages.config ├── Logging ├── Extensions │ ├── LoggerExtensions.cs │ └── ObjectExtensions.cs ├── Logging.csproj ├── Logging.csproj.user ├── LoggingManager.cs ├── Properties │ └── AssemblyInfo.cs ├── StrongName.snk ├── bin │ └── Debug │ │ ├── EasyHook.dll │ │ ├── EasyHook.pdb │ │ ├── EasyHook.xml │ │ ├── Framework.dll │ │ ├── Framework.pdb │ │ ├── Logging.dll │ │ ├── Logging.pdb │ │ ├── NLog.dll │ │ └── NLog.xml └── obj │ └── Debug │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── Framework.csproj.FileListAbsolute.txt │ ├── Framework.csprojResolveAssemblyReference.cache │ ├── Framework.dll │ ├── Framework.pdb │ ├── Logging.csproj.FileListAbsolute.txt │ ├── Logging.csprojResolveAssemblyReference.cache │ ├── Logging.dll │ ├── Logging.pdb │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── Packages ├── Cinchoo │ ├── Cinchoo.Core.ExtensionMethods.dll │ ├── Cinchoo.Core.Win32.dll │ └── Cinchoo.Core.dll ├── EasyHook │ ├── EasyHook.XML │ ├── EasyHook.dll │ ├── EasyHook.pdb │ ├── EasyHook32.dll │ ├── EasyHook32Svc.exe │ ├── EasyHook64.dll │ └── EasyHook64Svc.exe ├── NLog.2.0.0.2000 │ ├── NLog.2.0.0.2000.nupkg │ └── lib │ │ ├── net20 │ │ ├── NLog.dll │ │ └── NLog.xml │ │ ├── net35 │ │ ├── NLog.dll │ │ └── NLog.xml │ │ ├── net40 │ │ ├── NLog.dll │ │ └── NLog.xml │ │ ├── sl2 │ │ ├── NLog.dll │ │ └── NLog.xml │ │ ├── sl3-wp │ │ ├── NLog.dll │ │ └── NLog.xml │ │ ├── sl3 │ │ ├── NLog.dll │ │ └── NLog.xml │ │ ├── sl4-windowsphone71 │ │ ├── NLog.dll │ │ └── NLog.xml │ │ └── sl4 │ │ ├── NLog.dll │ │ └── NLog.xml ├── NLog.Config.2.0.0.2000 │ ├── NLog.Config.2.0.0.2000.nupkg │ ├── content │ │ ├── NLog.config │ │ └── NLog.xsd │ └── tools │ │ └── Install.ps1 ├── SharpDX │ ├── SharpDX.Direct3D9.dll │ └── SharpDX.dll └── repositories.config ├── README.md ├── RemotingInterface ├── Certificate.snk ├── Extensions │ └── EventHandlerExtensions.cs ├── IpcInterface.cs ├── Properties │ └── AssemblyInfo.cs ├── RemotingInterface.csproj ├── bin │ └── Debug │ │ ├── Logging.dll │ │ ├── Logging.pdb │ │ ├── NLog.dll │ │ ├── NLog.xml │ │ ├── RemotingInterface.dll │ │ └── RemotingInterface.pdb └── obj │ └── Debug │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── RemotingInterface.csproj.FileListAbsolute.txt │ ├── RemotingInterface.csprojResolveAssemblyReference.cache │ ├── RemotingInterface.dll │ ├── RemotingInterface.pdb │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── Sc2AiBot.sln ├── Sc2AiBot.v11.suo └── a.exe /Game/EntryPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/EntryPoint.cs -------------------------------------------------------------------------------- /Game/Extensions/EventHandlerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Extensions/EventHandlerExtensions.cs -------------------------------------------------------------------------------- /Game/Extensions/MathExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Extensions/MathExtensions.cs -------------------------------------------------------------------------------- /Game/Extensions/NumberExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Extensions/NumberExtensions.cs -------------------------------------------------------------------------------- /Game/Extensions/SharpDX/DataStreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Extensions/SharpDX/DataStreamExtensions.cs -------------------------------------------------------------------------------- /Game/Extensions/SharpDX/Direct3D/VertexElementExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Extensions/SharpDX/Direct3D/VertexElementExtensions.cs -------------------------------------------------------------------------------- /Game/Game.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Game.csproj -------------------------------------------------------------------------------- /Game/GameContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/GameContext.cs -------------------------------------------------------------------------------- /Game/Graphics/IDrawable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Graphics/IDrawable.cs -------------------------------------------------------------------------------- /Game/Graphics/Menu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Graphics/Menu.cs -------------------------------------------------------------------------------- /Game/Graphics/MenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Graphics/MenuItem.cs -------------------------------------------------------------------------------- /Game/Hooks/Graphics/Direct3D9.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Hooks/Graphics/Direct3D9.cs -------------------------------------------------------------------------------- /Game/Hooks/Graphics/Direct3D9Hook.Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Hooks/Graphics/Direct3D9Hook.Events.cs -------------------------------------------------------------------------------- /Game/Hooks/Graphics/Direct3D9Hook.HookActivation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Hooks/Graphics/Direct3D9Hook.HookActivation.cs -------------------------------------------------------------------------------- /Game/Hooks/Graphics/Direct3D9Hook.HookSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Hooks/Graphics/Direct3D9Hook.HookSetup.cs -------------------------------------------------------------------------------- /Game/Hooks/Graphics/Direct3D9Hook.Hooks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Hooks/Graphics/Direct3D9Hook.Hooks.cs -------------------------------------------------------------------------------- /Game/Hooks/Graphics/Direct3D9Hook.OnPrepareHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Hooks/Graphics/Direct3D9Hook.OnPrepareHook.cs -------------------------------------------------------------------------------- /Game/Hooks/Graphics/Direct3D9Hook.UtilityMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Hooks/Graphics/Direct3D9Hook.UtilityMethods.cs -------------------------------------------------------------------------------- /Game/Hooks/Graphics/Direct3D9Hook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Hooks/Graphics/Direct3D9Hook.cs -------------------------------------------------------------------------------- /Game/Hooks/HookBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Hooks/HookBase.cs -------------------------------------------------------------------------------- /Game/Input/Key.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Input/Key.cs -------------------------------------------------------------------------------- /Game/Interfaces/IAttachable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Interfaces/IAttachable.cs -------------------------------------------------------------------------------- /Game/Interfaces/IInstallable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Interfaces/IInstallable.cs -------------------------------------------------------------------------------- /Game/Interpreters/Graphics/GraphicsInterpreter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Interpreters/Graphics/GraphicsInterpreter.cs -------------------------------------------------------------------------------- /Game/Interpreters/InterpreterBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Interpreters/InterpreterBase.cs -------------------------------------------------------------------------------- /Game/Managers/GraphicsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Managers/GraphicsManager.cs -------------------------------------------------------------------------------- /Game/Managers/InputManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Managers/InputManager.cs -------------------------------------------------------------------------------- /Game/Managers/StateManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Managers/StateManager.cs -------------------------------------------------------------------------------- /Game/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Game/Providers/GraphicsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Providers/GraphicsProvider.cs -------------------------------------------------------------------------------- /Game/Providers/InputProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Providers/InputProvider.cs -------------------------------------------------------------------------------- /Game/Providers/StateProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Providers/StateProvider.cs -------------------------------------------------------------------------------- /Game/State/GraphicsState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/State/GraphicsState.cs -------------------------------------------------------------------------------- /Game/State/InputState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/State/InputState.cs -------------------------------------------------------------------------------- /Game/StrongName.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/StrongName.snk -------------------------------------------------------------------------------- /Game/Transformers/Graphics/Direct3D9Transformer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Transformers/Graphics/Direct3D9Transformer.cs -------------------------------------------------------------------------------- /Game/Transformers/Graphics/Mirrors/Direct3D9Mirror.Fields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Transformers/Graphics/Mirrors/Direct3D9Mirror.Fields.cs -------------------------------------------------------------------------------- /Game/Transformers/Graphics/Mirrors/Direct3D9Mirror.Hooks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Transformers/Graphics/Mirrors/Direct3D9Mirror.Hooks.cs -------------------------------------------------------------------------------- /Game/Transformers/Graphics/Mirrors/Direct3D9Mirror.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Transformers/Graphics/Mirrors/Direct3D9Mirror.cs -------------------------------------------------------------------------------- /Game/Transformers/Graphics/Overlays/Console/ConsoleOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Transformers/Graphics/Overlays/Console/ConsoleOverlay.cs -------------------------------------------------------------------------------- /Game/Transformers/Graphics/Overlays/Direct3D9Overlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Transformers/Graphics/Overlays/Direct3D9Overlay.cs -------------------------------------------------------------------------------- /Game/Transformers/Graphics/Overlays/Fps/FpsOverlay.Drawing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Transformers/Graphics/Overlays/Fps/FpsOverlay.Drawing.cs -------------------------------------------------------------------------------- /Game/Transformers/Graphics/Overlays/Fps/FpsOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Transformers/Graphics/Overlays/Fps/FpsOverlay.cs -------------------------------------------------------------------------------- /Game/Transformers/Graphics/Overlays/OverlayBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Transformers/Graphics/Overlays/OverlayBase.cs -------------------------------------------------------------------------------- /Game/Transformers/Graphics/Overlays/StrideLogger/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Transformers/Graphics/Overlays/StrideLogger/Model.cs -------------------------------------------------------------------------------- /Game/Transformers/Graphics/Overlays/StrideLogger/StrideLoggerOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Transformers/Graphics/Overlays/StrideLogger/StrideLoggerOverlay.cs -------------------------------------------------------------------------------- /Game/Transformers/MirrorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Transformers/MirrorBase.cs -------------------------------------------------------------------------------- /Game/Transformers/TransformerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Transformers/TransformerBase.cs -------------------------------------------------------------------------------- /Game/Utilities/Direct3DUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Utilities/Direct3DUtil.cs -------------------------------------------------------------------------------- /Game/Utilities/Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/Utilities/Windows.cs -------------------------------------------------------------------------------- /Game/bin/Debug/EasyHook.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/bin/Debug/EasyHook.dll -------------------------------------------------------------------------------- /Game/bin/Debug/EasyHook.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/bin/Debug/EasyHook.pdb -------------------------------------------------------------------------------- /Game/bin/Debug/EasyHook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/bin/Debug/EasyHook.xml -------------------------------------------------------------------------------- /Game/bin/Debug/Game.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/bin/Debug/Game.dll -------------------------------------------------------------------------------- /Game/bin/Debug/Game.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/bin/Debug/Game.pdb -------------------------------------------------------------------------------- /Game/bin/Debug/Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/bin/Debug/Logging.dll -------------------------------------------------------------------------------- /Game/bin/Debug/Logging.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/bin/Debug/Logging.pdb -------------------------------------------------------------------------------- /Game/bin/Debug/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/bin/Debug/NLog.dll -------------------------------------------------------------------------------- /Game/bin/Debug/NLog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/bin/Debug/NLog.xml -------------------------------------------------------------------------------- /Game/bin/Debug/SharpDX.Direct3D9.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/bin/Debug/SharpDX.Direct3D9.dll -------------------------------------------------------------------------------- /Game/bin/Debug/SharpDX.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/bin/Debug/SharpDX.dll -------------------------------------------------------------------------------- /Game/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Game/obj/Debug/Game.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/obj/Debug/Game.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Game/obj/Debug/Game.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/obj/Debug/Game.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Game/obj/Debug/Game.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/obj/Debug/Game.dll -------------------------------------------------------------------------------- /Game/obj/Debug/Game.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Game/obj/Debug/Game.pdb -------------------------------------------------------------------------------- /Game/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Game/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Game/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Injector/Configuration/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/Configuration/Config.cs -------------------------------------------------------------------------------- /Injector/Configuration/InjectionConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/Configuration/InjectionConfiguration.cs -------------------------------------------------------------------------------- /Injector/Configuration/WindowConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/Configuration/WindowConfiguration.cs -------------------------------------------------------------------------------- /Injector/Controls/ToggleButton.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/Controls/ToggleButton.Designer.cs -------------------------------------------------------------------------------- /Injector/Controls/ToggleButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/Controls/ToggleButton.cs -------------------------------------------------------------------------------- /Injector/Controls/ToggleButton.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/Controls/ToggleButton.resx -------------------------------------------------------------------------------- /Injector/Extensions/AssemblyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/Extensions/AssemblyExtensions.cs -------------------------------------------------------------------------------- /Injector/Extensions/IconExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/Extensions/IconExtensions.cs -------------------------------------------------------------------------------- /Injector/FormMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/FormMain.Designer.cs -------------------------------------------------------------------------------- /Injector/FormMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/FormMain.cs -------------------------------------------------------------------------------- /Injector/FormMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/FormMain.resx -------------------------------------------------------------------------------- /Injector/InjectionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/InjectionHelper.cs -------------------------------------------------------------------------------- /Injector/Injector.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/Injector.csproj -------------------------------------------------------------------------------- /Injector/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/Program.cs -------------------------------------------------------------------------------- /Injector/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Injector/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Injector/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/Properties/Resources.resx -------------------------------------------------------------------------------- /Injector/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Injector/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/Properties/Settings.settings -------------------------------------------------------------------------------- /Injector/Resources/sc2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/Resources/sc2.ico -------------------------------------------------------------------------------- /Injector/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/app.config -------------------------------------------------------------------------------- /Injector/bin/Debug/Cinchoo.Core.ExtensionMethods.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Cinchoo.Core.ExtensionMethods.dll -------------------------------------------------------------------------------- /Injector/bin/Debug/Cinchoo.Core.Win32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Cinchoo.Core.Win32.dll -------------------------------------------------------------------------------- /Injector/bin/Debug/Cinchoo.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Cinchoo.Core.dll -------------------------------------------------------------------------------- /Injector/bin/Debug/Config/ChoAPMSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Config/ChoAPMSettings.xml -------------------------------------------------------------------------------- /Injector/bin/Debug/Config/ChoConsoleSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Config/ChoConsoleSettings.xml -------------------------------------------------------------------------------- /Injector/bin/Debug/Config/ChoCoreFrx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Config/ChoCoreFrx.xml -------------------------------------------------------------------------------- /Injector/bin/Debug/Config/ChoIniSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Config/ChoIniSettings.xml -------------------------------------------------------------------------------- /Injector/bin/Debug/Config/Controller.exe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Config/Controller.exe.xml -------------------------------------------------------------------------------- /Injector/bin/Debug/Config/Controller.exe.xml.cho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Config/Controller.exe.xml.cho -------------------------------------------------------------------------------- /Injector/bin/Debug/Config/Meta/Controller.exe.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Config/Meta/Controller.exe.meta -------------------------------------------------------------------------------- /Injector/bin/Debug/Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Console.dll -------------------------------------------------------------------------------- /Injector/bin/Debug/Controller.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Controller.exe -------------------------------------------------------------------------------- /Injector/bin/Debug/Controller.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Controller.exe.config -------------------------------------------------------------------------------- /Injector/bin/Debug/Controller.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Controller.pdb -------------------------------------------------------------------------------- /Injector/bin/Debug/Controller.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Controller.vshost.exe.config -------------------------------------------------------------------------------- /Injector/bin/Debug/Controller.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Controller.vshost.exe.manifest -------------------------------------------------------------------------------- /Injector/bin/Debug/ControllerConfig.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/ControllerConfig.ini -------------------------------------------------------------------------------- /Injector/bin/Debug/Direct3D9Hook.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Direct3D9Hook.dll -------------------------------------------------------------------------------- /Injector/bin/Debug/EasyHook.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/EasyHook.dll -------------------------------------------------------------------------------- /Injector/bin/Debug/EasyHook.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/EasyHook.pdb -------------------------------------------------------------------------------- /Injector/bin/Debug/EasyHook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/EasyHook.xml -------------------------------------------------------------------------------- /Injector/bin/Debug/EasyHook32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/EasyHook32.dll -------------------------------------------------------------------------------- /Injector/bin/Debug/EasyHook32Svc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/EasyHook32Svc.exe -------------------------------------------------------------------------------- /Injector/bin/Debug/EasyHook64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/EasyHook64.dll -------------------------------------------------------------------------------- /Injector/bin/Debug/EasyHook64Svc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/EasyHook64Svc.exe -------------------------------------------------------------------------------- /Injector/bin/Debug/FpsOverlay.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/FpsOverlay.dll -------------------------------------------------------------------------------- /Injector/bin/Debug/Game.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Game.dll -------------------------------------------------------------------------------- /Injector/bin/Debug/Injector.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Injector.exe -------------------------------------------------------------------------------- /Injector/bin/Debug/Injector.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Injector.exe.config -------------------------------------------------------------------------------- /Injector/bin/Debug/Injector.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Injector.pdb -------------------------------------------------------------------------------- /Injector/bin/Debug/Injector.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Injector.vshost.exe -------------------------------------------------------------------------------- /Injector/bin/Debug/Injector.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Injector.vshost.exe.config -------------------------------------------------------------------------------- /Injector/bin/Debug/Injector.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Injector.vshost.exe.manifest -------------------------------------------------------------------------------- /Injector/bin/Debug/Interceptor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Interceptor.dll -------------------------------------------------------------------------------- /Injector/bin/Debug/Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logging.dll -------------------------------------------------------------------------------- /Injector/bin/Debug/Logging.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logging.pdb -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/01-02-2013.01/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/01-02-2013.01/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/01-02-2013/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/01-02-2013/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.01/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.01/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.02/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.02/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.03/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.03/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.04/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.04/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.05/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.05/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.06/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.06/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.07/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.07/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.08/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.08/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.09/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.09/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.10/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.10/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.11/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.11/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.12/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.12/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.13/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.13/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.14/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.14/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.15/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.15/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.16/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.16/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.17/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.17/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.18/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.18/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.19/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.19/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.20/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.20/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.21/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.21/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.22/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.22/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.23/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.23/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.24/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.24/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.25/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.25/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.26/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.26/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.27/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.27/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.28/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.28/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.29/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.29/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.30/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.30/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.31/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.31/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.32/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.32/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.33/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.33/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.34/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.34/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.35/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.35/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.36/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.36/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.37/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.37/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.38/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.38/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.39/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.39/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.40/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.40/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.41/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.41/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.42/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.42/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.43/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.43/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.44/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.44/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.45/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.45/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.46/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.46/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.47/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.47/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.48/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.48/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.49/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.49/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.50/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.50/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.51/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.51/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.52/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.52/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.53/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.53/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.54/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.54/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.55/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.55/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.56/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.56/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.57/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.57/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.58/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.58/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.59/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.59/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.60/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.60/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.61/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.61/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.62/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.62/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.63/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.63/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.64/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.64/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.65/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.65/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.66/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.66/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.67/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.67/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.68/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.68/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.69/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.69/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.70/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.70/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.71/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.71/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.72/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.72/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.73/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.73/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.74/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.74/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.75/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.75/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.76/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.76/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.77/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.77/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.78/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.78/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.79/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.79/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.80/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.80/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.81/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.81/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.82/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.82/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.83/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.83/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.84/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.84/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.85/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.85/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.86/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.86/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.87/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.87/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.88/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.88/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.89/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.89/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.90/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.90/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.91/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.91/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.92/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.92/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012.93/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012.93/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-12-2012/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-12-2012/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-13-2012.01/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-13-2012.01/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-13-2012.02/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-13-2012.02/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-13-2012.03/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-13-2012.03/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-13-2012.04/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-13-2012.04/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-13-2012.05/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-13-2012.05/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-13-2012.06/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-13-2012.06/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-13-2012.07/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-13-2012.07/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-13-2012.08/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-13-2012.08/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-13-2012.09/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-13-2012.09/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-13-2012.10/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-13-2012.10/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-13-2012.11/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-13-2012.11/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-13-2012.12/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-13-2012.12/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-13-2012.13/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-13-2012.13/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-13-2012.14/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-13-2012.14/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-13-2012.15/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-13-2012.15/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-13-2012.16/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-13-2012.16/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-13-2012.17/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-13-2012.17/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-13-2012/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-13-2012/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.01/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.01/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.02/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.02/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.03/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.03/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.04/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.04/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.05/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.05/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.06/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.06/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.07/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.07/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.08/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.08/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.09/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.09/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.10/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.10/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.11/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.11/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.12/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.12/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.13/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.13/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.14/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.14/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.15/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.15/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.16/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.16/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.17/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.17/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.18/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.18/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.19/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.19/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.20/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.20/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.21/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.21/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.22/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.22/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.23/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.23/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.24/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.24/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.25/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.25/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.26/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.26/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.27/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.27/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.28/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.28/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.29/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.29/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.30/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.30/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.31/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.31/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.32/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.32/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.33/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.33/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.34/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.34/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.35/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.35/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.36/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.36/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.37/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.37/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.38/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.38/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.39/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.39/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.40/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.40/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.41/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.41/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.42/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.42/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.43/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.43/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.44/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.44/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.45/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.45/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.46/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.46/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.47/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.47/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.48/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.48/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.49/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.49/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.50/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.50/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.51/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.51/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.52/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.52/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.53/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.53/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.54/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.54/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.55/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.55/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.56/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.56/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.57/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.57/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.58/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.58/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.59/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.59/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.60/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.60/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.61/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.61/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.62/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.62/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.63/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.63/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.64/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.64/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.65/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.65/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.66/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.66/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.67/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.67/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.68/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.68/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.69/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.69/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.70/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.70/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.71/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.71/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.72/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.72/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.73/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.73/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.74/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.74/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.75/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.75/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.76/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.76/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.77/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.77/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.78/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.78/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.79/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.79/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.80/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.80/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.81/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.81/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012.82/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012.82/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-14-2012/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-14-2012/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.01/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.01/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.02/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.02/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.03/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.03/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.04/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.04/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.05/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.05/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.06/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.06/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.07/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.07/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.08/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.08/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.09/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.09/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.10/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.10/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.11/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.11/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.12/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.12/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.13/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.13/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.14/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.14/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.15/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.15/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.16/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.16/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.17/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.17/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.18/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.18/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.19/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.19/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.20/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.20/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.21/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.21/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.22/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.22/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.23/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.23/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.24/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.24/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.25/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.25/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.26/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.26/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.27/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.27/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.28/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.28/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.29/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.29/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.30/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.30/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.31/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.31/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.32/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.32/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.33/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.33/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.34/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.34/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.35/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.35/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.36/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.36/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.37/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.37/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.38/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.38/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.39/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.39/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.40/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.40/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.41/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.41/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.42/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.42/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.43/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.43/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.44/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.44/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.45/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.45/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.46/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.46/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.47/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.47/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012.48/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012.48/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-15-2012/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-15-2012/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-16-2012.01/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-16-2012.01/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-16-2012.02/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-16-2012.02/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-16-2012.03/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-16-2012.03/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-16-2012.04/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-16-2012.04/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-16-2012.05/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-16-2012.05/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-16-2012.06/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-16-2012.06/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-16-2012.07/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-16-2012.07/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-16-2012/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-16-2012/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-17-2012.01/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-17-2012.01/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-17-2012.02/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-17-2012.02/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-17-2012.03/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-17-2012.03/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-17-2012.04/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-17-2012.04/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-17-2012.05/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-17-2012.05/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-17-2012.06/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-17-2012.06/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-17-2012.07/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-17-2012.07/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-17-2012.08/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-17-2012.08/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-17-2012.09/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-17-2012.09/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-17-2012.10/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-17-2012.10/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-17-2012.11/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-17-2012.11/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-17-2012.12/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-17-2012.12/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-17-2012.13/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-17-2012.13/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-17-2012.14/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-17-2012.14/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-17-2012.15/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-17-2012.15/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-17-2012.16/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-17-2012.16/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-17-2012.17/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-17-2012.17/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-17-2012.18/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-17-2012.18/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-17-2012.19/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-17-2012.19/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-17-2012.20/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-17-2012.20/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-17-2012.21/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-17-2012.21/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-17-2012.22/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-17-2012.22/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-17-2012.23/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-17-2012.23/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-17-2012.24/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-17-2012.24/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-17-2012.25/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-17-2012.25/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-17-2012.26/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-17-2012.26/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-17-2012.27/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-17-2012.27/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-17-2012.28/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-17-2012.28/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-17-2012.29/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-17-2012.29/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-17-2012.30/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-17-2012.30/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-17-2012.31/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-17-2012.31/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-17-2012/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-17-2012/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-18-2012.01/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-18-2012.01/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-18-2012.02/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-18-2012.02/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-18-2012.03/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-18-2012.03/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-18-2012/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-18-2012/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-20-2012/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-20-2012/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-21-2012.01/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-21-2012.01/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-21-2012/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-21-2012/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-22-2012.01/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-22-2012.01/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-22-2012.02/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-22-2012.02/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-22-2012.03/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-22-2012.03/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-22-2012.04/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-22-2012.04/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-22-2012.05/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-22-2012.05/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-22-2012.06/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-22-2012.06/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-22-2012.07/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-22-2012.07/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-22-2012.08/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-22-2012.08/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-22-2012.09/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-22-2012.09/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-22-2012.10/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-22-2012.10/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-22-2012.11/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-22-2012.11/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-22-2012.12/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-22-2012.12/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-22-2012.13/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-22-2012.13/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-22-2012.14/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-22-2012.14/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-22-2012.15/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-22-2012.15/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-22-2012.16/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-22-2012.16/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-22-2012.17/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-22-2012.17/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-22-2012.18/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-22-2012.18/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-22-2012.19/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-22-2012.19/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-22-2012.20/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-22-2012.20/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-22-2012.21/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-22-2012.21/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-22-2012.22/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-22-2012.22/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-22-2012.23/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-22-2012.23/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-22-2012.24/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-22-2012.24/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-22-2012.25/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-22-2012.25/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-22-2012.26/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-22-2012.26/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-22-2012/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-22-2012/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.01/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.01/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.02/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.02/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.03/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.03/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.04/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.04/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.05/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.05/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.06/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.06/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.07/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.07/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.08/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.08/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.09/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.09/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.10/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.10/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.11/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.11/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.12/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.12/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.13/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.13/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.14/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.14/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.15/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.15/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.16/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.16/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.17/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.17/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.18/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.18/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.19/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.19/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.20/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.20/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.21/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.21/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.22/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.22/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.23/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.23/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.24/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.24/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.25/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.25/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.26/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.26/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.27/cholog.00.txt: -------------------------------------------------------------------------------- 1 | 2012-11-23 10:35:43.4905511, No Environment found for this host. 2 | -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.28/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.28/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.29/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.29/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.30/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.30/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.31/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.31/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.32/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.32/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.33/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.33/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.34/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.34/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.35/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.35/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.36/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.36/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.37/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.37/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.38/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.38/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.39/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.39/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.40/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.40/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.41/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.41/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012.42/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012.42/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-23-2012/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-23-2012/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-24-2012.01/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-24-2012.01/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-24-2012.02/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-24-2012.02/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-24-2012.03/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-24-2012.03/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-24-2012.04/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-24-2012.04/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-24-2012.05/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-24-2012.05/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-24-2012.06/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-24-2012.06/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-24-2012.07/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-24-2012.07/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-24-2012.08/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-24-2012.08/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-24-2012.09/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-24-2012.09/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-24-2012.10/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-24-2012.10/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-24-2012.11/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-24-2012.11/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-24-2012.12/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-24-2012.12/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-24-2012.13/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-24-2012.13/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-24-2012.14/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-24-2012.14/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-24-2012.15/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-24-2012.15/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-24-2012.16/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-24-2012.16/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-24-2012.17/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-24-2012.17/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-24-2012.18/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-24-2012.18/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-24-2012.19/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-24-2012.19/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-24-2012.20/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-24-2012.20/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-24-2012/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-24-2012/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-25-2012.01/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-25-2012.01/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-25-2012.02/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-25-2012.02/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-25-2012.03/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-25-2012.03/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-25-2012.04/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-25-2012.04/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-25-2012.05/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-25-2012.05/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-25-2012.06/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-25-2012.06/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-25-2012/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-25-2012/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-26-2012.01/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-26-2012.01/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-26-2012.02/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-26-2012.02/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-26-2012.03/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-26-2012.03/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-26-2012.04/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-26-2012.04/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-26-2012.05/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-26-2012.05/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-26-2012.06/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-26-2012.06/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-26-2012.07/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-26-2012.07/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-26-2012.08/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-26-2012.08/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-26-2012.09/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-26-2012.09/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-26-2012.10/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-26-2012.10/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-26-2012.11/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-26-2012.11/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-26-2012.12/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-26-2012.12/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-26-2012.13/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-26-2012.13/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-26-2012.14/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-26-2012.14/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/11-26-2012/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/11-26-2012/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-01-2012.01/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-01-2012.01/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-01-2012.02/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-01-2012.02/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-01-2012.03/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-01-2012.03/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-01-2012.04/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-01-2012.04/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-01-2012.05/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-01-2012.05/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-01-2012/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-01-2012/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-02-2012.01/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-02-2012.01/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-02-2012.02/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-02-2012.02/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-02-2012.03/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-02-2012.03/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-02-2012.04/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-02-2012.04/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-02-2012.05/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-02-2012.05/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-02-2012.06/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-02-2012.06/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-02-2012.07/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-02-2012.07/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-02-2012.08/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-02-2012.08/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-02-2012.09/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-02-2012.09/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-02-2012.10/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-02-2012.10/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-02-2012.11/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-02-2012.11/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-02-2012.12/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-02-2012.12/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-02-2012.13/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-02-2012.13/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-02-2012.14/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-02-2012.14/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-02-2012.15/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-02-2012.15/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-02-2012.16/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-02-2012.16/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-02-2012.17/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-02-2012.17/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-02-2012.18/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-02-2012.18/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-02-2012.19/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-02-2012.19/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-02-2012.20/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-02-2012.20/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-02-2012.21/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-02-2012.21/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-02-2012.22/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-02-2012.22/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-02-2012.23/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-02-2012.23/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-02-2012.24/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-02-2012.24/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-02-2012.25/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-02-2012.25/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-02-2012.26/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-02-2012.26/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-02-2012.27/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-02-2012.27/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-02-2012.28/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-02-2012.28/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-02-2012.29/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-02-2012.29/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-02-2012.30/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-02-2012.30/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-02-2012.31/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-02-2012.31/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-02-2012.32/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-02-2012.32/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-02-2012.33/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-02-2012.33/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-02-2012.34/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-02-2012.34/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-02-2012.35/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-02-2012.35/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-02-2012.36/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-02-2012.36/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-02-2012.37/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-02-2012.37/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-02-2012.38/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-02-2012.38/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/12-02-2012/cholog.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/12-02-2012/cholog.00.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/Settings/Cinchoo.Core.ChoPropertyManagerSettings.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/Settings/Cinchoo.Core.ChoPropertyManagerSettings.log -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/Settings/Cinchoo.Core.ChoTypesManagerSettings.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/Settings/Cinchoo.Core.ChoTypesManagerSettings.log -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/Settings/Cinchoo.Core.Diagnostics.ChoFileProfileSettings.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/Settings/Cinchoo.Core.Diagnostics.ChoFileProfileSettings.log -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/Settings/Cinchoo.Core.Diagnostics.ChoTraceSettings.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/Settings/Cinchoo.Core.Diagnostics.ChoTraceSettings.log -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/Settings/Cinchoo.Core.Reflection.ChoAssemblySettings.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/Settings/Cinchoo.Core.Reflection.ChoAssemblySettings.log -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/Settings/Controller.Configuration.InjectionConfiguration.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/Settings/Controller.Configuration.InjectionConfiguration.log -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/Settings/Controller.Configuration.WindowConfiguration.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/Settings/Controller.Configuration.WindowConfiguration.log -------------------------------------------------------------------------------- /Injector/bin/Debug/Logs/cholog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/Logs/cholog.txt -------------------------------------------------------------------------------- /Injector/bin/Debug/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/NLog.dll -------------------------------------------------------------------------------- /Injector/bin/Debug/NLog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/NLog.xml -------------------------------------------------------------------------------- /Injector/bin/Debug/RemotingInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/RemotingInterface.dll -------------------------------------------------------------------------------- /Injector/bin/Debug/RemotingInterface.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/RemotingInterface.pdb -------------------------------------------------------------------------------- /Injector/bin/Debug/SharpDX.Direct3D9.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/SharpDX.Direct3D9.dll -------------------------------------------------------------------------------- /Injector/bin/Debug/SharpDX.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/bin/Debug/SharpDX.dll -------------------------------------------------------------------------------- /Injector/obj/Debug/Controller.Controls.ToggleButton.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/obj/Debug/Controller.Controls.ToggleButton.resources -------------------------------------------------------------------------------- /Injector/obj/Debug/Controller.FormMain.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/obj/Debug/Controller.FormMain.resources -------------------------------------------------------------------------------- /Injector/obj/Debug/Controller.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/obj/Debug/Controller.Properties.Resources.resources -------------------------------------------------------------------------------- /Injector/obj/Debug/Controller.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/obj/Debug/Controller.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Injector/obj/Debug/Controller.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/obj/Debug/Controller.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Injector/obj/Debug/Controller.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/obj/Debug/Controller.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Injector/obj/Debug/Controller.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/obj/Debug/Controller.exe -------------------------------------------------------------------------------- /Injector/obj/Debug/Controller.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/obj/Debug/Controller.pdb -------------------------------------------------------------------------------- /Injector/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Injector/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Injector/obj/Debug/Injector.Controls.ToggleButton.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/obj/Debug/Injector.Controls.ToggleButton.resources -------------------------------------------------------------------------------- /Injector/obj/Debug/Injector.FormMain.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/obj/Debug/Injector.FormMain.resources -------------------------------------------------------------------------------- /Injector/obj/Debug/Injector.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/obj/Debug/Injector.Properties.Resources.resources -------------------------------------------------------------------------------- /Injector/obj/Debug/Injector.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/obj/Debug/Injector.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Injector/obj/Debug/Injector.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/obj/Debug/Injector.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Injector/obj/Debug/Injector.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/obj/Debug/Injector.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Injector/obj/Debug/Injector.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/obj/Debug/Injector.exe -------------------------------------------------------------------------------- /Injector/obj/Debug/Injector.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/obj/Debug/Injector.pdb -------------------------------------------------------------------------------- /Injector/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /Injector/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Injector/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Injector/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Injector/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Injector/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Interceptor/EntryPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Interceptor/EntryPoint.cs -------------------------------------------------------------------------------- /Interceptor/Extensions/ProcessExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Interceptor/Extensions/ProcessExtensions.cs -------------------------------------------------------------------------------- /Interceptor/Interceptor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Interceptor/Interceptor.csproj -------------------------------------------------------------------------------- /Interceptor/NLog.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Interceptor/NLog.xsd -------------------------------------------------------------------------------- /Interceptor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Interceptor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Interceptor/StrongName.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Interceptor/StrongName.snk -------------------------------------------------------------------------------- /Interceptor/XMLFile1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Interceptor/bin/Debug/EasyHook.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Interceptor/bin/Debug/EasyHook.dll -------------------------------------------------------------------------------- /Interceptor/bin/Debug/EasyHook.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Interceptor/bin/Debug/EasyHook.pdb -------------------------------------------------------------------------------- /Interceptor/bin/Debug/EasyHook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Interceptor/bin/Debug/EasyHook.xml -------------------------------------------------------------------------------- /Interceptor/bin/Debug/Game.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Interceptor/bin/Debug/Game.dll -------------------------------------------------------------------------------- /Interceptor/bin/Debug/Game.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Interceptor/bin/Debug/Game.pdb -------------------------------------------------------------------------------- /Interceptor/bin/Debug/Interceptor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Interceptor/bin/Debug/Interceptor.dll -------------------------------------------------------------------------------- /Interceptor/bin/Debug/Interceptor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Interceptor/bin/Debug/Interceptor.pdb -------------------------------------------------------------------------------- /Interceptor/bin/Debug/Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Interceptor/bin/Debug/Logging.dll -------------------------------------------------------------------------------- /Interceptor/bin/Debug/Logging.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Interceptor/bin/Debug/Logging.pdb -------------------------------------------------------------------------------- /Interceptor/bin/Debug/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Interceptor/bin/Debug/NLog.dll -------------------------------------------------------------------------------- /Interceptor/bin/Debug/NLog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Interceptor/bin/Debug/NLog.xml -------------------------------------------------------------------------------- /Interceptor/bin/Debug/RemotingInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Interceptor/bin/Debug/RemotingInterface.dll -------------------------------------------------------------------------------- /Interceptor/bin/Debug/RemotingInterface.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Interceptor/bin/Debug/RemotingInterface.pdb -------------------------------------------------------------------------------- /Interceptor/bin/Debug/SharpDX.Direct3D9.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Interceptor/bin/Debug/SharpDX.Direct3D9.dll -------------------------------------------------------------------------------- /Interceptor/bin/Debug/SharpDX.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Interceptor/bin/Debug/SharpDX.dll -------------------------------------------------------------------------------- /Interceptor/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Interceptor/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Interceptor/obj/Debug/Interceptor.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Interceptor/obj/Debug/Interceptor.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Interceptor/obj/Debug/Interceptor.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Interceptor/obj/Debug/Interceptor.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Interceptor/obj/Debug/Interceptor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Interceptor/obj/Debug/Interceptor.dll -------------------------------------------------------------------------------- /Interceptor/obj/Debug/Interceptor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Interceptor/obj/Debug/Interceptor.pdb -------------------------------------------------------------------------------- /Interceptor/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Interceptor/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Interceptor/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Interceptor/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Interceptor/packages.config -------------------------------------------------------------------------------- /Logging/Extensions/LoggerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Logging/Extensions/LoggerExtensions.cs -------------------------------------------------------------------------------- /Logging/Extensions/ObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Logging/Extensions/ObjectExtensions.cs -------------------------------------------------------------------------------- /Logging/Logging.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Logging/Logging.csproj -------------------------------------------------------------------------------- /Logging/Logging.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Logging/Logging.csproj.user -------------------------------------------------------------------------------- /Logging/LoggingManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Logging/LoggingManager.cs -------------------------------------------------------------------------------- /Logging/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Logging/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Logging/StrongName.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Logging/StrongName.snk -------------------------------------------------------------------------------- /Logging/bin/Debug/EasyHook.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Logging/bin/Debug/EasyHook.dll -------------------------------------------------------------------------------- /Logging/bin/Debug/EasyHook.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Logging/bin/Debug/EasyHook.pdb -------------------------------------------------------------------------------- /Logging/bin/Debug/EasyHook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Logging/bin/Debug/EasyHook.xml -------------------------------------------------------------------------------- /Logging/bin/Debug/Framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Logging/bin/Debug/Framework.dll -------------------------------------------------------------------------------- /Logging/bin/Debug/Framework.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Logging/bin/Debug/Framework.pdb -------------------------------------------------------------------------------- /Logging/bin/Debug/Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Logging/bin/Debug/Logging.dll -------------------------------------------------------------------------------- /Logging/bin/Debug/Logging.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Logging/bin/Debug/Logging.pdb -------------------------------------------------------------------------------- /Logging/bin/Debug/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Logging/bin/Debug/NLog.dll -------------------------------------------------------------------------------- /Logging/bin/Debug/NLog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Logging/bin/Debug/NLog.xml -------------------------------------------------------------------------------- /Logging/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Logging/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Logging/obj/Debug/Framework.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Logging/obj/Debug/Framework.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Logging/obj/Debug/Framework.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Logging/obj/Debug/Framework.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Logging/obj/Debug/Framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Logging/obj/Debug/Framework.dll -------------------------------------------------------------------------------- /Logging/obj/Debug/Framework.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Logging/obj/Debug/Framework.pdb -------------------------------------------------------------------------------- /Logging/obj/Debug/Logging.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Logging/obj/Debug/Logging.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Logging/obj/Debug/Logging.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Logging/obj/Debug/Logging.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Logging/obj/Debug/Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Logging/obj/Debug/Logging.dll -------------------------------------------------------------------------------- /Logging/obj/Debug/Logging.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Logging/obj/Debug/Logging.pdb -------------------------------------------------------------------------------- /Logging/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Logging/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Logging/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/Cinchoo/Cinchoo.Core.ExtensionMethods.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Packages/Cinchoo/Cinchoo.Core.ExtensionMethods.dll -------------------------------------------------------------------------------- /Packages/Cinchoo/Cinchoo.Core.Win32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Packages/Cinchoo/Cinchoo.Core.Win32.dll -------------------------------------------------------------------------------- /Packages/Cinchoo/Cinchoo.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Packages/Cinchoo/Cinchoo.Core.dll -------------------------------------------------------------------------------- /Packages/EasyHook/EasyHook.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Packages/EasyHook/EasyHook.XML -------------------------------------------------------------------------------- /Packages/EasyHook/EasyHook.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Packages/EasyHook/EasyHook.dll -------------------------------------------------------------------------------- /Packages/EasyHook/EasyHook.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Packages/EasyHook/EasyHook.pdb -------------------------------------------------------------------------------- /Packages/EasyHook/EasyHook32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Packages/EasyHook/EasyHook32.dll -------------------------------------------------------------------------------- /Packages/EasyHook/EasyHook32Svc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Packages/EasyHook/EasyHook32Svc.exe -------------------------------------------------------------------------------- /Packages/EasyHook/EasyHook64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Packages/EasyHook/EasyHook64.dll -------------------------------------------------------------------------------- /Packages/EasyHook/EasyHook64Svc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Packages/EasyHook/EasyHook64Svc.exe -------------------------------------------------------------------------------- /Packages/NLog.2.0.0.2000/NLog.2.0.0.2000.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Packages/NLog.2.0.0.2000/NLog.2.0.0.2000.nupkg -------------------------------------------------------------------------------- /Packages/NLog.2.0.0.2000/lib/net20/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Packages/NLog.2.0.0.2000/lib/net20/NLog.dll -------------------------------------------------------------------------------- /Packages/NLog.2.0.0.2000/lib/net20/NLog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Packages/NLog.2.0.0.2000/lib/net20/NLog.xml -------------------------------------------------------------------------------- /Packages/NLog.2.0.0.2000/lib/net35/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Packages/NLog.2.0.0.2000/lib/net35/NLog.dll -------------------------------------------------------------------------------- /Packages/NLog.2.0.0.2000/lib/net35/NLog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Packages/NLog.2.0.0.2000/lib/net35/NLog.xml -------------------------------------------------------------------------------- /Packages/NLog.2.0.0.2000/lib/net40/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Packages/NLog.2.0.0.2000/lib/net40/NLog.dll -------------------------------------------------------------------------------- /Packages/NLog.2.0.0.2000/lib/net40/NLog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Packages/NLog.2.0.0.2000/lib/net40/NLog.xml -------------------------------------------------------------------------------- /Packages/NLog.2.0.0.2000/lib/sl2/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Packages/NLog.2.0.0.2000/lib/sl2/NLog.dll -------------------------------------------------------------------------------- /Packages/NLog.2.0.0.2000/lib/sl2/NLog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Packages/NLog.2.0.0.2000/lib/sl2/NLog.xml -------------------------------------------------------------------------------- /Packages/NLog.2.0.0.2000/lib/sl3-wp/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Packages/NLog.2.0.0.2000/lib/sl3-wp/NLog.dll -------------------------------------------------------------------------------- /Packages/NLog.2.0.0.2000/lib/sl3-wp/NLog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Packages/NLog.2.0.0.2000/lib/sl3-wp/NLog.xml -------------------------------------------------------------------------------- /Packages/NLog.2.0.0.2000/lib/sl3/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Packages/NLog.2.0.0.2000/lib/sl3/NLog.dll -------------------------------------------------------------------------------- /Packages/NLog.2.0.0.2000/lib/sl3/NLog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Packages/NLog.2.0.0.2000/lib/sl3/NLog.xml -------------------------------------------------------------------------------- /Packages/NLog.2.0.0.2000/lib/sl4-windowsphone71/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Packages/NLog.2.0.0.2000/lib/sl4-windowsphone71/NLog.dll -------------------------------------------------------------------------------- /Packages/NLog.2.0.0.2000/lib/sl4-windowsphone71/NLog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Packages/NLog.2.0.0.2000/lib/sl4-windowsphone71/NLog.xml -------------------------------------------------------------------------------- /Packages/NLog.2.0.0.2000/lib/sl4/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Packages/NLog.2.0.0.2000/lib/sl4/NLog.dll -------------------------------------------------------------------------------- /Packages/NLog.2.0.0.2000/lib/sl4/NLog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Packages/NLog.2.0.0.2000/lib/sl4/NLog.xml -------------------------------------------------------------------------------- /Packages/NLog.Config.2.0.0.2000/NLog.Config.2.0.0.2000.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Packages/NLog.Config.2.0.0.2000/NLog.Config.2.0.0.2000.nupkg -------------------------------------------------------------------------------- /Packages/NLog.Config.2.0.0.2000/content/NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Packages/NLog.Config.2.0.0.2000/content/NLog.config -------------------------------------------------------------------------------- /Packages/NLog.Config.2.0.0.2000/content/NLog.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Packages/NLog.Config.2.0.0.2000/content/NLog.xsd -------------------------------------------------------------------------------- /Packages/NLog.Config.2.0.0.2000/tools/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Packages/NLog.Config.2.0.0.2000/tools/Install.ps1 -------------------------------------------------------------------------------- /Packages/SharpDX/SharpDX.Direct3D9.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Packages/SharpDX/SharpDX.Direct3D9.dll -------------------------------------------------------------------------------- /Packages/SharpDX/SharpDX.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Packages/SharpDX/SharpDX.dll -------------------------------------------------------------------------------- /Packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Packages/repositories.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/README.md -------------------------------------------------------------------------------- /RemotingInterface/Certificate.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/RemotingInterface/Certificate.snk -------------------------------------------------------------------------------- /RemotingInterface/Extensions/EventHandlerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/RemotingInterface/Extensions/EventHandlerExtensions.cs -------------------------------------------------------------------------------- /RemotingInterface/IpcInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/RemotingInterface/IpcInterface.cs -------------------------------------------------------------------------------- /RemotingInterface/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/RemotingInterface/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RemotingInterface/RemotingInterface.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/RemotingInterface/RemotingInterface.csproj -------------------------------------------------------------------------------- /RemotingInterface/bin/Debug/Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/RemotingInterface/bin/Debug/Logging.dll -------------------------------------------------------------------------------- /RemotingInterface/bin/Debug/Logging.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/RemotingInterface/bin/Debug/Logging.pdb -------------------------------------------------------------------------------- /RemotingInterface/bin/Debug/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/RemotingInterface/bin/Debug/NLog.dll -------------------------------------------------------------------------------- /RemotingInterface/bin/Debug/NLog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/RemotingInterface/bin/Debug/NLog.xml -------------------------------------------------------------------------------- /RemotingInterface/bin/Debug/RemotingInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/RemotingInterface/bin/Debug/RemotingInterface.dll -------------------------------------------------------------------------------- /RemotingInterface/bin/Debug/RemotingInterface.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/RemotingInterface/bin/Debug/RemotingInterface.pdb -------------------------------------------------------------------------------- /RemotingInterface/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/RemotingInterface/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /RemotingInterface/obj/Debug/RemotingInterface.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/RemotingInterface/obj/Debug/RemotingInterface.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /RemotingInterface/obj/Debug/RemotingInterface.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/RemotingInterface/obj/Debug/RemotingInterface.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /RemotingInterface/obj/Debug/RemotingInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/RemotingInterface/obj/Debug/RemotingInterface.dll -------------------------------------------------------------------------------- /RemotingInterface/obj/Debug/RemotingInterface.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/RemotingInterface/obj/Debug/RemotingInterface.pdb -------------------------------------------------------------------------------- /RemotingInterface/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RemotingInterface/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RemotingInterface/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sc2AiBot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Sc2AiBot.sln -------------------------------------------------------------------------------- /Sc2AiBot.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/Sc2AiBot.v11.suo -------------------------------------------------------------------------------- /a.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonpang/Starcraft2Hook/HEAD/a.exe --------------------------------------------------------------------------------