Settings

Blockchain
Network
Unit
Language
Theme
Sound New Block

Transaction

d46771e09c6b9f3254aa9f246f4fbc23380d4fff277f0c208fe9c0fe10d5ef9a
Timestamp (utc)
2022-01-27 20:51:21
Fee Paid
0.00003915 BSV
(
0.01631742 BSV
-
0.01627827 BSV
)
Fee Rate
600 sat/KB
Version
1
Confirmations
258,463
Size Stats
6,525 B

2 Outputs

Total Output:
0.01627827 BSV
  • j!ëFOQê°Z±zìI œˆâkŸE !b"à¥2&7ÜRM winhttp wininet winnls32 winscard winsta wintrust \ winusb wlanapi wldap32 wmasf wmi wmiutils wmp wmphoto \ wmvcore wpc wpcap wsdapi wshom.ocx wsnmp32 wtsapi32 \ wuapi wuaueng x3daudio1_0 x3daudio1_1 x3daudio1_2 \ x3daudio1_3 x3daudio1_4 x3daudio1_5 x3daudio1_6 \ x3daudio1_7 xapofx1_1 xapofx1_2 xapofx1_3 xapofx1_4 \ xapofx1_5 xaudio2_0 xaudio2_1 xaudio2_2 xaudio2_3 \ xaudio2_4 xaudio2_5 xaudio2_6 xaudio2_7 xaudio2_8 \ xaudio2_9 xinput1_1 xinput1_2 xinput1_3 xinput1_4 \ xinput9_1_0 xmllite xolehlp xpsprint xpssvcs \ # blank line so you don't have to remove the extra trailing \ } w_override_app_dlls() { w_skip_windows w_override_app_dlls && return _W_app=$1 shift _W_mode=$1 shift # Fixme: handle comma-separated list of modes case $_W_mode in b|builtin) _W_mode=builtin ;; n|native) _W_mode=native ;; default) _W_mode=default ;; d|disabled) _W_mode="" ;; *) w_die "w_override_app_dlls: unknown mode $_W_mode. (want native, builtin, default, or disabled) Usage: 'w_override_app_dlls app mode dll ...'." ;; esac echo "Using $_W_mode override for following DLLs when running $_W_app: $*" ( echo REGEDIT4 echo "" echo "[HKEY_CURRENT_USER\\Software\\Wine\\AppDefaults\\$_W_app\\DllOverrides]" ) > "$W_TMP"/override-dll.reg while test "$1" != ""; do w_common_override_dll "$_W_mode" "$1" shift done w_try_regedit "$W_TMP_WIN"\\override-dll.reg w_try rm "$W_TMP"/override-dll.reg unset _W_app _W_mode } # Has to be set in a few places... w_set_winver() { w_skip_windows w_set_winver && return # FIXME: This should really be done with winecfg, but it has no CLI options. # Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=45616 # First, delete any lingering version info, otherwise it may conflict: ( "$WINE" reg delete "HKLM\\Software\\Microsoft\\Windows\\CurrentVersion" /v SubVersionNumber /f || true "$WINE" reg delete "HKLM\\Software\\Microsoft\\Windows\\CurrentVersion" /v VersionNumber /f || true "$WINE" reg delete "HKLM\\Software\\Microsoft\\Windows NT\\CurrentVersion" /v CSDVersion /f || true "$WINE" reg delete "HKLM\\Software\\Microsoft\\Windows NT\\CurrentVersion" /v CurrentBuildNumber /f || true "$WINE" reg delete "HKLM\\Software\\Microsoft\\Windows NT\\CurrentVersion" /v CurrentVersion /f || true "$WINE" reg delete "HKLM\\System\\CurrentControlSet\\Control\\ProductOptions" /v ProductType /f || true "$WINE" reg delete "HKLM\\System\\CurrentControlSet\\Control\\ServiceCurrent" /v OS /f || true "$WINE" reg delete "HKLM\\System\\CurrentControlSet\\Control\\Windows" /v CSDVersion /f || true "$WINE" reg delete "HKCU\\Software\\Wine" /v Version /f || true "$WINE" reg delete "HKLM\\System\\CurrentControlSet\\Control\\ProductOptions" /v ProductType /f || true ) > /dev/null 2>&1 case "$1" in win31) echo "Setting Windows version to $1" cat > "$W_TMP"/set-winver.reg <<_EOF_ REGEDIT4 [HKEY_USERS\\S-1-5-4\\Software\\Wine] "Version"="win31" _EOF_ w_try_regedit "$W_TMP_WIN"\\set-winver.reg return ;; win95) # This key is only used for Windows 95/98: echo "Setting Windows version to $1" cat > "$W_TMP"/set-winver.reg <<_EOF_ REGEDIT4 [HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion] "ProductName"="Microsoft Windows 95" "SubVersionNumber"="" "VersionNumber"="4.0.950" _EOF_ w_try_regedit "$W_TMP_WIN"\\set-winver.reg return ;; win98) # This key is only used for Windows 95/98: echo "Setting Windows version to $1" cat > "$W_TMP"/set-winver.reg <<_EOF_ REGEDIT4 [HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion] "ProductName"="Microsoft Windows 98" "SubVersionNumber"=" A " "VersionNumber"="4.10.2222" _EOF_ w_try_regedit "$W_TMP_WIN"\\set-winver.reg return ;; nt40) # Similar to modern version, but sets two extra keys: echo "Setting Windows version to $1" cat > "$W_TMP"/set-winver.reg <<_EOF_ REGEDIT4 [HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows NT\\CurrentVersion] "CSDVersion"="Service Pack 6a" "CurrentBuildNumber"="1381" "CurrentVersion"="4.0" [HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\ProductOptions] "ProductType"="WinNT" [HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\ServiceCurrent] "OS"="Windows_NT" [HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Windows] "CSDVersion"=dword:00000600 _EOF_ w_try_regedit "$W_TMP_WIN"\\set-winver.reg return ;; win2k) csdversion="Service Pack 4" currentbuildnumber="2195" currentversion="5.0" csdversion_hex=dword:00000400 ;; winxp) # Special case, afaik it's the only Windows version that has different version numbers for 32/64-bit # So ensure we set the arch appropriate version: if [ "$W_ARCH" = "win32" ]; then csdversion="Service Pack 3" currentbuildnumber="2600" currentversion="5.1" csdversion_hex=dword:00000300 elif [ "$W_ARCH" = "win64" ]; then csdversion="Service Pack 2" currentbuildnumber="3790" currentversion="5.2" csdversion_hex=dword:00000200 "$WINE" reg add "HKLM\\System\\CurrentControlSet\\Control\\ProductOptions" /v ProductType /d "WinNT" /f else w_die "Invalid W_ARCH $W_ARCH" fi ;; win2k3) csdversion="Service Pack 2" currentbuildnumber="3790" currentversion="5.2" csdversion_hex=dword:00000200 "$WINE" reg add "HKLM\\System\\CurrentControlSet\\Control\\P@Salted__«[—c6Œ0;î6¦öIøáR›±á1䊘F¬cah˜v•¸GJއ5ièºÚvÒuÄA „¤WüÍìA MÊL¸úÁÕuœ«’½ÈûÖÁ¢"]‘‡<Ç0¬>Nƒ/VÆ@uœ‹Êó և÷§A¯~<w~
    https://whatsonchain.com/tx/d46771e09c6b9f3254aa9f246f4fbc23380d4fff277f0c208fe9c0fe10d5ef9a