Contract Address Details

0xb58904a0328abACf05b288E51a578471A8317B70

Token
BLOCKCHAIN INVADERS (INVADERS)
Creator
0xacd320–1fac21 at 0xafb5c7–f4193b
Balance
0 Doge
Tokens
Fetching tokens...
Transactions
145 Transactions
Transfers
95 Transfers
Gas Used
7,420,860
Last Balance Update
26340979
Contract name:
BlockchainInvaders




Optimization enabled
false
Compiler version
v0.8.16+commit.07a7930e




EVM Version
default




Verified at
2022-08-28T18:01:32.172653Z

Constructor Arguments

000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000031a17e847807b1bc00000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000003635c9adc5dea0000000000000000000000000000000000000000000000000000000b1a2bc2ec50000000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f6261666b72656962727132643262366c616b353775777a72716367726c716d616c686b63756e61336679616a326f3572357835767765336c366f342e697066732e6e667473746f726167652e6c696e6b2f000000000000000000000000000000000000000000000000000000000000000000000000000000

Arg [0] (uint8) : 18
Arg [1] (uint256) : 60000000000000000000000000
Arg [2] (string) : https://bafkreibrq2d2b6lak57uwzrqcgrlqmalhkcuna3fyaj2o5r5x5vwe3l6o4.ipfs.nftstorage.link/
Arg [3] (string) : 
Arg [4] (uint256) : 1000000000000000000000
Arg [5] (uint256) : 50000000000000000

              

Contract source code

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "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);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


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

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead 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, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

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

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

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol


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

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _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) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: BlockchainInvaders.sol


pragma solidity ^0.8.16;





// Blockchain Invaders on Dogechain

contract BlockchainInvaders is ERC20Burnable, Ownable {

    uint8 private _decimals; // 18
    uint256 public _maxSupply; // 60000000000000000000000000 (60 000 000 INVADERS)
    string private _imageURI;
    string private _externalURI;

    address public _token; // defualt: this address
    uint256 public _amount; // default: 1000000000000000000000 (1000 INVADERS)
    uint256 public _price; // default: 50000000000000000 (0.05 WDOGE)

    constructor(uint8 decimals_, uint256 maxSupply_, string memory imageURI_, string memory externalURI_, uint256 amount_, uint256 price_) ERC20("BLOCKCHAIN INVADERS", "INVADERS") {
        _decimals = decimals_;
        _maxSupply = maxSupply_;
        _imageURI = imageURI_;
        _externalURI = externalURI_;
        _amount = amount_;
        _price = price_;
         _mint(msg.sender, maxSupply_);
    }

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

    function imageURI() public view virtual returns (string memory) {
        return _imageURI;
    }

    function externalURI() public view virtual returns (string memory) {
        return _externalURI;
    }

    function newImageURI(string memory imageURI_) public virtual onlyOwner {
        _imageURI = imageURI_;
    }

    function newExternalURI(string memory externalURI_) public virtual onlyOwner {
        _externalURI = externalURI_;
    }

    // Faucet

    function newToken(address token_) external onlyOwner() {
        _token = token_;
    }

    function newAmount(uint256 amount_) external onlyOwner() {
        _amount = amount_;
    }

    function newPrice(uint256 price_) external onlyOwner() {
        _price = price_;
    }

    mapping(address => uint256) public lockTime;

    function claimToken(address recipient) external payable {
        require(block.timestamp > lockTime[msg.sender], "Please try again later");
        require(msg.value >= _price, "Not enough WDOGE sent, check price");
        require(IERC20(_token).balanceOf(address(this)) >= _amount, "Not enough tokens in the faucet");
        IERC20(_token).transfer(recipient, _amount);
        lockTime[msg.sender] = block.timestamp + 1 hours;      
    }

    function withdrawTokens() external onlyOwner {
        uint256 tokenbalance = IERC20(_token).balanceOf(address(this));
        IERC20(_token).transfer(msg.sender, tokenbalance);
    }

    function transferValue(address payable _to) external onlyOwner {
        uint256 amount = address(this).balance;
        (bool success, ) = _to.call{value: amount}("");
        require(success, "Failed to send WDOGE");
    }
}
        

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"uint8","name":"decimals_","internalType":"uint8"},{"type":"uint256","name":"maxSupply_","internalType":"uint256"},{"type":"string","name":"imageURI_","internalType":"string"},{"type":"string","name":"externalURI_","internalType":"string"},{"type":"uint256","name":"amount_","internalType":"uint256"},{"type":"uint256","name":"price_","internalType":"uint256"}]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"_amount","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"_maxSupply","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"_price","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"_token","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"burn","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"burnFrom","inputs":[{"type":"address","name":"account","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"payable","outputs":[],"name":"claimToken","inputs":[{"type":"address","name":"recipient","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"externalURI","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"imageURI","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"lockTime","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"newAmount","inputs":[{"type":"uint256","name":"amount_","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"newExternalURI","inputs":[{"type":"string","name":"externalURI_","internalType":"string"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"newImageURI","inputs":[{"type":"string","name":"imageURI_","internalType":"string"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"newPrice","inputs":[{"type":"uint256","name":"price_","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"newToken","inputs":[{"type":"address","name":"token_","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferValue","inputs":[{"type":"address","name":"_to","internalType":"address payable"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"withdrawTokens","inputs":[]}]
            

Contract Creation Code

0x60806040523480156200001157600080fd5b50604051620036e0380380620036e08339818101604052810190620000379190620005b7565b6040518060400160405280601381526020017f424c4f434b434841494e20494e564144455253000000000000000000000000008152506040518060400160405280600881526020017f494e5641444552530000000000000000000000000000000000000000000000008152508160039081620000b49190620008d2565b508060049081620000c69190620008d2565b505050620000e9620000dd6200015b60201b60201c565b6200016360201b60201c565b85600560146101000a81548160ff021916908360ff1602179055508460068190555083600790816200011c9190620008d2565b5082600890816200012e9190620008d2565b5081600a8190555080600b819055506200014f33866200022960201b60201c565b50505050505062000ad4565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200029b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002929062000a1a565b60405180910390fd5b620002af60008383620003a160201b60201c565b8060026000828254620002c3919062000a6b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200031a919062000a6b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000381919062000ab7565b60405180910390a36200039d60008383620003a660201b60201c565b5050565b505050565b505050565b6000604051905090565b600080fd5b600080fd5b600060ff82169050919050565b620003d781620003bf565b8114620003e357600080fd5b50565b600081519050620003f781620003cc565b92915050565b6000819050919050565b6200041281620003fd565b81146200041e57600080fd5b50565b600081519050620004328162000407565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200048d8262000442565b810181811067ffffffffffffffff82111715620004af57620004ae62000453565b5b80604052505050565b6000620004c4620003ab565b9050620004d2828262000482565b919050565b600067ffffffffffffffff821115620004f557620004f462000453565b5b620005008262000442565b9050602081019050919050565b60005b838110156200052d57808201518184015260208101905062000510565b60008484015250505050565b6000620005506200054a84620004d7565b620004b8565b9050828152602081018484840111156200056f576200056e6200043d565b5b6200057c8482856200050d565b509392505050565b600082601f8301126200059c576200059b62000438565b5b8151620005ae84826020860162000539565b91505092915050565b60008060008060008060c08789031215620005d757620005d6620003b5565b5b6000620005e789828a01620003e6565b9650506020620005fa89828a0162000421565b955050604087015167ffffffffffffffff8111156200061e576200061d620003ba565b5b6200062c89828a0162000584565b945050606087015167ffffffffffffffff81111562000650576200064f620003ba565b5b6200065e89828a0162000584565b93505060806200067189828a0162000421565b92505060a06200068489828a0162000421565b9150509295509295509295565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006e457607f821691505b602082108103620006fa57620006f96200069c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007647fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000725565b62000770868362000725565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620007b3620007ad620007a784620003fd565b62000788565b620003fd565b9050919050565b6000819050919050565b620007cf8362000792565b620007e7620007de82620007ba565b84845462000732565b825550505050565b600090565b620007fe620007ef565b6200080b818484620007c4565b505050565b5b81811015620008335762000827600082620007f4565b60018101905062000811565b5050565b601f82111562000882576200084c8162000700565b620008578462000715565b8101602085101562000867578190505b6200087f620008768562000715565b83018262000810565b50505b505050565b600082821c905092915050565b6000620008a76000198460080262000887565b1980831691505092915050565b6000620008c2838362000894565b9150826002028217905092915050565b620008dd8262000691565b67ffffffffffffffff811115620008f957620008f862000453565b5b620009058254620006cb565b6200091282828562000837565b600060209050601f8311600181146200094a576000841562000935578287015190505b620009418582620008b4565b865550620009b1565b601f1984166200095a8662000700565b60005b8281101562000984578489015182556001820191506020850194506020810190506200095d565b86831015620009a45784890151620009a0601f89168262000894565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000a02601f83620009b9565b915062000a0f82620009ca565b602082019050919050565b6000602082019050818103600083015262000a3581620009f3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000a7882620003fd565b915062000a8583620003fd565b925082820190508082111562000aa05762000a9f62000a3c565b5b92915050565b62000ab181620003fd565b82525050565b600060208201905062000ace600083018462000aa6565b92915050565b612bfc8062000ae46000396000f3fe6080604052600436106101d85760003560e01c806370a0823111610102578063a4beda6311610095578063ebd51a7611610064578063ebd51a76146106b3578063ecd0c0c3146106dc578063f2fde38b14610707578063fe72ac7f14610730576101d8565b8063a4beda63146105d3578063a9059cbb14610610578063dd62ed3e1461064d578063e353960a1461068a576101d8565b80638da5cb5b116100d15780638da5cb5b1461051557806395d89b41146105405780639887f1801461056b578063a457c2d714610596576101d8565b806370a0823114610481578063715018a6146104be57806379cc6790146104d55780638d8f2adb146104fe576101d8565b806322f4596f1161017a57806332f289cf1161014957806332f289cf146103d457806339509351146103f057806342966c681461042d5780635ecf091f14610456576101d8565b806322f4596f14610316578063235b6ea11461034157806323b872dd1461036c578063313ce567146103a9576101d8565b8063135d088d116101b6578063135d088d1461026e5780631753531a1461029957806318160ddd146102c25780631e4198e0146102ed576101d8565b806304b9b16b146101dd57806306fdde0314610206578063095ea7b314610231575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190611a90565b610759565b005b34801561021257600080fd5b5061021b61076b565b6040516102289190611b4d565b60405180910390f35b34801561023d57600080fd5b5061025860048036038101906102539190611bcd565b6107fd565b6040516102659190611c28565b60405180910390f35b34801561027a57600080fd5b50610283610820565b6040516102909190611b4d565b60405180910390f35b3480156102a557600080fd5b506102c060048036038101906102bb9190611d78565b6108b2565b005b3480156102ce57600080fd5b506102d76108cd565b6040516102e49190611dd0565b60405180910390f35b3480156102f957600080fd5b50610314600480360381019061030f9190611e29565b6108d7565b005b34801561032257600080fd5b5061032b610995565b6040516103389190611dd0565b60405180910390f35b34801561034d57600080fd5b5061035661099b565b6040516103639190611dd0565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e9190611e56565b6109a1565b6040516103a09190611c28565b60405180910390f35b3480156103b557600080fd5b506103be6109d0565b6040516103cb9190611ec5565b60405180910390f35b6103ee60048036038101906103e99190611ee0565b6109e7565b005b3480156103fc57600080fd5b5061041760048036038101906104129190611bcd565b610c84565b6040516104249190611c28565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f9190611a90565b610cbb565b005b34801561046257600080fd5b5061046b610ccf565b6040516104789190611b4d565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a39190611ee0565b610d61565b6040516104b59190611dd0565b60405180910390f35b3480156104ca57600080fd5b506104d3610da9565b005b3480156104e157600080fd5b506104fc60048036038101906104f79190611bcd565b610dbd565b005b34801561050a57600080fd5b50610513610ddd565b005b34801561052157600080fd5b5061052a610f29565b6040516105379190611f1c565b60405180910390f35b34801561054c57600080fd5b50610555610f53565b6040516105629190611b4d565b60405180910390f35b34801561057757600080fd5b50610580610fe5565b60405161058d9190611dd0565b60405180910390f35b3480156105a257600080fd5b506105bd60048036038101906105b89190611bcd565b610feb565b6040516105ca9190611c28565b60405180910390f35b3480156105df57600080fd5b506105fa60048036038101906105f59190611ee0565b611062565b6040516106079190611dd0565b60405180910390f35b34801561061c57600080fd5b5061063760048036038101906106329190611bcd565b61107a565b6040516106449190611c28565b60405180910390f35b34801561065957600080fd5b50610674600480360381019061066f9190611f37565b61109d565b6040516106819190611dd0565b60405180910390f35b34801561069657600080fd5b506106b160048036038101906106ac9190611d78565b611124565b005b3480156106bf57600080fd5b506106da60048036038101906106d59190611ee0565b61113f565b005b3480156106e857600080fd5b506106f161118b565b6040516106fe9190611f1c565b60405180910390f35b34801561071357600080fd5b5061072e60048036038101906107299190611ee0565b6111b1565b005b34801561073c57600080fd5b5061075760048036038101906107529190611a90565b611234565b005b610761611246565b80600a8190555050565b60606003805461077a90611fa6565b80601f01602080910402602001604051908101604052809291908181526020018280546107a690611fa6565b80156107f35780601f106107c8576101008083540402835291602001916107f3565b820191906000526020600020905b8154815290600101906020018083116107d657829003601f168201915b5050505050905090565b6000806108086112c4565b90506108158185856112cc565b600191505092915050565b60606007805461082f90611fa6565b80601f016020809104026020016040519081016040528092919081815260200182805461085b90611fa6565b80156108a85780601f1061087d576101008083540402835291602001916108a8565b820191906000526020600020905b81548152906001019060200180831161088b57829003601f168201915b5050505050905090565b6108ba611246565b80600790816108c99190612183565b5050565b6000600254905090565b6108df611246565b600047905060008273ffffffffffffffffffffffffffffffffffffffff168260405161090a90612286565b60006040518083038185875af1925050503d8060008114610947576040519150601f19603f3d011682016040523d82523d6000602084013e61094c565b606091505b5050905080610990576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610987906122e7565b60405180910390fd5b505050565b60065481565b600b5481565b6000806109ac6112c4565b90506109b9858285611495565b6109c4858585611521565b60019150509392505050565b6000600560149054906101000a900460ff16905090565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020544211610a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5f90612353565b60405180910390fd5b600b54341015610aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa4906123e5565b60405180910390fd5b600a54600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610b0b9190611f1c565b602060405180830381865afa158015610b28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4c919061241a565b1015610b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8490612493565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb82600a546040518363ffffffff1660e01b8152600401610bec9291906124b3565b6020604051808303816000875af1158015610c0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c2f9190612508565b50610e1042610c3e9190612564565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b600080610c8f6112c4565b9050610cb0818585610ca1858961109d565b610cab9190612564565b6112cc565b600191505092915050565b610ccc610cc66112c4565b826117a0565b50565b606060088054610cde90611fa6565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0a90611fa6565b8015610d575780601f10610d2c57610100808354040283529160200191610d57565b820191906000526020600020905b815481529060010190602001808311610d3a57829003601f168201915b5050505050905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610db1611246565b610dbb6000611976565b565b610dcf82610dc96112c4565b83611495565b610dd982826117a0565b5050565b610de5611246565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610e429190611f1c565b602060405180830381865afa158015610e5f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e83919061241a565b9050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610ee29291906124b3565b6020604051808303816000875af1158015610f01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f259190612508565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610f6290611fa6565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8e90611fa6565b8015610fdb5780601f10610fb057610100808354040283529160200191610fdb565b820191906000526020600020905b815481529060010190602001808311610fbe57829003601f168201915b5050505050905090565b600a5481565b600080610ff66112c4565b90506000611004828661109d565b905083811015611049576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110409061260a565b60405180910390fd5b61105682868684036112cc565b60019250505092915050565b600c6020528060005260406000206000915090505481565b6000806110856112c4565b9050611092818585611521565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61112c611246565b806008908161113b9190612183565b5050565b611147611246565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6111b9611246565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121f9061269c565b60405180910390fd5b61123181611976565b50565b61123c611246565b80600b8190555050565b61124e6112c4565b73ffffffffffffffffffffffffffffffffffffffff1661126c610f29565b73ffffffffffffffffffffffffffffffffffffffff16146112c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b990612708565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361133b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113329061279a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a19061282c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114889190611dd0565b60405180910390a3505050565b60006114a1848461109d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461151b578181101561150d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150490612898565b60405180910390fd5b61151a84848484036112cc565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611590576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115879061292a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f6906129bc565b60405180910390fd5b61160a838383611a3c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168790612a4e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117239190612564565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117879190611dd0565b60405180910390a361179a848484611a41565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361180f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180690612ae0565b60405180910390fd5b61181b82600083611a3c565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156118a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189890612b72565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546118f89190612b92565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161195d9190611dd0565b60405180910390a361197183600084611a41565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b611a6d81611a5a565b8114611a7857600080fd5b50565b600081359050611a8a81611a64565b92915050565b600060208284031215611aa657611aa5611a50565b5b6000611ab484828501611a7b565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611af7578082015181840152602081019050611adc565b60008484015250505050565b6000601f19601f8301169050919050565b6000611b1f82611abd565b611b298185611ac8565b9350611b39818560208601611ad9565b611b4281611b03565b840191505092915050565b60006020820190508181036000830152611b678184611b14565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b9a82611b6f565b9050919050565b611baa81611b8f565b8114611bb557600080fd5b50565b600081359050611bc781611ba1565b92915050565b60008060408385031215611be457611be3611a50565b5b6000611bf285828601611bb8565b9250506020611c0385828601611a7b565b9150509250929050565b60008115159050919050565b611c2281611c0d565b82525050565b6000602082019050611c3d6000830184611c19565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611c8582611b03565b810181811067ffffffffffffffff82111715611ca457611ca3611c4d565b5b80604052505050565b6000611cb7611a46565b9050611cc38282611c7c565b919050565b600067ffffffffffffffff821115611ce357611ce2611c4d565b5b611cec82611b03565b9050602081019050919050565b82818337600083830152505050565b6000611d1b611d1684611cc8565b611cad565b905082815260208101848484011115611d3757611d36611c48565b5b611d42848285611cf9565b509392505050565b600082601f830112611d5f57611d5e611c43565b5b8135611d6f848260208601611d08565b91505092915050565b600060208284031215611d8e57611d8d611a50565b5b600082013567ffffffffffffffff811115611dac57611dab611a55565b5b611db884828501611d4a565b91505092915050565b611dca81611a5a565b82525050565b6000602082019050611de56000830184611dc1565b92915050565b6000611df682611b6f565b9050919050565b611e0681611deb565b8114611e1157600080fd5b50565b600081359050611e2381611dfd565b92915050565b600060208284031215611e3f57611e3e611a50565b5b6000611e4d84828501611e14565b91505092915050565b600080600060608486031215611e6f57611e6e611a50565b5b6000611e7d86828701611bb8565b9350506020611e8e86828701611bb8565b9250506040611e9f86828701611a7b565b9150509250925092565b600060ff82169050919050565b611ebf81611ea9565b82525050565b6000602082019050611eda6000830184611eb6565b92915050565b600060208284031215611ef657611ef5611a50565b5b6000611f0484828501611bb8565b91505092915050565b611f1681611b8f565b82525050565b6000602082019050611f316000830184611f0d565b92915050565b60008060408385031215611f4e57611f4d611a50565b5b6000611f5c85828601611bb8565b9250506020611f6d85828601611bb8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611fbe57607f821691505b602082108103611fd157611fd0611f77565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026120397fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611ffc565b6120438683611ffc565b95508019841693508086168417925050509392505050565b6000819050919050565b600061208061207b61207684611a5a565b61205b565b611a5a565b9050919050565b6000819050919050565b61209a83612065565b6120ae6120a682612087565b848454612009565b825550505050565b600090565b6120c36120b6565b6120ce818484612091565b505050565b5b818110156120f2576120e76000826120bb565b6001810190506120d4565b5050565b601f8211156121375761210881611fd7565b61211184611fec565b81016020851015612120578190505b61213461212c85611fec565b8301826120d3565b50505b505050565b600082821c905092915050565b600061215a6000198460080261213c565b1980831691505092915050565b60006121738383612149565b9150826002028217905092915050565b61218c82611abd565b67ffffffffffffffff8111156121a5576121a4611c4d565b5b6121af8254611fa6565b6121ba8282856120f6565b600060209050601f8311600181146121ed57600084156121db578287015190505b6121e58582612167565b86555061224d565b601f1984166121fb86611fd7565b60005b82811015612223578489015182556001820191506020850194506020810190506121fe565b86831015612240578489015161223c601f891682612149565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b50565b6000612270600083612255565b915061227b82612260565b600082019050919050565b600061229182612263565b9150819050919050565b7f4661696c656420746f2073656e642057444f4745000000000000000000000000600082015250565b60006122d1601483611ac8565b91506122dc8261229b565b602082019050919050565b60006020820190508181036000830152612300816122c4565b9050919050565b7f506c656173652074727920616761696e206c6174657200000000000000000000600082015250565b600061233d601683611ac8565b915061234882612307565b602082019050919050565b6000602082019050818103600083015261236c81612330565b9050919050565b7f4e6f7420656e6f7567682057444f47452073656e742c20636865636b2070726960008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006123cf602283611ac8565b91506123da82612373565b604082019050919050565b600060208201905081810360008301526123fe816123c2565b9050919050565b60008151905061241481611a64565b92915050565b6000602082840312156124305761242f611a50565b5b600061243e84828501612405565b91505092915050565b7f4e6f7420656e6f75676820746f6b656e7320696e207468652066617563657400600082015250565b600061247d601f83611ac8565b915061248882612447565b602082019050919050565b600060208201905081810360008301526124ac81612470565b9050919050565b60006040820190506124c86000830185611f0d565b6124d56020830184611dc1565b9392505050565b6124e581611c0d565b81146124f057600080fd5b50565b600081519050612502816124dc565b92915050565b60006020828403121561251e5761251d611a50565b5b600061252c848285016124f3565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061256f82611a5a565b915061257a83611a5a565b925082820190508082111561259257612591612535565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006125f4602583611ac8565b91506125ff82612598565b604082019050919050565b60006020820190508181036000830152612623816125e7565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612686602683611ac8565b91506126918261262a565b604082019050919050565b600060208201905081810360008301526126b581612679565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006126f2602083611ac8565b91506126fd826126bc565b602082019050919050565b60006020820190508181036000830152612721816126e5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612784602483611ac8565b915061278f82612728565b604082019050919050565b600060208201905081810360008301526127b381612777565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612816602283611ac8565b9150612821826127ba565b604082019050919050565b6000602082019050818103600083015261284581612809565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612882601d83611ac8565b915061288d8261284c565b602082019050919050565b600060208201905081810360008301526128b181612875565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612914602583611ac8565b915061291f826128b8565b604082019050919050565b6000602082019050818103600083015261294381612907565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006129a6602383611ac8565b91506129b18261294a565b604082019050919050565b600060208201905081810360008301526129d581612999565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612a38602683611ac8565b9150612a43826129dc565b604082019050919050565b60006020820190508181036000830152612a6781612a2b565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612aca602183611ac8565b9150612ad582612a6e565b604082019050919050565b60006020820190508181036000830152612af981612abd565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612b5c602283611ac8565b9150612b6782612b00565b604082019050919050565b60006020820190508181036000830152612b8b81612b4f565b9050919050565b6000612b9d82611a5a565b9150612ba883611a5a565b9250828203905081811115612bc057612bbf612535565b5b9291505056fea26469706673582212204cfcf063184058104ea0a668339c5f6c322a14357a62cc51a9314a58122e987964736f6c63430008100033000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000031a17e847807b1bc00000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000003635c9adc5dea0000000000000000000000000000000000000000000000000000000b1a2bc2ec50000000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f6261666b72656962727132643262366c616b353775777a72716367726c716d616c686b63756e61336679616a326f3572357835767765336c366f342e697066732e6e667473746f726167652e6c696e6b2f000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed ByteCode

0x6080604052600436106101d85760003560e01c806370a0823111610102578063a4beda6311610095578063ebd51a7611610064578063ebd51a76146106b3578063ecd0c0c3146106dc578063f2fde38b14610707578063fe72ac7f14610730576101d8565b8063a4beda63146105d3578063a9059cbb14610610578063dd62ed3e1461064d578063e353960a1461068a576101d8565b80638da5cb5b116100d15780638da5cb5b1461051557806395d89b41146105405780639887f1801461056b578063a457c2d714610596576101d8565b806370a0823114610481578063715018a6146104be57806379cc6790146104d55780638d8f2adb146104fe576101d8565b806322f4596f1161017a57806332f289cf1161014957806332f289cf146103d457806339509351146103f057806342966c681461042d5780635ecf091f14610456576101d8565b806322f4596f14610316578063235b6ea11461034157806323b872dd1461036c578063313ce567146103a9576101d8565b8063135d088d116101b6578063135d088d1461026e5780631753531a1461029957806318160ddd146102c25780631e4198e0146102ed576101d8565b806304b9b16b146101dd57806306fdde0314610206578063095ea7b314610231575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190611a90565b610759565b005b34801561021257600080fd5b5061021b61076b565b6040516102289190611b4d565b60405180910390f35b34801561023d57600080fd5b5061025860048036038101906102539190611bcd565b6107fd565b6040516102659190611c28565b60405180910390f35b34801561027a57600080fd5b50610283610820565b6040516102909190611b4d565b60405180910390f35b3480156102a557600080fd5b506102c060048036038101906102bb9190611d78565b6108b2565b005b3480156102ce57600080fd5b506102d76108cd565b6040516102e49190611dd0565b60405180910390f35b3480156102f957600080fd5b50610314600480360381019061030f9190611e29565b6108d7565b005b34801561032257600080fd5b5061032b610995565b6040516103389190611dd0565b60405180910390f35b34801561034d57600080fd5b5061035661099b565b6040516103639190611dd0565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e9190611e56565b6109a1565b6040516103a09190611c28565b60405180910390f35b3480156103b557600080fd5b506103be6109d0565b6040516103cb9190611ec5565b60405180910390f35b6103ee60048036038101906103e99190611ee0565b6109e7565b005b3480156103fc57600080fd5b5061041760048036038101906104129190611bcd565b610c84565b6040516104249190611c28565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f9190611a90565b610cbb565b005b34801561046257600080fd5b5061046b610ccf565b6040516104789190611b4d565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a39190611ee0565b610d61565b6040516104b59190611dd0565b60405180910390f35b3480156104ca57600080fd5b506104d3610da9565b005b3480156104e157600080fd5b506104fc60048036038101906104f79190611bcd565b610dbd565b005b34801561050a57600080fd5b50610513610ddd565b005b34801561052157600080fd5b5061052a610f29565b6040516105379190611f1c565b60405180910390f35b34801561054c57600080fd5b50610555610f53565b6040516105629190611b4d565b60405180910390f35b34801561057757600080fd5b50610580610fe5565b60405161058d9190611dd0565b60405180910390f35b3480156105a257600080fd5b506105bd60048036038101906105b89190611bcd565b610feb565b6040516105ca9190611c28565b60405180910390f35b3480156105df57600080fd5b506105fa60048036038101906105f59190611ee0565b611062565b6040516106079190611dd0565b60405180910390f35b34801561061c57600080fd5b5061063760048036038101906106329190611bcd565b61107a565b6040516106449190611c28565b60405180910390f35b34801561065957600080fd5b50610674600480360381019061066f9190611f37565b61109d565b6040516106819190611dd0565b60405180910390f35b34801561069657600080fd5b506106b160048036038101906106ac9190611d78565b611124565b005b3480156106bf57600080fd5b506106da60048036038101906106d59190611ee0565b61113f565b005b3480156106e857600080fd5b506106f161118b565b6040516106fe9190611f1c565b60405180910390f35b34801561071357600080fd5b5061072e60048036038101906107299190611ee0565b6111b1565b005b34801561073c57600080fd5b5061075760048036038101906107529190611a90565b611234565b005b610761611246565b80600a8190555050565b60606003805461077a90611fa6565b80601f01602080910402602001604051908101604052809291908181526020018280546107a690611fa6565b80156107f35780601f106107c8576101008083540402835291602001916107f3565b820191906000526020600020905b8154815290600101906020018083116107d657829003601f168201915b5050505050905090565b6000806108086112c4565b90506108158185856112cc565b600191505092915050565b60606007805461082f90611fa6565b80601f016020809104026020016040519081016040528092919081815260200182805461085b90611fa6565b80156108a85780601f1061087d576101008083540402835291602001916108a8565b820191906000526020600020905b81548152906001019060200180831161088b57829003601f168201915b5050505050905090565b6108ba611246565b80600790816108c99190612183565b5050565b6000600254905090565b6108df611246565b600047905060008273ffffffffffffffffffffffffffffffffffffffff168260405161090a90612286565b60006040518083038185875af1925050503d8060008114610947576040519150601f19603f3d011682016040523d82523d6000602084013e61094c565b606091505b5050905080610990576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610987906122e7565b60405180910390fd5b505050565b60065481565b600b5481565b6000806109ac6112c4565b90506109b9858285611495565b6109c4858585611521565b60019150509392505050565b6000600560149054906101000a900460ff16905090565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020544211610a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5f90612353565b60405180910390fd5b600b54341015610aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa4906123e5565b60405180910390fd5b600a54600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610b0b9190611f1c565b602060405180830381865afa158015610b28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4c919061241a565b1015610b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8490612493565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb82600a546040518363ffffffff1660e01b8152600401610bec9291906124b3565b6020604051808303816000875af1158015610c0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c2f9190612508565b50610e1042610c3e9190612564565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b600080610c8f6112c4565b9050610cb0818585610ca1858961109d565b610cab9190612564565b6112cc565b600191505092915050565b610ccc610cc66112c4565b826117a0565b50565b606060088054610cde90611fa6565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0a90611fa6565b8015610d575780601f10610d2c57610100808354040283529160200191610d57565b820191906000526020600020905b815481529060010190602001808311610d3a57829003601f168201915b5050505050905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610db1611246565b610dbb6000611976565b565b610dcf82610dc96112c4565b83611495565b610dd982826117a0565b5050565b610de5611246565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610e429190611f1c565b602060405180830381865afa158015610e5f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e83919061241a565b9050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610ee29291906124b3565b6020604051808303816000875af1158015610f01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f259190612508565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610f6290611fa6565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8e90611fa6565b8015610fdb5780601f10610fb057610100808354040283529160200191610fdb565b820191906000526020600020905b815481529060010190602001808311610fbe57829003601f168201915b5050505050905090565b600a5481565b600080610ff66112c4565b90506000611004828661109d565b905083811015611049576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110409061260a565b60405180910390fd5b61105682868684036112cc565b60019250505092915050565b600c6020528060005260406000206000915090505481565b6000806110856112c4565b9050611092818585611521565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61112c611246565b806008908161113b9190612183565b5050565b611147611246565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6111b9611246565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121f9061269c565b60405180910390fd5b61123181611976565b50565b61123c611246565b80600b8190555050565b61124e6112c4565b73ffffffffffffffffffffffffffffffffffffffff1661126c610f29565b73ffffffffffffffffffffffffffffffffffffffff16146112c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b990612708565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361133b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113329061279a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a19061282c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114889190611dd0565b60405180910390a3505050565b60006114a1848461109d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461151b578181101561150d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150490612898565b60405180910390fd5b61151a84848484036112cc565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611590576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115879061292a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f6906129bc565b60405180910390fd5b61160a838383611a3c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168790612a4e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117239190612564565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117879190611dd0565b60405180910390a361179a848484611a41565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361180f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180690612ae0565b60405180910390fd5b61181b82600083611a3c565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156118a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189890612b72565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546118f89190612b92565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161195d9190611dd0565b60405180910390a361197183600084611a41565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b611a6d81611a5a565b8114611a7857600080fd5b50565b600081359050611a8a81611a64565b92915050565b600060208284031215611aa657611aa5611a50565b5b6000611ab484828501611a7b565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611af7578082015181840152602081019050611adc565b60008484015250505050565b6000601f19601f8301169050919050565b6000611b1f82611abd565b611b298185611ac8565b9350611b39818560208601611ad9565b611b4281611b03565b840191505092915050565b60006020820190508181036000830152611b678184611b14565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b9a82611b6f565b9050919050565b611baa81611b8f565b8114611bb557600080fd5b50565b600081359050611bc781611ba1565b92915050565b60008060408385031215611be457611be3611a50565b5b6000611bf285828601611bb8565b9250506020611c0385828601611a7b565b9150509250929050565b60008115159050919050565b611c2281611c0d565b82525050565b6000602082019050611c3d6000830184611c19565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611c8582611b03565b810181811067ffffffffffffffff82111715611ca457611ca3611c4d565b5b80604052505050565b6000611cb7611a46565b9050611cc38282611c7c565b919050565b600067ffffffffffffffff821115611ce357611ce2611c4d565b5b611cec82611b03565b9050602081019050919050565b82818337600083830152505050565b6000611d1b611d1684611cc8565b611cad565b905082815260208101848484011115611d3757611d36611c48565b5b611d42848285611cf9565b509392505050565b600082601f830112611d5f57611d5e611c43565b5b8135611d6f848260208601611d08565b91505092915050565b600060208284031215611d8e57611d8d611a50565b5b600082013567ffffffffffffffff811115611dac57611dab611a55565b5b611db884828501611d4a565b91505092915050565b611dca81611a5a565b82525050565b6000602082019050611de56000830184611dc1565b92915050565b6000611df682611b6f565b9050919050565b611e0681611deb565b8114611e1157600080fd5b50565b600081359050611e2381611dfd565b92915050565b600060208284031215611e3f57611e3e611a50565b5b6000611e4d84828501611e14565b91505092915050565b600080600060608486031215611e6f57611e6e611a50565b5b6000611e7d86828701611bb8565b9350506020611e8e86828701611bb8565b9250506040611e9f86828701611a7b565b9150509250925092565b600060ff82169050919050565b611ebf81611ea9565b82525050565b6000602082019050611eda6000830184611eb6565b92915050565b600060208284031215611ef657611ef5611a50565b5b6000611f0484828501611bb8565b91505092915050565b611f1681611b8f565b82525050565b6000602082019050611f316000830184611f0d565b92915050565b60008060408385031215611f4e57611f4d611a50565b5b6000611f5c85828601611bb8565b9250506020611f6d85828601611bb8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611fbe57607f821691505b602082108103611fd157611fd0611f77565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026120397fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611ffc565b6120438683611ffc565b95508019841693508086168417925050509392505050565b6000819050919050565b600061208061207b61207684611a5a565b61205b565b611a5a565b9050919050565b6000819050919050565b61209a83612065565b6120ae6120a682612087565b848454612009565b825550505050565b600090565b6120c36120b6565b6120ce818484612091565b505050565b5b818110156120f2576120e76000826120bb565b6001810190506120d4565b5050565b601f8211156121375761210881611fd7565b61211184611fec565b81016020851015612120578190505b61213461212c85611fec565b8301826120d3565b50505b505050565b600082821c905092915050565b600061215a6000198460080261213c565b1980831691505092915050565b60006121738383612149565b9150826002028217905092915050565b61218c82611abd565b67ffffffffffffffff8111156121a5576121a4611c4d565b5b6121af8254611fa6565b6121ba8282856120f6565b600060209050601f8311600181146121ed57600084156121db578287015190505b6121e58582612167565b86555061224d565b601f1984166121fb86611fd7565b60005b82811015612223578489015182556001820191506020850194506020810190506121fe565b86831015612240578489015161223c601f891682612149565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b50565b6000612270600083612255565b915061227b82612260565b600082019050919050565b600061229182612263565b9150819050919050565b7f4661696c656420746f2073656e642057444f4745000000000000000000000000600082015250565b60006122d1601483611ac8565b91506122dc8261229b565b602082019050919050565b60006020820190508181036000830152612300816122c4565b9050919050565b7f506c656173652074727920616761696e206c6174657200000000000000000000600082015250565b600061233d601683611ac8565b915061234882612307565b602082019050919050565b6000602082019050818103600083015261236c81612330565b9050919050565b7f4e6f7420656e6f7567682057444f47452073656e742c20636865636b2070726960008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006123cf602283611ac8565b91506123da82612373565b604082019050919050565b600060208201905081810360008301526123fe816123c2565b9050919050565b60008151905061241481611a64565b92915050565b6000602082840312156124305761242f611a50565b5b600061243e84828501612405565b91505092915050565b7f4e6f7420656e6f75676820746f6b656e7320696e207468652066617563657400600082015250565b600061247d601f83611ac8565b915061248882612447565b602082019050919050565b600060208201905081810360008301526124ac81612470565b9050919050565b60006040820190506124c86000830185611f0d565b6124d56020830184611dc1565b9392505050565b6124e581611c0d565b81146124f057600080fd5b50565b600081519050612502816124dc565b92915050565b60006020828403121561251e5761251d611a50565b5b600061252c848285016124f3565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061256f82611a5a565b915061257a83611a5a565b925082820190508082111561259257612591612535565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006125f4602583611ac8565b91506125ff82612598565b604082019050919050565b60006020820190508181036000830152612623816125e7565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612686602683611ac8565b91506126918261262a565b604082019050919050565b600060208201905081810360008301526126b581612679565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006126f2602083611ac8565b91506126fd826126bc565b602082019050919050565b60006020820190508181036000830152612721816126e5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612784602483611ac8565b915061278f82612728565b604082019050919050565b600060208201905081810360008301526127b381612777565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612816602283611ac8565b9150612821826127ba565b604082019050919050565b6000602082019050818103600083015261284581612809565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612882601d83611ac8565b915061288d8261284c565b602082019050919050565b600060208201905081810360008301526128b181612875565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612914602583611ac8565b915061291f826128b8565b604082019050919050565b6000602082019050818103600083015261294381612907565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006129a6602383611ac8565b91506129b18261294a565b604082019050919050565b600060208201905081810360008301526129d581612999565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612a38602683611ac8565b9150612a43826129dc565b604082019050919050565b60006020820190508181036000830152612a6781612a2b565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612aca602183611ac8565b9150612ad582612a6e565b604082019050919050565b60006020820190508181036000830152612af981612abd565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612b5c602283611ac8565b9150612b6782612b00565b604082019050919050565b60006020820190508181036000830152612b8b81612b4f565b9050919050565b6000612b9d82611a5a565b9150612ba883611a5a565b9250828203905081811115612bc057612bbf612535565b5b9291505056fea26469706673582212204cfcf063184058104ea0a668339c5f6c322a14357a62cc51a9314a58122e987964736f6c63430008100033