ETH Price: $3,263.41 (-0.62%)
Gas: 1 Gwei

Token

EtherKois (EKS)
 

Overview

Max Total Supply

245 EKS

Holders

62

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 EKS
0xbc6819c533db537ad8e169d8d67e3c8971c0417f
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:
KoiPond

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : KoiPond.sol
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";

contract KoiPond is ERC721, Ownable {
    uint public constant MAX_KOIS = 5000;
    uint public constant MAX_KOIS_PER_TX = 20;
    uint public constant MAX_CLAIMABLE = 3;
    uint256 public PRICE = .02 ether;

    string _baseURL = "";
    string _contractURL = "";

    bool public paused;
    bool public claimPaused;

    bool private mintedPerfect;

    uint256[] kois;
    address[] claimableAddrs;
    mapping(address => bool) claimed;

    constructor() ERC721("EtherKois", "EKS") {
        paused = true;
        claimPaused = true;
        mintedPerfect = false;

        kois.push(0);  // token IDs will start at 1.
        claimableAddrs.push(0x1CB1A5e65610AEFF2551A50f76a87a7d3fB649C6);
        claimableAddrs.push(0x364C828eE171616a39897688A831c2499aD972ec);
        claimableAddrs.push(0x4f89Cd0CAE1e54D98db6a80150a824a533502EEa);
    }

    function makeKoi(address to) internal {
        uint256 dna = uint256(keccak256(abi.encodePacked(block.difficulty, block.timestamp, kois[kois.length - 1]))) % 100000000000000;
        kois.push(dna);
        _safeMint(to, kois.length - 1);
    }

    function reserve(uint256 amount) onlyOwner external {
        require(amount <= MAX_KOIS_PER_TX, "Too many kois at once");
        require(this.totalSupply() + amount <= MAX_KOIS, "Would exceed max supply");

        for (uint i = 0; i < amount; i++) {
            makeKoi(msg.sender);
        }
    }

    function goFish(uint amount) public payable {
        require(!paused, "Fishing is Paused");
        require(amount <= MAX_KOIS_PER_TX, "Too many kois at once");
        require(this.totalSupply() + amount <= MAX_KOIS, "Would exceed max supply");
        require(msg.value == PRICE * amount, "Incorrect ETH amount");

        for (uint i = 0; i < amount; i++) {
            makeKoi(msg.sender);
        }
    }

    function togglePaused() external onlyOwner {
        paused = !paused;
    }

    function getKoi(uint256 tokenID) external view returns (uint256) {
        return kois[tokenID];
    }

    function contractURI() external view returns (string memory) {
        return _contractURL;
    }

    function setContractURL(string memory _url) external onlyOwner {
        _contractURL = _url;
    }

    function _baseURI() internal view override returns (string memory) {
        return _baseURL;
    }

    function setBaseUri(string memory _uri) external onlyOwner {
        _baseURL = _uri;
    }

    function totalSupply() external view returns (uint256) {
        return kois.length - 1;
    }

    function getBalance() public view returns (uint256) {
        return address(this).balance;
    }

    function deposit(uint256 amount) payable public {
        require(msg.value == amount);
    }

    function withdraw() onlyOwner public {
        address payable p = payable(owner());
        p.transfer(getBalance());
    }

    function getClaimableAddresses() public view returns (address[] memory){
        return claimableAddrs;
    }

    function addClaimableAddress(address _addr) external onlyOwner {
        claimableAddrs.push(_addr);
    }

    function claim() external {
        require(!claimed[msg.sender], "already claimed");
        require(!claimPaused, "claiming is paused");
        uint claimable = 0;
        for (uint i = 0; i < claimableAddrs.length; i++) {
            IERC721 erc721 = IERC721(claimableAddrs[i]);
            claimable += erc721.balanceOf(msg.sender);
            if (claimable > MAX_CLAIMABLE) {
                claimable = MAX_CLAIMABLE;
                break;
            }
        }
        require(claimable > 0, "nothing to claim");
        require(this.totalSupply() + claimable <= MAX_KOIS, "Would exceed max supply");

        for (uint i = 0; i < claimable; i++) {
            makeKoi(msg.sender);
        }
        claimed[msg.sender] = true;
    }

    function toggleClaimable() external onlyOwner {
        claimPaused = !claimPaused;
    }

    function reservePerfectKois() external onlyOwner {
        require(!mintedPerfect, "perfect already minted");

        kois.push(11111111111111);  // Traditional
        _safeMint(msg.sender, kois.length - 1);
        kois.push(69696969696969);  //Dragon
        _safeMint(msg.sender, kois.length - 1);
        kois.push(77777777777777);  // Holographic
        _safeMint(msg.sender, kois.length - 1);
        kois.push(80808080808080);  // Fire
        _safeMint(msg.sender, kois.length - 1);
        kois.push(88888888888888);  // Sunset
        _safeMint(msg.sender, kois.length - 1);
        kois.push(95959595959595);  // Space
        _safeMint(msg.sender, kois.length - 1);
        kois.push(98989898989898);  // Ether
        _safeMint(msg.sender, kois.length - 1);
        kois.push(99999999999999);  // Cyborg
        _safeMint(msg.sender, kois.length - 1);

        mintedPerfect = true;
    }
}

File 2 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` 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 tokenId
    ) internal virtual {}
}

File 3 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

File 4 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 6 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 7 of 12 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 8 of 12 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 9 of 12 : Context.sol
// SPDX-License-Identifier: MIT

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 10 of 12 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 11 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 12 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","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":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_CLAIMABLE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_KOIS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_KOIS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"addClaimableAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getClaimableAddresses","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"getKoi","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"goFish","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservePerfectKois","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_url","type":"string"}],"name":"setContractURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleClaimable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266470de4df820000600755604051806020016040528060008152506008908051906020019062000036929190620003e1565b5060405180602001604052806000815250600990805190602001906200005e929190620003e1565b503480156200006c57600080fd5b506040518060400160405280600981526020017f45746865724b6f697300000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f454b5300000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000f1929190620003e1565b5080600190805190602001906200010a929190620003e1565b5050506200012d620001216200031360201b60201c565b6200031b60201b60201c565b6001600a60006101000a81548160ff0219169083151502179055506001600a60016101000a81548160ff0219169083151502179055506000600a60026101000a81548160ff021916908315150217905550600b60009080600181540180825580915050600190039060005260206000200160009091909190915055600c731cb1a5e65610aeff2551a50f76a87a7d3fb649c69080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600c73364c828ee171616a39897688a831c2499ad972ec9080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600c734f89cd0cae1e54d98db6a80150a824a533502eea9080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004f6565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003ef9062000491565b90600052602060002090601f0160209004810192826200041357600085556200045f565b82601f106200042e57805160ff19168380011785556200045f565b828001600101855582156200045f579182015b828111156200045e57825182559160200191906001019062000441565b5b5090506200046e919062000472565b5090565b5b808211156200048d57600081600090555060010162000473565b5090565b60006002820490506001821680620004aa57607f821691505b60208210811415620004c157620004c0620004c7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61486980620005066000396000f3fe6080604052600436106102255760003560e01c8063819b25ba11610123578063ade1d7cc116100ab578063d536bcfb1161006f578063d536bcfb1461077d578063e427ba51146107a6578063e8a3d485146107cf578063e985e9c5146107fa578063f2fde38b1461083757610225565b8063ade1d7cc146106b9578063b6b55f25146106d0578063b88d4fde146106ec578063c87b56dd14610715578063cd519e9a1461075257610225565b806398607c44116100f257806398607c44146105e65780639bf5b30814610611578063a0bcfc7f1461063c578063a22cb46514610665578063ab5e124a1461068e57610225565b8063819b25ba1461053c5780638d859f3e146105655780638da5cb5b1461059057806395d89b41146105bb57610225565b806340897bbe116101b157806365199c501161017557806365199c501461046457806370a0823114610480578063715018a6146104bd57806375706409146104d4578063769c509c1461051157610225565b806340897bbe146103a557806342842e0e146103bc5780634e71d92d146103e55780635c975abb146103fc5780636352211e1461042757610225565b806312065fe0116101f857806312065fe0146102f857806318160ddd1461032357806323b872dd1461034e57806336566f06146103775780633ccfd60b1461038e57610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906133da565b610860565b60405161025e9190613a5d565b60405180910390f35b34801561027357600080fd5b5061027c610942565b6040516102899190613a78565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b4919061346d565b6109d4565b6040516102c691906139d4565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f1919061339e565b610a59565b005b34801561030457600080fd5b5061030d610b71565b60405161031a9190613d9a565b60405180910390f35b34801561032f57600080fd5b50610338610b79565b6040516103459190613d9a565b60405180910390f35b34801561035a57600080fd5b5061037560048036038101906103709190613298565b610b92565b005b34801561038357600080fd5b5061038c610bf2565b005b34801561039a57600080fd5b506103a3610c9a565b005b3480156103b157600080fd5b506103ba610d73565b005b3480156103c857600080fd5b506103e360048036038101906103de9190613298565b610e1b565b005b3480156103f157600080fd5b506103fa610e3b565b005b34801561040857600080fd5b506104116111e3565b60405161041e9190613a5d565b60405180910390f35b34801561043357600080fd5b5061044e6004803603810190610449919061346d565b6111f6565b60405161045b91906139d4565b60405180910390f35b61047e6004803603810190610479919061346d565b6112a8565b005b34801561048c57600080fd5b506104a760048036038101906104a29190613233565b611483565b6040516104b49190613d9a565b60405180910390f35b3480156104c957600080fd5b506104d261153b565b005b3480156104e057600080fd5b506104fb60048036038101906104f6919061346d565b6115c3565b6040516105089190613d9a565b60405180910390f35b34801561051d57600080fd5b50610526611611565b6040516105339190613a3b565b60405180910390f35b34801561054857600080fd5b50610563600480360381019061055e919061346d565b61169f565b005b34801561057157600080fd5b5061057a611857565b6040516105879190613d9a565b60405180910390f35b34801561059c57600080fd5b506105a561185d565b6040516105b291906139d4565b60405180910390f35b3480156105c757600080fd5b506105d0611887565b6040516105dd9190613a78565b60405180910390f35b3480156105f257600080fd5b506105fb611919565b6040516106089190613d9a565b60405180910390f35b34801561061d57600080fd5b5061062661191f565b6040516106339190613d9a565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e919061342c565b611924565b005b34801561067157600080fd5b5061068c60048036038101906106879190613362565b6119ba565b005b34801561069a57600080fd5b506106a3611b3b565b6040516106b09190613a5d565b60405180910390f35b3480156106c557600080fd5b506106ce611b4e565b005b6106ea60048036038101906106e5919061346d565b611e87565b005b3480156106f857600080fd5b50610713600480360381019061070e91906132e7565b611e96565b005b34801561072157600080fd5b5061073c6004803603810190610737919061346d565b611ef8565b6040516107499190613a78565b60405180910390f35b34801561075e57600080fd5b50610767611f9f565b6040516107749190613d9a565b60405180910390f35b34801561078957600080fd5b506107a4600480360381019061079f9190613233565b611fa4565b005b3480156107b257600080fd5b506107cd60048036038101906107c8919061342c565b612086565b005b3480156107db57600080fd5b506107e461211c565b6040516107f19190613a78565b60405180910390f35b34801561080657600080fd5b50610821600480360381019061081c919061325c565b6121ae565b60405161082e9190613a5d565b60405180910390f35b34801561084357600080fd5b5061085e60048036038101906108599190613233565b612242565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061093b575061093a8261233a565b5b9050919050565b60606000805461095190614083565b80601f016020809104026020016040519081016040528092919081815260200182805461097d90614083565b80156109ca5780601f1061099f576101008083540402835291602001916109ca565b820191906000526020600020905b8154815290600101906020018083116109ad57829003601f168201915b5050505050905090565b60006109df826123a4565b610a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1590613c7a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a64826111f6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acc90613d1a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610af4612410565b73ffffffffffffffffffffffffffffffffffffffff161480610b235750610b2281610b1d612410565b6121ae565b5b610b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5990613bda565b60405180910390fd5b610b6c8383612418565b505050565b600047905090565b60006001600b80549050610b8d9190613f99565b905090565b610ba3610b9d612410565b826124d1565b610be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd990613d5a565b60405180910390fd5b610bed8383836125af565b505050565b610bfa612410565b73ffffffffffffffffffffffffffffffffffffffff16610c1861185d565b73ffffffffffffffffffffffffffffffffffffffff1614610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6590613c9a565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b610ca2612410565b73ffffffffffffffffffffffffffffffffffffffff16610cc061185d565b73ffffffffffffffffffffffffffffffffffffffff1614610d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0d90613c9a565b60405180910390fd5b6000610d2061185d565b90508073ffffffffffffffffffffffffffffffffffffffff166108fc610d44610b71565b9081150290604051600060405180830381858888f19350505050158015610d6f573d6000803e3d6000fd5b5050565b610d7b612410565b73ffffffffffffffffffffffffffffffffffffffff16610d9961185d565b73ffffffffffffffffffffffffffffffffffffffff1614610def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de690613c9a565b60405180910390fd5b600a60019054906101000a900460ff1615600a60016101000a81548160ff021916908315150217905550565b610e3683838360405180602001604052806000815250611e96565b505050565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebf90613b1a565b60405180910390fd5b600a60019054906101000a900460ff1615610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f90613b3a565b60405180910390fd5b6000805b600c8054905081101561104f576000600c8281548110610f65577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610fcb91906139d4565b60206040518083038186803b158015610fe357600080fd5b505afa158015610ff7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061101b9190613496565b836110269190613eb8565b9250600383111561103b57600392505061104f565b508080611047906140e6565b915050610f1c565b5060008111611093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108a90613bba565b60405180910390fd5b611388813073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b1580156110dd57600080fd5b505afa1580156110f1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111159190613496565b61111f9190613eb8565b1115611160576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115790613d7a565b60405180910390fd5b60005b81811015611187576111743361280b565b808061117f906140e6565b915050611163565b506001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600a60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561129f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129690613c1a565b60405180910390fd5b80915050919050565b600a60009054906101000a900460ff16156112f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ef90613cfa565b60405180910390fd5b601481111561133c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133390613d3a565b60405180910390fd5b611388813073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561138657600080fd5b505afa15801561139a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113be9190613496565b6113c89190613eb8565b1115611409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140090613d7a565b60405180910390fd5b806007546114179190613f3f565b3414611458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144f90613c3a565b60405180910390fd5b60005b8181101561147f5761146c3361280b565b8080611477906140e6565b91505061145b565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114eb90613bfa565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611543612410565b73ffffffffffffffffffffffffffffffffffffffff1661156161185d565b73ffffffffffffffffffffffffffffffffffffffff16146115b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ae90613c9a565b60405180910390fd5b6115c160006128eb565b565b6000600b82815481106115ff577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6060600c80548060200260200160405190810160405280929190818152602001828054801561169557602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001906001019080831161164b575b5050505050905090565b6116a7612410565b73ffffffffffffffffffffffffffffffffffffffff166116c561185d565b73ffffffffffffffffffffffffffffffffffffffff161461171b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171290613c9a565b60405180910390fd5b601481111561175f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175690613d3a565b60405180910390fd5b611388813073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b1580156117a957600080fd5b505afa1580156117bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117e19190613496565b6117eb9190613eb8565b111561182c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182390613d7a565b60405180910390fd5b60005b81811015611853576118403361280b565b808061184b906140e6565b91505061182f565b5050565b60075481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461189690614083565b80601f01602080910402602001604051908101604052809291908181526020018280546118c290614083565b801561190f5780601f106118e45761010080835404028352916020019161190f565b820191906000526020600020905b8154815290600101906020018083116118f257829003601f168201915b5050505050905090565b61138881565b601481565b61192c612410565b73ffffffffffffffffffffffffffffffffffffffff1661194a61185d565b73ffffffffffffffffffffffffffffffffffffffff16146119a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199790613c9a565b60405180910390fd5b80600890805190602001906119b6929190613042565b5050565b6119c2612410565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2790613b7a565b60405180910390fd5b8060056000611a3d612410565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611aea612410565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b2f9190613a5d565b60405180910390a35050565b600a60019054906101000a900460ff1681565b611b56612410565b73ffffffffffffffffffffffffffffffffffffffff16611b7461185d565b73ffffffffffffffffffffffffffffffffffffffff1614611bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc190613c9a565b60405180910390fd5b600a60029054906101000a900460ff1615611c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1190613a9a565b60405180910390fd5b600b650a1b01d4b1c79080600181540180825580915050600190039060005260206000200160009091909190915055611c64336001600b80549050611c5f9190613f99565b6129b1565b600b653f63971ee6c99080600181540180825580915050600190039060005260206000200160009091909190915055611cae336001600b80549050611ca99190613f99565b6129b1565b600b6546bd0cd0dc719080600181540180825580915050600190039060005260206000200160009091909190915055611cf8336001600b80549050611cf39190613f99565b6129b1565b600b65497e98f398909080600181540180825580915050600190039060005260206000200160009091909190915055611d42336001600b80549050611d3d9190613f99565b6129b1565b600b6550d80ea58e389080600181540180825580915050600190039060005260206000200160009091909190915055611d8c336001600b80549050611d879190613f99565b6129b1565b600b65574655a1452b9080600181540180825580915050600190039060005260206000200160009091909190915055611dd6336001600b80549050611dd19190613f99565b6129b1565b600b655a07e1c4014a9080600181540180825580915050600190039060005260206000200160009091909190915055611e20336001600b80549050611e1b9190613f99565b6129b1565b600b655af3107a3fff9080600181540180825580915050600190039060005260206000200160009091909190915055611e6a336001600b80549050611e659190613f99565b6129b1565b6001600a60026101000a81548160ff021916908315150217905550565b803414611e9357600080fd5b50565b611ea7611ea1612410565b836124d1565b611ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edd90613d5a565b60405180910390fd5b611ef2848484846129cf565b50505050565b6060611f03826123a4565b611f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3990613cda565b60405180910390fd5b6000611f4c612a2b565b90506000815111611f6c5760405180602001604052806000815250611f97565b80611f7684612abd565b604051602001611f87929190613973565b6040516020818303038152906040525b915050919050565b600381565b611fac612410565b73ffffffffffffffffffffffffffffffffffffffff16611fca61185d565b73ffffffffffffffffffffffffffffffffffffffff1614612020576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201790613c9a565b60405180910390fd5b600c819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61208e612410565b73ffffffffffffffffffffffffffffffffffffffff166120ac61185d565b73ffffffffffffffffffffffffffffffffffffffff1614612102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f990613c9a565b60405180910390fd5b8060099080519060200190612118929190613042565b5050565b60606009805461212b90614083565b80601f016020809104026020016040519081016040528092919081815260200182805461215790614083565b80156121a45780601f10612179576101008083540402835291602001916121a4565b820191906000526020600020905b81548152906001019060200180831161218757829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61224a612410565b73ffffffffffffffffffffffffffffffffffffffff1661226861185d565b73ffffffffffffffffffffffffffffffffffffffff16146122be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b590613c9a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561232e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232590613ada565b60405180910390fd5b612337816128eb565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661248b836111f6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006124dc826123a4565b61251b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251290613b9a565b60405180910390fd5b6000612526836111f6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061259557508373ffffffffffffffffffffffffffffffffffffffff1661257d846109d4565b73ffffffffffffffffffffffffffffffffffffffff16145b806125a657506125a581856121ae565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166125cf826111f6565b73ffffffffffffffffffffffffffffffffffffffff1614612625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261c90613cba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268c90613b5a565b60405180910390fd5b6126a0838383612c6a565b6126ab600082612418565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126fb9190613f99565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127529190613eb8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000655af3107a40004442600b6001600b8054905061282a9190613f99565b81548110612861577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015460405160200161287e93929190613997565b6040516020818303038152906040528051906020012060001c6128a19190614139565b9050600b8190806001815401808255809150506001900390600052602060002001600090919091909150556128e7826001600b805490506128e29190613f99565b6129b1565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6129cb828260405180602001604052806000815250612c6f565b5050565b6129da8484846125af565b6129e684848484612cca565b612a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1c90613aba565b60405180910390fd5b50505050565b606060088054612a3a90614083565b80601f0160208091040260200160405190810160405280929190818152602001828054612a6690614083565b8015612ab35780601f10612a8857610100808354040283529160200191612ab3565b820191906000526020600020905b815481529060010190602001808311612a9657829003601f168201915b5050505050905090565b60606000821415612b05576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c65565b600082905060005b60008214612b37578080612b20906140e6565b915050600a82612b309190613f0e565b9150612b0d565b60008167ffffffffffffffff811115612b79577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612bab5781602001600182028036833780820191505090505b5090505b60008514612c5e57600182612bc49190613f99565b9150600a85612bd39190614139565b6030612bdf9190613eb8565b60f81b818381518110612c1b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c579190613f0e565b9450612baf565b8093505050505b919050565b505050565b612c798383612e61565b612c866000848484612cca565b612cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cbc90613aba565b60405180910390fd5b505050565b6000612ceb8473ffffffffffffffffffffffffffffffffffffffff1661302f565b15612e54578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d14612410565b8786866040518563ffffffff1660e01b8152600401612d3694939291906139ef565b602060405180830381600087803b158015612d5057600080fd5b505af1925050508015612d8157506040513d601f19601f82011682018060405250810190612d7e9190613403565b60015b612e04573d8060008114612db1576040519150601f19603f3d011682016040523d82523d6000602084013e612db6565b606091505b50600081511415612dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df390613aba565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e59565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec890613c5a565b60405180910390fd5b612eda816123a4565b15612f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1190613afa565b60405180910390fd5b612f2660008383612c6a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f769190613eb8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461304e90614083565b90600052602060002090601f01602090048101928261307057600085556130b7565b82601f1061308957805160ff19168380011785556130b7565b828001600101855582156130b7579182015b828111156130b657825182559160200191906001019061309b565b5b5090506130c491906130c8565b5090565b5b808211156130e15760008160009055506001016130c9565b5090565b60006130f86130f384613dda565b613db5565b90508281526020810184848401111561311057600080fd5b61311b848285614041565b509392505050565b600061313661313184613e0b565b613db5565b90508281526020810184848401111561314e57600080fd5b613159848285614041565b509392505050565b600081359050613170816147d7565b92915050565b600081359050613185816147ee565b92915050565b60008135905061319a81614805565b92915050565b6000815190506131af81614805565b92915050565b600082601f8301126131c657600080fd5b81356131d68482602086016130e5565b91505092915050565b600082601f8301126131f057600080fd5b8135613200848260208601613123565b91505092915050565b6000813590506132188161481c565b92915050565b60008151905061322d8161481c565b92915050565b60006020828403121561324557600080fd5b600061325384828501613161565b91505092915050565b6000806040838503121561326f57600080fd5b600061327d85828601613161565b925050602061328e85828601613161565b9150509250929050565b6000806000606084860312156132ad57600080fd5b60006132bb86828701613161565b93505060206132cc86828701613161565b92505060406132dd86828701613209565b9150509250925092565b600080600080608085870312156132fd57600080fd5b600061330b87828801613161565b945050602061331c87828801613161565b935050604061332d87828801613209565b925050606085013567ffffffffffffffff81111561334a57600080fd5b613356878288016131b5565b91505092959194509250565b6000806040838503121561337557600080fd5b600061338385828601613161565b925050602061339485828601613176565b9150509250929050565b600080604083850312156133b157600080fd5b60006133bf85828601613161565b92505060206133d085828601613209565b9150509250929050565b6000602082840312156133ec57600080fd5b60006133fa8482850161318b565b91505092915050565b60006020828403121561341557600080fd5b6000613423848285016131a0565b91505092915050565b60006020828403121561343e57600080fd5b600082013567ffffffffffffffff81111561345857600080fd5b613464848285016131df565b91505092915050565b60006020828403121561347f57600080fd5b600061348d84828501613209565b91505092915050565b6000602082840312156134a857600080fd5b60006134b68482850161321e565b91505092915050565b60006134cb83836134d7565b60208301905092915050565b6134e081613fcd565b82525050565b6134ef81613fcd565b82525050565b600061350082613e4c565b61350a8185613e7a565b935061351583613e3c565b8060005b8381101561354657815161352d88826134bf565b975061353883613e6d565b925050600181019050613519565b5085935050505092915050565b61355c81613fdf565b82525050565b600061356d82613e57565b6135778185613e8b565b9350613587818560208601614050565b61359081614226565b840191505092915050565b60006135a682613e62565b6135b08185613e9c565b93506135c0818560208601614050565b6135c981614226565b840191505092915050565b60006135df82613e62565b6135e98185613ead565b93506135f9818560208601614050565b80840191505092915050565b6000613612601683613e9c565b915061361d82614237565b602082019050919050565b6000613635603283613e9c565b915061364082614260565b604082019050919050565b6000613658602683613e9c565b9150613663826142af565b604082019050919050565b600061367b601c83613e9c565b9150613686826142fe565b602082019050919050565b600061369e600f83613e9c565b91506136a982614327565b602082019050919050565b60006136c1601283613e9c565b91506136cc82614350565b602082019050919050565b60006136e4602483613e9c565b91506136ef82614379565b604082019050919050565b6000613707601983613e9c565b9150613712826143c8565b602082019050919050565b600061372a602c83613e9c565b9150613735826143f1565b604082019050919050565b600061374d601083613e9c565b915061375882614440565b602082019050919050565b6000613770603883613e9c565b915061377b82614469565b604082019050919050565b6000613793602a83613e9c565b915061379e826144b8565b604082019050919050565b60006137b6602983613e9c565b91506137c182614507565b604082019050919050565b60006137d9601483613e9c565b91506137e482614556565b602082019050919050565b60006137fc602083613e9c565b91506138078261457f565b602082019050919050565b600061381f602c83613e9c565b915061382a826145a8565b604082019050919050565b6000613842602083613e9c565b915061384d826145f7565b602082019050919050565b6000613865602983613e9c565b915061387082614620565b604082019050919050565b6000613888602f83613e9c565b91506138938261466f565b604082019050919050565b60006138ab601183613e9c565b91506138b6826146be565b602082019050919050565b60006138ce602183613e9c565b91506138d9826146e7565b604082019050919050565b60006138f1601583613e9c565b91506138fc82614736565b602082019050919050565b6000613914603183613e9c565b915061391f8261475f565b604082019050919050565b6000613937601783613e9c565b9150613942826147ae565b602082019050919050565b61395681614037565b82525050565b61396d61396882614037565b61412f565b82525050565b600061397f82856135d4565b915061398b82846135d4565b91508190509392505050565b60006139a3828661395c565b6020820191506139b3828561395c565b6020820191506139c3828461395c565b602082019150819050949350505050565b60006020820190506139e960008301846134e6565b92915050565b6000608082019050613a0460008301876134e6565b613a1160208301866134e6565b613a1e604083018561394d565b8181036060830152613a308184613562565b905095945050505050565b60006020820190508181036000830152613a5581846134f5565b905092915050565b6000602082019050613a726000830184613553565b92915050565b60006020820190508181036000830152613a92818461359b565b905092915050565b60006020820190508181036000830152613ab381613605565b9050919050565b60006020820190508181036000830152613ad381613628565b9050919050565b60006020820190508181036000830152613af38161364b565b9050919050565b60006020820190508181036000830152613b138161366e565b9050919050565b60006020820190508181036000830152613b3381613691565b9050919050565b60006020820190508181036000830152613b53816136b4565b9050919050565b60006020820190508181036000830152613b73816136d7565b9050919050565b60006020820190508181036000830152613b93816136fa565b9050919050565b60006020820190508181036000830152613bb38161371d565b9050919050565b60006020820190508181036000830152613bd381613740565b9050919050565b60006020820190508181036000830152613bf381613763565b9050919050565b60006020820190508181036000830152613c1381613786565b9050919050565b60006020820190508181036000830152613c33816137a9565b9050919050565b60006020820190508181036000830152613c53816137cc565b9050919050565b60006020820190508181036000830152613c73816137ef565b9050919050565b60006020820190508181036000830152613c9381613812565b9050919050565b60006020820190508181036000830152613cb381613835565b9050919050565b60006020820190508181036000830152613cd381613858565b9050919050565b60006020820190508181036000830152613cf38161387b565b9050919050565b60006020820190508181036000830152613d138161389e565b9050919050565b60006020820190508181036000830152613d33816138c1565b9050919050565b60006020820190508181036000830152613d53816138e4565b9050919050565b60006020820190508181036000830152613d7381613907565b9050919050565b60006020820190508181036000830152613d938161392a565b9050919050565b6000602082019050613daf600083018461394d565b92915050565b6000613dbf613dd0565b9050613dcb82826140b5565b919050565b6000604051905090565b600067ffffffffffffffff821115613df557613df46141f7565b5b613dfe82614226565b9050602081019050919050565b600067ffffffffffffffff821115613e2657613e256141f7565b5b613e2f82614226565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ec382614037565b9150613ece83614037565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f0357613f0261416a565b5b828201905092915050565b6000613f1982614037565b9150613f2483614037565b925082613f3457613f33614199565b5b828204905092915050565b6000613f4a82614037565b9150613f5583614037565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f8e57613f8d61416a565b5b828202905092915050565b6000613fa482614037565b9150613faf83614037565b925082821015613fc257613fc161416a565b5b828203905092915050565b6000613fd882614017565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561406e578082015181840152602081019050614053565b8381111561407d576000848401525b50505050565b6000600282049050600182168061409b57607f821691505b602082108114156140af576140ae6141c8565b5b50919050565b6140be82614226565b810181811067ffffffffffffffff821117156140dd576140dc6141f7565b5b80604052505050565b60006140f182614037565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141245761412361416a565b5b600182019050919050565b6000819050919050565b600061414482614037565b915061414f83614037565b92508261415f5761415e614199565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f7065726665637420616c7265616479206d696e74656400000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f616c726561647920636c61696d65640000000000000000000000000000000000600082015250565b7f636c61696d696e67206973207061757365640000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f6e6f7468696e6720746f20636c61696d00000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f496e636f72726563742045544820616d6f756e74000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f46697368696e6720697320506175736564000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f546f6f206d616e79206b6f6973206174206f6e63650000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f576f756c6420657863656564206d617820737570706c79000000000000000000600082015250565b6147e081613fcd565b81146147eb57600080fd5b50565b6147f781613fdf565b811461480257600080fd5b50565b61480e81613feb565b811461481957600080fd5b50565b61482581614037565b811461483057600080fd5b5056fea2646970667358221220adc0ec0c38e75e3b459d75d3dc4641472c71c8ed9ef8ba88058f55faa075d4af64736f6c63430008040033

Deployed Bytecode

0x6080604052600436106102255760003560e01c8063819b25ba11610123578063ade1d7cc116100ab578063d536bcfb1161006f578063d536bcfb1461077d578063e427ba51146107a6578063e8a3d485146107cf578063e985e9c5146107fa578063f2fde38b1461083757610225565b8063ade1d7cc146106b9578063b6b55f25146106d0578063b88d4fde146106ec578063c87b56dd14610715578063cd519e9a1461075257610225565b806398607c44116100f257806398607c44146105e65780639bf5b30814610611578063a0bcfc7f1461063c578063a22cb46514610665578063ab5e124a1461068e57610225565b8063819b25ba1461053c5780638d859f3e146105655780638da5cb5b1461059057806395d89b41146105bb57610225565b806340897bbe116101b157806365199c501161017557806365199c501461046457806370a0823114610480578063715018a6146104bd57806375706409146104d4578063769c509c1461051157610225565b806340897bbe146103a557806342842e0e146103bc5780634e71d92d146103e55780635c975abb146103fc5780636352211e1461042757610225565b806312065fe0116101f857806312065fe0146102f857806318160ddd1461032357806323b872dd1461034e57806336566f06146103775780633ccfd60b1461038e57610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906133da565b610860565b60405161025e9190613a5d565b60405180910390f35b34801561027357600080fd5b5061027c610942565b6040516102899190613a78565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b4919061346d565b6109d4565b6040516102c691906139d4565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f1919061339e565b610a59565b005b34801561030457600080fd5b5061030d610b71565b60405161031a9190613d9a565b60405180910390f35b34801561032f57600080fd5b50610338610b79565b6040516103459190613d9a565b60405180910390f35b34801561035a57600080fd5b5061037560048036038101906103709190613298565b610b92565b005b34801561038357600080fd5b5061038c610bf2565b005b34801561039a57600080fd5b506103a3610c9a565b005b3480156103b157600080fd5b506103ba610d73565b005b3480156103c857600080fd5b506103e360048036038101906103de9190613298565b610e1b565b005b3480156103f157600080fd5b506103fa610e3b565b005b34801561040857600080fd5b506104116111e3565b60405161041e9190613a5d565b60405180910390f35b34801561043357600080fd5b5061044e6004803603810190610449919061346d565b6111f6565b60405161045b91906139d4565b60405180910390f35b61047e6004803603810190610479919061346d565b6112a8565b005b34801561048c57600080fd5b506104a760048036038101906104a29190613233565b611483565b6040516104b49190613d9a565b60405180910390f35b3480156104c957600080fd5b506104d261153b565b005b3480156104e057600080fd5b506104fb60048036038101906104f6919061346d565b6115c3565b6040516105089190613d9a565b60405180910390f35b34801561051d57600080fd5b50610526611611565b6040516105339190613a3b565b60405180910390f35b34801561054857600080fd5b50610563600480360381019061055e919061346d565b61169f565b005b34801561057157600080fd5b5061057a611857565b6040516105879190613d9a565b60405180910390f35b34801561059c57600080fd5b506105a561185d565b6040516105b291906139d4565b60405180910390f35b3480156105c757600080fd5b506105d0611887565b6040516105dd9190613a78565b60405180910390f35b3480156105f257600080fd5b506105fb611919565b6040516106089190613d9a565b60405180910390f35b34801561061d57600080fd5b5061062661191f565b6040516106339190613d9a565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e919061342c565b611924565b005b34801561067157600080fd5b5061068c60048036038101906106879190613362565b6119ba565b005b34801561069a57600080fd5b506106a3611b3b565b6040516106b09190613a5d565b60405180910390f35b3480156106c557600080fd5b506106ce611b4e565b005b6106ea60048036038101906106e5919061346d565b611e87565b005b3480156106f857600080fd5b50610713600480360381019061070e91906132e7565b611e96565b005b34801561072157600080fd5b5061073c6004803603810190610737919061346d565b611ef8565b6040516107499190613a78565b60405180910390f35b34801561075e57600080fd5b50610767611f9f565b6040516107749190613d9a565b60405180910390f35b34801561078957600080fd5b506107a4600480360381019061079f9190613233565b611fa4565b005b3480156107b257600080fd5b506107cd60048036038101906107c8919061342c565b612086565b005b3480156107db57600080fd5b506107e461211c565b6040516107f19190613a78565b60405180910390f35b34801561080657600080fd5b50610821600480360381019061081c919061325c565b6121ae565b60405161082e9190613a5d565b60405180910390f35b34801561084357600080fd5b5061085e60048036038101906108599190613233565b612242565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061093b575061093a8261233a565b5b9050919050565b60606000805461095190614083565b80601f016020809104026020016040519081016040528092919081815260200182805461097d90614083565b80156109ca5780601f1061099f576101008083540402835291602001916109ca565b820191906000526020600020905b8154815290600101906020018083116109ad57829003601f168201915b5050505050905090565b60006109df826123a4565b610a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1590613c7a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a64826111f6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acc90613d1a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610af4612410565b73ffffffffffffffffffffffffffffffffffffffff161480610b235750610b2281610b1d612410565b6121ae565b5b610b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5990613bda565b60405180910390fd5b610b6c8383612418565b505050565b600047905090565b60006001600b80549050610b8d9190613f99565b905090565b610ba3610b9d612410565b826124d1565b610be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd990613d5a565b60405180910390fd5b610bed8383836125af565b505050565b610bfa612410565b73ffffffffffffffffffffffffffffffffffffffff16610c1861185d565b73ffffffffffffffffffffffffffffffffffffffff1614610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6590613c9a565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b610ca2612410565b73ffffffffffffffffffffffffffffffffffffffff16610cc061185d565b73ffffffffffffffffffffffffffffffffffffffff1614610d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0d90613c9a565b60405180910390fd5b6000610d2061185d565b90508073ffffffffffffffffffffffffffffffffffffffff166108fc610d44610b71565b9081150290604051600060405180830381858888f19350505050158015610d6f573d6000803e3d6000fd5b5050565b610d7b612410565b73ffffffffffffffffffffffffffffffffffffffff16610d9961185d565b73ffffffffffffffffffffffffffffffffffffffff1614610def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de690613c9a565b60405180910390fd5b600a60019054906101000a900460ff1615600a60016101000a81548160ff021916908315150217905550565b610e3683838360405180602001604052806000815250611e96565b505050565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebf90613b1a565b60405180910390fd5b600a60019054906101000a900460ff1615610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f90613b3a565b60405180910390fd5b6000805b600c8054905081101561104f576000600c8281548110610f65577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610fcb91906139d4565b60206040518083038186803b158015610fe357600080fd5b505afa158015610ff7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061101b9190613496565b836110269190613eb8565b9250600383111561103b57600392505061104f565b508080611047906140e6565b915050610f1c565b5060008111611093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108a90613bba565b60405180910390fd5b611388813073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b1580156110dd57600080fd5b505afa1580156110f1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111159190613496565b61111f9190613eb8565b1115611160576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115790613d7a565b60405180910390fd5b60005b81811015611187576111743361280b565b808061117f906140e6565b915050611163565b506001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600a60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561129f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129690613c1a565b60405180910390fd5b80915050919050565b600a60009054906101000a900460ff16156112f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ef90613cfa565b60405180910390fd5b601481111561133c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133390613d3a565b60405180910390fd5b611388813073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561138657600080fd5b505afa15801561139a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113be9190613496565b6113c89190613eb8565b1115611409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140090613d7a565b60405180910390fd5b806007546114179190613f3f565b3414611458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144f90613c3a565b60405180910390fd5b60005b8181101561147f5761146c3361280b565b8080611477906140e6565b91505061145b565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114eb90613bfa565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611543612410565b73ffffffffffffffffffffffffffffffffffffffff1661156161185d565b73ffffffffffffffffffffffffffffffffffffffff16146115b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ae90613c9a565b60405180910390fd5b6115c160006128eb565b565b6000600b82815481106115ff577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6060600c80548060200260200160405190810160405280929190818152602001828054801561169557602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001906001019080831161164b575b5050505050905090565b6116a7612410565b73ffffffffffffffffffffffffffffffffffffffff166116c561185d565b73ffffffffffffffffffffffffffffffffffffffff161461171b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171290613c9a565b60405180910390fd5b601481111561175f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175690613d3a565b60405180910390fd5b611388813073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b1580156117a957600080fd5b505afa1580156117bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117e19190613496565b6117eb9190613eb8565b111561182c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182390613d7a565b60405180910390fd5b60005b81811015611853576118403361280b565b808061184b906140e6565b91505061182f565b5050565b60075481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461189690614083565b80601f01602080910402602001604051908101604052809291908181526020018280546118c290614083565b801561190f5780601f106118e45761010080835404028352916020019161190f565b820191906000526020600020905b8154815290600101906020018083116118f257829003601f168201915b5050505050905090565b61138881565b601481565b61192c612410565b73ffffffffffffffffffffffffffffffffffffffff1661194a61185d565b73ffffffffffffffffffffffffffffffffffffffff16146119a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199790613c9a565b60405180910390fd5b80600890805190602001906119b6929190613042565b5050565b6119c2612410565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2790613b7a565b60405180910390fd5b8060056000611a3d612410565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611aea612410565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b2f9190613a5d565b60405180910390a35050565b600a60019054906101000a900460ff1681565b611b56612410565b73ffffffffffffffffffffffffffffffffffffffff16611b7461185d565b73ffffffffffffffffffffffffffffffffffffffff1614611bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc190613c9a565b60405180910390fd5b600a60029054906101000a900460ff1615611c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1190613a9a565b60405180910390fd5b600b650a1b01d4b1c79080600181540180825580915050600190039060005260206000200160009091909190915055611c64336001600b80549050611c5f9190613f99565b6129b1565b600b653f63971ee6c99080600181540180825580915050600190039060005260206000200160009091909190915055611cae336001600b80549050611ca99190613f99565b6129b1565b600b6546bd0cd0dc719080600181540180825580915050600190039060005260206000200160009091909190915055611cf8336001600b80549050611cf39190613f99565b6129b1565b600b65497e98f398909080600181540180825580915050600190039060005260206000200160009091909190915055611d42336001600b80549050611d3d9190613f99565b6129b1565b600b6550d80ea58e389080600181540180825580915050600190039060005260206000200160009091909190915055611d8c336001600b80549050611d879190613f99565b6129b1565b600b65574655a1452b9080600181540180825580915050600190039060005260206000200160009091909190915055611dd6336001600b80549050611dd19190613f99565b6129b1565b600b655a07e1c4014a9080600181540180825580915050600190039060005260206000200160009091909190915055611e20336001600b80549050611e1b9190613f99565b6129b1565b600b655af3107a3fff9080600181540180825580915050600190039060005260206000200160009091909190915055611e6a336001600b80549050611e659190613f99565b6129b1565b6001600a60026101000a81548160ff021916908315150217905550565b803414611e9357600080fd5b50565b611ea7611ea1612410565b836124d1565b611ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edd90613d5a565b60405180910390fd5b611ef2848484846129cf565b50505050565b6060611f03826123a4565b611f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3990613cda565b60405180910390fd5b6000611f4c612a2b565b90506000815111611f6c5760405180602001604052806000815250611f97565b80611f7684612abd565b604051602001611f87929190613973565b6040516020818303038152906040525b915050919050565b600381565b611fac612410565b73ffffffffffffffffffffffffffffffffffffffff16611fca61185d565b73ffffffffffffffffffffffffffffffffffffffff1614612020576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201790613c9a565b60405180910390fd5b600c819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61208e612410565b73ffffffffffffffffffffffffffffffffffffffff166120ac61185d565b73ffffffffffffffffffffffffffffffffffffffff1614612102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f990613c9a565b60405180910390fd5b8060099080519060200190612118929190613042565b5050565b60606009805461212b90614083565b80601f016020809104026020016040519081016040528092919081815260200182805461215790614083565b80156121a45780601f10612179576101008083540402835291602001916121a4565b820191906000526020600020905b81548152906001019060200180831161218757829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61224a612410565b73ffffffffffffffffffffffffffffffffffffffff1661226861185d565b73ffffffffffffffffffffffffffffffffffffffff16146122be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b590613c9a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561232e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232590613ada565b60405180910390fd5b612337816128eb565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661248b836111f6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006124dc826123a4565b61251b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251290613b9a565b60405180910390fd5b6000612526836111f6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061259557508373ffffffffffffffffffffffffffffffffffffffff1661257d846109d4565b73ffffffffffffffffffffffffffffffffffffffff16145b806125a657506125a581856121ae565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166125cf826111f6565b73ffffffffffffffffffffffffffffffffffffffff1614612625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261c90613cba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268c90613b5a565b60405180910390fd5b6126a0838383612c6a565b6126ab600082612418565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126fb9190613f99565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127529190613eb8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000655af3107a40004442600b6001600b8054905061282a9190613f99565b81548110612861577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015460405160200161287e93929190613997565b6040516020818303038152906040528051906020012060001c6128a19190614139565b9050600b8190806001815401808255809150506001900390600052602060002001600090919091909150556128e7826001600b805490506128e29190613f99565b6129b1565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6129cb828260405180602001604052806000815250612c6f565b5050565b6129da8484846125af565b6129e684848484612cca565b612a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1c90613aba565b60405180910390fd5b50505050565b606060088054612a3a90614083565b80601f0160208091040260200160405190810160405280929190818152602001828054612a6690614083565b8015612ab35780601f10612a8857610100808354040283529160200191612ab3565b820191906000526020600020905b815481529060010190602001808311612a9657829003601f168201915b5050505050905090565b60606000821415612b05576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c65565b600082905060005b60008214612b37578080612b20906140e6565b915050600a82612b309190613f0e565b9150612b0d565b60008167ffffffffffffffff811115612b79577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612bab5781602001600182028036833780820191505090505b5090505b60008514612c5e57600182612bc49190613f99565b9150600a85612bd39190614139565b6030612bdf9190613eb8565b60f81b818381518110612c1b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c579190613f0e565b9450612baf565b8093505050505b919050565b505050565b612c798383612e61565b612c866000848484612cca565b612cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cbc90613aba565b60405180910390fd5b505050565b6000612ceb8473ffffffffffffffffffffffffffffffffffffffff1661302f565b15612e54578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d14612410565b8786866040518563ffffffff1660e01b8152600401612d3694939291906139ef565b602060405180830381600087803b158015612d5057600080fd5b505af1925050508015612d8157506040513d601f19601f82011682018060405250810190612d7e9190613403565b60015b612e04573d8060008114612db1576040519150601f19603f3d011682016040523d82523d6000602084013e612db6565b606091505b50600081511415612dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df390613aba565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e59565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec890613c5a565b60405180910390fd5b612eda816123a4565b15612f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1190613afa565b60405180910390fd5b612f2660008383612c6a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f769190613eb8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461304e90614083565b90600052602060002090601f01602090048101928261307057600085556130b7565b82601f1061308957805160ff19168380011785556130b7565b828001600101855582156130b7579182015b828111156130b657825182559160200191906001019061309b565b5b5090506130c491906130c8565b5090565b5b808211156130e15760008160009055506001016130c9565b5090565b60006130f86130f384613dda565b613db5565b90508281526020810184848401111561311057600080fd5b61311b848285614041565b509392505050565b600061313661313184613e0b565b613db5565b90508281526020810184848401111561314e57600080fd5b613159848285614041565b509392505050565b600081359050613170816147d7565b92915050565b600081359050613185816147ee565b92915050565b60008135905061319a81614805565b92915050565b6000815190506131af81614805565b92915050565b600082601f8301126131c657600080fd5b81356131d68482602086016130e5565b91505092915050565b600082601f8301126131f057600080fd5b8135613200848260208601613123565b91505092915050565b6000813590506132188161481c565b92915050565b60008151905061322d8161481c565b92915050565b60006020828403121561324557600080fd5b600061325384828501613161565b91505092915050565b6000806040838503121561326f57600080fd5b600061327d85828601613161565b925050602061328e85828601613161565b9150509250929050565b6000806000606084860312156132ad57600080fd5b60006132bb86828701613161565b93505060206132cc86828701613161565b92505060406132dd86828701613209565b9150509250925092565b600080600080608085870312156132fd57600080fd5b600061330b87828801613161565b945050602061331c87828801613161565b935050604061332d87828801613209565b925050606085013567ffffffffffffffff81111561334a57600080fd5b613356878288016131b5565b91505092959194509250565b6000806040838503121561337557600080fd5b600061338385828601613161565b925050602061339485828601613176565b9150509250929050565b600080604083850312156133b157600080fd5b60006133bf85828601613161565b92505060206133d085828601613209565b9150509250929050565b6000602082840312156133ec57600080fd5b60006133fa8482850161318b565b91505092915050565b60006020828403121561341557600080fd5b6000613423848285016131a0565b91505092915050565b60006020828403121561343e57600080fd5b600082013567ffffffffffffffff81111561345857600080fd5b613464848285016131df565b91505092915050565b60006020828403121561347f57600080fd5b600061348d84828501613209565b91505092915050565b6000602082840312156134a857600080fd5b60006134b68482850161321e565b91505092915050565b60006134cb83836134d7565b60208301905092915050565b6134e081613fcd565b82525050565b6134ef81613fcd565b82525050565b600061350082613e4c565b61350a8185613e7a565b935061351583613e3c565b8060005b8381101561354657815161352d88826134bf565b975061353883613e6d565b925050600181019050613519565b5085935050505092915050565b61355c81613fdf565b82525050565b600061356d82613e57565b6135778185613e8b565b9350613587818560208601614050565b61359081614226565b840191505092915050565b60006135a682613e62565b6135b08185613e9c565b93506135c0818560208601614050565b6135c981614226565b840191505092915050565b60006135df82613e62565b6135e98185613ead565b93506135f9818560208601614050565b80840191505092915050565b6000613612601683613e9c565b915061361d82614237565b602082019050919050565b6000613635603283613e9c565b915061364082614260565b604082019050919050565b6000613658602683613e9c565b9150613663826142af565b604082019050919050565b600061367b601c83613e9c565b9150613686826142fe565b602082019050919050565b600061369e600f83613e9c565b91506136a982614327565b602082019050919050565b60006136c1601283613e9c565b91506136cc82614350565b602082019050919050565b60006136e4602483613e9c565b91506136ef82614379565b604082019050919050565b6000613707601983613e9c565b9150613712826143c8565b602082019050919050565b600061372a602c83613e9c565b9150613735826143f1565b604082019050919050565b600061374d601083613e9c565b915061375882614440565b602082019050919050565b6000613770603883613e9c565b915061377b82614469565b604082019050919050565b6000613793602a83613e9c565b915061379e826144b8565b604082019050919050565b60006137b6602983613e9c565b91506137c182614507565b604082019050919050565b60006137d9601483613e9c565b91506137e482614556565b602082019050919050565b60006137fc602083613e9c565b91506138078261457f565b602082019050919050565b600061381f602c83613e9c565b915061382a826145a8565b604082019050919050565b6000613842602083613e9c565b915061384d826145f7565b602082019050919050565b6000613865602983613e9c565b915061387082614620565b604082019050919050565b6000613888602f83613e9c565b91506138938261466f565b604082019050919050565b60006138ab601183613e9c565b91506138b6826146be565b602082019050919050565b60006138ce602183613e9c565b91506138d9826146e7565b604082019050919050565b60006138f1601583613e9c565b91506138fc82614736565b602082019050919050565b6000613914603183613e9c565b915061391f8261475f565b604082019050919050565b6000613937601783613e9c565b9150613942826147ae565b602082019050919050565b61395681614037565b82525050565b61396d61396882614037565b61412f565b82525050565b600061397f82856135d4565b915061398b82846135d4565b91508190509392505050565b60006139a3828661395c565b6020820191506139b3828561395c565b6020820191506139c3828461395c565b602082019150819050949350505050565b60006020820190506139e960008301846134e6565b92915050565b6000608082019050613a0460008301876134e6565b613a1160208301866134e6565b613a1e604083018561394d565b8181036060830152613a308184613562565b905095945050505050565b60006020820190508181036000830152613a5581846134f5565b905092915050565b6000602082019050613a726000830184613553565b92915050565b60006020820190508181036000830152613a92818461359b565b905092915050565b60006020820190508181036000830152613ab381613605565b9050919050565b60006020820190508181036000830152613ad381613628565b9050919050565b60006020820190508181036000830152613af38161364b565b9050919050565b60006020820190508181036000830152613b138161366e565b9050919050565b60006020820190508181036000830152613b3381613691565b9050919050565b60006020820190508181036000830152613b53816136b4565b9050919050565b60006020820190508181036000830152613b73816136d7565b9050919050565b60006020820190508181036000830152613b93816136fa565b9050919050565b60006020820190508181036000830152613bb38161371d565b9050919050565b60006020820190508181036000830152613bd381613740565b9050919050565b60006020820190508181036000830152613bf381613763565b9050919050565b60006020820190508181036000830152613c1381613786565b9050919050565b60006020820190508181036000830152613c33816137a9565b9050919050565b60006020820190508181036000830152613c53816137cc565b9050919050565b60006020820190508181036000830152613c73816137ef565b9050919050565b60006020820190508181036000830152613c9381613812565b9050919050565b60006020820190508181036000830152613cb381613835565b9050919050565b60006020820190508181036000830152613cd381613858565b9050919050565b60006020820190508181036000830152613cf38161387b565b9050919050565b60006020820190508181036000830152613d138161389e565b9050919050565b60006020820190508181036000830152613d33816138c1565b9050919050565b60006020820190508181036000830152613d53816138e4565b9050919050565b60006020820190508181036000830152613d7381613907565b9050919050565b60006020820190508181036000830152613d938161392a565b9050919050565b6000602082019050613daf600083018461394d565b92915050565b6000613dbf613dd0565b9050613dcb82826140b5565b919050565b6000604051905090565b600067ffffffffffffffff821115613df557613df46141f7565b5b613dfe82614226565b9050602081019050919050565b600067ffffffffffffffff821115613e2657613e256141f7565b5b613e2f82614226565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ec382614037565b9150613ece83614037565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f0357613f0261416a565b5b828201905092915050565b6000613f1982614037565b9150613f2483614037565b925082613f3457613f33614199565b5b828204905092915050565b6000613f4a82614037565b9150613f5583614037565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f8e57613f8d61416a565b5b828202905092915050565b6000613fa482614037565b9150613faf83614037565b925082821015613fc257613fc161416a565b5b828203905092915050565b6000613fd882614017565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561406e578082015181840152602081019050614053565b8381111561407d576000848401525b50505050565b6000600282049050600182168061409b57607f821691505b602082108114156140af576140ae6141c8565b5b50919050565b6140be82614226565b810181811067ffffffffffffffff821117156140dd576140dc6141f7565b5b80604052505050565b60006140f182614037565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141245761412361416a565b5b600182019050919050565b6000819050919050565b600061414482614037565b915061414f83614037565b92508261415f5761415e614199565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f7065726665637420616c7265616479206d696e74656400000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f616c726561647920636c61696d65640000000000000000000000000000000000600082015250565b7f636c61696d696e67206973207061757365640000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f6e6f7468696e6720746f20636c61696d00000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f496e636f72726563742045544820616d6f756e74000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f46697368696e6720697320506175736564000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f546f6f206d616e79206b6f6973206174206f6e63650000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f576f756c6420657863656564206d617820737570706c79000000000000000000600082015250565b6147e081613fcd565b81146147eb57600080fd5b50565b6147f781613fdf565b811461480257600080fd5b50565b61480e81613feb565b811461481957600080fd5b50565b61482581614037565b811461483057600080fd5b5056fea2646970667358221220adc0ec0c38e75e3b459d75d3dc4641472c71c8ed9ef8ba88058f55faa075d4af64736f6c63430008040033

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.