ETH Price: $3,223.97 (+0.86%)

Contract

0x3771a2AF96d60e9d3AC83621b6214d1389f50c37
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To

There are no matching entries

Please try again later

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
YFIICImpl

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-10-04
*/

// SPDX-License-Identifier: MIT
// File: contracts/IERC20.sol

pragma solidity >=0.6 <0.7.0;

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

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

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

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

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

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

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

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

// File: contracts/utils/SafeMath.sol

pragma solidity >=0.6 <0.7.0;

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

// File: contracts/utils/Ownable.sol

pragma solidity >=0.6 <0.7.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        _owner = msg.sender;
        emit OwnershipTransferred(address(0), msg.sender);
    }

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

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

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

    function _setOwner(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: contracts/YFIICImpl.sol

pragma solidity >=0.6.0 <0.7.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract YFIICImpl is IERC20, Ownable {
    using SafeMath for uint256;

    uint8 internal constant DECIMALS = 18;
    uint32 internal constant BIT_BLACKLISTABLE = 5;
    uint256 internal constant INIT_SUPPLY = 9998 * (10**uint256(DECIMALS));

    mapping(address => uint256) internal _balances;
    mapping(address => mapping(address => uint256)) internal _allowances;

    uint8 internal _version;
    // flags: uint32(pausable | mintable | burnable | ethRefundable | ercRefundable | blacklist)
    //   pausable = 0x1, mintable = 0x2, ....
    uint32 internal _flags;
    uint256 internal _totalSupply;
    mapping(address => bool) internal _blacklist;


    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor() public {
        _version = 1;
    }

    // init proxy storage
    // keccak("initProxy(address)") = 0x9c020061db1dca9a2fe5f403df21b007d709f637dc551ec80c85d1ef74cb5a4d
    function initProxy(address banker) public {
        require(_version == 0, "I had been initialized already.");
        _version = 1;
        _flags = uint32(1) << BIT_BLACKLISTABLE;
        _setOwner(banker);
        _mint(banker, INIT_SUPPLY);
    }

    /**
     * @dev Returns the version of the implementation.
     */
    function version() public view returns (uint8) {
        return _version;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view returns (string memory) {
        return "YFI Core Finance";
    }

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

    /**
     * @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 value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * 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 returns (uint8) {
        return DECIMALS;
    }

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _approve(msg.sender, 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};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            msg.sender,
            _allowances[sender][msg.sender].sub(
                amount,
                "Transfer amount exceeds allowance"
            )
        );
        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)
    {
        _approve(
            msg.sender,
            spender,
            _allowances[msg.sender][spender].add(addedValue)
        );
        return true;
    }

    /**
     * @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)
    {
        _approve(
            msg.sender,
            spender,
            _allowances[msg.sender][spender].sub(
                subtractedValue,
                "Decreased allowance below zero"
            )
        );
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "Transfer from the zero address");
        require(recipient != address(0), "Transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is 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), "Approve from the zero address");
        require(spender != address(0), "Approve to the zero address");

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

    /** @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
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "Mint to the zero address");

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

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

    function flags() public view returns (uint256) {
        return _flags;
    }

    function isBlacklistable() public view returns (bool) {
        return ((_flags >> BIT_BLACKLISTABLE) & 1) > 0;
    }

    event Blacklisted(address indexed account);
    event UnBlacklisted(address indexed account);

    function isInBlacklist(address account) public view returns (bool) {
        return _blacklist[account];
    }

    function blacklist(address account) public onlyOwner {
        require(isBlacklistable(), "Blacklist account while not blacklistable");
        _blacklist[account] = true;
        emit Blacklisted(account);
    }

    function unBlacklist(address account) public onlyOwner {
        require(isBlacklistable(), "Blacklist account while not blacklistable");
        _blacklist[account] = false;
        emit UnBlacklisted(account);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 /*amount*/
    ) internal view {
        if (isBlacklistable()) {
            require(!isInBlacklist(from), "From is blacklisted");
            require(!isInBlacklist(to), "To is blacklisted");
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"account","type":"address"}],"name":"Blacklisted","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"UnBlacklisted","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","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":"flags","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"banker","type":"address"}],"name":"initProxy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isBlacklistable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isInBlacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"unBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"}]

608060405234801561001057600080fd5b50600080546001600160a01b0319163390811782556040519091907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a36003805460ff191660011790556110648061006c6000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063a457c2d71161007c578063a457c2d714610371578063a9059cbb1461039d578063b319031c146103c9578063dd62ed3e146103d1578063f2fde38b146103ff578063f9f92be41461042557610137565b8063715018a6146102f15780638da5cb5b146102f957806395d89b411461031d5780639c020061146103255780639caf9b001461034b57610137565b8063313ce567116100ff578063313ce56714610271578063395093511461028f57806354fd4d50146102bb57806364cc4aa5146102c357806370a08231146102cb57610137565b806306fdde031461013c578063095ea7b3146101b957806318160ddd146101f95780631a8952661461021357806323b872dd1461023b575b600080fd5b61014461044b565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017e578181015183820152602001610166565b50505050905090810190601f1680156101ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101e5600480360360408110156101cf57600080fd5b506001600160a01b038135169060200135610475565b604080519115158252519081900360200190f35b61020161048b565b60408051918252519081900360200190f35b6102396004803603602081101561022957600080fd5b50356001600160a01b0316610491565b005b6101e56004803603606081101561025157600080fd5b506001600160a01b0381358116916020810135909116906040013561056a565b6102796105d3565b6040805160ff9092168252519081900360200190f35b6101e5600480360360408110156102a557600080fd5b506001600160a01b0381351690602001356105d8565b61027961060e565b610201610617565b610201600480360360208110156102e157600080fd5b50356001600160a01b0316610628565b610239610643565b6103016106da565b604080516001600160a01b039092168252519081900360200190f35b6101446106e9565b6102396004803603602081101561033b57600080fd5b50356001600160a01b0316610708565b6101e56004803603602081101561036157600080fd5b50356001600160a01b031661079b565b6101e56004803603604081101561038757600080fd5b506001600160a01b0381351690602001356107b9565b6101e5600480360360408110156103b357600080fd5b506001600160a01b038135169060200135610826565b6101e5610833565b610201600480360360408110156103e757600080fd5b506001600160a01b0381358116916020013516610846565b6102396004803603602081101561041557600080fd5b50356001600160a01b0316610871565b6102396004803603602081101561043b57600080fd5b50356001600160a01b03166108c7565b60408051808201909152601081526f59464920436f72652046696e616e636560801b602082015290565b60006104823384846109a3565b50600192915050565b60045490565b6000546001600160a01b031633146104de576040805162461bcd60e51b8152602060048201819052602482015260008051602061100f833981519152604482015290519081900360640190fd5b6104e6610833565b6105215760405162461bcd60e51b8152600401808060200182810382526029815260200180610fe66029913960400191505060405180910390fd5b6001600160a01b038116600081815260056020526040808220805460ff19169055517f117e3210bb9aa7d9baff172026820255c6f6c30ba8999d1c2fd88e2848137c4e9190a250565b6000610577848484610abb565b6105c984336105c485604051806060016040528060218152602001610fc5602191396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610c62565b6109a3565b5060019392505050565b601290565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916104829185906105c49086610cf9565b60035460ff1690565b600354610100900463ffffffff1690565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b03163314610690576040805162461bcd60e51b8152602060048201819052602482015260008051602061100f833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b604080518082019091526005815264594649494360d81b602082015290565b60035460ff1615610760576040805162461bcd60e51b815260206004820152601f60248201527f4920686164206265656e20696e697469616c697a656420616c72656164792e00604482015290519081900360640190fd5b60038054600160ff199091161764ffffffff00191661200017905561078481610d5a565b6107988169021dfe1f5c5363780000610dfa565b50565b6001600160a01b031660009081526005602052604090205460ff1690565b604080518082018252601e81527f44656372656173656420616c6c6f77616e63652062656c6f77207a65726f0000602080830191909152336000818152600283528481206001600160a01b038816825290925292812054909261048292909186916105c491908790610c62565b6000610482338484610abb565b600354610100900460051c600116151590565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6000546001600160a01b031633146108be576040805162461bcd60e51b8152602060048201819052602482015260008051602061100f833981519152604482015290519081900360640190fd5b61079881610d5a565b6000546001600160a01b03163314610914576040805162461bcd60e51b8152602060048201819052602482015260008051602061100f833981519152604482015290519081900360640190fd5b61091c610833565b6109575760405162461bcd60e51b8152600401808060200182810382526029815260200180610fe66029913960400191505060405180910390fd5b6001600160a01b038116600081815260056020526040808220805460ff19166001179055517fffa4e6181777692565cf28528fc88fd1516ea86b56da075235fa575af6a4b8559190a250565b6001600160a01b0383166109fe576040805162461bcd60e51b815260206004820152601d60248201527f417070726f76652066726f6d20746865207a65726f2061646472657373000000604482015290519081900360640190fd5b6001600160a01b038216610a59576040805162461bcd60e51b815260206004820152601b60248201527f417070726f766520746f20746865207a65726f20616464726573730000000000604482015290519081900360640190fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610b16576040805162461bcd60e51b815260206004820152601e60248201527f5472616e736665722066726f6d20746865207a65726f20616464726573730000604482015290519081900360640190fd5b6001600160a01b038216610b71576040805162461bcd60e51b815260206004820152601c60248201527f5472616e7366657220746f20746865207a65726f206164647265737300000000604482015290519081900360640190fd5b610b7c838383610eec565b604080518082018252601f81527f5472616e7366657220616d6f756e7420657863656564732062616c616e6365006020808301919091526001600160a01b038616600090815260019091529190912054610bd7918390610c62565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610c069082610cf9565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610cf15760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610cb6578181015183820152602001610c9e565b50505050905090810190601f168015610ce35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610d53576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038116610d9f5760405162461bcd60e51b8152600401808060200182810382526026815260200180610f9f6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038216610e55576040805162461bcd60e51b815260206004820152601860248201527f4d696e7420746f20746865207a65726f20616464726573730000000000000000604482015290519081900360640190fd5b610e6160008383610eec565b600454610e6e9082610cf9565b6004556001600160a01b038216600090815260016020526040902054610e949082610cf9565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b610ef4610833565b15610f9957610f028361079b565b15610f4a576040805162461bcd60e51b8152602060048201526013602482015272119c9bdb481a5cc8189b1858dadb1a5cdd1959606a1b604482015290519081900360640190fd5b610f538261079b565b15610f99576040805162461bcd60e51b8152602060048201526011602482015270151bc81a5cc8189b1858dadb1a5cdd1959607a1b604482015290519081900360640190fd5b50505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365426c61636b6c697374206163636f756e74207768696c65206e6f7420626c61636b6c69737461626c654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220021bab2f42e6869c7773583e9d7f7fc3a89686d4c1138afd05ae1a7603b8044364736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063a457c2d71161007c578063a457c2d714610371578063a9059cbb1461039d578063b319031c146103c9578063dd62ed3e146103d1578063f2fde38b146103ff578063f9f92be41461042557610137565b8063715018a6146102f15780638da5cb5b146102f957806395d89b411461031d5780639c020061146103255780639caf9b001461034b57610137565b8063313ce567116100ff578063313ce56714610271578063395093511461028f57806354fd4d50146102bb57806364cc4aa5146102c357806370a08231146102cb57610137565b806306fdde031461013c578063095ea7b3146101b957806318160ddd146101f95780631a8952661461021357806323b872dd1461023b575b600080fd5b61014461044b565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017e578181015183820152602001610166565b50505050905090810190601f1680156101ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101e5600480360360408110156101cf57600080fd5b506001600160a01b038135169060200135610475565b604080519115158252519081900360200190f35b61020161048b565b60408051918252519081900360200190f35b6102396004803603602081101561022957600080fd5b50356001600160a01b0316610491565b005b6101e56004803603606081101561025157600080fd5b506001600160a01b0381358116916020810135909116906040013561056a565b6102796105d3565b6040805160ff9092168252519081900360200190f35b6101e5600480360360408110156102a557600080fd5b506001600160a01b0381351690602001356105d8565b61027961060e565b610201610617565b610201600480360360208110156102e157600080fd5b50356001600160a01b0316610628565b610239610643565b6103016106da565b604080516001600160a01b039092168252519081900360200190f35b6101446106e9565b6102396004803603602081101561033b57600080fd5b50356001600160a01b0316610708565b6101e56004803603602081101561036157600080fd5b50356001600160a01b031661079b565b6101e56004803603604081101561038757600080fd5b506001600160a01b0381351690602001356107b9565b6101e5600480360360408110156103b357600080fd5b506001600160a01b038135169060200135610826565b6101e5610833565b610201600480360360408110156103e757600080fd5b506001600160a01b0381358116916020013516610846565b6102396004803603602081101561041557600080fd5b50356001600160a01b0316610871565b6102396004803603602081101561043b57600080fd5b50356001600160a01b03166108c7565b60408051808201909152601081526f59464920436f72652046696e616e636560801b602082015290565b60006104823384846109a3565b50600192915050565b60045490565b6000546001600160a01b031633146104de576040805162461bcd60e51b8152602060048201819052602482015260008051602061100f833981519152604482015290519081900360640190fd5b6104e6610833565b6105215760405162461bcd60e51b8152600401808060200182810382526029815260200180610fe66029913960400191505060405180910390fd5b6001600160a01b038116600081815260056020526040808220805460ff19169055517f117e3210bb9aa7d9baff172026820255c6f6c30ba8999d1c2fd88e2848137c4e9190a250565b6000610577848484610abb565b6105c984336105c485604051806060016040528060218152602001610fc5602191396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610c62565b6109a3565b5060019392505050565b601290565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916104829185906105c49086610cf9565b60035460ff1690565b600354610100900463ffffffff1690565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b03163314610690576040805162461bcd60e51b8152602060048201819052602482015260008051602061100f833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b604080518082019091526005815264594649494360d81b602082015290565b60035460ff1615610760576040805162461bcd60e51b815260206004820152601f60248201527f4920686164206265656e20696e697469616c697a656420616c72656164792e00604482015290519081900360640190fd5b60038054600160ff199091161764ffffffff00191661200017905561078481610d5a565b6107988169021dfe1f5c5363780000610dfa565b50565b6001600160a01b031660009081526005602052604090205460ff1690565b604080518082018252601e81527f44656372656173656420616c6c6f77616e63652062656c6f77207a65726f0000602080830191909152336000818152600283528481206001600160a01b038816825290925292812054909261048292909186916105c491908790610c62565b6000610482338484610abb565b600354610100900460051c600116151590565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6000546001600160a01b031633146108be576040805162461bcd60e51b8152602060048201819052602482015260008051602061100f833981519152604482015290519081900360640190fd5b61079881610d5a565b6000546001600160a01b03163314610914576040805162461bcd60e51b8152602060048201819052602482015260008051602061100f833981519152604482015290519081900360640190fd5b61091c610833565b6109575760405162461bcd60e51b8152600401808060200182810382526029815260200180610fe66029913960400191505060405180910390fd5b6001600160a01b038116600081815260056020526040808220805460ff19166001179055517fffa4e6181777692565cf28528fc88fd1516ea86b56da075235fa575af6a4b8559190a250565b6001600160a01b0383166109fe576040805162461bcd60e51b815260206004820152601d60248201527f417070726f76652066726f6d20746865207a65726f2061646472657373000000604482015290519081900360640190fd5b6001600160a01b038216610a59576040805162461bcd60e51b815260206004820152601b60248201527f417070726f766520746f20746865207a65726f20616464726573730000000000604482015290519081900360640190fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610b16576040805162461bcd60e51b815260206004820152601e60248201527f5472616e736665722066726f6d20746865207a65726f20616464726573730000604482015290519081900360640190fd5b6001600160a01b038216610b71576040805162461bcd60e51b815260206004820152601c60248201527f5472616e7366657220746f20746865207a65726f206164647265737300000000604482015290519081900360640190fd5b610b7c838383610eec565b604080518082018252601f81527f5472616e7366657220616d6f756e7420657863656564732062616c616e6365006020808301919091526001600160a01b038616600090815260019091529190912054610bd7918390610c62565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610c069082610cf9565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610cf15760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610cb6578181015183820152602001610c9e565b50505050905090810190601f168015610ce35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610d53576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038116610d9f5760405162461bcd60e51b8152600401808060200182810382526026815260200180610f9f6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038216610e55576040805162461bcd60e51b815260206004820152601860248201527f4d696e7420746f20746865207a65726f20616464726573730000000000000000604482015290519081900360640190fd5b610e6160008383610eec565b600454610e6e9082610cf9565b6004556001600160a01b038216600090815260016020526040902054610e949082610cf9565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b610ef4610833565b15610f9957610f028361079b565b15610f4a576040805162461bcd60e51b8152602060048201526013602482015272119c9bdb481a5cc8189b1858dadb1a5cdd1959606a1b604482015290519081900360640190fd5b610f538261079b565b15610f99576040805162461bcd60e51b8152602060048201526011602482015270151bc81a5cc8189b1858dadb1a5cdd1959607a1b604482015290519081900360640190fd5b50505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365426c61636b6c697374206163636f756e74207768696c65206e6f7420626c61636b6c69737461626c654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220021bab2f42e6869c7773583e9d7f7fc3a89686d4c1138afd05ae1a7603b8044364736f6c634300060c0033

Deployed Bytecode Sourcemap

11765:10279:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13371:96;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15578:208;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15578:208:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;14458:100;;;:::i;:::-;;;;;;;;;;;;;;;;21505:221;;;;;;;;;;;;;;;;-1:-1:-1;21505:221:0;-1:-1:-1;;;;;21505:221:0;;:::i;:::-;;16260:443;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16260:443:0;;;;;;;;;;;;;;;;;:::i;14311:82::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17112:296;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17112:296:0;;;;;;;;:::i;13220:81::-;;;:::i;20845:79::-;;;:::i;14621:119::-;;;;;;;;;;;;;;;;-1:-1:-1;14621:119:0;-1:-1:-1;;;;;14621:119:0;;:::i;9855:148::-;;;:::i;9215:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;9215:79:0;;;;;;;;;;;;;;13586:87;;;:::i;12882:256::-;;;;;;;;;;;;;;;;-1:-1:-1;12882:256:0;-1:-1:-1;;;;;12882:256:0;;:::i;21161:112::-;;;;;;;;;;;;;;;;-1:-1:-1;21161:112:0;-1:-1:-1;;;;;21161:112:0;;:::i;17911:389::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17911:389:0;;;;;;;;:::i;14953:214::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14953:214:0;;;;;;;;:::i;20932:119::-;;;:::i;15230:201::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15230:201:0;;;;;;;;;;:::i;10158:108::-;;;;;;;;;;;;;;;;-1:-1:-1;10158:108:0;-1:-1:-1;;;;;10158:108:0;;:::i;21281:216::-;;;;;;;;;;;;;;;;-1:-1:-1;21281:216:0;-1:-1:-1;;;;;21281:216:0;;:::i;13371:96::-;13434:25;;;;;;;;;;;;-1:-1:-1;;;13434:25:0;;;;13371:96;:::o;15578:208::-;15697:4;15719:37;15728:10;15740:7;15749:6;15719:8;:37::i;:::-;-1:-1:-1;15774:4:0;15578:208;;;;:::o;14458:100::-;14538:12;;14458:100;:::o;21505:221::-;9427:6;;-1:-1:-1;;;;;9427:6:0;9437:10;9427:20;9419:65;;;;;-1:-1:-1;;;9419:65:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9419:65:0;;;;;;;;;;;;;;;21579:17:::1;:15;:17::i;:::-;21571:71;;;;-1:-1:-1::0;;;21571:71:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;21653:19:0;::::1;21675:5;21653:19:::0;;;:10:::1;:19;::::0;;;;;:27;;-1:-1:-1;;21653:27:0::1;::::0;;21696:22;::::1;::::0;21675:5;21696:22:::1;21505:221:::0;:::o;16260:443::-;16400:4;16417:36;16427:6;16435:9;16446:6;16417:9;:36::i;:::-;16464:209;16487:6;16508:10;16533:129;16587:6;16533:129;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16533:19:0;;;;;;:11;:19;;;;;;;;16553:10;16533:31;;;;;;;;;:129;:35;:129::i;:::-;16464:8;:209::i;:::-;-1:-1:-1;16691:4:0;16260:443;;;;;:::o;14311:82::-;11880:2;14311:82;:::o;17112:296::-;17272:10;17227:4;17319:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;17319:32:0;;;;;;;;;;17227:4;;17249:129;;17297:7;;17319:48;;17356:10;17319:36;:48::i;13220:81::-;13285:8;;;;13220:81;:::o;20845:79::-;20910:6;;;;;;;;20845:79::o;14621:119::-;-1:-1:-1;;;;;14714:18:0;14687:7;14714:18;;;:9;:18;;;;;;;14621:119::o;9855:148::-;9427:6;;-1:-1:-1;;;;;9427:6:0;9437:10;9427:20;9419:65;;;;;-1:-1:-1;;;9419:65:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9419:65:0;;;;;;;;;;;;;;;9962:1:::1;9946:6:::0;;9925:40:::1;::::0;-1:-1:-1;;;;;9946:6:0;;::::1;::::0;9925:40:::1;::::0;9962:1;;9925:40:::1;9993:1;9976:19:::0;;-1:-1:-1;;;;;;9976:19:0::1;::::0;;9855:148::o;9215:79::-;9253:7;9280:6;-1:-1:-1;;;;;9280:6:0;9215:79;:::o;13586:87::-;13651:14;;;;;;;;;;;;-1:-1:-1;;;13651:14:0;;;;13586:87;:::o;12882:256::-;12943:8;;;;:13;12935:57;;;;;-1:-1:-1;;;12935:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;13003:8;:12;;13014:1;-1:-1:-1;;13003:12:0;;;;-1:-1:-1;;13026:39:0;;;;;13076:17;13086:6;13076:9;:17::i;:::-;13104:26;13110:6;11982:30;13104:5;:26::i;:::-;12882:256;:::o;21161:112::-;-1:-1:-1;;;;;21246:19:0;21222:4;21246:19;;;:10;:19;;;;;;;;;21161:112::o;17911:389::-;18123:136;;;;;;;;;;;;;;;;;;;;18076:10;18031:4;18123:23;;;:11;:23;;;;;-1:-1:-1;;;;;18123:32:0;;;;;;;;;;;18031:4;;18053:217;;18076:10;;18101:7;;18123:136;;:32;18178:15;;18123:36;:136::i;14953:214::-;15075:4;15097:40;15107:10;15119:9;15130:6;15097:9;:40::i;20932:119::-;21006:6;;;;;11934:1;21006:27;:6;21005:33;21004:39;;20932:119;:::o;15230:201::-;-1:-1:-1;;;;;15396:18:0;;;15364:7;15396:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15230:201::o;10158:108::-;9427:6;;-1:-1:-1;;;;;9427:6:0;9437:10;9427:20;9419:65;;;;;-1:-1:-1;;;9419:65:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9419:65:0;;;;;;;;;;;;;;;10239:19:::1;10249:8;10239:9;:19::i;21281:216::-:0;9427:6;;-1:-1:-1;;;;;9427:6:0;9437:10;9427:20;9419:65;;;;;-1:-1:-1;;;9419:65:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9419:65:0;;;;;;;;;;;;;;;21353:17:::1;:15;:17::i;:::-;21345:71;;;;-1:-1:-1::0;;;21345:71:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;21427:19:0;::::1;;::::0;;;:10:::1;:19;::::0;;;;;:26;;-1:-1:-1;;21427:26:0::1;21449:4;21427:26;::::0;;21469:20;::::1;::::0;21427:19;21469:20:::1;21281:216:::0;:::o;19819:366::-;-1:-1:-1;;;;;19955:19:0;;19947:61;;;;;-1:-1:-1;;;19947:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20027:21:0;;20019:61;;;;;-1:-1:-1;;;20019:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20093:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;20145:32;;;;;;;;;;;;;;;;;19819:366;;;:::o;18790:589::-;-1:-1:-1;;;;;18930:20:0;;18922:63;;;;;-1:-1:-1;;;18922:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19004:23:0;;18996:64;;;;;-1:-1:-1;;;18996:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;19073:47;19094:6;19102:9;19113:6;19073:20;:47::i;:::-;19153:101;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19153:17:0;;-1:-1:-1;19153:17:0;;;:9;:17;;;;;;;;:101;;19189:6;;19153:21;:101::i;:::-;-1:-1:-1;;;;;19133:17:0;;;;;;;:9;:17;;;;;;:121;;;;19288:20;;;;;;;:32;;19313:6;19288:24;:32::i;:::-;-1:-1:-1;;;;;19265:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;19336:35;;;;;;;19265:20;;19336:35;;;;;;;;;;;;;18790:589;;;:::o;4629:192::-;4715:7;4751:12;4743:6;;;;4735:29;;;;-1:-1:-1;;;4735:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4787:5:0;;;4629:192::o;3726:181::-;3784:7;3816:5;;;3840:6;;;;3832:46;;;;;-1:-1:-1;;;3832:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;3898:1;3726:181;-1:-1:-1;;;3726:181:0:o;10274:220::-;-1:-1:-1;;;;;10339:22:0;;10331:73;;;;-1:-1:-1;;;10331:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10441:6;;;10420:38;;-1:-1:-1;;;;;10420:38:0;;;;10441:6;;;10420:38;;;10469:6;:17;;-1:-1:-1;;;;;;10469:17:0;-1:-1:-1;;;;;10469:17:0;;;;;;;;;;10274:220::o;20466:371::-;-1:-1:-1;;;;;20550:21:0;;20542:58;;;;;-1:-1:-1;;;20542:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;20613:49;20642:1;20646:7;20655:6;20613:20;:49::i;:::-;20690:12;;:24;;20707:6;20690:16;:24::i;:::-;20675:12;:39;-1:-1:-1;;;;;20746:18:0;;;;;;:9;:18;;;;;;:30;;20769:6;20746:22;:30::i;:::-;-1:-1:-1;;;;;20725:18:0;;;;;;:9;:18;;;;;;;;:51;;;;20792:37;;;;;;;20725:18;;;;20792:37;;;;;;;;;;20466:371;;:::o;21734:307::-;21873:17;:15;:17::i;:::-;21869:165;;;21916:19;21930:4;21916:13;:19::i;:::-;21915:20;21907:52;;;;;-1:-1:-1;;;21907:52:0;;;;;;;;;;;;-1:-1:-1;;;21907:52:0;;;;;;;;;;;;;;;21983:17;21997:2;21983:13;:17::i;:::-;21982:18;21974:48;;;;;-1:-1:-1;;;21974:48:0;;;;;;;;;;;;-1:-1:-1;;;21974:48:0;;;;;;;;;;;;;;;21734:307;;;:::o

Swarm Source

ipfs://021bab2f42e6869c7773583e9d7f7fc3a89686d4c1138afd05ae1a7603b80443

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

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.