Settings

Blockchain
Network
Unit
Language
Theme
Sound New Block

Transaction

3ecdae5205453efa65b545ed863a58b8861d0360e3980f59484ff86634d39b51
Timestamp (utc)
2022-01-27 20:51:21
Fee Paid
0.00003915 BSV
(
0.01655232 BSV
-
0.01651317 BSV
)
Fee Rate
599.9 sat/KB
Version
1
Confirmations
259,255
Size Stats
6,526 B

2 Outputs

Total Output:
0.01651317 BSV
  • j!ëFOQê°Z±zìI œˆâkŸE !b"à¥2&7ÜR M, Torrent, Bandwidth continue } ifwinexist, Torrent, version { ;Decline upgrade to newer version controlclick, Button3, Torrent, version controlclick, Button2, Torrent, version continue } break } ;Sets parameter to close uTorrent once all downloads are complete winactivate, Torrent 2.0 send !o send a{Down}{Enter} winwaitclose, Torrent 2.0 " } w_download_manual_to() { _W_packagename="$1" _W_url="$2" _W_file="$3" _W_shasum="$4" # shellcheck disable=SC2154 case "$media" in "download") w_info "FAIL: bug: media type is download, but w_download_manual was called. Programmer, please change verb's media type to manual_download." ;; esac if ! test -f "$W_CACHE/$_W_packagename/$_W_file"; then case $LANG in da*) _W_dlmsg="Hent venligst filen $_W_file fra $_W_url og placér den i $W_CACHE/$_W_packagename, kør derefter dette skript.";; de*) _W_dlmsg="Bitte laden Sie $_W_file von $_W_url runter, stellen Sie's in $W_CACHE/$_W_packagename, dann wiederholen Sie dieses Kommando.";; pl*) _W_dlmsg="Proszę pobrać plik $_W_file z $_W_url, następnie umieścić go w $W_CACHE/$_W_packagename, a na końcu uruchomić ponownie ten skrypt.";; ru*) _W_dlmsg="Пожалуйста, скачайте файл $_W_file по адресу $_W_url, и поместите его в $W_CACHE/$_W_packagename, а затем запустите winetricks заново.";; uk*) _W_dlmsg="Будь ласка, звантажте $_W_file з $_W_url, розташуйте в $W_CACHE/$_W_packagename, потім запустіть скрипт знову.";; zh_CN*) _W_dlmsg="请从 $_W_url 下载 $_W_file,并置放于 $W_CACHE/$_W_packagename, 然后重新运行 winetricks.";; zh_TW*|zh_HK*) _W_dlmsg="請從 $_W_url 下載 $_W_file,并置放於 $W_CACHE/$_W_packagename, 然后重新執行 winetricks.";; *) _W_dlmsg="Please download $_W_file from $_W_url, place it in $W_CACHE/$_W_packagename, then re-run this script.";; esac mkdir -p "$W_CACHE/$_W_packagename" w_open_folder "$W_CACHE/$_W_packagename" w_open_webpage "$_W_url" sleep 3 # give some time for web browser to open w_die "$_W_dlmsg" # FIXME: wait in loop until file is finished? fi if test "$_W_shasum"; then w_verify_shasum "$_W_shasum" "$W_CACHE/$_W_packagename/$_W_file" fi unset _W_dlmsg _W_file _W_sha256sum _W_url } w_download_manual() { w_download_manual_to "$W_PACKAGE" "$@" } # Turn off news, overlays, and friend interaction in Steam # Run from inside C:\Program Files\Steam w_steam_safemode() { cat > "$W_TMP/steamconfig.pl" <<"_EOF_" #!/usr/bin/env perl # Parse Steam's localconfig.vcf, add settings to it, and write it out again # The file is a recursive dictionary # # FILE :== CONTAINER # # VALUE :== "name" "value" NEWLINE # # CONTAINER :== "name" NEWLINE "{" NEWLINE ( VALUE | CONTAINER ) * "}" NEWLINE # # We load it into a recursive hash. use strict; use warnings; sub read_into_container{ my( $pcontainer ) = @_; $_ = <FILE> || w_die "Can't read first line of container"; /{/ || w_die "First line of container was not {"; while (<FILE>) { chomp; if (/"([^"]*)"\s*"([^"]*)"$/) { ${$pcontainer}{$1} = $2; } elsif (/"([^"]*)"$/) { my( %newcon, $name ); $name = $1; read_into_container(\%newcon); ${$pcontainer}{$name} = \%newcon; } elsif (/}/) { return; } else { w_die "huh?"; } } } sub dump_container{ my( $pcontainer, $indent ) = @_; foreach (sort(keys(%{$pcontainer}))) { my( $val ) = ${$pcontainer}{$_}; if (ref $val eq 'HASH') { print "${indent}\"$_\"\n"; print "${indent}{\n"; dump_container($val, "$indent\t"); print "${indent}}\n"; } else { print "${indent}\"${_}\"\t\t\"$val\"\n"; } } } # Disable anything unsafe or annoying sub disable_notifications{ my( $pcontainer ) = @_; ${$pcontainer}{"friends"}{"PersonaStateDesired"} = "1"; ${$pcontainer}{"friends"}{"Notifications_ShowIngame"} = "0"; ${$pcontainer}{"friends"}{"Sounds_PlayIngame"} = "0"; ${$pcontainer}{"friends"}{"Notifications_ShowOnline"} = "0"; ${$pcontainer}{"friends"}{"Sounds_PlayOnline"} = "0"; ${$pcontainer}{"friends"}{"Notifications_ShowMessage"} = "0"; ${$pcontainer}{"friends"}{"Sounds_PlayMessage"} = "0"; ${$pcontainer}{"friends"}{"AutoSignIntoFriends"} = "0"; ${$pcontainer}{"News"}{"NotifyAvailableGames"} = "0"; ${$pcontainer}{"system"}{"EnableGameOverlay"} = "0"; } # Read the file my(%top); open FILE, $ARGV[0] || w_die "cannot open ".$ARGV[0]; my($line); $line = <FILE> || w_die "Could not read first line from ".$ARGV[0]; $line =~ /"UserLocalConfigStore"/ || w_die "this is not a localconfig.vdf file"; read_into_container(\%top); # Modify it disable_notifications(\%top); # Write modified file print "\"UserLocalConfigStore\"\n"; print "{\n"; dump_container(\%top, "\t"); print "}\n"; _EOF_ for file in userdata/*/config/localconfig.vdf ; do cp "$file" "$file.old" perl "$W_TMP"/steamconfig.pl "$file.old" > "$file" done } w_question() { case $WINETRICKS_GUI in *zenity) $WINETRICKS_GUI --entry --text "$1" ;; *kdialog) $WINETRICKS_GUI --inputbox "$1" ;; *xmessage) w_die "sorry, can't ask question with xmessage" ;; none) # Using printf instead of echo because we don't want a newline printf "%s" "$1" >&2 ; read -r W_ANSWER ; echo "$W_ANSWER"; unset W_ANSWER;; esac } # Reads steam username and password from environment, cache, or user # If had to ask user, cache answer. w_steam_getid() { #TODO: Translate _W_steamidms@Salted__«[—c6Œ0;î6¦öIøáR›±á1䊘F¬cah˜v•¸GJއ5ièºÚvÒuÄA ³.•¨®•„@è:Ož@Uï® ]÷ótä¿;$ ˆ¯p4p|ZÙÙjoµK‹ÜÀ%ÌjùŠ mP­™fG¸Mˆ̎~<w~
    https://whatsonchain.com/tx/3ecdae5205453efa65b545ed863a58b8861d0360e3980f59484ff86634d39b51