commit 2f9fdcd372d5b9db7e8e1400fdcfc37985510380 Author: Techwizz Date: Fri Aug 5 00:27:17 2022 -0600 first commit diff --git a/README.md b/README.md new file mode 100644 index 0000000..86366d1 --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +### Roblox Linux script using bloxstrap by default. +Have fun!
+If you have any problems, report it to me and not the Roblox devs. You can do it through an issue or through the Wineblox Discord server https://discord.gg/gdWw7pNAzW
+ diff --git a/Wineblox.sh b/Wineblox.sh new file mode 100755 index 0000000..585dba6 --- /dev/null +++ b/Wineblox.sh @@ -0,0 +1,158 @@ +#!/bin/bash +mkdir -p $HOME/.local/share/wineblox-prefix +WINEPREFIXX=$HOME/.local/share/wineblox-prefix + +# To change what WINE that is used, specify the path. An example would be wine-tkg/bin/wine +WINEBIN=Default + +# Variables for known Polygon install locations +BLOXSTRAPPATH=$WINEPREFIXX/drive_c/users/$USER/AppData/Local/Bloxstrap + +if [[ ($WINEBIN == Default) ]]; then + WINEBIN=$(which wine) +else + echo "Warning: using custom wine binary" +fi + +#Dependencies +fedora_install () { + sudo dnf install wine winetricks +} + +ubuntu_install () { + sudo apt install wine winetricks +} + +debian_install () { + sudo apt install wine-development winetricks +} + +arch_install () { + sudo pacman -S --needed wine winetricks +} + +check_dependencies () { + if [[ $(cat /etc/*-release | grep "Fedora") ]]; then + echo "Detected Fedora!" + fedora_install + else + if [[ $(cat /etc/*-release | grep "Ubuntu") ]] || [[ $(cat /etc/*-release | grep "LinuxMint") ]] || [[ $(cat /etc/*-release | grep "Pop") ]]; then + echo "Detected Ubuntu or derivative!" + ubuntu_install + else + if [[ $(cat /etc/*-release | grep "Debian") ]]; then + echo "Detected Debian!" + debian_install + else + if [[ $(cat /etc/*-release | grep "Arch Linux") ]] || [[ $(cat /etc/*-release | grep "SteamOS") ]]; then + echo "Detected Arch Linux or derivative!" + arch_install + else + echo "You're on an unsupported distro. Please manually install the required dependencies from the README.md or make a pull request adding support for your distro" + exit + fi + fi + fi + fi +} + +#Downloads Roblox +download_game_base () { + if [ $WINEPREFIXX ]; then + echo "Prefix already exists, removing" + rm -rf $WINEPREFIXX + mkdir -p $WINEPREFIXX + else + echo "No prefix exists, creating one" + mkdir -p $WINEPREFIXX + fi +} + +download_game () { + env WINEPREFIX=$WINEPREFIXX $WINEBIN bloxstrap/Bloxstrap.exe + echo "Bloxstrap installed!" + cp -rT bloxstrap $BLOXSTRAPPATH +} + +#Creates .desktop files +desktop_file () { + DESKTOPFILE=$HOME/.local/share/applications/wineblox.desktop + MIMETYPE=x-scheme-handler/roblox-player + echo "[Desktop Entry]" > $DESKTOPFILE + echo "Version=1.0" >> $DESKTOPFILE + echo "Type=Application" >> $DESKTOPFILE + echo "Name=Bloxstrap URL Handler" >> $DESKTOPFILE + echo "Comment=Play Roblox games!" >> $DESKTOPFILE + echo "Exec=env WINEPREFIX=$WINEPREFIXX $WINEBIN '$BLOXSTRAPPATH/Bloxstrap.exe' %u" >> $DESKTOPFILE + echo "Categories=Game;" >> $DESKTOPFILE + echo "MimeType=$MIMETYPE;" >> $DESKTOPFILE + + echo "Created desktop file!" +} + +url_handler_base () { + #Add entries for URL handlers + MIMEAPPS=$HOME/.local/share/applications/mimeapps.list + MIMEAPPSBAK=$HOME/.local/share/applications/mimeapps.list.bak + if [ -f "$MIMEAPPS" ]; then + echo "$MIMEAPPS already exists" + echo "Making a backup as mimeapps.list.bak" + echo "In case the script messes it up" + cp $MIMEAPPS $MIMEAPPSBAK + else + echo "[Default Applications]" > $MIMEAPPS + fi +} + +url_handler () { + MIMEENTRY="$MIMETYPE=$(basename "$DESKTOPFILE")" + if grep -Fxq "$MIMEENTRY" "$MIMEAPPS" + then + echo "URL handler for Bloxstrap is already created! Skipping..." + else + echo $MIMEENTRY >> $MIMEAPPS + echo "Created URL handler for Bloxstrap!" + fi +} + +resync_databases () { + update-desktop-database "$HOME/.local/share/applications" + update-mime-database "$HOME/.local/share/mime" + echo "Synced desktop and mime databases" +} + +kill_processes () { + env WINEPREFIX=$WINEPREFIXX "$WINEBIN"server -k +} + +echo "Welcome to Wineblox! (for Roblox)" +echo "type 1 to install Roblox" +echo "type 2 to open studio" +echo "type 3 to kill processes in prefix" +echo "then press enter" +read what + +if [[ $what == 1 ]]; then + echo "Selected to install Roblox" + check_dependencies + download_game_base + download_game + desktop_file + url_handler_base + url_handler + resync_databases + #install_winetricks_dependencies +else + if [[ $what == 2 ]]; then + echo "Selected to open Studio (NOT IMPLEMENTED YET)" + exit + else + if [[ $what == 3 ]]; then + echo "Selected kill all wine processes in prefix" + kill_processes + else + echo "No valid option specified" + exit + fi + fi +fi diff --git a/bloxstrap/API-MS-Win-core-xstate-l2-1-0.dll b/bloxstrap/API-MS-Win-core-xstate-l2-1-0.dll new file mode 100644 index 0000000..2869c7c Binary files /dev/null and b/bloxstrap/API-MS-Win-core-xstate-l2-1-0.dll differ diff --git a/bloxstrap/Accessibility.dll b/bloxstrap/Accessibility.dll new file mode 100644 index 0000000..5f2cc97 Binary files /dev/null and b/bloxstrap/Accessibility.dll differ diff --git a/bloxstrap/Bloxstrap.deps.json b/bloxstrap/Bloxstrap.deps.json new file mode 100644 index 0000000..684fd44 --- /dev/null +++ b/bloxstrap/Bloxstrap.deps.json @@ -0,0 +1,1226 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0/win-x86", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": {}, + ".NETCoreApp,Version=v6.0/win-x86": { + "Bloxstrap/1.0.0": { + "dependencies": { + "runtimepack.Microsoft.NETCore.App.Runtime.win-x86": "6.0.7", + "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x86": "6.0.7" + }, + "runtime": { + "Bloxstrap.dll": {} + } + }, + "runtimepack.Microsoft.NETCore.App.Runtime.win-x86/6.0.7": { + "runtime": { + "Microsoft.CSharp.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "Microsoft.VisualBasic.Core.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.100.722.32202" + }, + "Microsoft.Win32.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "Microsoft.Win32.Registry.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.AppContext.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Buffers.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Collections.Concurrent.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Collections.Immutable.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Collections.NonGeneric.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Collections.Specialized.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Collections.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.ComponentModel.Annotations.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.ComponentModel.DataAnnotations.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.ComponentModel.EventBasedAsync.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.ComponentModel.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.ComponentModel.TypeConverter.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.ComponentModel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Configuration.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Console.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Core.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Data.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Data.DataSetExtensions.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Data.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Diagnostics.Contracts.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Diagnostics.Debug.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Diagnostics.FileVersionInfo.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Diagnostics.Process.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Diagnostics.StackTrace.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Diagnostics.TextWriterTraceListener.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Diagnostics.Tools.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Diagnostics.TraceSource.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Diagnostics.Tracing.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Drawing.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Dynamic.Runtime.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Formats.Asn1.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Globalization.Calendars.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Globalization.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Globalization.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.IO.Compression.Brotli.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.IO.Compression.FileSystem.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.IO.Compression.ZipFile.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.IO.Compression.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.IO.FileSystem.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.IO.FileSystem.DriveInfo.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.IO.FileSystem.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.IO.FileSystem.Watcher.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.IO.FileSystem.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.IO.IsolatedStorage.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.IO.MemoryMappedFiles.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.IO.Pipes.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.IO.Pipes.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.IO.UnmanagedMemoryStream.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.IO.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Linq.Expressions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Linq.Parallel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Linq.Queryable.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Linq.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Memory.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Net.Http.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Net.Http.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Net.HttpListener.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Net.Mail.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Net.NameResolution.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Net.NetworkInformation.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Net.Ping.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Net.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Net.Quic.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Net.Requests.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Net.Security.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Net.ServicePoint.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Net.Sockets.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Net.WebClient.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Net.WebHeaderCollection.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Net.WebProxy.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Net.WebSockets.Client.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Net.WebSockets.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Net.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Numerics.Vectors.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Numerics.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.ObjectModel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Private.CoreLib.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Private.DataContractSerialization.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Private.Uri.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Private.Xml.Linq.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Private.Xml.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Reflection.DispatchProxy.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Reflection.Emit.ILGeneration.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Reflection.Emit.Lightweight.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Reflection.Emit.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Reflection.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Reflection.Metadata.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Reflection.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Reflection.TypeExtensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Reflection.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Resources.Reader.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Resources.ResourceManager.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Resources.Writer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Runtime.CompilerServices.Unsafe.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Runtime.CompilerServices.VisualC.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Runtime.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Runtime.Handles.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Runtime.InteropServices.RuntimeInformation.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Runtime.InteropServices.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Runtime.Intrinsics.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Runtime.Loader.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Runtime.Numerics.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Runtime.Serialization.Formatters.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Runtime.Serialization.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Runtime.Serialization.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Runtime.Serialization.Xml.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Runtime.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Runtime.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Security.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Security.Claims.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Security.Cryptography.Algorithms.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Security.Cryptography.Cng.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Security.Cryptography.Csp.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Security.Cryptography.Encoding.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Security.Cryptography.OpenSsl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Security.Cryptography.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Security.Cryptography.X509Certificates.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Security.Principal.Windows.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Security.Principal.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Security.SecureString.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Security.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.ServiceModel.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.ServiceProcess.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Text.Encoding.CodePages.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Text.Encoding.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Text.Encoding.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Text.Encodings.Web.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Text.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Text.RegularExpressions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Threading.Channels.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Threading.Overlapped.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Threading.Tasks.Dataflow.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Threading.Tasks.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Threading.Tasks.Parallel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Threading.Tasks.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Threading.Thread.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Threading.ThreadPool.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Threading.Timer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Threading.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Transactions.Local.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Transactions.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.ValueTuple.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Web.HttpUtility.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Windows.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Xml.Linq.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Xml.ReaderWriter.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Xml.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Xml.XDocument.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Xml.XPath.XDocument.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Xml.XPath.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Xml.XmlDocument.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Xml.XmlSerializer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Xml.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "mscorlib.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "netstandard.dll": { + "assemblyVersion": "2.1.0.0", + "fileVersion": "6.0.722.32202" + } + }, + "native": { + "API-MS-Win-core-xstate-l2-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "Microsoft.DiaSymReader.Native.x86.dll": { + "fileVersion": "14.28.29715.1" + }, + "System.IO.Compression.Native.dll": { + "fileVersion": "42.42.42.42424" + }, + "api-ms-win-core-console-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-console-l1-2-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-datetime-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-debug-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-errorhandling-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-fibers-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-file-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-file-l1-2-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-file-l2-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-handle-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-heap-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-interlocked-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-libraryloader-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-localization-l1-2-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-memory-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-namedpipe-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-processenvironment-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-processthreads-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-processthreads-l1-1-1.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-profile-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-rtlsupport-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-string-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-synch-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-synch-l1-2-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-sysinfo-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-timezone-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-util-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-conio-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-convert-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-environment-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-filesystem-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-heap-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-locale-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-math-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-multibyte-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-private-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-process-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-runtime-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-stdio-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-string-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-time-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-utility-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "clretwrc.dll": { + "fileVersion": "6.0.722.32202" + }, + "clrjit.dll": { + "fileVersion": "6.0.722.32202" + }, + "coreclr.dll": { + "fileVersion": "6.0.722.32202" + }, + "createdump.exe": { + "fileVersion": "6.0.722.32202" + }, + "dbgshim.dll": { + "fileVersion": "6.0.722.32202" + }, + "hostfxr.dll": { + "fileVersion": "6.0.722.32202" + }, + "hostpolicy.dll": { + "fileVersion": "6.0.722.32202" + }, + "mscordaccore.dll": { + "fileVersion": "6.0.722.32202" + }, + "mscordaccore_x86_x86_6.0.722.32202.dll": { + "fileVersion": "6.0.722.32202" + }, + "mscordbi.dll": { + "fileVersion": "6.0.722.32202" + }, + "mscorrc.dll": { + "fileVersion": "6.0.722.32202" + }, + "msquic.dll": { + "fileVersion": "1.7.0.0" + }, + "ucrtbase.dll": { + "fileVersion": "10.0.22000.194" + } + } + }, + "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x86/6.0.7": { + "runtime": { + "Accessibility.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.722.32203" + }, + "DirectWriteForwarder.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.722.32202" + }, + "Microsoft.VisualBasic.Forms.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.722.32203" + }, + "Microsoft.VisualBasic.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "6.0.722.32203" + }, + "Microsoft.Win32.Registry.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "PresentationCore.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.722.32202" + }, + "PresentationFramework-SystemCore.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.722.32202" + }, + "PresentationFramework-SystemData.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.722.32202" + }, + "PresentationFramework-SystemDrawing.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.722.32202" + }, + "PresentationFramework-SystemXml.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.722.32202" + }, + "PresentationFramework-SystemXmlLinq.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.722.32202" + }, + "PresentationFramework.Aero.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.722.32202" + }, + "PresentationFramework.Aero2.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.722.32202" + }, + "PresentationFramework.AeroLite.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.722.32202" + }, + "PresentationFramework.Classic.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.722.32202" + }, + "PresentationFramework.Luna.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.722.32202" + }, + "PresentationFramework.Royale.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.722.32202" + }, + "PresentationFramework.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.722.32202" + }, + "PresentationUI.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.722.32202" + }, + "ReachFramework.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.722.32202" + }, + "System.CodeDom.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Design.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.722.32203" + }, + "System.Diagnostics.EventLog.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.DirectoryServices.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Drawing.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Drawing.Design.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.722.32203" + }, + "System.Drawing.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.722.32203" + }, + "System.IO.Packaging.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Printing.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.722.32202" + }, + "System.Resources.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Security.Cryptography.Pkcs.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Security.Cryptography.Xml.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Security.Permissions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Threading.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Windows.Controls.Ribbon.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.722.32202" + }, + "System.Windows.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.722.32202" + }, + "System.Windows.Forms.Design.Editors.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.722.32203" + }, + "System.Windows.Forms.Design.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.722.32203" + }, + "System.Windows.Forms.Primitives.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.722.32203" + }, + "System.Windows.Forms.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.722.32203" + }, + "System.Windows.Input.Manipulations.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.722.32202" + }, + "System.Windows.Presentation.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.722.32202" + }, + "System.Xaml.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.722.32202" + }, + "UIAutomationClient.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.722.32202" + }, + "UIAutomationClientSideProviders.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.722.32202" + }, + "UIAutomationProvider.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.722.32202" + }, + "UIAutomationTypes.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.722.32202" + }, + "WindowsBase.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.722.32202" + }, + "WindowsFormsIntegration.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.722.32202" + } + }, + "native": { + "D3DCompiler_47_cor3.dll": { + "fileVersion": "10.0.22000.194" + }, + "PenImc_cor3.dll": { + "fileVersion": "6.0.722.32202" + }, + "PresentationNative_cor3.dll": { + "fileVersion": "6.0.22.31404" + }, + "vcruntime140_cor3.dll": { + "fileVersion": "14.32.31326.0" + }, + "wpfgfx_cor3.dll": { + "fileVersion": "6.0.722.32202" + } + } + } + } + }, + "libraries": { + "Bloxstrap/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.NETCore.App.Runtime.win-x86/6.0.7": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x86/6.0.7": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + } + }, + "runtimes": { + "win-x86": [ + "win", + "any", + "base" + ], + "win-x86-aot": [ + "win-aot", + "win-x86", + "win", + "aot", + "any", + "base" + ], + "win10-x86": [ + "win10", + "win81-x86", + "win81", + "win8-x86", + "win8", + "win7-x86", + "win7", + "win-x86", + "win", + "any", + "base" + ], + "win10-x86-aot": [ + "win10-aot", + "win10-x86", + "win10", + "win81-x86-aot", + "win81-aot", + "win81-x86", + "win81", + "win8-x86-aot", + "win8-aot", + "win8-x86", + "win8", + "win7-x86-aot", + "win7-aot", + "win7-x86", + "win7", + "win-x86-aot", + "win-aot", + "win-x86", + "win", + "aot", + "any", + "base" + ], + "win7-x86": [ + "win7", + "win-x86", + "win", + "any", + "base" + ], + "win7-x86-aot": [ + "win7-aot", + "win7-x86", + "win7", + "win-x86-aot", + "win-aot", + "win-x86", + "win", + "aot", + "any", + "base" + ], + "win8-x86": [ + "win8", + "win7-x86", + "win7", + "win-x86", + "win", + "any", + "base" + ], + "win8-x86-aot": [ + "win8-aot", + "win8-x86", + "win8", + "win7-x86-aot", + "win7-aot", + "win7-x86", + "win7", + "win-x86-aot", + "win-aot", + "win-x86", + "win", + "aot", + "any", + "base" + ], + "win81-x86": [ + "win81", + "win8-x86", + "win8", + "win7-x86", + "win7", + "win-x86", + "win", + "any", + "base" + ], + "win81-x86-aot": [ + "win81-aot", + "win81-x86", + "win81", + "win8-x86-aot", + "win8-aot", + "win8-x86", + "win8", + "win7-x86-aot", + "win7-aot", + "win7-x86", + "win7", + "win-x86-aot", + "win-aot", + "win-x86", + "win", + "aot", + "any", + "base" + ] + } +} \ No newline at end of file diff --git a/bloxstrap/Bloxstrap.dll b/bloxstrap/Bloxstrap.dll new file mode 100644 index 0000000..5349fb3 Binary files /dev/null and b/bloxstrap/Bloxstrap.dll differ diff --git a/bloxstrap/Bloxstrap.exe b/bloxstrap/Bloxstrap.exe new file mode 100644 index 0000000..7623bdd Binary files /dev/null and b/bloxstrap/Bloxstrap.exe differ diff --git a/bloxstrap/Bloxstrap.pdb b/bloxstrap/Bloxstrap.pdb new file mode 100644 index 0000000..7648a9f Binary files /dev/null and b/bloxstrap/Bloxstrap.pdb differ diff --git a/bloxstrap/Bloxstrap.runtimeconfig.json b/bloxstrap/Bloxstrap.runtimeconfig.json new file mode 100644 index 0000000..6857619 --- /dev/null +++ b/bloxstrap/Bloxstrap.runtimeconfig.json @@ -0,0 +1,18 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "includedFrameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + }, + { + "name": "Microsoft.WindowsDesktop.App", + "version": "6.0.0" + } + ], + "configProperties": { + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false + } + } +} \ No newline at end of file diff --git a/bloxstrap/D3DCompiler_47_cor3.dll b/bloxstrap/D3DCompiler_47_cor3.dll new file mode 100644 index 0000000..3349a8d Binary files /dev/null and b/bloxstrap/D3DCompiler_47_cor3.dll differ diff --git a/bloxstrap/DirectWriteForwarder.dll b/bloxstrap/DirectWriteForwarder.dll new file mode 100644 index 0000000..84934d8 Binary files /dev/null and b/bloxstrap/DirectWriteForwarder.dll differ diff --git a/bloxstrap/Microsoft.CSharp.dll b/bloxstrap/Microsoft.CSharp.dll new file mode 100644 index 0000000..0cdc3af Binary files /dev/null and b/bloxstrap/Microsoft.CSharp.dll differ diff --git a/bloxstrap/Microsoft.DiaSymReader.Native.x86.dll b/bloxstrap/Microsoft.DiaSymReader.Native.x86.dll new file mode 100644 index 0000000..80176a1 Binary files /dev/null and b/bloxstrap/Microsoft.DiaSymReader.Native.x86.dll differ diff --git a/bloxstrap/Microsoft.VisualBasic.Core.dll b/bloxstrap/Microsoft.VisualBasic.Core.dll new file mode 100644 index 0000000..68f9116 Binary files /dev/null and b/bloxstrap/Microsoft.VisualBasic.Core.dll differ diff --git a/bloxstrap/Microsoft.VisualBasic.Forms.dll b/bloxstrap/Microsoft.VisualBasic.Forms.dll new file mode 100644 index 0000000..035df5c Binary files /dev/null and b/bloxstrap/Microsoft.VisualBasic.Forms.dll differ diff --git a/bloxstrap/Microsoft.VisualBasic.dll b/bloxstrap/Microsoft.VisualBasic.dll new file mode 100644 index 0000000..787a2b5 Binary files /dev/null and b/bloxstrap/Microsoft.VisualBasic.dll differ diff --git a/bloxstrap/Microsoft.Win32.Primitives.dll b/bloxstrap/Microsoft.Win32.Primitives.dll new file mode 100644 index 0000000..f2dd1d6 Binary files /dev/null and b/bloxstrap/Microsoft.Win32.Primitives.dll differ diff --git a/bloxstrap/Microsoft.Win32.Registry.AccessControl.dll b/bloxstrap/Microsoft.Win32.Registry.AccessControl.dll new file mode 100644 index 0000000..71032a8 Binary files /dev/null and b/bloxstrap/Microsoft.Win32.Registry.AccessControl.dll differ diff --git a/bloxstrap/Microsoft.Win32.Registry.dll b/bloxstrap/Microsoft.Win32.Registry.dll new file mode 100644 index 0000000..9c39685 Binary files /dev/null and b/bloxstrap/Microsoft.Win32.Registry.dll differ diff --git a/bloxstrap/Microsoft.Win32.SystemEvents.dll b/bloxstrap/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..947b875 Binary files /dev/null and b/bloxstrap/Microsoft.Win32.SystemEvents.dll differ diff --git a/bloxstrap/PenImc_cor3.dll b/bloxstrap/PenImc_cor3.dll new file mode 100644 index 0000000..832996e Binary files /dev/null and b/bloxstrap/PenImc_cor3.dll differ diff --git a/bloxstrap/PresentationCore.dll b/bloxstrap/PresentationCore.dll new file mode 100644 index 0000000..b890f7a Binary files /dev/null and b/bloxstrap/PresentationCore.dll differ diff --git a/bloxstrap/PresentationFramework-SystemCore.dll b/bloxstrap/PresentationFramework-SystemCore.dll new file mode 100644 index 0000000..428a4e5 Binary files /dev/null and b/bloxstrap/PresentationFramework-SystemCore.dll differ diff --git a/bloxstrap/PresentationFramework-SystemData.dll b/bloxstrap/PresentationFramework-SystemData.dll new file mode 100644 index 0000000..afdb813 Binary files /dev/null and b/bloxstrap/PresentationFramework-SystemData.dll differ diff --git a/bloxstrap/PresentationFramework-SystemDrawing.dll b/bloxstrap/PresentationFramework-SystemDrawing.dll new file mode 100644 index 0000000..d182353 Binary files /dev/null and b/bloxstrap/PresentationFramework-SystemDrawing.dll differ diff --git a/bloxstrap/PresentationFramework-SystemXml.dll b/bloxstrap/PresentationFramework-SystemXml.dll new file mode 100644 index 0000000..ff49e0d Binary files /dev/null and b/bloxstrap/PresentationFramework-SystemXml.dll differ diff --git a/bloxstrap/PresentationFramework-SystemXmlLinq.dll b/bloxstrap/PresentationFramework-SystemXmlLinq.dll new file mode 100644 index 0000000..8e51ea1 Binary files /dev/null and b/bloxstrap/PresentationFramework-SystemXmlLinq.dll differ diff --git a/bloxstrap/PresentationFramework.Aero.dll b/bloxstrap/PresentationFramework.Aero.dll new file mode 100644 index 0000000..dc44c1f Binary files /dev/null and b/bloxstrap/PresentationFramework.Aero.dll differ diff --git a/bloxstrap/PresentationFramework.Aero2.dll b/bloxstrap/PresentationFramework.Aero2.dll new file mode 100644 index 0000000..e353807 Binary files /dev/null and b/bloxstrap/PresentationFramework.Aero2.dll differ diff --git a/bloxstrap/PresentationFramework.AeroLite.dll b/bloxstrap/PresentationFramework.AeroLite.dll new file mode 100644 index 0000000..fc768ca Binary files /dev/null and b/bloxstrap/PresentationFramework.AeroLite.dll differ diff --git a/bloxstrap/PresentationFramework.Classic.dll b/bloxstrap/PresentationFramework.Classic.dll new file mode 100644 index 0000000..54ab5d9 Binary files /dev/null and b/bloxstrap/PresentationFramework.Classic.dll differ diff --git a/bloxstrap/PresentationFramework.Luna.dll b/bloxstrap/PresentationFramework.Luna.dll new file mode 100644 index 0000000..04feee7 Binary files /dev/null and b/bloxstrap/PresentationFramework.Luna.dll differ diff --git a/bloxstrap/PresentationFramework.Royale.dll b/bloxstrap/PresentationFramework.Royale.dll new file mode 100644 index 0000000..80641aa Binary files /dev/null and b/bloxstrap/PresentationFramework.Royale.dll differ diff --git a/bloxstrap/PresentationFramework.dll b/bloxstrap/PresentationFramework.dll new file mode 100644 index 0000000..b37d528 Binary files /dev/null and b/bloxstrap/PresentationFramework.dll differ diff --git a/bloxstrap/PresentationNative_cor3.dll b/bloxstrap/PresentationNative_cor3.dll new file mode 100644 index 0000000..cea8519 Binary files /dev/null and b/bloxstrap/PresentationNative_cor3.dll differ diff --git a/bloxstrap/PresentationUI.dll b/bloxstrap/PresentationUI.dll new file mode 100644 index 0000000..1ca44a2 Binary files /dev/null and b/bloxstrap/PresentationUI.dll differ diff --git a/bloxstrap/ReachFramework.dll b/bloxstrap/ReachFramework.dll new file mode 100644 index 0000000..a53e043 Binary files /dev/null and b/bloxstrap/ReachFramework.dll differ diff --git a/bloxstrap/System.AppContext.dll b/bloxstrap/System.AppContext.dll new file mode 100644 index 0000000..d827f2b Binary files /dev/null and b/bloxstrap/System.AppContext.dll differ diff --git a/bloxstrap/System.Buffers.dll b/bloxstrap/System.Buffers.dll new file mode 100644 index 0000000..3baab5b Binary files /dev/null and b/bloxstrap/System.Buffers.dll differ diff --git a/bloxstrap/System.CodeDom.dll b/bloxstrap/System.CodeDom.dll new file mode 100644 index 0000000..8a4b2c8 Binary files /dev/null and b/bloxstrap/System.CodeDom.dll differ diff --git a/bloxstrap/System.Collections.Concurrent.dll b/bloxstrap/System.Collections.Concurrent.dll new file mode 100644 index 0000000..602f914 Binary files /dev/null and b/bloxstrap/System.Collections.Concurrent.dll differ diff --git a/bloxstrap/System.Collections.Immutable.dll b/bloxstrap/System.Collections.Immutable.dll new file mode 100644 index 0000000..d26c452 Binary files /dev/null and b/bloxstrap/System.Collections.Immutable.dll differ diff --git a/bloxstrap/System.Collections.NonGeneric.dll b/bloxstrap/System.Collections.NonGeneric.dll new file mode 100644 index 0000000..dfc307e Binary files /dev/null and b/bloxstrap/System.Collections.NonGeneric.dll differ diff --git a/bloxstrap/System.Collections.Specialized.dll b/bloxstrap/System.Collections.Specialized.dll new file mode 100644 index 0000000..052621d Binary files /dev/null and b/bloxstrap/System.Collections.Specialized.dll differ diff --git a/bloxstrap/System.Collections.dll b/bloxstrap/System.Collections.dll new file mode 100644 index 0000000..0b956e4 Binary files /dev/null and b/bloxstrap/System.Collections.dll differ diff --git a/bloxstrap/System.ComponentModel.Annotations.dll b/bloxstrap/System.ComponentModel.Annotations.dll new file mode 100644 index 0000000..3f1a8fb Binary files /dev/null and b/bloxstrap/System.ComponentModel.Annotations.dll differ diff --git a/bloxstrap/System.ComponentModel.DataAnnotations.dll b/bloxstrap/System.ComponentModel.DataAnnotations.dll new file mode 100644 index 0000000..176eef2 Binary files /dev/null and b/bloxstrap/System.ComponentModel.DataAnnotations.dll differ diff --git a/bloxstrap/System.ComponentModel.EventBasedAsync.dll b/bloxstrap/System.ComponentModel.EventBasedAsync.dll new file mode 100644 index 0000000..ce855e1 Binary files /dev/null and b/bloxstrap/System.ComponentModel.EventBasedAsync.dll differ diff --git a/bloxstrap/System.ComponentModel.Primitives.dll b/bloxstrap/System.ComponentModel.Primitives.dll new file mode 100644 index 0000000..b10d0f3 Binary files /dev/null and b/bloxstrap/System.ComponentModel.Primitives.dll differ diff --git a/bloxstrap/System.ComponentModel.TypeConverter.dll b/bloxstrap/System.ComponentModel.TypeConverter.dll new file mode 100644 index 0000000..9495e4e Binary files /dev/null and b/bloxstrap/System.ComponentModel.TypeConverter.dll differ diff --git a/bloxstrap/System.ComponentModel.dll b/bloxstrap/System.ComponentModel.dll new file mode 100644 index 0000000..1da8c78 Binary files /dev/null and b/bloxstrap/System.ComponentModel.dll differ diff --git a/bloxstrap/System.Configuration.ConfigurationManager.dll b/bloxstrap/System.Configuration.ConfigurationManager.dll new file mode 100644 index 0000000..22c3236 Binary files /dev/null and b/bloxstrap/System.Configuration.ConfigurationManager.dll differ diff --git a/bloxstrap/System.Configuration.dll b/bloxstrap/System.Configuration.dll new file mode 100644 index 0000000..42ab7cd Binary files /dev/null and b/bloxstrap/System.Configuration.dll differ diff --git a/bloxstrap/System.Console.dll b/bloxstrap/System.Console.dll new file mode 100644 index 0000000..8fc2d37 Binary files /dev/null and b/bloxstrap/System.Console.dll differ diff --git a/bloxstrap/System.Core.dll b/bloxstrap/System.Core.dll new file mode 100644 index 0000000..f8076d1 Binary files /dev/null and b/bloxstrap/System.Core.dll differ diff --git a/bloxstrap/System.Data.Common.dll b/bloxstrap/System.Data.Common.dll new file mode 100644 index 0000000..858402c Binary files /dev/null and b/bloxstrap/System.Data.Common.dll differ diff --git a/bloxstrap/System.Data.DataSetExtensions.dll b/bloxstrap/System.Data.DataSetExtensions.dll new file mode 100644 index 0000000..431d40b Binary files /dev/null and b/bloxstrap/System.Data.DataSetExtensions.dll differ diff --git a/bloxstrap/System.Data.dll b/bloxstrap/System.Data.dll new file mode 100644 index 0000000..e44f7f2 Binary files /dev/null and b/bloxstrap/System.Data.dll differ diff --git a/bloxstrap/System.Design.dll b/bloxstrap/System.Design.dll new file mode 100644 index 0000000..56be564 Binary files /dev/null and b/bloxstrap/System.Design.dll differ diff --git a/bloxstrap/System.Diagnostics.Contracts.dll b/bloxstrap/System.Diagnostics.Contracts.dll new file mode 100644 index 0000000..ad1a47c Binary files /dev/null and b/bloxstrap/System.Diagnostics.Contracts.dll differ diff --git a/bloxstrap/System.Diagnostics.Debug.dll b/bloxstrap/System.Diagnostics.Debug.dll new file mode 100644 index 0000000..b2f3e16 Binary files /dev/null and b/bloxstrap/System.Diagnostics.Debug.dll differ diff --git a/bloxstrap/System.Diagnostics.DiagnosticSource.dll b/bloxstrap/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 0000000..e914d90 Binary files /dev/null and b/bloxstrap/System.Diagnostics.DiagnosticSource.dll differ diff --git a/bloxstrap/System.Diagnostics.EventLog.dll b/bloxstrap/System.Diagnostics.EventLog.dll new file mode 100644 index 0000000..640c583 Binary files /dev/null and b/bloxstrap/System.Diagnostics.EventLog.dll differ diff --git a/bloxstrap/System.Diagnostics.FileVersionInfo.dll b/bloxstrap/System.Diagnostics.FileVersionInfo.dll new file mode 100644 index 0000000..a465fd3 Binary files /dev/null and b/bloxstrap/System.Diagnostics.FileVersionInfo.dll differ diff --git a/bloxstrap/System.Diagnostics.PerformanceCounter.dll b/bloxstrap/System.Diagnostics.PerformanceCounter.dll new file mode 100644 index 0000000..f762f29 Binary files /dev/null and b/bloxstrap/System.Diagnostics.PerformanceCounter.dll differ diff --git a/bloxstrap/System.Diagnostics.Process.dll b/bloxstrap/System.Diagnostics.Process.dll new file mode 100644 index 0000000..02126bb Binary files /dev/null and b/bloxstrap/System.Diagnostics.Process.dll differ diff --git a/bloxstrap/System.Diagnostics.StackTrace.dll b/bloxstrap/System.Diagnostics.StackTrace.dll new file mode 100644 index 0000000..66c0986 Binary files /dev/null and b/bloxstrap/System.Diagnostics.StackTrace.dll differ diff --git a/bloxstrap/System.Diagnostics.TextWriterTraceListener.dll b/bloxstrap/System.Diagnostics.TextWriterTraceListener.dll new file mode 100644 index 0000000..f2026f3 Binary files /dev/null and b/bloxstrap/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/bloxstrap/System.Diagnostics.Tools.dll b/bloxstrap/System.Diagnostics.Tools.dll new file mode 100644 index 0000000..086bdcc Binary files /dev/null and b/bloxstrap/System.Diagnostics.Tools.dll differ diff --git a/bloxstrap/System.Diagnostics.TraceSource.dll b/bloxstrap/System.Diagnostics.TraceSource.dll new file mode 100644 index 0000000..9c6ecd3 Binary files /dev/null and b/bloxstrap/System.Diagnostics.TraceSource.dll differ diff --git a/bloxstrap/System.Diagnostics.Tracing.dll b/bloxstrap/System.Diagnostics.Tracing.dll new file mode 100644 index 0000000..411d31e Binary files /dev/null and b/bloxstrap/System.Diagnostics.Tracing.dll differ diff --git a/bloxstrap/System.DirectoryServices.dll b/bloxstrap/System.DirectoryServices.dll new file mode 100644 index 0000000..5b6cf74 Binary files /dev/null and b/bloxstrap/System.DirectoryServices.dll differ diff --git a/bloxstrap/System.Drawing.Common.dll b/bloxstrap/System.Drawing.Common.dll new file mode 100644 index 0000000..cbf174b Binary files /dev/null and b/bloxstrap/System.Drawing.Common.dll differ diff --git a/bloxstrap/System.Drawing.Design.dll b/bloxstrap/System.Drawing.Design.dll new file mode 100644 index 0000000..158f0b9 Binary files /dev/null and b/bloxstrap/System.Drawing.Design.dll differ diff --git a/bloxstrap/System.Drawing.Primitives.dll b/bloxstrap/System.Drawing.Primitives.dll new file mode 100644 index 0000000..2c4e702 Binary files /dev/null and b/bloxstrap/System.Drawing.Primitives.dll differ diff --git a/bloxstrap/System.Drawing.dll b/bloxstrap/System.Drawing.dll new file mode 100644 index 0000000..21c4fc1 Binary files /dev/null and b/bloxstrap/System.Drawing.dll differ diff --git a/bloxstrap/System.Dynamic.Runtime.dll b/bloxstrap/System.Dynamic.Runtime.dll new file mode 100644 index 0000000..b1d1de7 Binary files /dev/null and b/bloxstrap/System.Dynamic.Runtime.dll differ diff --git a/bloxstrap/System.Formats.Asn1.dll b/bloxstrap/System.Formats.Asn1.dll new file mode 100644 index 0000000..5805c93 Binary files /dev/null and b/bloxstrap/System.Formats.Asn1.dll differ diff --git a/bloxstrap/System.Globalization.Calendars.dll b/bloxstrap/System.Globalization.Calendars.dll new file mode 100644 index 0000000..e822aae Binary files /dev/null and b/bloxstrap/System.Globalization.Calendars.dll differ diff --git a/bloxstrap/System.Globalization.Extensions.dll b/bloxstrap/System.Globalization.Extensions.dll new file mode 100644 index 0000000..c15e4ed Binary files /dev/null and b/bloxstrap/System.Globalization.Extensions.dll differ diff --git a/bloxstrap/System.Globalization.dll b/bloxstrap/System.Globalization.dll new file mode 100644 index 0000000..570df91 Binary files /dev/null and b/bloxstrap/System.Globalization.dll differ diff --git a/bloxstrap/System.IO.Compression.Brotli.dll b/bloxstrap/System.IO.Compression.Brotli.dll new file mode 100644 index 0000000..72ea29d Binary files /dev/null and b/bloxstrap/System.IO.Compression.Brotli.dll differ diff --git a/bloxstrap/System.IO.Compression.FileSystem.dll b/bloxstrap/System.IO.Compression.FileSystem.dll new file mode 100644 index 0000000..727c186 Binary files /dev/null and b/bloxstrap/System.IO.Compression.FileSystem.dll differ diff --git a/bloxstrap/System.IO.Compression.Native.dll b/bloxstrap/System.IO.Compression.Native.dll new file mode 100644 index 0000000..7e0564a Binary files /dev/null and b/bloxstrap/System.IO.Compression.Native.dll differ diff --git a/bloxstrap/System.IO.Compression.ZipFile.dll b/bloxstrap/System.IO.Compression.ZipFile.dll new file mode 100644 index 0000000..75fd435 Binary files /dev/null and b/bloxstrap/System.IO.Compression.ZipFile.dll differ diff --git a/bloxstrap/System.IO.Compression.dll b/bloxstrap/System.IO.Compression.dll new file mode 100644 index 0000000..d50761a Binary files /dev/null and b/bloxstrap/System.IO.Compression.dll differ diff --git a/bloxstrap/System.IO.FileSystem.AccessControl.dll b/bloxstrap/System.IO.FileSystem.AccessControl.dll new file mode 100644 index 0000000..347fa30 Binary files /dev/null and b/bloxstrap/System.IO.FileSystem.AccessControl.dll differ diff --git a/bloxstrap/System.IO.FileSystem.DriveInfo.dll b/bloxstrap/System.IO.FileSystem.DriveInfo.dll new file mode 100644 index 0000000..486e13f Binary files /dev/null and b/bloxstrap/System.IO.FileSystem.DriveInfo.dll differ diff --git a/bloxstrap/System.IO.FileSystem.Primitives.dll b/bloxstrap/System.IO.FileSystem.Primitives.dll new file mode 100644 index 0000000..5ae73a9 Binary files /dev/null and b/bloxstrap/System.IO.FileSystem.Primitives.dll differ diff --git a/bloxstrap/System.IO.FileSystem.Watcher.dll b/bloxstrap/System.IO.FileSystem.Watcher.dll new file mode 100644 index 0000000..7afbf12 Binary files /dev/null and b/bloxstrap/System.IO.FileSystem.Watcher.dll differ diff --git a/bloxstrap/System.IO.FileSystem.dll b/bloxstrap/System.IO.FileSystem.dll new file mode 100644 index 0000000..21fb9e6 Binary files /dev/null and b/bloxstrap/System.IO.FileSystem.dll differ diff --git a/bloxstrap/System.IO.IsolatedStorage.dll b/bloxstrap/System.IO.IsolatedStorage.dll new file mode 100644 index 0000000..e8e80b4 Binary files /dev/null and b/bloxstrap/System.IO.IsolatedStorage.dll differ diff --git a/bloxstrap/System.IO.MemoryMappedFiles.dll b/bloxstrap/System.IO.MemoryMappedFiles.dll new file mode 100644 index 0000000..18163c6 Binary files /dev/null and b/bloxstrap/System.IO.MemoryMappedFiles.dll differ diff --git a/bloxstrap/System.IO.Packaging.dll b/bloxstrap/System.IO.Packaging.dll new file mode 100644 index 0000000..750dac3 Binary files /dev/null and b/bloxstrap/System.IO.Packaging.dll differ diff --git a/bloxstrap/System.IO.Pipes.AccessControl.dll b/bloxstrap/System.IO.Pipes.AccessControl.dll new file mode 100644 index 0000000..354e6eb Binary files /dev/null and b/bloxstrap/System.IO.Pipes.AccessControl.dll differ diff --git a/bloxstrap/System.IO.Pipes.dll b/bloxstrap/System.IO.Pipes.dll new file mode 100644 index 0000000..f42139a Binary files /dev/null and b/bloxstrap/System.IO.Pipes.dll differ diff --git a/bloxstrap/System.IO.UnmanagedMemoryStream.dll b/bloxstrap/System.IO.UnmanagedMemoryStream.dll new file mode 100644 index 0000000..5c7d1da Binary files /dev/null and b/bloxstrap/System.IO.UnmanagedMemoryStream.dll differ diff --git a/bloxstrap/System.IO.dll b/bloxstrap/System.IO.dll new file mode 100644 index 0000000..70bc0bc Binary files /dev/null and b/bloxstrap/System.IO.dll differ diff --git a/bloxstrap/System.Linq.Expressions.dll b/bloxstrap/System.Linq.Expressions.dll new file mode 100644 index 0000000..4bd47d1 Binary files /dev/null and b/bloxstrap/System.Linq.Expressions.dll differ diff --git a/bloxstrap/System.Linq.Parallel.dll b/bloxstrap/System.Linq.Parallel.dll new file mode 100644 index 0000000..991fbef Binary files /dev/null and b/bloxstrap/System.Linq.Parallel.dll differ diff --git a/bloxstrap/System.Linq.Queryable.dll b/bloxstrap/System.Linq.Queryable.dll new file mode 100644 index 0000000..9f9438e Binary files /dev/null and b/bloxstrap/System.Linq.Queryable.dll differ diff --git a/bloxstrap/System.Linq.dll b/bloxstrap/System.Linq.dll new file mode 100644 index 0000000..3c94c9b Binary files /dev/null and b/bloxstrap/System.Linq.dll differ diff --git a/bloxstrap/System.Memory.dll b/bloxstrap/System.Memory.dll new file mode 100644 index 0000000..3c45870 Binary files /dev/null and b/bloxstrap/System.Memory.dll differ diff --git a/bloxstrap/System.Net.Http.Json.dll b/bloxstrap/System.Net.Http.Json.dll new file mode 100644 index 0000000..52bd105 Binary files /dev/null and b/bloxstrap/System.Net.Http.Json.dll differ diff --git a/bloxstrap/System.Net.Http.dll b/bloxstrap/System.Net.Http.dll new file mode 100644 index 0000000..ee09c4e Binary files /dev/null and b/bloxstrap/System.Net.Http.dll differ diff --git a/bloxstrap/System.Net.HttpListener.dll b/bloxstrap/System.Net.HttpListener.dll new file mode 100644 index 0000000..035f36e Binary files /dev/null and b/bloxstrap/System.Net.HttpListener.dll differ diff --git a/bloxstrap/System.Net.Mail.dll b/bloxstrap/System.Net.Mail.dll new file mode 100644 index 0000000..7fe0196 Binary files /dev/null and b/bloxstrap/System.Net.Mail.dll differ diff --git a/bloxstrap/System.Net.NameResolution.dll b/bloxstrap/System.Net.NameResolution.dll new file mode 100644 index 0000000..7bc136e Binary files /dev/null and b/bloxstrap/System.Net.NameResolution.dll differ diff --git a/bloxstrap/System.Net.NetworkInformation.dll b/bloxstrap/System.Net.NetworkInformation.dll new file mode 100644 index 0000000..300ee7b Binary files /dev/null and b/bloxstrap/System.Net.NetworkInformation.dll differ diff --git a/bloxstrap/System.Net.Ping.dll b/bloxstrap/System.Net.Ping.dll new file mode 100644 index 0000000..f7d45a3 Binary files /dev/null and b/bloxstrap/System.Net.Ping.dll differ diff --git a/bloxstrap/System.Net.Primitives.dll b/bloxstrap/System.Net.Primitives.dll new file mode 100644 index 0000000..994a4c2 Binary files /dev/null and b/bloxstrap/System.Net.Primitives.dll differ diff --git a/bloxstrap/System.Net.Quic.dll b/bloxstrap/System.Net.Quic.dll new file mode 100644 index 0000000..cdf7adf Binary files /dev/null and b/bloxstrap/System.Net.Quic.dll differ diff --git a/bloxstrap/System.Net.Requests.dll b/bloxstrap/System.Net.Requests.dll new file mode 100644 index 0000000..6770518 Binary files /dev/null and b/bloxstrap/System.Net.Requests.dll differ diff --git a/bloxstrap/System.Net.Security.dll b/bloxstrap/System.Net.Security.dll new file mode 100644 index 0000000..aba14c8 Binary files /dev/null and b/bloxstrap/System.Net.Security.dll differ diff --git a/bloxstrap/System.Net.ServicePoint.dll b/bloxstrap/System.Net.ServicePoint.dll new file mode 100644 index 0000000..be5c068 Binary files /dev/null and b/bloxstrap/System.Net.ServicePoint.dll differ diff --git a/bloxstrap/System.Net.Sockets.dll b/bloxstrap/System.Net.Sockets.dll new file mode 100644 index 0000000..3688eb7 Binary files /dev/null and b/bloxstrap/System.Net.Sockets.dll differ diff --git a/bloxstrap/System.Net.WebClient.dll b/bloxstrap/System.Net.WebClient.dll new file mode 100644 index 0000000..b75a9df Binary files /dev/null and b/bloxstrap/System.Net.WebClient.dll differ diff --git a/bloxstrap/System.Net.WebHeaderCollection.dll b/bloxstrap/System.Net.WebHeaderCollection.dll new file mode 100644 index 0000000..5e184c7 Binary files /dev/null and b/bloxstrap/System.Net.WebHeaderCollection.dll differ diff --git a/bloxstrap/System.Net.WebProxy.dll b/bloxstrap/System.Net.WebProxy.dll new file mode 100644 index 0000000..02132f4 Binary files /dev/null and b/bloxstrap/System.Net.WebProxy.dll differ diff --git a/bloxstrap/System.Net.WebSockets.Client.dll b/bloxstrap/System.Net.WebSockets.Client.dll new file mode 100644 index 0000000..9ed661b Binary files /dev/null and b/bloxstrap/System.Net.WebSockets.Client.dll differ diff --git a/bloxstrap/System.Net.WebSockets.dll b/bloxstrap/System.Net.WebSockets.dll new file mode 100644 index 0000000..a4e4da3 Binary files /dev/null and b/bloxstrap/System.Net.WebSockets.dll differ diff --git a/bloxstrap/System.Net.dll b/bloxstrap/System.Net.dll new file mode 100644 index 0000000..de8d7b7 Binary files /dev/null and b/bloxstrap/System.Net.dll differ diff --git a/bloxstrap/System.Numerics.Vectors.dll b/bloxstrap/System.Numerics.Vectors.dll new file mode 100644 index 0000000..8aa4124 Binary files /dev/null and b/bloxstrap/System.Numerics.Vectors.dll differ diff --git a/bloxstrap/System.Numerics.dll b/bloxstrap/System.Numerics.dll new file mode 100644 index 0000000..253f0fe Binary files /dev/null and b/bloxstrap/System.Numerics.dll differ diff --git a/bloxstrap/System.ObjectModel.dll b/bloxstrap/System.ObjectModel.dll new file mode 100644 index 0000000..307e5a4 Binary files /dev/null and b/bloxstrap/System.ObjectModel.dll differ diff --git a/bloxstrap/System.Printing.dll b/bloxstrap/System.Printing.dll new file mode 100644 index 0000000..b34e9ab Binary files /dev/null and b/bloxstrap/System.Printing.dll differ diff --git a/bloxstrap/System.Private.CoreLib.dll b/bloxstrap/System.Private.CoreLib.dll new file mode 100644 index 0000000..a338aa2 Binary files /dev/null and b/bloxstrap/System.Private.CoreLib.dll differ diff --git a/bloxstrap/System.Private.DataContractSerialization.dll b/bloxstrap/System.Private.DataContractSerialization.dll new file mode 100644 index 0000000..baa4441 Binary files /dev/null and b/bloxstrap/System.Private.DataContractSerialization.dll differ diff --git a/bloxstrap/System.Private.Uri.dll b/bloxstrap/System.Private.Uri.dll new file mode 100644 index 0000000..64e2d8c Binary files /dev/null and b/bloxstrap/System.Private.Uri.dll differ diff --git a/bloxstrap/System.Private.Xml.Linq.dll b/bloxstrap/System.Private.Xml.Linq.dll new file mode 100644 index 0000000..90a5e5f Binary files /dev/null and b/bloxstrap/System.Private.Xml.Linq.dll differ diff --git a/bloxstrap/System.Private.Xml.dll b/bloxstrap/System.Private.Xml.dll new file mode 100644 index 0000000..db172c4 Binary files /dev/null and b/bloxstrap/System.Private.Xml.dll differ diff --git a/bloxstrap/System.Reflection.DispatchProxy.dll b/bloxstrap/System.Reflection.DispatchProxy.dll new file mode 100644 index 0000000..502fade Binary files /dev/null and b/bloxstrap/System.Reflection.DispatchProxy.dll differ diff --git a/bloxstrap/System.Reflection.Emit.ILGeneration.dll b/bloxstrap/System.Reflection.Emit.ILGeneration.dll new file mode 100644 index 0000000..cd79d12 Binary files /dev/null and b/bloxstrap/System.Reflection.Emit.ILGeneration.dll differ diff --git a/bloxstrap/System.Reflection.Emit.Lightweight.dll b/bloxstrap/System.Reflection.Emit.Lightweight.dll new file mode 100644 index 0000000..982abbc Binary files /dev/null and b/bloxstrap/System.Reflection.Emit.Lightweight.dll differ diff --git a/bloxstrap/System.Reflection.Emit.dll b/bloxstrap/System.Reflection.Emit.dll new file mode 100644 index 0000000..80eb557 Binary files /dev/null and b/bloxstrap/System.Reflection.Emit.dll differ diff --git a/bloxstrap/System.Reflection.Extensions.dll b/bloxstrap/System.Reflection.Extensions.dll new file mode 100644 index 0000000..aee132f Binary files /dev/null and b/bloxstrap/System.Reflection.Extensions.dll differ diff --git a/bloxstrap/System.Reflection.Metadata.dll b/bloxstrap/System.Reflection.Metadata.dll new file mode 100644 index 0000000..6bfdf4f Binary files /dev/null and b/bloxstrap/System.Reflection.Metadata.dll differ diff --git a/bloxstrap/System.Reflection.Primitives.dll b/bloxstrap/System.Reflection.Primitives.dll new file mode 100644 index 0000000..858b0fc Binary files /dev/null and b/bloxstrap/System.Reflection.Primitives.dll differ diff --git a/bloxstrap/System.Reflection.TypeExtensions.dll b/bloxstrap/System.Reflection.TypeExtensions.dll new file mode 100644 index 0000000..5fd6514 Binary files /dev/null and b/bloxstrap/System.Reflection.TypeExtensions.dll differ diff --git a/bloxstrap/System.Reflection.dll b/bloxstrap/System.Reflection.dll new file mode 100644 index 0000000..03aafa7 Binary files /dev/null and b/bloxstrap/System.Reflection.dll differ diff --git a/bloxstrap/System.Resources.Extensions.dll b/bloxstrap/System.Resources.Extensions.dll new file mode 100644 index 0000000..223f3c8 Binary files /dev/null and b/bloxstrap/System.Resources.Extensions.dll differ diff --git a/bloxstrap/System.Resources.Reader.dll b/bloxstrap/System.Resources.Reader.dll new file mode 100644 index 0000000..a51d64f Binary files /dev/null and b/bloxstrap/System.Resources.Reader.dll differ diff --git a/bloxstrap/System.Resources.ResourceManager.dll b/bloxstrap/System.Resources.ResourceManager.dll new file mode 100644 index 0000000..ef5fb45 Binary files /dev/null and b/bloxstrap/System.Resources.ResourceManager.dll differ diff --git a/bloxstrap/System.Resources.Writer.dll b/bloxstrap/System.Resources.Writer.dll new file mode 100644 index 0000000..74c5a50 Binary files /dev/null and b/bloxstrap/System.Resources.Writer.dll differ diff --git a/bloxstrap/System.Runtime.CompilerServices.Unsafe.dll b/bloxstrap/System.Runtime.CompilerServices.Unsafe.dll new file mode 100644 index 0000000..e071689 Binary files /dev/null and b/bloxstrap/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/bloxstrap/System.Runtime.CompilerServices.VisualC.dll b/bloxstrap/System.Runtime.CompilerServices.VisualC.dll new file mode 100644 index 0000000..d5de92b Binary files /dev/null and b/bloxstrap/System.Runtime.CompilerServices.VisualC.dll differ diff --git a/bloxstrap/System.Runtime.Extensions.dll b/bloxstrap/System.Runtime.Extensions.dll new file mode 100644 index 0000000..8298917 Binary files /dev/null and b/bloxstrap/System.Runtime.Extensions.dll differ diff --git a/bloxstrap/System.Runtime.Handles.dll b/bloxstrap/System.Runtime.Handles.dll new file mode 100644 index 0000000..a916183 Binary files /dev/null and b/bloxstrap/System.Runtime.Handles.dll differ diff --git a/bloxstrap/System.Runtime.InteropServices.RuntimeInformation.dll b/bloxstrap/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100644 index 0000000..0f6961f Binary files /dev/null and b/bloxstrap/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/bloxstrap/System.Runtime.InteropServices.dll b/bloxstrap/System.Runtime.InteropServices.dll new file mode 100644 index 0000000..4208800 Binary files /dev/null and b/bloxstrap/System.Runtime.InteropServices.dll differ diff --git a/bloxstrap/System.Runtime.Intrinsics.dll b/bloxstrap/System.Runtime.Intrinsics.dll new file mode 100644 index 0000000..1cdbeb5 Binary files /dev/null and b/bloxstrap/System.Runtime.Intrinsics.dll differ diff --git a/bloxstrap/System.Runtime.Loader.dll b/bloxstrap/System.Runtime.Loader.dll new file mode 100644 index 0000000..64240ec Binary files /dev/null and b/bloxstrap/System.Runtime.Loader.dll differ diff --git a/bloxstrap/System.Runtime.Numerics.dll b/bloxstrap/System.Runtime.Numerics.dll new file mode 100644 index 0000000..a2e785a Binary files /dev/null and b/bloxstrap/System.Runtime.Numerics.dll differ diff --git a/bloxstrap/System.Runtime.Serialization.Formatters.dll b/bloxstrap/System.Runtime.Serialization.Formatters.dll new file mode 100644 index 0000000..d3d28be Binary files /dev/null and b/bloxstrap/System.Runtime.Serialization.Formatters.dll differ diff --git a/bloxstrap/System.Runtime.Serialization.Json.dll b/bloxstrap/System.Runtime.Serialization.Json.dll new file mode 100644 index 0000000..acf7a69 Binary files /dev/null and b/bloxstrap/System.Runtime.Serialization.Json.dll differ diff --git a/bloxstrap/System.Runtime.Serialization.Primitives.dll b/bloxstrap/System.Runtime.Serialization.Primitives.dll new file mode 100644 index 0000000..2dc40f7 Binary files /dev/null and b/bloxstrap/System.Runtime.Serialization.Primitives.dll differ diff --git a/bloxstrap/System.Runtime.Serialization.Xml.dll b/bloxstrap/System.Runtime.Serialization.Xml.dll new file mode 100644 index 0000000..00aa385 Binary files /dev/null and b/bloxstrap/System.Runtime.Serialization.Xml.dll differ diff --git a/bloxstrap/System.Runtime.Serialization.dll b/bloxstrap/System.Runtime.Serialization.dll new file mode 100644 index 0000000..7571039 Binary files /dev/null and b/bloxstrap/System.Runtime.Serialization.dll differ diff --git a/bloxstrap/System.Runtime.dll b/bloxstrap/System.Runtime.dll new file mode 100644 index 0000000..9f383e5 Binary files /dev/null and b/bloxstrap/System.Runtime.dll differ diff --git a/bloxstrap/System.Security.AccessControl.dll b/bloxstrap/System.Security.AccessControl.dll new file mode 100644 index 0000000..4917c64 Binary files /dev/null and b/bloxstrap/System.Security.AccessControl.dll differ diff --git a/bloxstrap/System.Security.Claims.dll b/bloxstrap/System.Security.Claims.dll new file mode 100644 index 0000000..cfe98df Binary files /dev/null and b/bloxstrap/System.Security.Claims.dll differ diff --git a/bloxstrap/System.Security.Cryptography.Algorithms.dll b/bloxstrap/System.Security.Cryptography.Algorithms.dll new file mode 100644 index 0000000..6844325 Binary files /dev/null and b/bloxstrap/System.Security.Cryptography.Algorithms.dll differ diff --git a/bloxstrap/System.Security.Cryptography.Cng.dll b/bloxstrap/System.Security.Cryptography.Cng.dll new file mode 100644 index 0000000..56fbb8c Binary files /dev/null and b/bloxstrap/System.Security.Cryptography.Cng.dll differ diff --git a/bloxstrap/System.Security.Cryptography.Csp.dll b/bloxstrap/System.Security.Cryptography.Csp.dll new file mode 100644 index 0000000..e4b8d17 Binary files /dev/null and b/bloxstrap/System.Security.Cryptography.Csp.dll differ diff --git a/bloxstrap/System.Security.Cryptography.Encoding.dll b/bloxstrap/System.Security.Cryptography.Encoding.dll new file mode 100644 index 0000000..343332f Binary files /dev/null and b/bloxstrap/System.Security.Cryptography.Encoding.dll differ diff --git a/bloxstrap/System.Security.Cryptography.OpenSsl.dll b/bloxstrap/System.Security.Cryptography.OpenSsl.dll new file mode 100644 index 0000000..9a84e96 Binary files /dev/null and b/bloxstrap/System.Security.Cryptography.OpenSsl.dll differ diff --git a/bloxstrap/System.Security.Cryptography.Pkcs.dll b/bloxstrap/System.Security.Cryptography.Pkcs.dll new file mode 100644 index 0000000..2c72f7f Binary files /dev/null and b/bloxstrap/System.Security.Cryptography.Pkcs.dll differ diff --git a/bloxstrap/System.Security.Cryptography.Primitives.dll b/bloxstrap/System.Security.Cryptography.Primitives.dll new file mode 100644 index 0000000..645cc1c Binary files /dev/null and b/bloxstrap/System.Security.Cryptography.Primitives.dll differ diff --git a/bloxstrap/System.Security.Cryptography.ProtectedData.dll b/bloxstrap/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..f7d833e Binary files /dev/null and b/bloxstrap/System.Security.Cryptography.ProtectedData.dll differ diff --git a/bloxstrap/System.Security.Cryptography.X509Certificates.dll b/bloxstrap/System.Security.Cryptography.X509Certificates.dll new file mode 100644 index 0000000..021f497 Binary files /dev/null and b/bloxstrap/System.Security.Cryptography.X509Certificates.dll differ diff --git a/bloxstrap/System.Security.Cryptography.Xml.dll b/bloxstrap/System.Security.Cryptography.Xml.dll new file mode 100644 index 0000000..8ea23a5 Binary files /dev/null and b/bloxstrap/System.Security.Cryptography.Xml.dll differ diff --git a/bloxstrap/System.Security.Permissions.dll b/bloxstrap/System.Security.Permissions.dll new file mode 100644 index 0000000..28efd87 Binary files /dev/null and b/bloxstrap/System.Security.Permissions.dll differ diff --git a/bloxstrap/System.Security.Principal.Windows.dll b/bloxstrap/System.Security.Principal.Windows.dll new file mode 100644 index 0000000..cdcb6f0 Binary files /dev/null and b/bloxstrap/System.Security.Principal.Windows.dll differ diff --git a/bloxstrap/System.Security.Principal.dll b/bloxstrap/System.Security.Principal.dll new file mode 100644 index 0000000..7444745 Binary files /dev/null and b/bloxstrap/System.Security.Principal.dll differ diff --git a/bloxstrap/System.Security.SecureString.dll b/bloxstrap/System.Security.SecureString.dll new file mode 100644 index 0000000..67d6f15 Binary files /dev/null and b/bloxstrap/System.Security.SecureString.dll differ diff --git a/bloxstrap/System.Security.dll b/bloxstrap/System.Security.dll new file mode 100644 index 0000000..6f8af07 Binary files /dev/null and b/bloxstrap/System.Security.dll differ diff --git a/bloxstrap/System.ServiceModel.Web.dll b/bloxstrap/System.ServiceModel.Web.dll new file mode 100644 index 0000000..0e891ff Binary files /dev/null and b/bloxstrap/System.ServiceModel.Web.dll differ diff --git a/bloxstrap/System.ServiceProcess.dll b/bloxstrap/System.ServiceProcess.dll new file mode 100644 index 0000000..e044238 Binary files /dev/null and b/bloxstrap/System.ServiceProcess.dll differ diff --git a/bloxstrap/System.Text.Encoding.CodePages.dll b/bloxstrap/System.Text.Encoding.CodePages.dll new file mode 100644 index 0000000..5863bc1 Binary files /dev/null and b/bloxstrap/System.Text.Encoding.CodePages.dll differ diff --git a/bloxstrap/System.Text.Encoding.Extensions.dll b/bloxstrap/System.Text.Encoding.Extensions.dll new file mode 100644 index 0000000..c62d1e1 Binary files /dev/null and b/bloxstrap/System.Text.Encoding.Extensions.dll differ diff --git a/bloxstrap/System.Text.Encoding.dll b/bloxstrap/System.Text.Encoding.dll new file mode 100644 index 0000000..e7b00eb Binary files /dev/null and b/bloxstrap/System.Text.Encoding.dll differ diff --git a/bloxstrap/System.Text.Encodings.Web.dll b/bloxstrap/System.Text.Encodings.Web.dll new file mode 100644 index 0000000..aa3bd58 Binary files /dev/null and b/bloxstrap/System.Text.Encodings.Web.dll differ diff --git a/bloxstrap/System.Text.Json.dll b/bloxstrap/System.Text.Json.dll new file mode 100644 index 0000000..fe36969 Binary files /dev/null and b/bloxstrap/System.Text.Json.dll differ diff --git a/bloxstrap/System.Text.RegularExpressions.dll b/bloxstrap/System.Text.RegularExpressions.dll new file mode 100644 index 0000000..ac92585 Binary files /dev/null and b/bloxstrap/System.Text.RegularExpressions.dll differ diff --git a/bloxstrap/System.Threading.AccessControl.dll b/bloxstrap/System.Threading.AccessControl.dll new file mode 100644 index 0000000..0cbaa53 Binary files /dev/null and b/bloxstrap/System.Threading.AccessControl.dll differ diff --git a/bloxstrap/System.Threading.Channels.dll b/bloxstrap/System.Threading.Channels.dll new file mode 100644 index 0000000..d958537 Binary files /dev/null and b/bloxstrap/System.Threading.Channels.dll differ diff --git a/bloxstrap/System.Threading.Overlapped.dll b/bloxstrap/System.Threading.Overlapped.dll new file mode 100644 index 0000000..03beaa1 Binary files /dev/null and b/bloxstrap/System.Threading.Overlapped.dll differ diff --git a/bloxstrap/System.Threading.Tasks.Dataflow.dll b/bloxstrap/System.Threading.Tasks.Dataflow.dll new file mode 100644 index 0000000..2a739ec Binary files /dev/null and b/bloxstrap/System.Threading.Tasks.Dataflow.dll differ diff --git a/bloxstrap/System.Threading.Tasks.Extensions.dll b/bloxstrap/System.Threading.Tasks.Extensions.dll new file mode 100644 index 0000000..27de052 Binary files /dev/null and b/bloxstrap/System.Threading.Tasks.Extensions.dll differ diff --git a/bloxstrap/System.Threading.Tasks.Parallel.dll b/bloxstrap/System.Threading.Tasks.Parallel.dll new file mode 100644 index 0000000..73ace52 Binary files /dev/null and b/bloxstrap/System.Threading.Tasks.Parallel.dll differ diff --git a/bloxstrap/System.Threading.Tasks.dll b/bloxstrap/System.Threading.Tasks.dll new file mode 100644 index 0000000..cf44915 Binary files /dev/null and b/bloxstrap/System.Threading.Tasks.dll differ diff --git a/bloxstrap/System.Threading.Thread.dll b/bloxstrap/System.Threading.Thread.dll new file mode 100644 index 0000000..9afc520 Binary files /dev/null and b/bloxstrap/System.Threading.Thread.dll differ diff --git a/bloxstrap/System.Threading.ThreadPool.dll b/bloxstrap/System.Threading.ThreadPool.dll new file mode 100644 index 0000000..c417eb0 Binary files /dev/null and b/bloxstrap/System.Threading.ThreadPool.dll differ diff --git a/bloxstrap/System.Threading.Timer.dll b/bloxstrap/System.Threading.Timer.dll new file mode 100644 index 0000000..5efe477 Binary files /dev/null and b/bloxstrap/System.Threading.Timer.dll differ diff --git a/bloxstrap/System.Threading.dll b/bloxstrap/System.Threading.dll new file mode 100644 index 0000000..37e4f8b Binary files /dev/null and b/bloxstrap/System.Threading.dll differ diff --git a/bloxstrap/System.Transactions.Local.dll b/bloxstrap/System.Transactions.Local.dll new file mode 100644 index 0000000..7bbfc51 Binary files /dev/null and b/bloxstrap/System.Transactions.Local.dll differ diff --git a/bloxstrap/System.Transactions.dll b/bloxstrap/System.Transactions.dll new file mode 100644 index 0000000..c5691e6 Binary files /dev/null and b/bloxstrap/System.Transactions.dll differ diff --git a/bloxstrap/System.ValueTuple.dll b/bloxstrap/System.ValueTuple.dll new file mode 100644 index 0000000..3a79f86 Binary files /dev/null and b/bloxstrap/System.ValueTuple.dll differ diff --git a/bloxstrap/System.Web.HttpUtility.dll b/bloxstrap/System.Web.HttpUtility.dll new file mode 100644 index 0000000..6377f89 Binary files /dev/null and b/bloxstrap/System.Web.HttpUtility.dll differ diff --git a/bloxstrap/System.Web.dll b/bloxstrap/System.Web.dll new file mode 100644 index 0000000..874e2dd Binary files /dev/null and b/bloxstrap/System.Web.dll differ diff --git a/bloxstrap/System.Windows.Controls.Ribbon.dll b/bloxstrap/System.Windows.Controls.Ribbon.dll new file mode 100644 index 0000000..c36e9c6 Binary files /dev/null and b/bloxstrap/System.Windows.Controls.Ribbon.dll differ diff --git a/bloxstrap/System.Windows.Extensions.dll b/bloxstrap/System.Windows.Extensions.dll new file mode 100644 index 0000000..4a5be48 Binary files /dev/null and b/bloxstrap/System.Windows.Extensions.dll differ diff --git a/bloxstrap/System.Windows.Forms.Design.Editors.dll b/bloxstrap/System.Windows.Forms.Design.Editors.dll new file mode 100644 index 0000000..acae89b Binary files /dev/null and b/bloxstrap/System.Windows.Forms.Design.Editors.dll differ diff --git a/bloxstrap/System.Windows.Forms.Design.dll b/bloxstrap/System.Windows.Forms.Design.dll new file mode 100644 index 0000000..829cd21 Binary files /dev/null and b/bloxstrap/System.Windows.Forms.Design.dll differ diff --git a/bloxstrap/System.Windows.Forms.Primitives.dll b/bloxstrap/System.Windows.Forms.Primitives.dll new file mode 100644 index 0000000..7452052 Binary files /dev/null and b/bloxstrap/System.Windows.Forms.Primitives.dll differ diff --git a/bloxstrap/System.Windows.Forms.dll b/bloxstrap/System.Windows.Forms.dll new file mode 100644 index 0000000..7fd2f10 Binary files /dev/null and b/bloxstrap/System.Windows.Forms.dll differ diff --git a/bloxstrap/System.Windows.Input.Manipulations.dll b/bloxstrap/System.Windows.Input.Manipulations.dll new file mode 100644 index 0000000..327806d Binary files /dev/null and b/bloxstrap/System.Windows.Input.Manipulations.dll differ diff --git a/bloxstrap/System.Windows.Presentation.dll b/bloxstrap/System.Windows.Presentation.dll new file mode 100644 index 0000000..ef90b46 Binary files /dev/null and b/bloxstrap/System.Windows.Presentation.dll differ diff --git a/bloxstrap/System.Windows.dll b/bloxstrap/System.Windows.dll new file mode 100644 index 0000000..75939b5 Binary files /dev/null and b/bloxstrap/System.Windows.dll differ diff --git a/bloxstrap/System.Xaml.dll b/bloxstrap/System.Xaml.dll new file mode 100644 index 0000000..d9a323a Binary files /dev/null and b/bloxstrap/System.Xaml.dll differ diff --git a/bloxstrap/System.Xml.Linq.dll b/bloxstrap/System.Xml.Linq.dll new file mode 100644 index 0000000..3145628 Binary files /dev/null and b/bloxstrap/System.Xml.Linq.dll differ diff --git a/bloxstrap/System.Xml.ReaderWriter.dll b/bloxstrap/System.Xml.ReaderWriter.dll new file mode 100644 index 0000000..eb906c3 Binary files /dev/null and b/bloxstrap/System.Xml.ReaderWriter.dll differ diff --git a/bloxstrap/System.Xml.Serialization.dll b/bloxstrap/System.Xml.Serialization.dll new file mode 100644 index 0000000..97a09d3 Binary files /dev/null and b/bloxstrap/System.Xml.Serialization.dll differ diff --git a/bloxstrap/System.Xml.XDocument.dll b/bloxstrap/System.Xml.XDocument.dll new file mode 100644 index 0000000..553442d Binary files /dev/null and b/bloxstrap/System.Xml.XDocument.dll differ diff --git a/bloxstrap/System.Xml.XPath.XDocument.dll b/bloxstrap/System.Xml.XPath.XDocument.dll new file mode 100644 index 0000000..8c00731 Binary files /dev/null and b/bloxstrap/System.Xml.XPath.XDocument.dll differ diff --git a/bloxstrap/System.Xml.XPath.dll b/bloxstrap/System.Xml.XPath.dll new file mode 100644 index 0000000..0ab841c Binary files /dev/null and b/bloxstrap/System.Xml.XPath.dll differ diff --git a/bloxstrap/System.Xml.XmlDocument.dll b/bloxstrap/System.Xml.XmlDocument.dll new file mode 100644 index 0000000..b2d6400 Binary files /dev/null and b/bloxstrap/System.Xml.XmlDocument.dll differ diff --git a/bloxstrap/System.Xml.XmlSerializer.dll b/bloxstrap/System.Xml.XmlSerializer.dll new file mode 100644 index 0000000..76905fd Binary files /dev/null and b/bloxstrap/System.Xml.XmlSerializer.dll differ diff --git a/bloxstrap/System.Xml.dll b/bloxstrap/System.Xml.dll new file mode 100644 index 0000000..ae3af89 Binary files /dev/null and b/bloxstrap/System.Xml.dll differ diff --git a/bloxstrap/System.dll b/bloxstrap/System.dll new file mode 100644 index 0000000..3b36983 Binary files /dev/null and b/bloxstrap/System.dll differ diff --git a/bloxstrap/UIAutomationClient.dll b/bloxstrap/UIAutomationClient.dll new file mode 100644 index 0000000..01ee8a9 Binary files /dev/null and b/bloxstrap/UIAutomationClient.dll differ diff --git a/bloxstrap/UIAutomationClientSideProviders.dll b/bloxstrap/UIAutomationClientSideProviders.dll new file mode 100644 index 0000000..0d51ae6 Binary files /dev/null and b/bloxstrap/UIAutomationClientSideProviders.dll differ diff --git a/bloxstrap/UIAutomationProvider.dll b/bloxstrap/UIAutomationProvider.dll new file mode 100644 index 0000000..dacc466 Binary files /dev/null and b/bloxstrap/UIAutomationProvider.dll differ diff --git a/bloxstrap/UIAutomationTypes.dll b/bloxstrap/UIAutomationTypes.dll new file mode 100644 index 0000000..472f2a0 Binary files /dev/null and b/bloxstrap/UIAutomationTypes.dll differ diff --git a/bloxstrap/WindowsBase.dll b/bloxstrap/WindowsBase.dll new file mode 100644 index 0000000..2243d9d Binary files /dev/null and b/bloxstrap/WindowsBase.dll differ diff --git a/bloxstrap/WindowsFormsIntegration.dll b/bloxstrap/WindowsFormsIntegration.dll new file mode 100644 index 0000000..9eae901 Binary files /dev/null and b/bloxstrap/WindowsFormsIntegration.dll differ diff --git a/bloxstrap/api-ms-win-core-console-l1-1-0.dll b/bloxstrap/api-ms-win-core-console-l1-1-0.dll new file mode 100644 index 0000000..590c42f Binary files /dev/null and b/bloxstrap/api-ms-win-core-console-l1-1-0.dll differ diff --git a/bloxstrap/api-ms-win-core-console-l1-2-0.dll b/bloxstrap/api-ms-win-core-console-l1-2-0.dll new file mode 100644 index 0000000..70cef48 Binary files /dev/null and b/bloxstrap/api-ms-win-core-console-l1-2-0.dll differ diff --git a/bloxstrap/api-ms-win-core-datetime-l1-1-0.dll b/bloxstrap/api-ms-win-core-datetime-l1-1-0.dll new file mode 100644 index 0000000..861508a Binary files /dev/null and b/bloxstrap/api-ms-win-core-datetime-l1-1-0.dll differ diff --git a/bloxstrap/api-ms-win-core-debug-l1-1-0.dll b/bloxstrap/api-ms-win-core-debug-l1-1-0.dll new file mode 100644 index 0000000..f39821c Binary files /dev/null and b/bloxstrap/api-ms-win-core-debug-l1-1-0.dll differ diff --git a/bloxstrap/api-ms-win-core-errorhandling-l1-1-0.dll b/bloxstrap/api-ms-win-core-errorhandling-l1-1-0.dll new file mode 100644 index 0000000..b45a5b1 Binary files /dev/null and b/bloxstrap/api-ms-win-core-errorhandling-l1-1-0.dll differ diff --git a/bloxstrap/api-ms-win-core-fibers-l1-1-0.dll b/bloxstrap/api-ms-win-core-fibers-l1-1-0.dll new file mode 100644 index 0000000..106b3a5 Binary files /dev/null and b/bloxstrap/api-ms-win-core-fibers-l1-1-0.dll differ diff --git a/bloxstrap/api-ms-win-core-file-l1-1-0.dll b/bloxstrap/api-ms-win-core-file-l1-1-0.dll new file mode 100644 index 0000000..a658a4c Binary files /dev/null and b/bloxstrap/api-ms-win-core-file-l1-1-0.dll differ diff --git a/bloxstrap/api-ms-win-core-file-l1-2-0.dll b/bloxstrap/api-ms-win-core-file-l1-2-0.dll new file mode 100644 index 0000000..a8efccd Binary files /dev/null and b/bloxstrap/api-ms-win-core-file-l1-2-0.dll differ diff --git a/bloxstrap/api-ms-win-core-file-l2-1-0.dll b/bloxstrap/api-ms-win-core-file-l2-1-0.dll new file mode 100644 index 0000000..b5ba5f4 Binary files /dev/null and b/bloxstrap/api-ms-win-core-file-l2-1-0.dll differ diff --git a/bloxstrap/api-ms-win-core-handle-l1-1-0.dll b/bloxstrap/api-ms-win-core-handle-l1-1-0.dll new file mode 100644 index 0000000..7ea4f0f Binary files /dev/null and b/bloxstrap/api-ms-win-core-handle-l1-1-0.dll differ diff --git a/bloxstrap/api-ms-win-core-heap-l1-1-0.dll b/bloxstrap/api-ms-win-core-heap-l1-1-0.dll new file mode 100644 index 0000000..0eb4d62 Binary files /dev/null and b/bloxstrap/api-ms-win-core-heap-l1-1-0.dll differ diff --git a/bloxstrap/api-ms-win-core-interlocked-l1-1-0.dll b/bloxstrap/api-ms-win-core-interlocked-l1-1-0.dll new file mode 100644 index 0000000..972c919 Binary files /dev/null and b/bloxstrap/api-ms-win-core-interlocked-l1-1-0.dll differ diff --git a/bloxstrap/api-ms-win-core-libraryloader-l1-1-0.dll b/bloxstrap/api-ms-win-core-libraryloader-l1-1-0.dll new file mode 100644 index 0000000..3c50b63 Binary files /dev/null and b/bloxstrap/api-ms-win-core-libraryloader-l1-1-0.dll differ diff --git a/bloxstrap/api-ms-win-core-localization-l1-2-0.dll b/bloxstrap/api-ms-win-core-localization-l1-2-0.dll new file mode 100644 index 0000000..bca3b73 Binary files /dev/null and b/bloxstrap/api-ms-win-core-localization-l1-2-0.dll differ diff --git a/bloxstrap/api-ms-win-core-memory-l1-1-0.dll b/bloxstrap/api-ms-win-core-memory-l1-1-0.dll new file mode 100644 index 0000000..b9ba2b0 Binary files /dev/null and b/bloxstrap/api-ms-win-core-memory-l1-1-0.dll differ diff --git a/bloxstrap/api-ms-win-core-namedpipe-l1-1-0.dll b/bloxstrap/api-ms-win-core-namedpipe-l1-1-0.dll new file mode 100644 index 0000000..1aa5c73 Binary files /dev/null and b/bloxstrap/api-ms-win-core-namedpipe-l1-1-0.dll differ diff --git a/bloxstrap/api-ms-win-core-processenvironment-l1-1-0.dll b/bloxstrap/api-ms-win-core-processenvironment-l1-1-0.dll new file mode 100644 index 0000000..d09ae00 Binary files /dev/null and b/bloxstrap/api-ms-win-core-processenvironment-l1-1-0.dll differ diff --git a/bloxstrap/api-ms-win-core-processthreads-l1-1-0.dll b/bloxstrap/api-ms-win-core-processthreads-l1-1-0.dll new file mode 100644 index 0000000..c2eed3a Binary files /dev/null and b/bloxstrap/api-ms-win-core-processthreads-l1-1-0.dll differ diff --git a/bloxstrap/api-ms-win-core-processthreads-l1-1-1.dll b/bloxstrap/api-ms-win-core-processthreads-l1-1-1.dll new file mode 100644 index 0000000..b688004 Binary files /dev/null and b/bloxstrap/api-ms-win-core-processthreads-l1-1-1.dll differ diff --git a/bloxstrap/api-ms-win-core-profile-l1-1-0.dll b/bloxstrap/api-ms-win-core-profile-l1-1-0.dll new file mode 100644 index 0000000..41c94a1 Binary files /dev/null and b/bloxstrap/api-ms-win-core-profile-l1-1-0.dll differ diff --git a/bloxstrap/api-ms-win-core-rtlsupport-l1-1-0.dll b/bloxstrap/api-ms-win-core-rtlsupport-l1-1-0.dll new file mode 100644 index 0000000..ef67676 Binary files /dev/null and b/bloxstrap/api-ms-win-core-rtlsupport-l1-1-0.dll differ diff --git a/bloxstrap/api-ms-win-core-string-l1-1-0.dll b/bloxstrap/api-ms-win-core-string-l1-1-0.dll new file mode 100644 index 0000000..f531a78 Binary files /dev/null and b/bloxstrap/api-ms-win-core-string-l1-1-0.dll differ diff --git a/bloxstrap/api-ms-win-core-synch-l1-1-0.dll b/bloxstrap/api-ms-win-core-synch-l1-1-0.dll new file mode 100644 index 0000000..865c675 Binary files /dev/null and b/bloxstrap/api-ms-win-core-synch-l1-1-0.dll differ diff --git a/bloxstrap/api-ms-win-core-synch-l1-2-0.dll b/bloxstrap/api-ms-win-core-synch-l1-2-0.dll new file mode 100644 index 0000000..62d31e8 Binary files /dev/null and b/bloxstrap/api-ms-win-core-synch-l1-2-0.dll differ diff --git a/bloxstrap/api-ms-win-core-sysinfo-l1-1-0.dll b/bloxstrap/api-ms-win-core-sysinfo-l1-1-0.dll new file mode 100644 index 0000000..0c35e81 Binary files /dev/null and b/bloxstrap/api-ms-win-core-sysinfo-l1-1-0.dll differ diff --git a/bloxstrap/api-ms-win-core-timezone-l1-1-0.dll b/bloxstrap/api-ms-win-core-timezone-l1-1-0.dll new file mode 100644 index 0000000..7ca8e19 Binary files /dev/null and b/bloxstrap/api-ms-win-core-timezone-l1-1-0.dll differ diff --git a/bloxstrap/api-ms-win-core-util-l1-1-0.dll b/bloxstrap/api-ms-win-core-util-l1-1-0.dll new file mode 100644 index 0000000..3055a69 Binary files /dev/null and b/bloxstrap/api-ms-win-core-util-l1-1-0.dll differ diff --git a/bloxstrap/api-ms-win-crt-conio-l1-1-0.dll b/bloxstrap/api-ms-win-crt-conio-l1-1-0.dll new file mode 100644 index 0000000..3206470 Binary files /dev/null and b/bloxstrap/api-ms-win-crt-conio-l1-1-0.dll differ diff --git a/bloxstrap/api-ms-win-crt-convert-l1-1-0.dll b/bloxstrap/api-ms-win-crt-convert-l1-1-0.dll new file mode 100644 index 0000000..93dabd5 Binary files /dev/null and b/bloxstrap/api-ms-win-crt-convert-l1-1-0.dll differ diff --git a/bloxstrap/api-ms-win-crt-environment-l1-1-0.dll b/bloxstrap/api-ms-win-crt-environment-l1-1-0.dll new file mode 100644 index 0000000..38964d1 Binary files /dev/null and b/bloxstrap/api-ms-win-crt-environment-l1-1-0.dll differ diff --git a/bloxstrap/api-ms-win-crt-filesystem-l1-1-0.dll b/bloxstrap/api-ms-win-crt-filesystem-l1-1-0.dll new file mode 100644 index 0000000..303ea8d Binary files /dev/null and b/bloxstrap/api-ms-win-crt-filesystem-l1-1-0.dll differ diff --git a/bloxstrap/api-ms-win-crt-heap-l1-1-0.dll b/bloxstrap/api-ms-win-crt-heap-l1-1-0.dll new file mode 100644 index 0000000..144a8f8 Binary files /dev/null and b/bloxstrap/api-ms-win-crt-heap-l1-1-0.dll differ diff --git a/bloxstrap/api-ms-win-crt-locale-l1-1-0.dll b/bloxstrap/api-ms-win-crt-locale-l1-1-0.dll new file mode 100644 index 0000000..2b135e4 Binary files /dev/null and b/bloxstrap/api-ms-win-crt-locale-l1-1-0.dll differ diff --git a/bloxstrap/api-ms-win-crt-math-l1-1-0.dll b/bloxstrap/api-ms-win-crt-math-l1-1-0.dll new file mode 100644 index 0000000..4724bb7 Binary files /dev/null and b/bloxstrap/api-ms-win-crt-math-l1-1-0.dll differ diff --git a/bloxstrap/api-ms-win-crt-multibyte-l1-1-0.dll b/bloxstrap/api-ms-win-crt-multibyte-l1-1-0.dll new file mode 100644 index 0000000..77139cf Binary files /dev/null and b/bloxstrap/api-ms-win-crt-multibyte-l1-1-0.dll differ diff --git a/bloxstrap/api-ms-win-crt-private-l1-1-0.dll b/bloxstrap/api-ms-win-crt-private-l1-1-0.dll new file mode 100644 index 0000000..cc03657 Binary files /dev/null and b/bloxstrap/api-ms-win-crt-private-l1-1-0.dll differ diff --git a/bloxstrap/api-ms-win-crt-process-l1-1-0.dll b/bloxstrap/api-ms-win-crt-process-l1-1-0.dll new file mode 100644 index 0000000..cade230 Binary files /dev/null and b/bloxstrap/api-ms-win-crt-process-l1-1-0.dll differ diff --git a/bloxstrap/api-ms-win-crt-runtime-l1-1-0.dll b/bloxstrap/api-ms-win-crt-runtime-l1-1-0.dll new file mode 100644 index 0000000..dc4bd51 Binary files /dev/null and b/bloxstrap/api-ms-win-crt-runtime-l1-1-0.dll differ diff --git a/bloxstrap/api-ms-win-crt-stdio-l1-1-0.dll b/bloxstrap/api-ms-win-crt-stdio-l1-1-0.dll new file mode 100644 index 0000000..469672c Binary files /dev/null and b/bloxstrap/api-ms-win-crt-stdio-l1-1-0.dll differ diff --git a/bloxstrap/api-ms-win-crt-string-l1-1-0.dll b/bloxstrap/api-ms-win-crt-string-l1-1-0.dll new file mode 100644 index 0000000..4022969 Binary files /dev/null and b/bloxstrap/api-ms-win-crt-string-l1-1-0.dll differ diff --git a/bloxstrap/api-ms-win-crt-time-l1-1-0.dll b/bloxstrap/api-ms-win-crt-time-l1-1-0.dll new file mode 100644 index 0000000..f509d42 Binary files /dev/null and b/bloxstrap/api-ms-win-crt-time-l1-1-0.dll differ diff --git a/bloxstrap/api-ms-win-crt-utility-l1-1-0.dll b/bloxstrap/api-ms-win-crt-utility-l1-1-0.dll new file mode 100644 index 0000000..4956310 Binary files /dev/null and b/bloxstrap/api-ms-win-crt-utility-l1-1-0.dll differ diff --git a/bloxstrap/clretwrc.dll b/bloxstrap/clretwrc.dll new file mode 100644 index 0000000..dbf6a8c Binary files /dev/null and b/bloxstrap/clretwrc.dll differ diff --git a/bloxstrap/clrjit.dll b/bloxstrap/clrjit.dll new file mode 100644 index 0000000..da0b36c Binary files /dev/null and b/bloxstrap/clrjit.dll differ diff --git a/bloxstrap/coreclr.dll b/bloxstrap/coreclr.dll new file mode 100644 index 0000000..9fd3237 Binary files /dev/null and b/bloxstrap/coreclr.dll differ diff --git a/bloxstrap/createdump.exe b/bloxstrap/createdump.exe new file mode 100644 index 0000000..e042aea Binary files /dev/null and b/bloxstrap/createdump.exe differ diff --git a/bloxstrap/cs/Microsoft.VisualBasic.Forms.resources.dll b/bloxstrap/cs/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..f0aca0d Binary files /dev/null and b/bloxstrap/cs/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/bloxstrap/cs/PresentationCore.resources.dll b/bloxstrap/cs/PresentationCore.resources.dll new file mode 100644 index 0000000..e00fade Binary files /dev/null and b/bloxstrap/cs/PresentationCore.resources.dll differ diff --git a/bloxstrap/cs/PresentationFramework.resources.dll b/bloxstrap/cs/PresentationFramework.resources.dll new file mode 100644 index 0000000..70d0d8c Binary files /dev/null and b/bloxstrap/cs/PresentationFramework.resources.dll differ diff --git a/bloxstrap/cs/PresentationUI.resources.dll b/bloxstrap/cs/PresentationUI.resources.dll new file mode 100644 index 0000000..5e08c5a Binary files /dev/null and b/bloxstrap/cs/PresentationUI.resources.dll differ diff --git a/bloxstrap/cs/ReachFramework.resources.dll b/bloxstrap/cs/ReachFramework.resources.dll new file mode 100644 index 0000000..9ff5511 Binary files /dev/null and b/bloxstrap/cs/ReachFramework.resources.dll differ diff --git a/bloxstrap/cs/System.Windows.Controls.Ribbon.resources.dll b/bloxstrap/cs/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..ec90e37 Binary files /dev/null and b/bloxstrap/cs/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/bloxstrap/cs/System.Windows.Forms.Design.resources.dll b/bloxstrap/cs/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..414fefb Binary files /dev/null and b/bloxstrap/cs/System.Windows.Forms.Design.resources.dll differ diff --git a/bloxstrap/cs/System.Windows.Forms.Primitives.resources.dll b/bloxstrap/cs/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..2812f27 Binary files /dev/null and b/bloxstrap/cs/System.Windows.Forms.Primitives.resources.dll differ diff --git a/bloxstrap/cs/System.Windows.Forms.resources.dll b/bloxstrap/cs/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..0aaa744 Binary files /dev/null and b/bloxstrap/cs/System.Windows.Forms.resources.dll differ diff --git a/bloxstrap/cs/System.Windows.Input.Manipulations.resources.dll b/bloxstrap/cs/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..edac4d5 Binary files /dev/null and b/bloxstrap/cs/System.Windows.Input.Manipulations.resources.dll differ diff --git a/bloxstrap/cs/System.Xaml.resources.dll b/bloxstrap/cs/System.Xaml.resources.dll new file mode 100644 index 0000000..d053c26 Binary files /dev/null and b/bloxstrap/cs/System.Xaml.resources.dll differ diff --git a/bloxstrap/cs/UIAutomationClient.resources.dll b/bloxstrap/cs/UIAutomationClient.resources.dll new file mode 100644 index 0000000..baf622a Binary files /dev/null and b/bloxstrap/cs/UIAutomationClient.resources.dll differ diff --git a/bloxstrap/cs/UIAutomationClientSideProviders.resources.dll b/bloxstrap/cs/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..84924c0 Binary files /dev/null and b/bloxstrap/cs/UIAutomationClientSideProviders.resources.dll differ diff --git a/bloxstrap/cs/UIAutomationProvider.resources.dll b/bloxstrap/cs/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..4208dd8 Binary files /dev/null and b/bloxstrap/cs/UIAutomationProvider.resources.dll differ diff --git a/bloxstrap/cs/UIAutomationTypes.resources.dll b/bloxstrap/cs/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..0e503df Binary files /dev/null and b/bloxstrap/cs/UIAutomationTypes.resources.dll differ diff --git a/bloxstrap/cs/WindowsBase.resources.dll b/bloxstrap/cs/WindowsBase.resources.dll new file mode 100644 index 0000000..ad6a4a3 Binary files /dev/null and b/bloxstrap/cs/WindowsBase.resources.dll differ diff --git a/bloxstrap/cs/WindowsFormsIntegration.resources.dll b/bloxstrap/cs/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..0d7c774 Binary files /dev/null and b/bloxstrap/cs/WindowsFormsIntegration.resources.dll differ diff --git a/bloxstrap/dbgshim.dll b/bloxstrap/dbgshim.dll new file mode 100644 index 0000000..1a7ed1d Binary files /dev/null and b/bloxstrap/dbgshim.dll differ diff --git a/bloxstrap/de/Microsoft.VisualBasic.Forms.resources.dll b/bloxstrap/de/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..dadd300 Binary files /dev/null and b/bloxstrap/de/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/bloxstrap/de/PresentationCore.resources.dll b/bloxstrap/de/PresentationCore.resources.dll new file mode 100644 index 0000000..5bbe1ab Binary files /dev/null and b/bloxstrap/de/PresentationCore.resources.dll differ diff --git a/bloxstrap/de/PresentationFramework.resources.dll b/bloxstrap/de/PresentationFramework.resources.dll new file mode 100644 index 0000000..a258469 Binary files /dev/null and b/bloxstrap/de/PresentationFramework.resources.dll differ diff --git a/bloxstrap/de/PresentationUI.resources.dll b/bloxstrap/de/PresentationUI.resources.dll new file mode 100644 index 0000000..3cf9dc1 Binary files /dev/null and b/bloxstrap/de/PresentationUI.resources.dll differ diff --git a/bloxstrap/de/ReachFramework.resources.dll b/bloxstrap/de/ReachFramework.resources.dll new file mode 100644 index 0000000..b8805bf Binary files /dev/null and b/bloxstrap/de/ReachFramework.resources.dll differ diff --git a/bloxstrap/de/System.Windows.Controls.Ribbon.resources.dll b/bloxstrap/de/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..0c351a6 Binary files /dev/null and b/bloxstrap/de/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/bloxstrap/de/System.Windows.Forms.Design.resources.dll b/bloxstrap/de/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..fb0ba2a Binary files /dev/null and b/bloxstrap/de/System.Windows.Forms.Design.resources.dll differ diff --git a/bloxstrap/de/System.Windows.Forms.Primitives.resources.dll b/bloxstrap/de/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..eed329e Binary files /dev/null and b/bloxstrap/de/System.Windows.Forms.Primitives.resources.dll differ diff --git a/bloxstrap/de/System.Windows.Forms.resources.dll b/bloxstrap/de/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..68a8f7b Binary files /dev/null and b/bloxstrap/de/System.Windows.Forms.resources.dll differ diff --git a/bloxstrap/de/System.Windows.Input.Manipulations.resources.dll b/bloxstrap/de/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..b86328c Binary files /dev/null and b/bloxstrap/de/System.Windows.Input.Manipulations.resources.dll differ diff --git a/bloxstrap/de/System.Xaml.resources.dll b/bloxstrap/de/System.Xaml.resources.dll new file mode 100644 index 0000000..ab2af46 Binary files /dev/null and b/bloxstrap/de/System.Xaml.resources.dll differ diff --git a/bloxstrap/de/UIAutomationClient.resources.dll b/bloxstrap/de/UIAutomationClient.resources.dll new file mode 100644 index 0000000..a02a621 Binary files /dev/null and b/bloxstrap/de/UIAutomationClient.resources.dll differ diff --git a/bloxstrap/de/UIAutomationClientSideProviders.resources.dll b/bloxstrap/de/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..3e47138 Binary files /dev/null and b/bloxstrap/de/UIAutomationClientSideProviders.resources.dll differ diff --git a/bloxstrap/de/UIAutomationProvider.resources.dll b/bloxstrap/de/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..021a19a Binary files /dev/null and b/bloxstrap/de/UIAutomationProvider.resources.dll differ diff --git a/bloxstrap/de/UIAutomationTypes.resources.dll b/bloxstrap/de/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..663c144 Binary files /dev/null and b/bloxstrap/de/UIAutomationTypes.resources.dll differ diff --git a/bloxstrap/de/WindowsBase.resources.dll b/bloxstrap/de/WindowsBase.resources.dll new file mode 100644 index 0000000..92cd10a Binary files /dev/null and b/bloxstrap/de/WindowsBase.resources.dll differ diff --git a/bloxstrap/de/WindowsFormsIntegration.resources.dll b/bloxstrap/de/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..c8d1c16 Binary files /dev/null and b/bloxstrap/de/WindowsFormsIntegration.resources.dll differ diff --git a/bloxstrap/es/Microsoft.VisualBasic.Forms.resources.dll b/bloxstrap/es/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..44359de Binary files /dev/null and b/bloxstrap/es/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/bloxstrap/es/PresentationCore.resources.dll b/bloxstrap/es/PresentationCore.resources.dll new file mode 100644 index 0000000..0a3e7ba Binary files /dev/null and b/bloxstrap/es/PresentationCore.resources.dll differ diff --git a/bloxstrap/es/PresentationFramework.resources.dll b/bloxstrap/es/PresentationFramework.resources.dll new file mode 100644 index 0000000..f1b036e Binary files /dev/null and b/bloxstrap/es/PresentationFramework.resources.dll differ diff --git a/bloxstrap/es/PresentationUI.resources.dll b/bloxstrap/es/PresentationUI.resources.dll new file mode 100644 index 0000000..90e6f09 Binary files /dev/null and b/bloxstrap/es/PresentationUI.resources.dll differ diff --git a/bloxstrap/es/ReachFramework.resources.dll b/bloxstrap/es/ReachFramework.resources.dll new file mode 100644 index 0000000..8c36141 Binary files /dev/null and b/bloxstrap/es/ReachFramework.resources.dll differ diff --git a/bloxstrap/es/System.Windows.Controls.Ribbon.resources.dll b/bloxstrap/es/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..db8b26d Binary files /dev/null and b/bloxstrap/es/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/bloxstrap/es/System.Windows.Forms.Design.resources.dll b/bloxstrap/es/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..8ed8267 Binary files /dev/null and b/bloxstrap/es/System.Windows.Forms.Design.resources.dll differ diff --git a/bloxstrap/es/System.Windows.Forms.Primitives.resources.dll b/bloxstrap/es/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..ab0bb2a Binary files /dev/null and b/bloxstrap/es/System.Windows.Forms.Primitives.resources.dll differ diff --git a/bloxstrap/es/System.Windows.Forms.resources.dll b/bloxstrap/es/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..57222fc Binary files /dev/null and b/bloxstrap/es/System.Windows.Forms.resources.dll differ diff --git a/bloxstrap/es/System.Windows.Input.Manipulations.resources.dll b/bloxstrap/es/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..7d8aa2d Binary files /dev/null and b/bloxstrap/es/System.Windows.Input.Manipulations.resources.dll differ diff --git a/bloxstrap/es/System.Xaml.resources.dll b/bloxstrap/es/System.Xaml.resources.dll new file mode 100644 index 0000000..1dfde41 Binary files /dev/null and b/bloxstrap/es/System.Xaml.resources.dll differ diff --git a/bloxstrap/es/UIAutomationClient.resources.dll b/bloxstrap/es/UIAutomationClient.resources.dll new file mode 100644 index 0000000..ee01df5 Binary files /dev/null and b/bloxstrap/es/UIAutomationClient.resources.dll differ diff --git a/bloxstrap/es/UIAutomationClientSideProviders.resources.dll b/bloxstrap/es/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..21df360 Binary files /dev/null and b/bloxstrap/es/UIAutomationClientSideProviders.resources.dll differ diff --git a/bloxstrap/es/UIAutomationProvider.resources.dll b/bloxstrap/es/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..47acbce Binary files /dev/null and b/bloxstrap/es/UIAutomationProvider.resources.dll differ diff --git a/bloxstrap/es/UIAutomationTypes.resources.dll b/bloxstrap/es/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..8329075 Binary files /dev/null and b/bloxstrap/es/UIAutomationTypes.resources.dll differ diff --git a/bloxstrap/es/WindowsBase.resources.dll b/bloxstrap/es/WindowsBase.resources.dll new file mode 100644 index 0000000..3ae182d Binary files /dev/null and b/bloxstrap/es/WindowsBase.resources.dll differ diff --git a/bloxstrap/es/WindowsFormsIntegration.resources.dll b/bloxstrap/es/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..cb3c6da Binary files /dev/null and b/bloxstrap/es/WindowsFormsIntegration.resources.dll differ diff --git a/bloxstrap/fr/Microsoft.VisualBasic.Forms.resources.dll b/bloxstrap/fr/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..9a5bcce Binary files /dev/null and b/bloxstrap/fr/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/bloxstrap/fr/PresentationCore.resources.dll b/bloxstrap/fr/PresentationCore.resources.dll new file mode 100644 index 0000000..b8b7f71 Binary files /dev/null and b/bloxstrap/fr/PresentationCore.resources.dll differ diff --git a/bloxstrap/fr/PresentationFramework.resources.dll b/bloxstrap/fr/PresentationFramework.resources.dll new file mode 100644 index 0000000..b40ecff Binary files /dev/null and b/bloxstrap/fr/PresentationFramework.resources.dll differ diff --git a/bloxstrap/fr/PresentationUI.resources.dll b/bloxstrap/fr/PresentationUI.resources.dll new file mode 100644 index 0000000..003bfe5 Binary files /dev/null and b/bloxstrap/fr/PresentationUI.resources.dll differ diff --git a/bloxstrap/fr/ReachFramework.resources.dll b/bloxstrap/fr/ReachFramework.resources.dll new file mode 100644 index 0000000..7a9a48c Binary files /dev/null and b/bloxstrap/fr/ReachFramework.resources.dll differ diff --git a/bloxstrap/fr/System.Windows.Controls.Ribbon.resources.dll b/bloxstrap/fr/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..425e58b Binary files /dev/null and b/bloxstrap/fr/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/bloxstrap/fr/System.Windows.Forms.Design.resources.dll b/bloxstrap/fr/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..1e82d3a Binary files /dev/null and b/bloxstrap/fr/System.Windows.Forms.Design.resources.dll differ diff --git a/bloxstrap/fr/System.Windows.Forms.Primitives.resources.dll b/bloxstrap/fr/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..2b18b23 Binary files /dev/null and b/bloxstrap/fr/System.Windows.Forms.Primitives.resources.dll differ diff --git a/bloxstrap/fr/System.Windows.Forms.resources.dll b/bloxstrap/fr/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..b1f02ab Binary files /dev/null and b/bloxstrap/fr/System.Windows.Forms.resources.dll differ diff --git a/bloxstrap/fr/System.Windows.Input.Manipulations.resources.dll b/bloxstrap/fr/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..4bcc055 Binary files /dev/null and b/bloxstrap/fr/System.Windows.Input.Manipulations.resources.dll differ diff --git a/bloxstrap/fr/System.Xaml.resources.dll b/bloxstrap/fr/System.Xaml.resources.dll new file mode 100644 index 0000000..28c0a63 Binary files /dev/null and b/bloxstrap/fr/System.Xaml.resources.dll differ diff --git a/bloxstrap/fr/UIAutomationClient.resources.dll b/bloxstrap/fr/UIAutomationClient.resources.dll new file mode 100644 index 0000000..fba021f Binary files /dev/null and b/bloxstrap/fr/UIAutomationClient.resources.dll differ diff --git a/bloxstrap/fr/UIAutomationClientSideProviders.resources.dll b/bloxstrap/fr/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..5efde3b Binary files /dev/null and b/bloxstrap/fr/UIAutomationClientSideProviders.resources.dll differ diff --git a/bloxstrap/fr/UIAutomationProvider.resources.dll b/bloxstrap/fr/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..39673c7 Binary files /dev/null and b/bloxstrap/fr/UIAutomationProvider.resources.dll differ diff --git a/bloxstrap/fr/UIAutomationTypes.resources.dll b/bloxstrap/fr/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..80f5132 Binary files /dev/null and b/bloxstrap/fr/UIAutomationTypes.resources.dll differ diff --git a/bloxstrap/fr/WindowsBase.resources.dll b/bloxstrap/fr/WindowsBase.resources.dll new file mode 100644 index 0000000..718efb1 Binary files /dev/null and b/bloxstrap/fr/WindowsBase.resources.dll differ diff --git a/bloxstrap/fr/WindowsFormsIntegration.resources.dll b/bloxstrap/fr/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..ecf607a Binary files /dev/null and b/bloxstrap/fr/WindowsFormsIntegration.resources.dll differ diff --git a/bloxstrap/hostfxr.dll b/bloxstrap/hostfxr.dll new file mode 100644 index 0000000..0a3b7a6 Binary files /dev/null and b/bloxstrap/hostfxr.dll differ diff --git a/bloxstrap/hostpolicy.dll b/bloxstrap/hostpolicy.dll new file mode 100644 index 0000000..0dfde46 Binary files /dev/null and b/bloxstrap/hostpolicy.dll differ diff --git a/bloxstrap/it/Microsoft.VisualBasic.Forms.resources.dll b/bloxstrap/it/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..2f67a5e Binary files /dev/null and b/bloxstrap/it/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/bloxstrap/it/PresentationCore.resources.dll b/bloxstrap/it/PresentationCore.resources.dll new file mode 100644 index 0000000..f90349f Binary files /dev/null and b/bloxstrap/it/PresentationCore.resources.dll differ diff --git a/bloxstrap/it/PresentationFramework.resources.dll b/bloxstrap/it/PresentationFramework.resources.dll new file mode 100644 index 0000000..4cf4e52 Binary files /dev/null and b/bloxstrap/it/PresentationFramework.resources.dll differ diff --git a/bloxstrap/it/PresentationUI.resources.dll b/bloxstrap/it/PresentationUI.resources.dll new file mode 100644 index 0000000..d30b08f Binary files /dev/null and b/bloxstrap/it/PresentationUI.resources.dll differ diff --git a/bloxstrap/it/ReachFramework.resources.dll b/bloxstrap/it/ReachFramework.resources.dll new file mode 100644 index 0000000..89c9f9c Binary files /dev/null and b/bloxstrap/it/ReachFramework.resources.dll differ diff --git a/bloxstrap/it/System.Windows.Controls.Ribbon.resources.dll b/bloxstrap/it/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..c469949 Binary files /dev/null and b/bloxstrap/it/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/bloxstrap/it/System.Windows.Forms.Design.resources.dll b/bloxstrap/it/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..7dfd99e Binary files /dev/null and b/bloxstrap/it/System.Windows.Forms.Design.resources.dll differ diff --git a/bloxstrap/it/System.Windows.Forms.Primitives.resources.dll b/bloxstrap/it/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..1278d45 Binary files /dev/null and b/bloxstrap/it/System.Windows.Forms.Primitives.resources.dll differ diff --git a/bloxstrap/it/System.Windows.Forms.resources.dll b/bloxstrap/it/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..40a02d1 Binary files /dev/null and b/bloxstrap/it/System.Windows.Forms.resources.dll differ diff --git a/bloxstrap/it/System.Windows.Input.Manipulations.resources.dll b/bloxstrap/it/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..e7674c3 Binary files /dev/null and b/bloxstrap/it/System.Windows.Input.Manipulations.resources.dll differ diff --git a/bloxstrap/it/System.Xaml.resources.dll b/bloxstrap/it/System.Xaml.resources.dll new file mode 100644 index 0000000..0e7c0a9 Binary files /dev/null and b/bloxstrap/it/System.Xaml.resources.dll differ diff --git a/bloxstrap/it/UIAutomationClient.resources.dll b/bloxstrap/it/UIAutomationClient.resources.dll new file mode 100644 index 0000000..cc842f2 Binary files /dev/null and b/bloxstrap/it/UIAutomationClient.resources.dll differ diff --git a/bloxstrap/it/UIAutomationClientSideProviders.resources.dll b/bloxstrap/it/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..9f4c2bf Binary files /dev/null and b/bloxstrap/it/UIAutomationClientSideProviders.resources.dll differ diff --git a/bloxstrap/it/UIAutomationProvider.resources.dll b/bloxstrap/it/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..3226700 Binary files /dev/null and b/bloxstrap/it/UIAutomationProvider.resources.dll differ diff --git a/bloxstrap/it/UIAutomationTypes.resources.dll b/bloxstrap/it/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..7a3353e Binary files /dev/null and b/bloxstrap/it/UIAutomationTypes.resources.dll differ diff --git a/bloxstrap/it/WindowsBase.resources.dll b/bloxstrap/it/WindowsBase.resources.dll new file mode 100644 index 0000000..feb2934 Binary files /dev/null and b/bloxstrap/it/WindowsBase.resources.dll differ diff --git a/bloxstrap/it/WindowsFormsIntegration.resources.dll b/bloxstrap/it/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..7b62a64 Binary files /dev/null and b/bloxstrap/it/WindowsFormsIntegration.resources.dll differ diff --git a/bloxstrap/ja/Microsoft.VisualBasic.Forms.resources.dll b/bloxstrap/ja/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..b1f90ad Binary files /dev/null and b/bloxstrap/ja/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/bloxstrap/ja/PresentationCore.resources.dll b/bloxstrap/ja/PresentationCore.resources.dll new file mode 100644 index 0000000..003db21 Binary files /dev/null and b/bloxstrap/ja/PresentationCore.resources.dll differ diff --git a/bloxstrap/ja/PresentationFramework.resources.dll b/bloxstrap/ja/PresentationFramework.resources.dll new file mode 100644 index 0000000..2b50b6f Binary files /dev/null and b/bloxstrap/ja/PresentationFramework.resources.dll differ diff --git a/bloxstrap/ja/PresentationUI.resources.dll b/bloxstrap/ja/PresentationUI.resources.dll new file mode 100644 index 0000000..249d279 Binary files /dev/null and b/bloxstrap/ja/PresentationUI.resources.dll differ diff --git a/bloxstrap/ja/ReachFramework.resources.dll b/bloxstrap/ja/ReachFramework.resources.dll new file mode 100644 index 0000000..30be617 Binary files /dev/null and b/bloxstrap/ja/ReachFramework.resources.dll differ diff --git a/bloxstrap/ja/System.Windows.Controls.Ribbon.resources.dll b/bloxstrap/ja/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..4746b53 Binary files /dev/null and b/bloxstrap/ja/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/bloxstrap/ja/System.Windows.Forms.Design.resources.dll b/bloxstrap/ja/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..cde4271 Binary files /dev/null and b/bloxstrap/ja/System.Windows.Forms.Design.resources.dll differ diff --git a/bloxstrap/ja/System.Windows.Forms.Primitives.resources.dll b/bloxstrap/ja/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..1e5c99f Binary files /dev/null and b/bloxstrap/ja/System.Windows.Forms.Primitives.resources.dll differ diff --git a/bloxstrap/ja/System.Windows.Forms.resources.dll b/bloxstrap/ja/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..30e0d65 Binary files /dev/null and b/bloxstrap/ja/System.Windows.Forms.resources.dll differ diff --git a/bloxstrap/ja/System.Windows.Input.Manipulations.resources.dll b/bloxstrap/ja/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..2491757 Binary files /dev/null and b/bloxstrap/ja/System.Windows.Input.Manipulations.resources.dll differ diff --git a/bloxstrap/ja/System.Xaml.resources.dll b/bloxstrap/ja/System.Xaml.resources.dll new file mode 100644 index 0000000..c3ad8df Binary files /dev/null and b/bloxstrap/ja/System.Xaml.resources.dll differ diff --git a/bloxstrap/ja/UIAutomationClient.resources.dll b/bloxstrap/ja/UIAutomationClient.resources.dll new file mode 100644 index 0000000..e94fff6 Binary files /dev/null and b/bloxstrap/ja/UIAutomationClient.resources.dll differ diff --git a/bloxstrap/ja/UIAutomationClientSideProviders.resources.dll b/bloxstrap/ja/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..0143b89 Binary files /dev/null and b/bloxstrap/ja/UIAutomationClientSideProviders.resources.dll differ diff --git a/bloxstrap/ja/UIAutomationProvider.resources.dll b/bloxstrap/ja/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..3f63801 Binary files /dev/null and b/bloxstrap/ja/UIAutomationProvider.resources.dll differ diff --git a/bloxstrap/ja/UIAutomationTypes.resources.dll b/bloxstrap/ja/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..c561bbb Binary files /dev/null and b/bloxstrap/ja/UIAutomationTypes.resources.dll differ diff --git a/bloxstrap/ja/WindowsBase.resources.dll b/bloxstrap/ja/WindowsBase.resources.dll new file mode 100644 index 0000000..96ced6c Binary files /dev/null and b/bloxstrap/ja/WindowsBase.resources.dll differ diff --git a/bloxstrap/ja/WindowsFormsIntegration.resources.dll b/bloxstrap/ja/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..6038046 Binary files /dev/null and b/bloxstrap/ja/WindowsFormsIntegration.resources.dll differ diff --git a/bloxstrap/ko/Microsoft.VisualBasic.Forms.resources.dll b/bloxstrap/ko/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..67a3617 Binary files /dev/null and b/bloxstrap/ko/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/bloxstrap/ko/PresentationCore.resources.dll b/bloxstrap/ko/PresentationCore.resources.dll new file mode 100644 index 0000000..5bd500f Binary files /dev/null and b/bloxstrap/ko/PresentationCore.resources.dll differ diff --git a/bloxstrap/ko/PresentationFramework.resources.dll b/bloxstrap/ko/PresentationFramework.resources.dll new file mode 100644 index 0000000..ebc43b8 Binary files /dev/null and b/bloxstrap/ko/PresentationFramework.resources.dll differ diff --git a/bloxstrap/ko/PresentationUI.resources.dll b/bloxstrap/ko/PresentationUI.resources.dll new file mode 100644 index 0000000..83dedb4 Binary files /dev/null and b/bloxstrap/ko/PresentationUI.resources.dll differ diff --git a/bloxstrap/ko/ReachFramework.resources.dll b/bloxstrap/ko/ReachFramework.resources.dll new file mode 100644 index 0000000..74ec5eb Binary files /dev/null and b/bloxstrap/ko/ReachFramework.resources.dll differ diff --git a/bloxstrap/ko/System.Windows.Controls.Ribbon.resources.dll b/bloxstrap/ko/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..adee640 Binary files /dev/null and b/bloxstrap/ko/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/bloxstrap/ko/System.Windows.Forms.Design.resources.dll b/bloxstrap/ko/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..fd17970 Binary files /dev/null and b/bloxstrap/ko/System.Windows.Forms.Design.resources.dll differ diff --git a/bloxstrap/ko/System.Windows.Forms.Primitives.resources.dll b/bloxstrap/ko/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..b2080d2 Binary files /dev/null and b/bloxstrap/ko/System.Windows.Forms.Primitives.resources.dll differ diff --git a/bloxstrap/ko/System.Windows.Forms.resources.dll b/bloxstrap/ko/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..e024c42 Binary files /dev/null and b/bloxstrap/ko/System.Windows.Forms.resources.dll differ diff --git a/bloxstrap/ko/System.Windows.Input.Manipulations.resources.dll b/bloxstrap/ko/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..5026ed2 Binary files /dev/null and b/bloxstrap/ko/System.Windows.Input.Manipulations.resources.dll differ diff --git a/bloxstrap/ko/System.Xaml.resources.dll b/bloxstrap/ko/System.Xaml.resources.dll new file mode 100644 index 0000000..f86fa65 Binary files /dev/null and b/bloxstrap/ko/System.Xaml.resources.dll differ diff --git a/bloxstrap/ko/UIAutomationClient.resources.dll b/bloxstrap/ko/UIAutomationClient.resources.dll new file mode 100644 index 0000000..49fe82c Binary files /dev/null and b/bloxstrap/ko/UIAutomationClient.resources.dll differ diff --git a/bloxstrap/ko/UIAutomationClientSideProviders.resources.dll b/bloxstrap/ko/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..b612991 Binary files /dev/null and b/bloxstrap/ko/UIAutomationClientSideProviders.resources.dll differ diff --git a/bloxstrap/ko/UIAutomationProvider.resources.dll b/bloxstrap/ko/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..12024b0 Binary files /dev/null and b/bloxstrap/ko/UIAutomationProvider.resources.dll differ diff --git a/bloxstrap/ko/UIAutomationTypes.resources.dll b/bloxstrap/ko/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..8fd7298 Binary files /dev/null and b/bloxstrap/ko/UIAutomationTypes.resources.dll differ diff --git a/bloxstrap/ko/WindowsBase.resources.dll b/bloxstrap/ko/WindowsBase.resources.dll new file mode 100644 index 0000000..ab3d1bc Binary files /dev/null and b/bloxstrap/ko/WindowsBase.resources.dll differ diff --git a/bloxstrap/ko/WindowsFormsIntegration.resources.dll b/bloxstrap/ko/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..ccc07ca Binary files /dev/null and b/bloxstrap/ko/WindowsFormsIntegration.resources.dll differ diff --git a/bloxstrap/mscordaccore.dll b/bloxstrap/mscordaccore.dll new file mode 100644 index 0000000..a7225b5 Binary files /dev/null and b/bloxstrap/mscordaccore.dll differ diff --git a/bloxstrap/mscordaccore_x86_x86_6.0.722.32202.dll b/bloxstrap/mscordaccore_x86_x86_6.0.722.32202.dll new file mode 100644 index 0000000..389b30e Binary files /dev/null and b/bloxstrap/mscordaccore_x86_x86_6.0.722.32202.dll differ diff --git a/bloxstrap/mscordbi.dll b/bloxstrap/mscordbi.dll new file mode 100644 index 0000000..d840eb3 Binary files /dev/null and b/bloxstrap/mscordbi.dll differ diff --git a/bloxstrap/mscorlib.dll b/bloxstrap/mscorlib.dll new file mode 100644 index 0000000..97dd7a3 Binary files /dev/null and b/bloxstrap/mscorlib.dll differ diff --git a/bloxstrap/mscorrc.dll b/bloxstrap/mscorrc.dll new file mode 100644 index 0000000..8bd4c63 Binary files /dev/null and b/bloxstrap/mscorrc.dll differ diff --git a/bloxstrap/msquic.dll b/bloxstrap/msquic.dll new file mode 100644 index 0000000..8cec527 Binary files /dev/null and b/bloxstrap/msquic.dll differ diff --git a/bloxstrap/netstandard.dll b/bloxstrap/netstandard.dll new file mode 100644 index 0000000..23d9101 Binary files /dev/null and b/bloxstrap/netstandard.dll differ diff --git a/bloxstrap/pl/Microsoft.VisualBasic.Forms.resources.dll b/bloxstrap/pl/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..24bb985 Binary files /dev/null and b/bloxstrap/pl/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/bloxstrap/pl/PresentationCore.resources.dll b/bloxstrap/pl/PresentationCore.resources.dll new file mode 100644 index 0000000..7f69b59 Binary files /dev/null and b/bloxstrap/pl/PresentationCore.resources.dll differ diff --git a/bloxstrap/pl/PresentationFramework.resources.dll b/bloxstrap/pl/PresentationFramework.resources.dll new file mode 100644 index 0000000..a94b1f3 Binary files /dev/null and b/bloxstrap/pl/PresentationFramework.resources.dll differ diff --git a/bloxstrap/pl/PresentationUI.resources.dll b/bloxstrap/pl/PresentationUI.resources.dll new file mode 100644 index 0000000..57604cc Binary files /dev/null and b/bloxstrap/pl/PresentationUI.resources.dll differ diff --git a/bloxstrap/pl/ReachFramework.resources.dll b/bloxstrap/pl/ReachFramework.resources.dll new file mode 100644 index 0000000..7077e69 Binary files /dev/null and b/bloxstrap/pl/ReachFramework.resources.dll differ diff --git a/bloxstrap/pl/System.Windows.Controls.Ribbon.resources.dll b/bloxstrap/pl/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..9ff052a Binary files /dev/null and b/bloxstrap/pl/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/bloxstrap/pl/System.Windows.Forms.Design.resources.dll b/bloxstrap/pl/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..4b3f728 Binary files /dev/null and b/bloxstrap/pl/System.Windows.Forms.Design.resources.dll differ diff --git a/bloxstrap/pl/System.Windows.Forms.Primitives.resources.dll b/bloxstrap/pl/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..175de44 Binary files /dev/null and b/bloxstrap/pl/System.Windows.Forms.Primitives.resources.dll differ diff --git a/bloxstrap/pl/System.Windows.Forms.resources.dll b/bloxstrap/pl/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..fc43185 Binary files /dev/null and b/bloxstrap/pl/System.Windows.Forms.resources.dll differ diff --git a/bloxstrap/pl/System.Windows.Input.Manipulations.resources.dll b/bloxstrap/pl/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..46cd731 Binary files /dev/null and b/bloxstrap/pl/System.Windows.Input.Manipulations.resources.dll differ diff --git a/bloxstrap/pl/System.Xaml.resources.dll b/bloxstrap/pl/System.Xaml.resources.dll new file mode 100644 index 0000000..faaf8c6 Binary files /dev/null and b/bloxstrap/pl/System.Xaml.resources.dll differ diff --git a/bloxstrap/pl/UIAutomationClient.resources.dll b/bloxstrap/pl/UIAutomationClient.resources.dll new file mode 100644 index 0000000..b65b7b2 Binary files /dev/null and b/bloxstrap/pl/UIAutomationClient.resources.dll differ diff --git a/bloxstrap/pl/UIAutomationClientSideProviders.resources.dll b/bloxstrap/pl/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..e421d76 Binary files /dev/null and b/bloxstrap/pl/UIAutomationClientSideProviders.resources.dll differ diff --git a/bloxstrap/pl/UIAutomationProvider.resources.dll b/bloxstrap/pl/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..504fd2a Binary files /dev/null and b/bloxstrap/pl/UIAutomationProvider.resources.dll differ diff --git a/bloxstrap/pl/UIAutomationTypes.resources.dll b/bloxstrap/pl/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..05997b7 Binary files /dev/null and b/bloxstrap/pl/UIAutomationTypes.resources.dll differ diff --git a/bloxstrap/pl/WindowsBase.resources.dll b/bloxstrap/pl/WindowsBase.resources.dll new file mode 100644 index 0000000..be97c9d Binary files /dev/null and b/bloxstrap/pl/WindowsBase.resources.dll differ diff --git a/bloxstrap/pl/WindowsFormsIntegration.resources.dll b/bloxstrap/pl/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..2513b39 Binary files /dev/null and b/bloxstrap/pl/WindowsFormsIntegration.resources.dll differ diff --git a/bloxstrap/pt-BR/Microsoft.VisualBasic.Forms.resources.dll b/bloxstrap/pt-BR/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..3dc521c Binary files /dev/null and b/bloxstrap/pt-BR/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/bloxstrap/pt-BR/PresentationCore.resources.dll b/bloxstrap/pt-BR/PresentationCore.resources.dll new file mode 100644 index 0000000..7bfc918 Binary files /dev/null and b/bloxstrap/pt-BR/PresentationCore.resources.dll differ diff --git a/bloxstrap/pt-BR/PresentationFramework.resources.dll b/bloxstrap/pt-BR/PresentationFramework.resources.dll new file mode 100644 index 0000000..396a319 Binary files /dev/null and b/bloxstrap/pt-BR/PresentationFramework.resources.dll differ diff --git a/bloxstrap/pt-BR/PresentationUI.resources.dll b/bloxstrap/pt-BR/PresentationUI.resources.dll new file mode 100644 index 0000000..1085cdf Binary files /dev/null and b/bloxstrap/pt-BR/PresentationUI.resources.dll differ diff --git a/bloxstrap/pt-BR/ReachFramework.resources.dll b/bloxstrap/pt-BR/ReachFramework.resources.dll new file mode 100644 index 0000000..5097037 Binary files /dev/null and b/bloxstrap/pt-BR/ReachFramework.resources.dll differ diff --git a/bloxstrap/pt-BR/System.Windows.Controls.Ribbon.resources.dll b/bloxstrap/pt-BR/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..fbc5687 Binary files /dev/null and b/bloxstrap/pt-BR/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/bloxstrap/pt-BR/System.Windows.Forms.Design.resources.dll b/bloxstrap/pt-BR/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..0bfc465 Binary files /dev/null and b/bloxstrap/pt-BR/System.Windows.Forms.Design.resources.dll differ diff --git a/bloxstrap/pt-BR/System.Windows.Forms.Primitives.resources.dll b/bloxstrap/pt-BR/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..61e64bb Binary files /dev/null and b/bloxstrap/pt-BR/System.Windows.Forms.Primitives.resources.dll differ diff --git a/bloxstrap/pt-BR/System.Windows.Forms.resources.dll b/bloxstrap/pt-BR/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..c858795 Binary files /dev/null and b/bloxstrap/pt-BR/System.Windows.Forms.resources.dll differ diff --git a/bloxstrap/pt-BR/System.Windows.Input.Manipulations.resources.dll b/bloxstrap/pt-BR/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..b9e23f9 Binary files /dev/null and b/bloxstrap/pt-BR/System.Windows.Input.Manipulations.resources.dll differ diff --git a/bloxstrap/pt-BR/System.Xaml.resources.dll b/bloxstrap/pt-BR/System.Xaml.resources.dll new file mode 100644 index 0000000..5351c47 Binary files /dev/null and b/bloxstrap/pt-BR/System.Xaml.resources.dll differ diff --git a/bloxstrap/pt-BR/UIAutomationClient.resources.dll b/bloxstrap/pt-BR/UIAutomationClient.resources.dll new file mode 100644 index 0000000..17cc0a7 Binary files /dev/null and b/bloxstrap/pt-BR/UIAutomationClient.resources.dll differ diff --git a/bloxstrap/pt-BR/UIAutomationClientSideProviders.resources.dll b/bloxstrap/pt-BR/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..cecb50c Binary files /dev/null and b/bloxstrap/pt-BR/UIAutomationClientSideProviders.resources.dll differ diff --git a/bloxstrap/pt-BR/UIAutomationProvider.resources.dll b/bloxstrap/pt-BR/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..358015f Binary files /dev/null and b/bloxstrap/pt-BR/UIAutomationProvider.resources.dll differ diff --git a/bloxstrap/pt-BR/UIAutomationTypes.resources.dll b/bloxstrap/pt-BR/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..d0b33d9 Binary files /dev/null and b/bloxstrap/pt-BR/UIAutomationTypes.resources.dll differ diff --git a/bloxstrap/pt-BR/WindowsBase.resources.dll b/bloxstrap/pt-BR/WindowsBase.resources.dll new file mode 100644 index 0000000..7627636 Binary files /dev/null and b/bloxstrap/pt-BR/WindowsBase.resources.dll differ diff --git a/bloxstrap/pt-BR/WindowsFormsIntegration.resources.dll b/bloxstrap/pt-BR/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..5a54d6b Binary files /dev/null and b/bloxstrap/pt-BR/WindowsFormsIntegration.resources.dll differ diff --git a/bloxstrap/ru/Microsoft.VisualBasic.Forms.resources.dll b/bloxstrap/ru/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..44fb9c4 Binary files /dev/null and b/bloxstrap/ru/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/bloxstrap/ru/PresentationCore.resources.dll b/bloxstrap/ru/PresentationCore.resources.dll new file mode 100644 index 0000000..e70be55 Binary files /dev/null and b/bloxstrap/ru/PresentationCore.resources.dll differ diff --git a/bloxstrap/ru/PresentationFramework.resources.dll b/bloxstrap/ru/PresentationFramework.resources.dll new file mode 100644 index 0000000..6f08df5 Binary files /dev/null and b/bloxstrap/ru/PresentationFramework.resources.dll differ diff --git a/bloxstrap/ru/PresentationUI.resources.dll b/bloxstrap/ru/PresentationUI.resources.dll new file mode 100644 index 0000000..1fc8aaa Binary files /dev/null and b/bloxstrap/ru/PresentationUI.resources.dll differ diff --git a/bloxstrap/ru/ReachFramework.resources.dll b/bloxstrap/ru/ReachFramework.resources.dll new file mode 100644 index 0000000..b6ef6ab Binary files /dev/null and b/bloxstrap/ru/ReachFramework.resources.dll differ diff --git a/bloxstrap/ru/System.Windows.Controls.Ribbon.resources.dll b/bloxstrap/ru/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..ea7123a Binary files /dev/null and b/bloxstrap/ru/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/bloxstrap/ru/System.Windows.Forms.Design.resources.dll b/bloxstrap/ru/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..1af04fa Binary files /dev/null and b/bloxstrap/ru/System.Windows.Forms.Design.resources.dll differ diff --git a/bloxstrap/ru/System.Windows.Forms.Primitives.resources.dll b/bloxstrap/ru/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..ec39f47 Binary files /dev/null and b/bloxstrap/ru/System.Windows.Forms.Primitives.resources.dll differ diff --git a/bloxstrap/ru/System.Windows.Forms.resources.dll b/bloxstrap/ru/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..9f35cfa Binary files /dev/null and b/bloxstrap/ru/System.Windows.Forms.resources.dll differ diff --git a/bloxstrap/ru/System.Windows.Input.Manipulations.resources.dll b/bloxstrap/ru/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..c6781fc Binary files /dev/null and b/bloxstrap/ru/System.Windows.Input.Manipulations.resources.dll differ diff --git a/bloxstrap/ru/System.Xaml.resources.dll b/bloxstrap/ru/System.Xaml.resources.dll new file mode 100644 index 0000000..3e1fa03 Binary files /dev/null and b/bloxstrap/ru/System.Xaml.resources.dll differ diff --git a/bloxstrap/ru/UIAutomationClient.resources.dll b/bloxstrap/ru/UIAutomationClient.resources.dll new file mode 100644 index 0000000..3a287ac Binary files /dev/null and b/bloxstrap/ru/UIAutomationClient.resources.dll differ diff --git a/bloxstrap/ru/UIAutomationClientSideProviders.resources.dll b/bloxstrap/ru/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..0d154ae Binary files /dev/null and b/bloxstrap/ru/UIAutomationClientSideProviders.resources.dll differ diff --git a/bloxstrap/ru/UIAutomationProvider.resources.dll b/bloxstrap/ru/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..2f00970 Binary files /dev/null and b/bloxstrap/ru/UIAutomationProvider.resources.dll differ diff --git a/bloxstrap/ru/UIAutomationTypes.resources.dll b/bloxstrap/ru/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..fb83c25 Binary files /dev/null and b/bloxstrap/ru/UIAutomationTypes.resources.dll differ diff --git a/bloxstrap/ru/WindowsBase.resources.dll b/bloxstrap/ru/WindowsBase.resources.dll new file mode 100644 index 0000000..ebb509d Binary files /dev/null and b/bloxstrap/ru/WindowsBase.resources.dll differ diff --git a/bloxstrap/ru/WindowsFormsIntegration.resources.dll b/bloxstrap/ru/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..067e910 Binary files /dev/null and b/bloxstrap/ru/WindowsFormsIntegration.resources.dll differ diff --git a/bloxstrap/tr/Microsoft.VisualBasic.Forms.resources.dll b/bloxstrap/tr/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..547d3fe Binary files /dev/null and b/bloxstrap/tr/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/bloxstrap/tr/PresentationCore.resources.dll b/bloxstrap/tr/PresentationCore.resources.dll new file mode 100644 index 0000000..0441ceb Binary files /dev/null and b/bloxstrap/tr/PresentationCore.resources.dll differ diff --git a/bloxstrap/tr/PresentationFramework.resources.dll b/bloxstrap/tr/PresentationFramework.resources.dll new file mode 100644 index 0000000..4a63dbc Binary files /dev/null and b/bloxstrap/tr/PresentationFramework.resources.dll differ diff --git a/bloxstrap/tr/PresentationUI.resources.dll b/bloxstrap/tr/PresentationUI.resources.dll new file mode 100644 index 0000000..c8ddcae Binary files /dev/null and b/bloxstrap/tr/PresentationUI.resources.dll differ diff --git a/bloxstrap/tr/ReachFramework.resources.dll b/bloxstrap/tr/ReachFramework.resources.dll new file mode 100644 index 0000000..130df52 Binary files /dev/null and b/bloxstrap/tr/ReachFramework.resources.dll differ diff --git a/bloxstrap/tr/System.Windows.Controls.Ribbon.resources.dll b/bloxstrap/tr/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..8f54726 Binary files /dev/null and b/bloxstrap/tr/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/bloxstrap/tr/System.Windows.Forms.Design.resources.dll b/bloxstrap/tr/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..e797baa Binary files /dev/null and b/bloxstrap/tr/System.Windows.Forms.Design.resources.dll differ diff --git a/bloxstrap/tr/System.Windows.Forms.Primitives.resources.dll b/bloxstrap/tr/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..4d2dc14 Binary files /dev/null and b/bloxstrap/tr/System.Windows.Forms.Primitives.resources.dll differ diff --git a/bloxstrap/tr/System.Windows.Forms.resources.dll b/bloxstrap/tr/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..fb9a141 Binary files /dev/null and b/bloxstrap/tr/System.Windows.Forms.resources.dll differ diff --git a/bloxstrap/tr/System.Windows.Input.Manipulations.resources.dll b/bloxstrap/tr/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..8f3f665 Binary files /dev/null and b/bloxstrap/tr/System.Windows.Input.Manipulations.resources.dll differ diff --git a/bloxstrap/tr/System.Xaml.resources.dll b/bloxstrap/tr/System.Xaml.resources.dll new file mode 100644 index 0000000..063da6d Binary files /dev/null and b/bloxstrap/tr/System.Xaml.resources.dll differ diff --git a/bloxstrap/tr/UIAutomationClient.resources.dll b/bloxstrap/tr/UIAutomationClient.resources.dll new file mode 100644 index 0000000..36d3c0c Binary files /dev/null and b/bloxstrap/tr/UIAutomationClient.resources.dll differ diff --git a/bloxstrap/tr/UIAutomationClientSideProviders.resources.dll b/bloxstrap/tr/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..32ea4fc Binary files /dev/null and b/bloxstrap/tr/UIAutomationClientSideProviders.resources.dll differ diff --git a/bloxstrap/tr/UIAutomationProvider.resources.dll b/bloxstrap/tr/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..844831d Binary files /dev/null and b/bloxstrap/tr/UIAutomationProvider.resources.dll differ diff --git a/bloxstrap/tr/UIAutomationTypes.resources.dll b/bloxstrap/tr/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..8289feb Binary files /dev/null and b/bloxstrap/tr/UIAutomationTypes.resources.dll differ diff --git a/bloxstrap/tr/WindowsBase.resources.dll b/bloxstrap/tr/WindowsBase.resources.dll new file mode 100644 index 0000000..9ff4f97 Binary files /dev/null and b/bloxstrap/tr/WindowsBase.resources.dll differ diff --git a/bloxstrap/tr/WindowsFormsIntegration.resources.dll b/bloxstrap/tr/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..1d651e3 Binary files /dev/null and b/bloxstrap/tr/WindowsFormsIntegration.resources.dll differ diff --git a/bloxstrap/ucrtbase.dll b/bloxstrap/ucrtbase.dll new file mode 100644 index 0000000..9ca1486 Binary files /dev/null and b/bloxstrap/ucrtbase.dll differ diff --git a/bloxstrap/vcruntime140_cor3.dll b/bloxstrap/vcruntime140_cor3.dll new file mode 100644 index 0000000..8a8e69d Binary files /dev/null and b/bloxstrap/vcruntime140_cor3.dll differ diff --git a/bloxstrap/wpfgfx_cor3.dll b/bloxstrap/wpfgfx_cor3.dll new file mode 100644 index 0000000..1105ecc Binary files /dev/null and b/bloxstrap/wpfgfx_cor3.dll differ diff --git a/bloxstrap/zh-Hans/Microsoft.VisualBasic.Forms.resources.dll b/bloxstrap/zh-Hans/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..86acab5 Binary files /dev/null and b/bloxstrap/zh-Hans/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/bloxstrap/zh-Hans/PresentationCore.resources.dll b/bloxstrap/zh-Hans/PresentationCore.resources.dll new file mode 100644 index 0000000..580b609 Binary files /dev/null and b/bloxstrap/zh-Hans/PresentationCore.resources.dll differ diff --git a/bloxstrap/zh-Hans/PresentationFramework.resources.dll b/bloxstrap/zh-Hans/PresentationFramework.resources.dll new file mode 100644 index 0000000..c61a8b4 Binary files /dev/null and b/bloxstrap/zh-Hans/PresentationFramework.resources.dll differ diff --git a/bloxstrap/zh-Hans/PresentationUI.resources.dll b/bloxstrap/zh-Hans/PresentationUI.resources.dll new file mode 100644 index 0000000..ac1d845 Binary files /dev/null and b/bloxstrap/zh-Hans/PresentationUI.resources.dll differ diff --git a/bloxstrap/zh-Hans/ReachFramework.resources.dll b/bloxstrap/zh-Hans/ReachFramework.resources.dll new file mode 100644 index 0000000..3c7f967 Binary files /dev/null and b/bloxstrap/zh-Hans/ReachFramework.resources.dll differ diff --git a/bloxstrap/zh-Hans/System.Windows.Controls.Ribbon.resources.dll b/bloxstrap/zh-Hans/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..5cc4288 Binary files /dev/null and b/bloxstrap/zh-Hans/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/bloxstrap/zh-Hans/System.Windows.Forms.Design.resources.dll b/bloxstrap/zh-Hans/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..3ca79f7 Binary files /dev/null and b/bloxstrap/zh-Hans/System.Windows.Forms.Design.resources.dll differ diff --git a/bloxstrap/zh-Hans/System.Windows.Forms.Primitives.resources.dll b/bloxstrap/zh-Hans/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..8176ca2 Binary files /dev/null and b/bloxstrap/zh-Hans/System.Windows.Forms.Primitives.resources.dll differ diff --git a/bloxstrap/zh-Hans/System.Windows.Forms.resources.dll b/bloxstrap/zh-Hans/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..7c051ce Binary files /dev/null and b/bloxstrap/zh-Hans/System.Windows.Forms.resources.dll differ diff --git a/bloxstrap/zh-Hans/System.Windows.Input.Manipulations.resources.dll b/bloxstrap/zh-Hans/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..c121435 Binary files /dev/null and b/bloxstrap/zh-Hans/System.Windows.Input.Manipulations.resources.dll differ diff --git a/bloxstrap/zh-Hans/System.Xaml.resources.dll b/bloxstrap/zh-Hans/System.Xaml.resources.dll new file mode 100644 index 0000000..ef4ddc2 Binary files /dev/null and b/bloxstrap/zh-Hans/System.Xaml.resources.dll differ diff --git a/bloxstrap/zh-Hans/UIAutomationClient.resources.dll b/bloxstrap/zh-Hans/UIAutomationClient.resources.dll new file mode 100644 index 0000000..6503d77 Binary files /dev/null and b/bloxstrap/zh-Hans/UIAutomationClient.resources.dll differ diff --git a/bloxstrap/zh-Hans/UIAutomationClientSideProviders.resources.dll b/bloxstrap/zh-Hans/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..081fba8 Binary files /dev/null and b/bloxstrap/zh-Hans/UIAutomationClientSideProviders.resources.dll differ diff --git a/bloxstrap/zh-Hans/UIAutomationProvider.resources.dll b/bloxstrap/zh-Hans/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..5178557 Binary files /dev/null and b/bloxstrap/zh-Hans/UIAutomationProvider.resources.dll differ diff --git a/bloxstrap/zh-Hans/UIAutomationTypes.resources.dll b/bloxstrap/zh-Hans/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..95aca19 Binary files /dev/null and b/bloxstrap/zh-Hans/UIAutomationTypes.resources.dll differ diff --git a/bloxstrap/zh-Hans/WindowsBase.resources.dll b/bloxstrap/zh-Hans/WindowsBase.resources.dll new file mode 100644 index 0000000..10cfcf8 Binary files /dev/null and b/bloxstrap/zh-Hans/WindowsBase.resources.dll differ diff --git a/bloxstrap/zh-Hans/WindowsFormsIntegration.resources.dll b/bloxstrap/zh-Hans/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..c80bea0 Binary files /dev/null and b/bloxstrap/zh-Hans/WindowsFormsIntegration.resources.dll differ diff --git a/bloxstrap/zh-Hant/Microsoft.VisualBasic.Forms.resources.dll b/bloxstrap/zh-Hant/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..99fb57f Binary files /dev/null and b/bloxstrap/zh-Hant/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/bloxstrap/zh-Hant/PresentationCore.resources.dll b/bloxstrap/zh-Hant/PresentationCore.resources.dll new file mode 100644 index 0000000..1a86cb1 Binary files /dev/null and b/bloxstrap/zh-Hant/PresentationCore.resources.dll differ diff --git a/bloxstrap/zh-Hant/PresentationFramework.resources.dll b/bloxstrap/zh-Hant/PresentationFramework.resources.dll new file mode 100644 index 0000000..20340b1 Binary files /dev/null and b/bloxstrap/zh-Hant/PresentationFramework.resources.dll differ diff --git a/bloxstrap/zh-Hant/PresentationUI.resources.dll b/bloxstrap/zh-Hant/PresentationUI.resources.dll new file mode 100644 index 0000000..d94ecbe Binary files /dev/null and b/bloxstrap/zh-Hant/PresentationUI.resources.dll differ diff --git a/bloxstrap/zh-Hant/ReachFramework.resources.dll b/bloxstrap/zh-Hant/ReachFramework.resources.dll new file mode 100644 index 0000000..4353767 Binary files /dev/null and b/bloxstrap/zh-Hant/ReachFramework.resources.dll differ diff --git a/bloxstrap/zh-Hant/System.Windows.Controls.Ribbon.resources.dll b/bloxstrap/zh-Hant/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..ba5eb7d Binary files /dev/null and b/bloxstrap/zh-Hant/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/bloxstrap/zh-Hant/System.Windows.Forms.Design.resources.dll b/bloxstrap/zh-Hant/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..6fad639 Binary files /dev/null and b/bloxstrap/zh-Hant/System.Windows.Forms.Design.resources.dll differ diff --git a/bloxstrap/zh-Hant/System.Windows.Forms.Primitives.resources.dll b/bloxstrap/zh-Hant/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..8abe507 Binary files /dev/null and b/bloxstrap/zh-Hant/System.Windows.Forms.Primitives.resources.dll differ diff --git a/bloxstrap/zh-Hant/System.Windows.Forms.resources.dll b/bloxstrap/zh-Hant/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..a0f44e0 Binary files /dev/null and b/bloxstrap/zh-Hant/System.Windows.Forms.resources.dll differ diff --git a/bloxstrap/zh-Hant/System.Windows.Input.Manipulations.resources.dll b/bloxstrap/zh-Hant/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..3e5f933 Binary files /dev/null and b/bloxstrap/zh-Hant/System.Windows.Input.Manipulations.resources.dll differ diff --git a/bloxstrap/zh-Hant/System.Xaml.resources.dll b/bloxstrap/zh-Hant/System.Xaml.resources.dll new file mode 100644 index 0000000..62f1640 Binary files /dev/null and b/bloxstrap/zh-Hant/System.Xaml.resources.dll differ diff --git a/bloxstrap/zh-Hant/UIAutomationClient.resources.dll b/bloxstrap/zh-Hant/UIAutomationClient.resources.dll new file mode 100644 index 0000000..cd415e7 Binary files /dev/null and b/bloxstrap/zh-Hant/UIAutomationClient.resources.dll differ diff --git a/bloxstrap/zh-Hant/UIAutomationClientSideProviders.resources.dll b/bloxstrap/zh-Hant/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..1f7e949 Binary files /dev/null and b/bloxstrap/zh-Hant/UIAutomationClientSideProviders.resources.dll differ diff --git a/bloxstrap/zh-Hant/UIAutomationProvider.resources.dll b/bloxstrap/zh-Hant/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..b295228 Binary files /dev/null and b/bloxstrap/zh-Hant/UIAutomationProvider.resources.dll differ diff --git a/bloxstrap/zh-Hant/UIAutomationTypes.resources.dll b/bloxstrap/zh-Hant/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..fde540e Binary files /dev/null and b/bloxstrap/zh-Hant/UIAutomationTypes.resources.dll differ diff --git a/bloxstrap/zh-Hant/WindowsBase.resources.dll b/bloxstrap/zh-Hant/WindowsBase.resources.dll new file mode 100644 index 0000000..63dbc51 Binary files /dev/null and b/bloxstrap/zh-Hant/WindowsBase.resources.dll differ diff --git a/bloxstrap/zh-Hant/WindowsFormsIntegration.resources.dll b/bloxstrap/zh-Hant/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..a42a3d9 Binary files /dev/null and b/bloxstrap/zh-Hant/WindowsFormsIntegration.resources.dll differ