ETH Price: $3,521.74 (+2.94%)
Gas: 5 Gwei

Token

Goons of Balatroon (GOB)
 

Overview

Max Total Supply

750,000,000 GOB

Holders

1,481 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
airchitecture.eth
Balance
23,327.0487489749808252 GOB

Value
$0.00
0xff591ce354279835e1bf2ff4c5a374186353f159
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:
GOB

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license, Audited

Contract Source Code (Solidity)Audit Report

/**
 *Submitted for verification at Etherscan.io on 2022-03-16
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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





// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)





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

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol)




// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)



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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)





/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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



/**
 *
 * Customized ERC20 contract with preapproval for staking contract
 * 
 * @dev Extends standard ERC20 contract
 */
contract CustomERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    address _stakingContract;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override 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(_msgSender(), 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);

        if (msg.sender != _stakingContract) {
            uint256 currentAllowance = _allowances[sender][_msgSender()];
            require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
            unchecked {
                _approve(sender, _msgSender(), currentAllowance - amount);
            }
        }
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + 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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `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");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, 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");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), 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 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 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 virtual {}

    /**
     * @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 from,
        address to,
        uint256 amount
    ) internal virtual {}
}


contract GOB is CustomERC20, Ownable  {

    bool stakingContractSet;

    constructor(        
        string memory name,
        string memory symbol,
        address receiver,
        uint256 totalSupply
    ) CustomERC20(name, symbol)  {

        _mint(receiver, totalSupply);
    }    

    function setStakingContract(address stakingContract_) external onlyOwner {
        require(!stakingContractSet, "already done");

        stakingContractSet = true;
        _stakingContract = stakingContract_;
    } 

    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) external {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) external {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"totalSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":[],"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":[{"internalType":"address","name":"stakingContract_","type":"address"}],"name":"setStakingContract","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"}]

60806040523480156200001157600080fd5b50604051620026ef380380620026ef8339818101604052810190620000379190620005e7565b8383816003908051906020019062000051929190620002fa565b5080600490805190602001906200006a929190620002fa565b5050506200008d62000081620000a960201b60201c565b620000b160201b60201c565b6200009f82826200017760201b60201c565b5050505062000839565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620001ea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001e190620006f8565b60405180910390fd5b620001fe60008383620002f060201b60201c565b806002600082825462000212919062000749565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000269919062000749565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002d09190620007b7565b60405180910390a3620002ec60008383620002f560201b60201c565b5050565b505050565b505050565b828054620003089062000803565b90600052602060002090601f0160209004810192826200032c576000855562000378565b82601f106200034757805160ff191683800117855562000378565b8280016001018555821562000378579182015b82811115620003775782518255916020019190600101906200035a565b5b5090506200038791906200038b565b5090565b5b80821115620003a65760008160009055506001016200038c565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200041382620003c8565b810181811067ffffffffffffffff82111715620004355762000434620003d9565b5b80604052505050565b60006200044a620003aa565b905062000458828262000408565b919050565b600067ffffffffffffffff8211156200047b576200047a620003d9565b5b6200048682620003c8565b9050602081019050919050565b60005b83811015620004b357808201518184015260208101905062000496565b83811115620004c3576000848401525b50505050565b6000620004e0620004da846200045d565b6200043e565b905082815260208101848484011115620004ff57620004fe620003c3565b5b6200050c84828562000493565b509392505050565b600082601f8301126200052c576200052b620003be565b5b81516200053e848260208601620004c9565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620005748262000547565b9050919050565b620005868162000567565b81146200059257600080fd5b50565b600081519050620005a6816200057b565b92915050565b6000819050919050565b620005c181620005ac565b8114620005cd57600080fd5b50565b600081519050620005e181620005b6565b92915050565b60008060008060808587031215620006045762000603620003b4565b5b600085015167ffffffffffffffff811115620006255762000624620003b9565b5b620006338782880162000514565b945050602085015167ffffffffffffffff811115620006575762000656620003b9565b5b620006658782880162000514565b9350506040620006788782880162000595565b92505060606200068b87828801620005d0565b91505092959194509250565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620006e0601f8362000697565b9150620006ed82620006a8565b602082019050919050565b600060208201905081810360008301526200071381620006d1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200075682620005ac565b91506200076383620005ac565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200079b576200079a6200071a565b5b828201905092915050565b620007b181620005ac565b82525050565b6000602082019050620007ce6000830184620007a6565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200081c57607f821691505b60208210811415620008335762000832620007d4565b5b50919050565b611ea680620008496000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a25780639dd373b9116100715780639dd373b9146102a8578063a457c2d7146102c4578063a9059cbb146102f4578063dd62ed3e14610324578063f2fde38b146103545761010b565b8063715018a61461024657806379cc6790146102505780638da5cb5b1461026c57806395d89b411461028a5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806342966c68146101fa57806370a08231146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610370565b604051610125919061138f565b60405180910390f35b6101486004803603810190610143919061144a565b610402565b60405161015591906114a5565b60405180910390f35b610166610420565b60405161017391906114cf565b60405180910390f35b610196600480360381019061019191906114ea565b61042a565b6040516101a391906114a5565b60405180910390f35b6101b4610578565b6040516101c19190611559565b60405180910390f35b6101e460048036038101906101df919061144a565b610581565b6040516101f191906114a5565b60405180910390f35b610214600480360381019061020f9190611574565b61062d565b005b610230600480360381019061022b91906115a1565b610641565b60405161023d91906114cf565b60405180910390f35b61024e610689565b005b61026a6004803603810190610265919061144a565b610711565b005b61027461078c565b60405161028191906115dd565b60405180910390f35b6102926107b6565b60405161029f919061138f565b60405180910390f35b6102c260048036038101906102bd91906115a1565b610848565b005b6102de60048036038101906102d9919061144a565b610973565b6040516102eb91906114a5565b60405180910390f35b61030e6004803603810190610309919061144a565b610a5e565b60405161031b91906114a5565b60405180910390f35b61033e600480360381019061033991906115f8565b610a7c565b60405161034b91906114cf565b60405180910390f35b61036e600480360381019061036991906115a1565b610b03565b005b60606003805461037f90611667565b80601f01602080910402602001604051908101604052809291908181526020018280546103ab90611667565b80156103f85780601f106103cd576101008083540402835291602001916103f8565b820191906000526020600020905b8154815290600101906020018083116103db57829003601f168201915b5050505050905090565b600061041661040f610bfb565b8484610c03565b6001905092915050565b6000600254905090565b6000610437848484610dce565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461056d576000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104d7610bfb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054e9061170b565b60405180910390fd5b61056b85610563610bfb565b858403610c03565b505b600190509392505050565b60006012905090565b600061062361058e610bfb565b84846001600061059c610bfb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461061e919061175a565b610c03565b6001905092915050565b61063e610638610bfb565b8261104f565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610691610bfb565b73ffffffffffffffffffffffffffffffffffffffff166106af61078c565b73ffffffffffffffffffffffffffffffffffffffff1614610705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fc906117fc565b60405180910390fd5b61070f6000611226565b565b60006107248361071f610bfb565b610a7c565b905081811015610769576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107609061188e565b60405180910390fd5b61077d83610775610bfb565b848403610c03565b610787838361104f565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107c590611667565b80601f01602080910402602001604051908101604052809291908181526020018280546107f190611667565b801561083e5780601f106108135761010080835404028352916020019161083e565b820191906000526020600020905b81548152906001019060200180831161082157829003601f168201915b5050505050905090565b610850610bfb565b73ffffffffffffffffffffffffffffffffffffffff1661086e61078c565b73ffffffffffffffffffffffffffffffffffffffff16146108c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bb906117fc565b60405180910390fd5b600660149054906101000a900460ff1615610914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090b906118fa565b60405180910390fd5b6001600660146101000a81548160ff02191690831515021790555080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060016000610982610bfb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a369061198c565b60405180910390fd5b610a53610a4a610bfb565b85858403610c03565b600191505092915050565b6000610a72610a6b610bfb565b8484610dce565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b0b610bfb565b73ffffffffffffffffffffffffffffffffffffffff16610b2961078c565b73ffffffffffffffffffffffffffffffffffffffff1614610b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b76906117fc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be690611a1e565b60405180910390fd5b610bf881611226565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a90611ab0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cda90611b42565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610dc191906114cf565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3590611bd4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea590611c66565b60405180910390fd5b610eb98383836112ec565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3690611cf8565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fd2919061175a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161103691906114cf565b60405180910390a36110498484846112f1565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b690611d8a565b60405180910390fd5b6110cb826000836112ec565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611151576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114890611e1c565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546111a89190611e3c565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161120d91906114cf565b60405180910390a3611221836000846112f1565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611330578082015181840152602081019050611315565b8381111561133f576000848401525b50505050565b6000601f19601f8301169050919050565b6000611361826112f6565b61136b8185611301565b935061137b818560208601611312565b61138481611345565b840191505092915050565b600060208201905081810360008301526113a98184611356565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113e1826113b6565b9050919050565b6113f1816113d6565b81146113fc57600080fd5b50565b60008135905061140e816113e8565b92915050565b6000819050919050565b61142781611414565b811461143257600080fd5b50565b6000813590506114448161141e565b92915050565b60008060408385031215611461576114606113b1565b5b600061146f858286016113ff565b925050602061148085828601611435565b9150509250929050565b60008115159050919050565b61149f8161148a565b82525050565b60006020820190506114ba6000830184611496565b92915050565b6114c981611414565b82525050565b60006020820190506114e460008301846114c0565b92915050565b600080600060608486031215611503576115026113b1565b5b6000611511868287016113ff565b9350506020611522868287016113ff565b925050604061153386828701611435565b9150509250925092565b600060ff82169050919050565b6115538161153d565b82525050565b600060208201905061156e600083018461154a565b92915050565b60006020828403121561158a576115896113b1565b5b600061159884828501611435565b91505092915050565b6000602082840312156115b7576115b66113b1565b5b60006115c5848285016113ff565b91505092915050565b6115d7816113d6565b82525050565b60006020820190506115f260008301846115ce565b92915050565b6000806040838503121561160f5761160e6113b1565b5b600061161d858286016113ff565b925050602061162e858286016113ff565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061167f57607f821691505b6020821081141561169357611692611638565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006116f5602883611301565b915061170082611699565b604082019050919050565b60006020820190508181036000830152611724816116e8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061176582611414565b915061177083611414565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156117a5576117a461172b565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006117e6602083611301565b91506117f1826117b0565b602082019050919050565b60006020820190508181036000830152611815816117d9565b9050919050565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000611878602483611301565b91506118838261181c565b604082019050919050565b600060208201905081810360008301526118a78161186b565b9050919050565b7f616c726561647920646f6e650000000000000000000000000000000000000000600082015250565b60006118e4600c83611301565b91506118ef826118ae565b602082019050919050565b60006020820190508181036000830152611913816118d7565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611976602583611301565b91506119818261191a565b604082019050919050565b600060208201905081810360008301526119a581611969565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a08602683611301565b9150611a13826119ac565b604082019050919050565b60006020820190508181036000830152611a37816119fb565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611a9a602483611301565b9150611aa582611a3e565b604082019050919050565b60006020820190508181036000830152611ac981611a8d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b2c602283611301565b9150611b3782611ad0565b604082019050919050565b60006020820190508181036000830152611b5b81611b1f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611bbe602583611301565b9150611bc982611b62565b604082019050919050565b60006020820190508181036000830152611bed81611bb1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611c50602383611301565b9150611c5b82611bf4565b604082019050919050565b60006020820190508181036000830152611c7f81611c43565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611ce2602683611301565b9150611ced82611c86565b604082019050919050565b60006020820190508181036000830152611d1181611cd5565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d74602183611301565b9150611d7f82611d18565b604082019050919050565b60006020820190508181036000830152611da381611d67565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e06602283611301565b9150611e1182611daa565b604082019050919050565b60006020820190508181036000830152611e3581611df9565b9050919050565b6000611e4782611414565b9150611e5283611414565b925082821015611e6557611e6461172b565b5b82820390509291505056fea2646970667358221220e1114e450fd307718f8379fdb403c0f52a7e33c912e17c78824bfcd43f79d4eb64736f6c63430008090033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000543e60af194a7ab4abe9fb17be030aff72888ea40000000000000000000000000000000000000000026c62ad77dc602dae0000000000000000000000000000000000000000000000000000000000000000000012476f6f6e73206f662042616c6174726f6f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003474f420000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a25780639dd373b9116100715780639dd373b9146102a8578063a457c2d7146102c4578063a9059cbb146102f4578063dd62ed3e14610324578063f2fde38b146103545761010b565b8063715018a61461024657806379cc6790146102505780638da5cb5b1461026c57806395d89b411461028a5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806342966c68146101fa57806370a08231146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610370565b604051610125919061138f565b60405180910390f35b6101486004803603810190610143919061144a565b610402565b60405161015591906114a5565b60405180910390f35b610166610420565b60405161017391906114cf565b60405180910390f35b610196600480360381019061019191906114ea565b61042a565b6040516101a391906114a5565b60405180910390f35b6101b4610578565b6040516101c19190611559565b60405180910390f35b6101e460048036038101906101df919061144a565b610581565b6040516101f191906114a5565b60405180910390f35b610214600480360381019061020f9190611574565b61062d565b005b610230600480360381019061022b91906115a1565b610641565b60405161023d91906114cf565b60405180910390f35b61024e610689565b005b61026a6004803603810190610265919061144a565b610711565b005b61027461078c565b60405161028191906115dd565b60405180910390f35b6102926107b6565b60405161029f919061138f565b60405180910390f35b6102c260048036038101906102bd91906115a1565b610848565b005b6102de60048036038101906102d9919061144a565b610973565b6040516102eb91906114a5565b60405180910390f35b61030e6004803603810190610309919061144a565b610a5e565b60405161031b91906114a5565b60405180910390f35b61033e600480360381019061033991906115f8565b610a7c565b60405161034b91906114cf565b60405180910390f35b61036e600480360381019061036991906115a1565b610b03565b005b60606003805461037f90611667565b80601f01602080910402602001604051908101604052809291908181526020018280546103ab90611667565b80156103f85780601f106103cd576101008083540402835291602001916103f8565b820191906000526020600020905b8154815290600101906020018083116103db57829003601f168201915b5050505050905090565b600061041661040f610bfb565b8484610c03565b6001905092915050565b6000600254905090565b6000610437848484610dce565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461056d576000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104d7610bfb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054e9061170b565b60405180910390fd5b61056b85610563610bfb565b858403610c03565b505b600190509392505050565b60006012905090565b600061062361058e610bfb565b84846001600061059c610bfb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461061e919061175a565b610c03565b6001905092915050565b61063e610638610bfb565b8261104f565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610691610bfb565b73ffffffffffffffffffffffffffffffffffffffff166106af61078c565b73ffffffffffffffffffffffffffffffffffffffff1614610705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fc906117fc565b60405180910390fd5b61070f6000611226565b565b60006107248361071f610bfb565b610a7c565b905081811015610769576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107609061188e565b60405180910390fd5b61077d83610775610bfb565b848403610c03565b610787838361104f565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107c590611667565b80601f01602080910402602001604051908101604052809291908181526020018280546107f190611667565b801561083e5780601f106108135761010080835404028352916020019161083e565b820191906000526020600020905b81548152906001019060200180831161082157829003601f168201915b5050505050905090565b610850610bfb565b73ffffffffffffffffffffffffffffffffffffffff1661086e61078c565b73ffffffffffffffffffffffffffffffffffffffff16146108c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bb906117fc565b60405180910390fd5b600660149054906101000a900460ff1615610914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090b906118fa565b60405180910390fd5b6001600660146101000a81548160ff02191690831515021790555080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060016000610982610bfb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a369061198c565b60405180910390fd5b610a53610a4a610bfb565b85858403610c03565b600191505092915050565b6000610a72610a6b610bfb565b8484610dce565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b0b610bfb565b73ffffffffffffffffffffffffffffffffffffffff16610b2961078c565b73ffffffffffffffffffffffffffffffffffffffff1614610b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b76906117fc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be690611a1e565b60405180910390fd5b610bf881611226565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a90611ab0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cda90611b42565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610dc191906114cf565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3590611bd4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea590611c66565b60405180910390fd5b610eb98383836112ec565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3690611cf8565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fd2919061175a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161103691906114cf565b60405180910390a36110498484846112f1565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b690611d8a565b60405180910390fd5b6110cb826000836112ec565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611151576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114890611e1c565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546111a89190611e3c565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161120d91906114cf565b60405180910390a3611221836000846112f1565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611330578082015181840152602081019050611315565b8381111561133f576000848401525b50505050565b6000601f19601f8301169050919050565b6000611361826112f6565b61136b8185611301565b935061137b818560208601611312565b61138481611345565b840191505092915050565b600060208201905081810360008301526113a98184611356565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113e1826113b6565b9050919050565b6113f1816113d6565b81146113fc57600080fd5b50565b60008135905061140e816113e8565b92915050565b6000819050919050565b61142781611414565b811461143257600080fd5b50565b6000813590506114448161141e565b92915050565b60008060408385031215611461576114606113b1565b5b600061146f858286016113ff565b925050602061148085828601611435565b9150509250929050565b60008115159050919050565b61149f8161148a565b82525050565b60006020820190506114ba6000830184611496565b92915050565b6114c981611414565b82525050565b60006020820190506114e460008301846114c0565b92915050565b600080600060608486031215611503576115026113b1565b5b6000611511868287016113ff565b9350506020611522868287016113ff565b925050604061153386828701611435565b9150509250925092565b600060ff82169050919050565b6115538161153d565b82525050565b600060208201905061156e600083018461154a565b92915050565b60006020828403121561158a576115896113b1565b5b600061159884828501611435565b91505092915050565b6000602082840312156115b7576115b66113b1565b5b60006115c5848285016113ff565b91505092915050565b6115d7816113d6565b82525050565b60006020820190506115f260008301846115ce565b92915050565b6000806040838503121561160f5761160e6113b1565b5b600061161d858286016113ff565b925050602061162e858286016113ff565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061167f57607f821691505b6020821081141561169357611692611638565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006116f5602883611301565b915061170082611699565b604082019050919050565b60006020820190508181036000830152611724816116e8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061176582611414565b915061177083611414565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156117a5576117a461172b565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006117e6602083611301565b91506117f1826117b0565b602082019050919050565b60006020820190508181036000830152611815816117d9565b9050919050565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000611878602483611301565b91506118838261181c565b604082019050919050565b600060208201905081810360008301526118a78161186b565b9050919050565b7f616c726561647920646f6e650000000000000000000000000000000000000000600082015250565b60006118e4600c83611301565b91506118ef826118ae565b602082019050919050565b60006020820190508181036000830152611913816118d7565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611976602583611301565b91506119818261191a565b604082019050919050565b600060208201905081810360008301526119a581611969565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a08602683611301565b9150611a13826119ac565b604082019050919050565b60006020820190508181036000830152611a37816119fb565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611a9a602483611301565b9150611aa582611a3e565b604082019050919050565b60006020820190508181036000830152611ac981611a8d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b2c602283611301565b9150611b3782611ad0565b604082019050919050565b60006020820190508181036000830152611b5b81611b1f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611bbe602583611301565b9150611bc982611b62565b604082019050919050565b60006020820190508181036000830152611bed81611bb1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611c50602383611301565b9150611c5b82611bf4565b604082019050919050565b60006020820190508181036000830152611c7f81611c43565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611ce2602683611301565b9150611ced82611c86565b604082019050919050565b60006020820190508181036000830152611d1181611cd5565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d74602183611301565b9150611d7f82611d18565b604082019050919050565b60006020820190508181036000830152611da381611d67565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e06602283611301565b9150611e1182611daa565b604082019050919050565b60006020820190508181036000830152611e3581611df9565b9050919050565b6000611e4782611414565b9150611e5283611414565b925082821015611e6557611e6461172b565b5b82820390509291505056fea2646970667358221220e1114e450fd307718f8379fdb403c0f52a7e33c912e17c78824bfcd43f79d4eb64736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000543e60af194a7ab4abe9fb17be030aff72888ea40000000000000000000000000000000000000000026c62ad77dc602dae0000000000000000000000000000000000000000000000000000000000000000000012476f6f6e73206f662042616c6174726f6f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003474f420000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Goons of Balatroon
Arg [1] : symbol (string): GOB
Arg [2] : receiver (address): 0x543e60aF194A7AB4Abe9fb17Be030AfF72888ea4
Arg [3] : totalSupply (uint256): 750000000000000000000000000

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000543e60af194a7ab4abe9fb17be030aff72888ea4
Arg [3] : 0000000000000000000000000000000000000000026c62ad77dc602dae000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [5] : 476f6f6e73206f662042616c6174726f6f6e0000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 474f420000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

17819:1421:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7780:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9947:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8900:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10598:568;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8742:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11575:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18467:85;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9071:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2513:103;;;:::i;:::-;;18871:362;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1862:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7999:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18130:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12293:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9411:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9649:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2771:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7780:100;7834:13;7867:5;7860:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7780:100;:::o;9947:169::-;10030:4;10047:39;10056:12;:10;:12::i;:::-;10070:7;10079:6;10047:8;:39::i;:::-;10104:4;10097:11;;9947:169;;;;:::o;8900:108::-;8961:7;8988:12;;8981:19;;8900:108;:::o;10598:568::-;10738:4;10755:36;10765:6;10773:9;10784:6;10755:9;:36::i;:::-;10822:16;;;;;;;;;;;10808:30;;:10;:30;;;10804:333;;10855:24;10882:11;:19;10894:6;10882:19;;;;;;;;;;;;;;;:33;10902:12;:10;:12::i;:::-;10882:33;;;;;;;;;;;;;;;;10855:60;;10958:6;10938:16;:26;;10930:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;11053:57;11062:6;11070:12;:10;:12::i;:::-;11103:6;11084:16;:25;11053:8;:57::i;:::-;10840:297;10804:333;11154:4;11147:11;;10598:568;;;;;:::o;8742:93::-;8800:5;8825:2;8818:9;;8742:93;:::o;11575:215::-;11663:4;11680:80;11689:12;:10;:12::i;:::-;11703:7;11749:10;11712:11;:25;11724:12;:10;:12::i;:::-;11712:25;;;;;;;;;;;;;;;:34;11738:7;11712:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;11680:8;:80::i;:::-;11778:4;11771:11;;11575:215;;;;:::o;18467:85::-;18517:27;18523:12;:10;:12::i;:::-;18537:6;18517:5;:27::i;:::-;18467:85;:::o;9071:127::-;9145:7;9172:9;:18;9182:7;9172:18;;;;;;;;;;;;;;;;9165:25;;9071:127;;;:::o;2513:103::-;2093:12;:10;:12::i;:::-;2082:23;;:7;:5;:7::i;:::-;:23;;;2074:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2578:30:::1;2605:1;2578:18;:30::i;:::-;2513:103::o:0;18871:362::-;18942:24;18969:32;18979:7;18988:12;:10;:12::i;:::-;18969:9;:32::i;:::-;18942:59;;19040:6;19020:16;:26;;19012:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;19123:58;19132:7;19141:12;:10;:12::i;:::-;19174:6;19155:16;:25;19123:8;:58::i;:::-;19203:22;19209:7;19218:6;19203:5;:22::i;:::-;18931:302;18871:362;;:::o;1862:87::-;1908:7;1935:6;;;;;;;;;;;1928:13;;1862:87;:::o;7999:104::-;8055:13;8088:7;8081:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7999:104;:::o;18130:220::-;2093:12;:10;:12::i;:::-;2082:23;;:7;:5;:7::i;:::-;:23;;;2074:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18223:18:::1;;;;;;;;;;;18222:19;18214:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;18292:4;18271:18;;:25;;;;;;;;;;;;;;;;;;18326:16;18307;;:35;;;;;;;;;;;;;;;;;;18130:220:::0;:::o;12293:413::-;12386:4;12403:24;12430:11;:25;12442:12;:10;:12::i;:::-;12430:25;;;;;;;;;;;;;;;:34;12456:7;12430:34;;;;;;;;;;;;;;;;12403:61;;12503:15;12483:16;:35;;12475:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;12596:67;12605:12;:10;:12::i;:::-;12619:7;12647:15;12628:16;:34;12596:8;:67::i;:::-;12694:4;12687:11;;;12293:413;;;;:::o;9411:175::-;9497:4;9514:42;9524:12;:10;:12::i;:::-;9538:9;9549:6;9514:9;:42::i;:::-;9574:4;9567:11;;9411:175;;;;:::o;9649:151::-;9738:7;9765:11;:18;9777:5;9765:18;;;;;;;;;;;;;;;:27;9784:7;9765:27;;;;;;;;;;;;;;;;9758:34;;9649:151;;;;:::o;2771:201::-;2093:12;:10;:12::i;:::-;2082:23;;:7;:5;:7::i;:::-;:23;;;2074:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2880:1:::1;2860:22;;:8;:22;;;;2852:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2936:28;2955:8;2936:18;:28::i;:::-;2771:201:::0;:::o;656:98::-;709:7;736:10;729:17;;656:98;:::o;15977:380::-;16130:1;16113:19;;:5;:19;;;;16105:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16211:1;16192:21;;:7;:21;;;;16184:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16295:6;16265:11;:18;16277:5;16265:18;;;;;;;;;;;;;;;:27;16284:7;16265:27;;;;;;;;;;;;;;;:36;;;;16333:7;16317:32;;16326:5;16317:32;;;16342:6;16317:32;;;;;;:::i;:::-;;;;;;;;15977:380;;;:::o;13196:733::-;13354:1;13336:20;;:6;:20;;;;13328:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13438:1;13417:23;;:9;:23;;;;13409:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13493:47;13514:6;13522:9;13533:6;13493:20;:47::i;:::-;13553:21;13577:9;:17;13587:6;13577:17;;;;;;;;;;;;;;;;13553:41;;13630:6;13613:13;:23;;13605:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;13751:6;13735:13;:22;13715:9;:17;13725:6;13715:17;;;;;;;;;;;;;;;:42;;;;13803:6;13779:9;:20;13789:9;13779:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;13844:9;13827:35;;13836:6;13827:35;;;13855:6;13827:35;;;;;;:::i;:::-;;;;;;;;13875:46;13895:6;13903:9;13914:6;13875:19;:46::i;:::-;13317:612;13196:733;;;:::o;14948:591::-;15051:1;15032:21;;:7;:21;;;;15024:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;15104:49;15125:7;15142:1;15146:6;15104:20;:49::i;:::-;15166:22;15191:9;:18;15201:7;15191:18;;;;;;;;;;;;;;;;15166:43;;15246:6;15228:14;:24;;15220:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15365:6;15348:14;:23;15327:9;:18;15337:7;15327:18;;;;;;;;;;;;;;;:44;;;;15409:6;15393:12;;:22;;;;;;;:::i;:::-;;;;;;;;15459:1;15433:37;;15442:7;15433:37;;;15463:6;15433:37;;;;;;:::i;:::-;;;;;;;;15483:48;15503:7;15520:1;15524:6;15483:19;:48::i;:::-;15013:526;14948:591;;:::o;3132:191::-;3206:16;3225:6;;;;;;;;;;;3206:25;;3251:8;3242:6;;:17;;;;;;;;;;;;;;;;;;3306:8;3275:40;;3296:8;3275:40;;;;;;;;;;;;3195:128;3132:191;:::o;16957:125::-;;;;:::o;17686:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:::-;5295:6;5344:2;5332:9;5323:7;5319:23;5315:32;5312:119;;;5350:79;;:::i;:::-;5312:119;5470:1;5495:53;5540:7;5531:6;5520:9;5516:22;5495:53;:::i;:::-;5485:63;;5441:117;5236:329;;;;:::o;5571:118::-;5658:24;5676:5;5658:24;:::i;:::-;5653:3;5646:37;5571:118;;:::o;5695:222::-;5788:4;5826:2;5815:9;5811:18;5803:26;;5839:71;5907:1;5896:9;5892:17;5883:6;5839:71;:::i;:::-;5695:222;;;;:::o;5923:474::-;5991:6;5999;6048:2;6036:9;6027:7;6023:23;6019:32;6016:119;;;6054:79;;:::i;:::-;6016:119;6174:1;6199:53;6244:7;6235:6;6224:9;6220:22;6199:53;:::i;:::-;6189:63;;6145:117;6301:2;6327:53;6372:7;6363:6;6352:9;6348:22;6327:53;:::i;:::-;6317:63;;6272:118;5923:474;;;;;:::o;6403:180::-;6451:77;6448:1;6441:88;6548:4;6545:1;6538:15;6572:4;6569:1;6562:15;6589:320;6633:6;6670:1;6664:4;6660:12;6650:22;;6717:1;6711:4;6707:12;6738:18;6728:81;;6794:4;6786:6;6782:17;6772:27;;6728:81;6856:2;6848:6;6845:14;6825:18;6822:38;6819:84;;;6875:18;;:::i;:::-;6819:84;6640:269;6589:320;;;:::o;6915:227::-;7055:34;7051:1;7043:6;7039:14;7032:58;7124:10;7119:2;7111:6;7107:15;7100:35;6915:227;:::o;7148:366::-;7290:3;7311:67;7375:2;7370:3;7311:67;:::i;:::-;7304:74;;7387:93;7476:3;7387:93;:::i;:::-;7505:2;7500:3;7496:12;7489:19;;7148:366;;;:::o;7520:419::-;7686:4;7724:2;7713:9;7709:18;7701:26;;7773:9;7767:4;7763:20;7759:1;7748:9;7744:17;7737:47;7801:131;7927:4;7801:131;:::i;:::-;7793:139;;7520:419;;;:::o;7945:180::-;7993:77;7990:1;7983:88;8090:4;8087:1;8080:15;8114:4;8111:1;8104:15;8131:305;8171:3;8190:20;8208:1;8190:20;:::i;:::-;8185:25;;8224:20;8242:1;8224:20;:::i;:::-;8219:25;;8378:1;8310:66;8306:74;8303:1;8300:81;8297:107;;;8384:18;;:::i;:::-;8297:107;8428:1;8425;8421:9;8414:16;;8131:305;;;;:::o;8442:182::-;8582:34;8578:1;8570:6;8566:14;8559:58;8442:182;:::o;8630:366::-;8772:3;8793:67;8857:2;8852:3;8793:67;:::i;:::-;8786:74;;8869:93;8958:3;8869:93;:::i;:::-;8987:2;8982:3;8978:12;8971:19;;8630:366;;;:::o;9002:419::-;9168:4;9206:2;9195:9;9191:18;9183:26;;9255:9;9249:4;9245:20;9241:1;9230:9;9226:17;9219:47;9283:131;9409:4;9283:131;:::i;:::-;9275:139;;9002:419;;;:::o;9427:223::-;9567:34;9563:1;9555:6;9551:14;9544:58;9636:6;9631:2;9623:6;9619:15;9612:31;9427:223;:::o;9656:366::-;9798:3;9819:67;9883:2;9878:3;9819:67;:::i;:::-;9812:74;;9895:93;9984:3;9895:93;:::i;:::-;10013:2;10008:3;10004:12;9997:19;;9656:366;;;:::o;10028:419::-;10194:4;10232:2;10221:9;10217:18;10209:26;;10281:9;10275:4;10271:20;10267:1;10256:9;10252:17;10245:47;10309:131;10435:4;10309:131;:::i;:::-;10301:139;;10028:419;;;:::o;10453:162::-;10593:14;10589:1;10581:6;10577:14;10570:38;10453:162;:::o;10621:366::-;10763:3;10784:67;10848:2;10843:3;10784:67;:::i;:::-;10777:74;;10860:93;10949:3;10860:93;:::i;:::-;10978:2;10973:3;10969:12;10962:19;;10621:366;;;:::o;10993:419::-;11159:4;11197:2;11186:9;11182:18;11174:26;;11246:9;11240:4;11236:20;11232:1;11221:9;11217:17;11210:47;11274:131;11400:4;11274:131;:::i;:::-;11266:139;;10993:419;;;:::o;11418:224::-;11558:34;11554:1;11546:6;11542:14;11535:58;11627:7;11622:2;11614:6;11610:15;11603:32;11418:224;:::o;11648:366::-;11790:3;11811:67;11875:2;11870:3;11811:67;:::i;:::-;11804:74;;11887:93;11976:3;11887:93;:::i;:::-;12005:2;12000:3;11996:12;11989:19;;11648:366;;;:::o;12020:419::-;12186:4;12224:2;12213:9;12209:18;12201:26;;12273:9;12267:4;12263:20;12259:1;12248:9;12244:17;12237:47;12301:131;12427:4;12301:131;:::i;:::-;12293:139;;12020:419;;;:::o;12445:225::-;12585:34;12581:1;12573:6;12569:14;12562:58;12654:8;12649:2;12641:6;12637:15;12630:33;12445:225;:::o;12676:366::-;12818:3;12839:67;12903:2;12898:3;12839:67;:::i;:::-;12832:74;;12915:93;13004:3;12915:93;:::i;:::-;13033:2;13028:3;13024:12;13017:19;;12676:366;;;:::o;13048:419::-;13214:4;13252:2;13241:9;13237:18;13229:26;;13301:9;13295:4;13291:20;13287:1;13276:9;13272:17;13265:47;13329:131;13455:4;13329:131;:::i;:::-;13321:139;;13048:419;;;:::o;13473:223::-;13613:34;13609:1;13601:6;13597:14;13590:58;13682:6;13677:2;13669:6;13665:15;13658:31;13473:223;:::o;13702:366::-;13844:3;13865:67;13929:2;13924:3;13865:67;:::i;:::-;13858:74;;13941:93;14030:3;13941:93;:::i;:::-;14059:2;14054:3;14050:12;14043:19;;13702:366;;;:::o;14074:419::-;14240:4;14278:2;14267:9;14263:18;14255:26;;14327:9;14321:4;14317:20;14313:1;14302:9;14298:17;14291:47;14355:131;14481:4;14355:131;:::i;:::-;14347:139;;14074:419;;;:::o;14499:221::-;14639:34;14635:1;14627:6;14623:14;14616:58;14708:4;14703:2;14695:6;14691:15;14684:29;14499:221;:::o;14726:366::-;14868:3;14889:67;14953:2;14948:3;14889:67;:::i;:::-;14882:74;;14965:93;15054:3;14965:93;:::i;:::-;15083:2;15078:3;15074:12;15067:19;;14726:366;;;:::o;15098:419::-;15264:4;15302:2;15291:9;15287:18;15279:26;;15351:9;15345:4;15341:20;15337:1;15326:9;15322:17;15315:47;15379:131;15505:4;15379:131;:::i;:::-;15371:139;;15098:419;;;:::o;15523:224::-;15663:34;15659:1;15651:6;15647:14;15640:58;15732:7;15727:2;15719:6;15715:15;15708:32;15523:224;:::o;15753:366::-;15895:3;15916:67;15980:2;15975:3;15916:67;:::i;:::-;15909:74;;15992:93;16081:3;15992:93;:::i;:::-;16110:2;16105:3;16101:12;16094:19;;15753:366;;;:::o;16125:419::-;16291:4;16329:2;16318:9;16314:18;16306:26;;16378:9;16372:4;16368:20;16364:1;16353:9;16349:17;16342:47;16406:131;16532:4;16406:131;:::i;:::-;16398:139;;16125:419;;;:::o;16550:222::-;16690:34;16686:1;16678:6;16674:14;16667:58;16759:5;16754:2;16746:6;16742:15;16735:30;16550:222;:::o;16778:366::-;16920:3;16941:67;17005:2;17000:3;16941:67;:::i;:::-;16934:74;;17017:93;17106:3;17017:93;:::i;:::-;17135:2;17130:3;17126:12;17119:19;;16778:366;;;:::o;17150:419::-;17316:4;17354:2;17343:9;17339:18;17331:26;;17403:9;17397:4;17393:20;17389:1;17378:9;17374:17;17367:47;17431:131;17557:4;17431:131;:::i;:::-;17423:139;;17150:419;;;:::o;17575:225::-;17715:34;17711:1;17703:6;17699:14;17692:58;17784:8;17779:2;17771:6;17767:15;17760:33;17575:225;:::o;17806:366::-;17948:3;17969:67;18033:2;18028:3;17969:67;:::i;:::-;17962:74;;18045:93;18134:3;18045:93;:::i;:::-;18163:2;18158:3;18154:12;18147:19;;17806:366;;;:::o;18178:419::-;18344:4;18382:2;18371:9;18367:18;18359:26;;18431:9;18425:4;18421:20;18417:1;18406:9;18402:17;18395:47;18459:131;18585:4;18459:131;:::i;:::-;18451:139;;18178:419;;;:::o;18603:220::-;18743:34;18739:1;18731:6;18727:14;18720:58;18812:3;18807:2;18799:6;18795:15;18788:28;18603:220;:::o;18829:366::-;18971:3;18992:67;19056:2;19051:3;18992:67;:::i;:::-;18985:74;;19068:93;19157:3;19068:93;:::i;:::-;19186:2;19181:3;19177:12;19170:19;;18829:366;;;:::o;19201:419::-;19367:4;19405:2;19394:9;19390:18;19382:26;;19454:9;19448:4;19444:20;19440:1;19429:9;19425:17;19418:47;19482:131;19608:4;19482:131;:::i;:::-;19474:139;;19201:419;;;:::o;19626:221::-;19766:34;19762:1;19754:6;19750:14;19743:58;19835:4;19830:2;19822:6;19818:15;19811:29;19626:221;:::o;19853:366::-;19995:3;20016:67;20080:2;20075:3;20016:67;:::i;:::-;20009:74;;20092:93;20181:3;20092:93;:::i;:::-;20210:2;20205:3;20201:12;20194:19;;19853:366;;;:::o;20225:419::-;20391:4;20429:2;20418:9;20414:18;20406:26;;20478:9;20472:4;20468:20;20464:1;20453:9;20449:17;20442:47;20506:131;20632:4;20506:131;:::i;:::-;20498:139;;20225:419;;;:::o;20650:191::-;20690:4;20710:20;20728:1;20710:20;:::i;:::-;20705:25;;20744:20;20762:1;20744:20;:::i;:::-;20739:25;;20783:1;20780;20777:8;20774:34;;;20788:18;;:::i;:::-;20774:34;20833:1;20830;20826:9;20818:17;;20650:191;;;;:::o

Swarm Source

ipfs://e1114e450fd307718f8379fdb403c0f52a7e33c912e17c78824bfcd43f79d4eb
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.