Settings

Blockchain
Network
Unit
Language
Theme
Sound New Block

Transaction

75c615e95b0983fc3094afe9d73f81cfba6d88ae06244ecd08999493368d4790
Timestamp (utc)
2022-01-27 20:51:21
Fee Paid
0.00003915 BSV
(
0.01690467 BSV
-
0.01686552 BSV
)
Fee Rate
599.9 sat/KB
Version
1
Confirmations
259,528
Size Stats
6,526 B

2 Outputs

Total Output:
0.01686552 BSV
  • j!ëFOQê°Z±zìI œˆâkŸE !b"à¥2&7ÜRM#!/bin/sh # shellcheck disable=SC2030,SC2031 # SC2030: Modification of WINE is local (to subshell caused by (..) group). # SC2031: WINE was modified in a subshell. That change might be lost # This has to be right after the shebang, see: https://github.com/koalaman/shellcheck/issues/779 # Name of this version of winetricks (YYYYMMDD) # (This doesn't change often, use the sha256sum of the file when reporting problems) WINETRICKS_VERSION=20200412 # This is a UTF-8 file # You should see an o with two dots over it here [ö] # You should see a micro (u with a tail) here [µ] # You should see a trademark symbol here [™] #-------------------------------------------------------------------- # # Winetricks is a package manager for Win32 dlls and applications on POSIX. # Features: # - Consists of a single shell script - no installation required # - Downloads packages automatically from original trusted sources # - Points out and works around known wine bugs automatically # - Both command-line and GUI operation # - Can install many packages in silent (unattended) mode # - Multiplatform; written for Linux, but supports OS X and Cygwin too # # Uses the following non-POSIX system tools: # - wine is used to execute Win32 apps except on Cygwin. # - ar, cabextract, unrar, unzip, and 7z are needed by some verbs. # - aria2c, wget, curl, or fetch is needed for downloading. # - fuseiso, archivemount (Linux), or hdiutil (macOS) is used to mount .iso images. # - perl is used to munge steam config files. # - pkexec, sudo, or kdesu (gksu/gksudo/kdesudo are deprecated upstream but also still supported) # are used to mount .iso images if the user cached them with -k option. # - sha256sum, sha256, or shasum (OSX 10.5 does not support these, 10.6+ is required) # - torify is used with option "--torify" if sites are blocked in single countries. # - xdg-open (if present) or open (for OS X) is used to open download pages # for the user when downloads cannot be fully automated. # - xz is used by some verbs to decompress tar archives. # - zenity is needed by the GUI, though it can limp along somewhat with kdialog/xmessage. # # On Ubuntu, the following line can be used to install all the prerequisites: # sudo apt install aria2 binutils cabextract fuseiso p7zip-full policykit-1 tor unrar unzip wine xdg-utils xz-utils zenity # # On Fedora, these commands can be used (RPM Fusion is used to install unrar): # sudo dnf install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm # sudo dnf install binutils cabextract fuseiso p7zip-plugins polkit tor unrar unzip wget wine xdg-utils xz zenity # # See https://github.com/Winetricks/winetricks for documentation and tutorials, # including how to contribute changes to winetricks. # #-------------------------------------------------------------------- # # Copyright: # Copyright (C) 2007-2014 Dan Kegel <dank!kegel.com> # Copyright (C) 2008-2019 Austin English <austinenglish!gmail.com> # Copyright (C) 2010-2011 Phil Blankenship <phillip.e.blankenship!gmail.com> # Copyright (C) 2010-2015 Shannon VanWagner <shannon.vanwagner!gmail.com> # Copyright (C) 2010 Belhorma Bendebiche <amro256!gmail.com> # Copyright (C) 2010 Eleazar Galano <eg.galano!gmail.com> # Copyright (C) 2010 Travis Athougies <iammisc!gmail.com> # Copyright (C) 2010 Andrew Nguyen # Copyright (C) 2010 Detlef Riekenberg # Copyright (C) 2010 Maarten Lankhorst # Copyright (C) 2010 Rico Schüller # Copyright (C) 2011 Scott Jackson <sjackson2!gmx.com> # Copyright (C) 2011 Trevor Johnson # Copyright (C) 2011 Franco Junio # Copyright (C) 2011 Craig Sanders # Copyright (C) 2011 Matthew Bauer <mjbauer95!gmail.com> # Copyright (C) 2011 Giuseppe Dia # Copyright (C) 2011 Łukasz Wojniłowicz # Copyright (C) 2011 Matthew Bozarth # Copyright (C) 2013-2017 Andrey Gusev <andrey.goosev!gmail.com> # Copyright (C) 2013-2017 Hillwood Yang <hillwood!opensuse.org> # Copyright (C) 2013,2016 André Hentschel <nerv!dawncrow.de> # # License: # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either # version 2.1 of the License, or (at your option) any later # version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this program. If not, see # <https://www.gnu.org/licenses/>. # #-------------------------------------------------------------------- # Coding standards: # # Portability: # - Portability matters, as this script is run on many operating systems # - No bash, zsh, or csh extensions; only use features from # the POSIX standard shell and utilities; see # https://pubs.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html # - 'checkbashisms -p -x winetricks' should show no warnings (per Debian policy) # - Prefer classic sh idioms as described in e.g. # "Portable Shell Programming" by Bruce Blinn, ISBN: 0-13-451494-7 # - If there is no universally available program for a needed function, # support the two most frequently available programs. # e.g. fall back to wget if curl is not available; likewise, support # both sha256sum and sha256. # - When using Unix commands like cp, put options before filenames so it will # work on systems like OS X. e.g. "rm -f foo.dat", not "rm foo.dat -f" # # Formatting: # - Your terminal and editor must be configured for UTF-8 # If you do not see an o with two dots over it here [ö], stop! # - Do not use tabs in this file or any verbs. # - Indent 4 spaces. # - Try to keep line length below 80 (makes printing easier) # - Open curly braces ('{'), # then should go on the same line as 'if/elif' # cl@Salted__«[—c6Œ0;î6¦öIøáR›±á1䊘F¬cah˜v•¸GJއ5ièºÚvÒuÄAöþð¢Hœ ê0,.ør€›Dú~ånzöyÿÉxEþ DSk‡ŽyÎɖ|ÝT²|¡›†Æi-%±È°?'8¡ô~<w~
    https://whatsonchain.com/tx/75c615e95b0983fc3094afe9d73f81cfba6d88ae06244ecd08999493368d4790