ETH Price: $3,387.09 (-2.70%)
Gas: 1 Gwei

Token

The Vogu: MUTTS (MUTTS)
 

Overview

Max Total Supply

5,627 MUTTS

Holders

1,764

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MUTTS
0x14d5660762f20074a85a512f7c75a0103f57bc64
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Vogu Collectives first companion drop! The ambitious project contains randomized Multi-Utility Terra Trekking Systems, small animal-like utility bots often used for mining, redesigned and repurposed for recreation, entertainment, and companionship. A best friend for your T...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TheVoguMUTTS

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : TheVoguMUTTS.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";

abstract contract Parent {
    function ownerOf(uint256 tokenId) public virtual view returns (address);
    function tokenOfOwnerByIndex(address owner, uint256 index) public virtual view returns (uint256);
    function balanceOf(address owner) external virtual view returns (uint256 balance);
}

contract TheVoguMUTTS is ERC721Enumerable, Ownable {  
  
    Parent private parent; 
    string public PROVENANCE;
    bool public claimIsActive = false;
    string private baseURI;

    constructor(address parentAddress) ERC721("The Vogu: MUTTS", "MUTTS") {
        parent = Parent(parentAddress);
    }

    function setProvenanceHash(string memory provenance) public onlyOwner {
        PROVENANCE = provenance;
    }

    function isMinted(uint256 tokenId) external view returns (bool) {
        return _exists(tokenId);
    }

    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }
  
    function setBaseURI(string memory uri) public onlyOwner {
        baseURI = uri;
    }

    function setClaimState(bool newState) public onlyOwner {
        claimIsActive = newState;
    }
  
    function claim(uint256 startingIndex, uint256 numberOfTokens) public {
        require(claimIsActive, "Claim period is not active.");
        require(numberOfTokens > 0, "Must claim at least one token.");
        uint balance = parent.balanceOf(msg.sender);
        require(balance >= numberOfTokens, "Insufficient parent tokens.");
        require(balance >= startingIndex + numberOfTokens, "Insufficient parent tokens.");

        for (uint i = 0; i < balance && i < numberOfTokens; i++) {
            uint tokenId = parent.tokenOfOwnerByIndex(msg.sender, i + startingIndex);
            if (!_exists(tokenId)) {
                _safeMint(msg.sender, tokenId);
            }
        }
    }

    function claimAll() public {
        claim(0, parent.balanceOf(msg.sender));
    }

    function claimByTokenIds(uint256[] calldata tokenIds) public {
        require(claimIsActive, "Claim period is not active.");
        require(tokenIds.length > 0, "Must claim at least one token.");

        for (uint i = 0; i < tokenIds.length; i++) {
            require(parent.ownerOf(tokenIds[i]) == msg.sender, "Must own all parent tokens.");
            if (!_exists(tokenIds[i])) {
                _safeMint(msg.sender, tokenIds[i]);
            }
        }
    }
}

File 2 of 13 : 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 3 of 13 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 4 of 13 : 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 5 of 13 : 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(to).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 6 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 7 of 13 : 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 8 of 13 : 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 9 of 13 : 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 10 of 13 : 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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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 11 of 13 : 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 12 of 13 : 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 13 of 13 : 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":[{"internalType":"address","name":"parentAddress","type":"address"}],"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":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"startingIndex","type":"uint256"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"claimByTokenIds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isMinted","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":"renounceOwnership","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":"bool","name":"newState","type":"bool"}],"name":"setClaimState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenance","type":"string"}],"name":"setProvenanceHash","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":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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"}]

60806040526000600d60006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50604051620045bf380380620045bf8339818101604052810190620000529190620002ef565b6040518060400160405280600f81526020017f54686520566f67753a204d5554545300000000000000000000000000000000008152506040518060400160405280600581526020017f4d555454530000000000000000000000000000000000000000000000000000008152508160009080519060200190620000d692919062000228565b508060019080519060200190620000ef92919062000228565b50505062000112620001066200015a60201b60201c565b6200016260201b60201c565b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050620003d9565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002369062000355565b90600052602060002090601f0160209004810192826200025a5760008555620002a6565b82601f106200027557805160ff1916838001178555620002a6565b82800160010185558215620002a6579182015b82811115620002a557825182559160200191906001019062000288565b5b509050620002b59190620002b9565b5090565b5b80821115620002d4576000816000905550600101620002ba565b5090565b600081519050620002e981620003bf565b92915050565b600060208284031215620003085762000307620003ba565b5b60006200031884828501620002d8565b91505092915050565b60006200032e8262000335565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060028204905060018216806200036e57607f821691505b602082108114156200038557620003846200038b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b620003ca8162000321565b8114620003d657600080fd5b50565b6141d680620003e96000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c80636352211e116100f9578063b88d4fde11610097578063d1058e5911610071578063d1058e5914610503578063e985e9c51461050d578063f2fde38b1461053d578063fc8504ea14610559576101c4565b8063b88d4fde1461049b578063c3490263146104b7578063c87b56dd146104d3576101c4565b8063715018a6116100d3578063715018a6146104395780638da5cb5b1461044357806395d89b4114610461578063a22cb4651461047f576101c4565b80636352211e146103bb5780636373a6b1146103eb57806370a0823114610409576101c4565b80632f745c59116101665780634b014e28116101405780634b014e28146103355780634f6ccce7146103515780635303f68c1461038157806355f804b31461039f576101c4565b80632f745c59146102b957806333c41a90146102e957806342842e0e14610319576101c4565b8063095ea7b3116101a2578063095ea7b314610247578063109695231461026357806318160ddd1461027f57806323b872dd1461029d576101c4565b806301ffc9a7146101c957806306fdde03146101f9578063081812fc14610217575b600080fd5b6101e360048036038101906101de9190612e6e565b610575565b6040516101f09190613431565b60405180910390f35b6102016105ef565b60405161020e919061344c565b60405180910390f35b610231600480360381019061022c9190612f11565b610681565b60405161023e91906133a1565b60405180910390f35b610261600480360381019061025c9190612db4565b610706565b005b61027d60048036038101906102789190612ec8565b61081e565b005b6102876108b4565b604051610294919061372e565b60405180910390f35b6102b760048036038101906102b29190612c9e565b6108c1565b005b6102d360048036038101906102ce9190612db4565b610921565b6040516102e0919061372e565b60405180910390f35b61030360048036038101906102fe9190612f11565b6109c6565b6040516103109190613431565b60405180910390f35b610333600480360381019061032e9190612c9e565b6109d8565b005b61034f600480360381019061034a9190612e41565b6109f8565b005b61036b60048036038101906103669190612f11565b610a91565b604051610378919061372e565b60405180910390f35b610389610b02565b6040516103969190613431565b60405180910390f35b6103b960048036038101906103b49190612ec8565b610b15565b005b6103d560048036038101906103d09190612f11565b610bab565b6040516103e291906133a1565b60405180910390f35b6103f3610c5d565b604051610400919061344c565b60405180910390f35b610423600480360381019061041e9190612c04565b610ceb565b604051610430919061372e565b60405180910390f35b610441610da3565b005b61044b610e2b565b60405161045891906133a1565b60405180910390f35b610469610e55565b604051610476919061344c565b60405180910390f35b61049960048036038101906104949190612d74565b610ee7565b005b6104b560048036038101906104b09190612cf1565b611068565b005b6104d160048036038101906104cc9190612f6b565b6110ca565b005b6104ed60048036038101906104e89190612f11565b6113a0565b6040516104fa919061344c565b60405180910390f35b61050b611447565b005b61052760048036038101906105229190612c5e565b6114fe565b6040516105349190613431565b60405180910390f35b61055760048036038101906105529190612c04565b611592565b005b610573600480360381019061056e9190612df4565b61168a565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105e857506105e7826118c0565b5b9050919050565b6060600080546105fe90613984565b80601f016020809104026020016040519081016040528092919081815260200182805461062a90613984565b80156106775780601f1061064c57610100808354040283529160200191610677565b820191906000526020600020905b81548152906001019060200180831161065a57829003601f168201915b5050505050905090565b600061068c826119a2565b6106cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c29061360e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061071182610bab565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610782576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610779906136ae565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107a1611a0e565b73ffffffffffffffffffffffffffffffffffffffff1614806107d057506107cf816107ca611a0e565b6114fe565b5b61080f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108069061358e565b60405180910390fd5b6108198383611a16565b505050565b610826611a0e565b73ffffffffffffffffffffffffffffffffffffffff16610844610e2b565b73ffffffffffffffffffffffffffffffffffffffff161461089a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108919061362e565b60405180910390fd5b80600c90805190602001906108b0929190612998565b5050565b6000600880549050905090565b6108d26108cc611a0e565b82611acf565b610911576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610908906136ce565b60405180910390fd5b61091c838383611bad565b505050565b600061092c83610ceb565b821061096d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109649061346e565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60006109d1826119a2565b9050919050565b6109f383838360405180602001604052806000815250611068565b505050565b610a00611a0e565b73ffffffffffffffffffffffffffffffffffffffff16610a1e610e2b565b73ffffffffffffffffffffffffffffffffffffffff1614610a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6b9061362e565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b6000610a9b6108b4565b8210610adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad3906136ee565b60405180910390fd5b60088281548110610af057610aef613b1d565b5b90600052602060002001549050919050565b600d60009054906101000a900460ff1681565b610b1d611a0e565b73ffffffffffffffffffffffffffffffffffffffff16610b3b610e2b565b73ffffffffffffffffffffffffffffffffffffffff1614610b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b889061362e565b60405180910390fd5b80600e9080519060200190610ba7929190612998565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b906135ce565b60405180910390fd5b80915050919050565b600c8054610c6a90613984565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9690613984565b8015610ce35780601f10610cb857610100808354040283529160200191610ce3565b820191906000526020600020905b815481529060010190602001808311610cc657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d53906135ae565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dab611a0e565b73ffffffffffffffffffffffffffffffffffffffff16610dc9610e2b565b73ffffffffffffffffffffffffffffffffffffffff1614610e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e169061362e565b60405180910390fd5b610e296000611e09565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610e6490613984565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9090613984565b8015610edd5780601f10610eb257610100808354040283529160200191610edd565b820191906000526020600020905b815481529060010190602001808311610ec057829003601f168201915b5050505050905090565b610eef611a0e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f549061352e565b60405180910390fd5b8060056000610f6a611a0e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611017611a0e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161105c9190613431565b60405180910390a35050565b611079611073611a0e565b83611acf565b6110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af906136ce565b60405180910390fd5b6110c484848484611ecf565b50505050565b600d60009054906101000a900460ff16611119576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111109061356e565b60405180910390fd5b6000811161115c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111539061370e565b60405180910390fd5b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016111b991906133a1565b60206040518083038186803b1580156111d157600080fd5b505afa1580156111e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112099190612f3e565b90508181101561124e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611245906134ae565b60405180910390fd5b818361125a9190613813565b81101561129c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611293906134ae565b60405180910390fd5b60005b81811080156112ad57508281105b1561139a576000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632f745c593387856112ff9190613813565b6040518363ffffffff1660e01b815260040161131c929190613408565b60206040518083038186803b15801561133457600080fd5b505afa158015611348573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136c9190612f3e565b9050611377816119a2565b611386576113853382611f2b565b5b508080611392906139e7565b91505061129f565b50505050565b60606113ab826119a2565b6113ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e19061368e565b60405180910390fd5b60006113f4611f49565b90506000815111611414576040518060200160405280600081525061143f565b8061141e84611fdb565b60405160200161142f92919061337d565b6040516020818303038152906040525b915050919050565b6114fc6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016114a791906133a1565b60206040518083038186803b1580156114bf57600080fd5b505afa1580156114d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114f79190612f3e565b6110ca565b565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61159a611a0e565b73ffffffffffffffffffffffffffffffffffffffff166115b8610e2b565b73ffffffffffffffffffffffffffffffffffffffff161461160e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116059061362e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561167e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611675906134ce565b60405180910390fd5b61168781611e09565b50565b600d60009054906101000a900460ff166116d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d09061356e565b60405180910390fd5b6000828290501161171f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117169061370e565b60405180910390fd5b60005b828290508110156118bb573373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e85858581811061179557611794613b1d565b5b905060200201356040518263ffffffff1660e01b81526004016117b8919061372e565b60206040518083038186803b1580156117d057600080fd5b505afa1580156117e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118089190612c31565b73ffffffffffffffffffffffffffffffffffffffff161461185e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118559061366e565b60405180910390fd5b61188083838381811061187457611873613b1d565b5b905060200201356119a2565b6118a8576118a73384848481811061189b5761189a613b1d565b5b90506020020135611f2b565b5b80806118b3906139e7565b915050611722565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061198b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061199b575061199a8261213c565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a8983610bab565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611ada826119a2565b611b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b109061354e565b60405180910390fd5b6000611b2483610bab565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b9357508373ffffffffffffffffffffffffffffffffffffffff16611b7b84610681565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ba45750611ba381856114fe565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611bcd82610bab565b73ffffffffffffffffffffffffffffffffffffffff1614611c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1a9061364e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8a9061350e565b60405180910390fd5b611c9e8383836121a6565b611ca9600082611a16565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cf9919061389a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d509190613813565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611eda848484611bad565b611ee6848484846122ba565b611f25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1c9061348e565b60405180910390fd5b50505050565b611f45828260405180602001604052806000815250612451565b5050565b6060600e8054611f5890613984565b80601f0160208091040260200160405190810160405280929190818152602001828054611f8490613984565b8015611fd15780601f10611fa657610100808354040283529160200191611fd1565b820191906000526020600020905b815481529060010190602001808311611fb457829003601f168201915b5050505050905090565b60606000821415612023576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612137565b600082905060005b6000821461205557808061203e906139e7565b915050600a8261204e9190613869565b915061202b565b60008167ffffffffffffffff81111561207157612070613b4c565b5b6040519080825280601f01601f1916602001820160405280156120a35781602001600182028036833780820191505090505b5090505b60008514612130576001826120bc919061389a565b9150600a856120cb9190613a30565b60306120d79190613813565b60f81b8183815181106120ed576120ec613b1d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121299190613869565b94506120a7565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6121b18383836124ac565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121f4576121ef816124b1565b612233565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122325761223183826124fa565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122765761227181612667565b6122b5565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146122b4576122b38282612738565b5b5b505050565b60006122db8473ffffffffffffffffffffffffffffffffffffffff166127b7565b15612444578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612304611a0e565b8786866040518563ffffffff1660e01b815260040161232694939291906133bc565b602060405180830381600087803b15801561234057600080fd5b505af192505050801561237157506040513d601f19601f8201168201806040525081019061236e9190612e9b565b60015b6123f4573d80600081146123a1576040519150601f19603f3d011682016040523d82523d6000602084013e6123a6565b606091505b506000815114156123ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e39061348e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612449565b600190505b949350505050565b61245b83836127ca565b61246860008484846122ba565b6124a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249e9061348e565b60405180910390fd5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161250784610ceb565b612511919061389a565b90506000600760008481526020019081526020016000205490508181146125f6576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061267b919061389a565b90506000600960008481526020019081526020016000205490506000600883815481106126ab576126aa613b1d565b5b9060005260206000200154905080600883815481106126cd576126cc613b1d565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061271c5761271b613aee565b5b6001900381819060005260206000200160009055905550505050565b600061274383610ceb565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561283a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612831906135ee565b60405180910390fd5b612843816119a2565b15612883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287a906134ee565b60405180910390fd5b61288f600083836121a6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128df9190613813565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546129a490613984565b90600052602060002090601f0160209004810192826129c65760008555612a0d565b82601f106129df57805160ff1916838001178555612a0d565b82800160010185558215612a0d579182015b82811115612a0c5782518255916020019190600101906129f1565b5b509050612a1a9190612a1e565b5090565b5b80821115612a37576000816000905550600101612a1f565b5090565b6000612a4e612a498461376e565b613749565b905082815260208101848484011115612a6a57612a69613b8a565b5b612a75848285613942565b509392505050565b6000612a90612a8b8461379f565b613749565b905082815260208101848484011115612aac57612aab613b8a565b5b612ab7848285613942565b509392505050565b600081359050612ace81614144565b92915050565b600081519050612ae381614144565b92915050565b60008083601f840112612aff57612afe613b80565b5b8235905067ffffffffffffffff811115612b1c57612b1b613b7b565b5b602083019150836020820283011115612b3857612b37613b85565b5b9250929050565b600081359050612b4e8161415b565b92915050565b600081359050612b6381614172565b92915050565b600081519050612b7881614172565b92915050565b600082601f830112612b9357612b92613b80565b5b8135612ba3848260208601612a3b565b91505092915050565b600082601f830112612bc157612bc0613b80565b5b8135612bd1848260208601612a7d565b91505092915050565b600081359050612be981614189565b92915050565b600081519050612bfe81614189565b92915050565b600060208284031215612c1a57612c19613b94565b5b6000612c2884828501612abf565b91505092915050565b600060208284031215612c4757612c46613b94565b5b6000612c5584828501612ad4565b91505092915050565b60008060408385031215612c7557612c74613b94565b5b6000612c8385828601612abf565b9250506020612c9485828601612abf565b9150509250929050565b600080600060608486031215612cb757612cb6613b94565b5b6000612cc586828701612abf565b9350506020612cd686828701612abf565b9250506040612ce786828701612bda565b9150509250925092565b60008060008060808587031215612d0b57612d0a613b94565b5b6000612d1987828801612abf565b9450506020612d2a87828801612abf565b9350506040612d3b87828801612bda565b925050606085013567ffffffffffffffff811115612d5c57612d5b613b8f565b5b612d6887828801612b7e565b91505092959194509250565b60008060408385031215612d8b57612d8a613b94565b5b6000612d9985828601612abf565b9250506020612daa85828601612b3f565b9150509250929050565b60008060408385031215612dcb57612dca613b94565b5b6000612dd985828601612abf565b9250506020612dea85828601612bda565b9150509250929050565b60008060208385031215612e0b57612e0a613b94565b5b600083013567ffffffffffffffff811115612e2957612e28613b8f565b5b612e3585828601612ae9565b92509250509250929050565b600060208284031215612e5757612e56613b94565b5b6000612e6584828501612b3f565b91505092915050565b600060208284031215612e8457612e83613b94565b5b6000612e9284828501612b54565b91505092915050565b600060208284031215612eb157612eb0613b94565b5b6000612ebf84828501612b69565b91505092915050565b600060208284031215612ede57612edd613b94565b5b600082013567ffffffffffffffff811115612efc57612efb613b8f565b5b612f0884828501612bac565b91505092915050565b600060208284031215612f2757612f26613b94565b5b6000612f3584828501612bda565b91505092915050565b600060208284031215612f5457612f53613b94565b5b6000612f6284828501612bef565b91505092915050565b60008060408385031215612f8257612f81613b94565b5b6000612f9085828601612bda565b9250506020612fa185828601612bda565b9150509250929050565b612fb4816138ce565b82525050565b612fc3816138e0565b82525050565b6000612fd4826137d0565b612fde81856137e6565b9350612fee818560208601613951565b612ff781613b99565b840191505092915050565b600061300d826137db565b61301781856137f7565b9350613027818560208601613951565b61303081613b99565b840191505092915050565b6000613046826137db565b6130508185613808565b9350613060818560208601613951565b80840191505092915050565b6000613079602b836137f7565b915061308482613baa565b604082019050919050565b600061309c6032836137f7565b91506130a782613bf9565b604082019050919050565b60006130bf601b836137f7565b91506130ca82613c48565b602082019050919050565b60006130e26026836137f7565b91506130ed82613c71565b604082019050919050565b6000613105601c836137f7565b915061311082613cc0565b602082019050919050565b60006131286024836137f7565b915061313382613ce9565b604082019050919050565b600061314b6019836137f7565b915061315682613d38565b602082019050919050565b600061316e602c836137f7565b915061317982613d61565b604082019050919050565b6000613191601b836137f7565b915061319c82613db0565b602082019050919050565b60006131b46038836137f7565b91506131bf82613dd9565b604082019050919050565b60006131d7602a836137f7565b91506131e282613e28565b604082019050919050565b60006131fa6029836137f7565b915061320582613e77565b604082019050919050565b600061321d6020836137f7565b915061322882613ec6565b602082019050919050565b6000613240602c836137f7565b915061324b82613eef565b604082019050919050565b60006132636020836137f7565b915061326e82613f3e565b602082019050919050565b60006132866029836137f7565b915061329182613f67565b604082019050919050565b60006132a9601b836137f7565b91506132b482613fb6565b602082019050919050565b60006132cc602f836137f7565b91506132d782613fdf565b604082019050919050565b60006132ef6021836137f7565b91506132fa8261402e565b604082019050919050565b60006133126031836137f7565b915061331d8261407d565b604082019050919050565b6000613335602c836137f7565b9150613340826140cc565b604082019050919050565b6000613358601e836137f7565b91506133638261411b565b602082019050919050565b61337781613938565b82525050565b6000613389828561303b565b9150613395828461303b565b91508190509392505050565b60006020820190506133b66000830184612fab565b92915050565b60006080820190506133d16000830187612fab565b6133de6020830186612fab565b6133eb604083018561336e565b81810360608301526133fd8184612fc9565b905095945050505050565b600060408201905061341d6000830185612fab565b61342a602083018461336e565b9392505050565b60006020820190506134466000830184612fba565b92915050565b600060208201905081810360008301526134668184613002565b905092915050565b600060208201905081810360008301526134878161306c565b9050919050565b600060208201905081810360008301526134a78161308f565b9050919050565b600060208201905081810360008301526134c7816130b2565b9050919050565b600060208201905081810360008301526134e7816130d5565b9050919050565b60006020820190508181036000830152613507816130f8565b9050919050565b600060208201905081810360008301526135278161311b565b9050919050565b600060208201905081810360008301526135478161313e565b9050919050565b6000602082019050818103600083015261356781613161565b9050919050565b6000602082019050818103600083015261358781613184565b9050919050565b600060208201905081810360008301526135a7816131a7565b9050919050565b600060208201905081810360008301526135c7816131ca565b9050919050565b600060208201905081810360008301526135e7816131ed565b9050919050565b6000602082019050818103600083015261360781613210565b9050919050565b6000602082019050818103600083015261362781613233565b9050919050565b6000602082019050818103600083015261364781613256565b9050919050565b6000602082019050818103600083015261366781613279565b9050919050565b600060208201905081810360008301526136878161329c565b9050919050565b600060208201905081810360008301526136a7816132bf565b9050919050565b600060208201905081810360008301526136c7816132e2565b9050919050565b600060208201905081810360008301526136e781613305565b9050919050565b6000602082019050818103600083015261370781613328565b9050919050565b600060208201905081810360008301526137278161334b565b9050919050565b6000602082019050613743600083018461336e565b92915050565b6000613753613764565b905061375f82826139b6565b919050565b6000604051905090565b600067ffffffffffffffff82111561378957613788613b4c565b5b61379282613b99565b9050602081019050919050565b600067ffffffffffffffff8211156137ba576137b9613b4c565b5b6137c382613b99565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061381e82613938565b915061382983613938565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561385e5761385d613a61565b5b828201905092915050565b600061387482613938565b915061387f83613938565b92508261388f5761388e613a90565b5b828204905092915050565b60006138a582613938565b91506138b083613938565b9250828210156138c3576138c2613a61565b5b828203905092915050565b60006138d982613918565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561396f578082015181840152602081019050613954565b8381111561397e576000848401525b50505050565b6000600282049050600182168061399c57607f821691505b602082108114156139b0576139af613abf565b5b50919050565b6139bf82613b99565b810181811067ffffffffffffffff821117156139de576139dd613b4c565b5b80604052505050565b60006139f282613938565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a2557613a24613a61565b5b600182019050919050565b6000613a3b82613938565b9150613a4683613938565b925082613a5657613a55613a90565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f496e73756666696369656e7420706172656e7420746f6b656e732e0000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f436c61696d20706572696f64206973206e6f74206163746976652e0000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4d757374206f776e20616c6c20706172656e7420746f6b656e732e0000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4d75737420636c61696d206174206c65617374206f6e6520746f6b656e2e0000600082015250565b61414d816138ce565b811461415857600080fd5b50565b614164816138e0565b811461416f57600080fd5b50565b61417b816138ec565b811461418657600080fd5b50565b61419281613938565b811461419d57600080fd5b5056fea2646970667358221220cc5281869effdb76fb8a46ecc7e293f928a81c1ce92538cac15b18027e28969364736f6c6343000806003300000000000000000000000018c7766a10df15df8c971f6e8c1d2bba7c7a410b

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c80636352211e116100f9578063b88d4fde11610097578063d1058e5911610071578063d1058e5914610503578063e985e9c51461050d578063f2fde38b1461053d578063fc8504ea14610559576101c4565b8063b88d4fde1461049b578063c3490263146104b7578063c87b56dd146104d3576101c4565b8063715018a6116100d3578063715018a6146104395780638da5cb5b1461044357806395d89b4114610461578063a22cb4651461047f576101c4565b80636352211e146103bb5780636373a6b1146103eb57806370a0823114610409576101c4565b80632f745c59116101665780634b014e28116101405780634b014e28146103355780634f6ccce7146103515780635303f68c1461038157806355f804b31461039f576101c4565b80632f745c59146102b957806333c41a90146102e957806342842e0e14610319576101c4565b8063095ea7b3116101a2578063095ea7b314610247578063109695231461026357806318160ddd1461027f57806323b872dd1461029d576101c4565b806301ffc9a7146101c957806306fdde03146101f9578063081812fc14610217575b600080fd5b6101e360048036038101906101de9190612e6e565b610575565b6040516101f09190613431565b60405180910390f35b6102016105ef565b60405161020e919061344c565b60405180910390f35b610231600480360381019061022c9190612f11565b610681565b60405161023e91906133a1565b60405180910390f35b610261600480360381019061025c9190612db4565b610706565b005b61027d60048036038101906102789190612ec8565b61081e565b005b6102876108b4565b604051610294919061372e565b60405180910390f35b6102b760048036038101906102b29190612c9e565b6108c1565b005b6102d360048036038101906102ce9190612db4565b610921565b6040516102e0919061372e565b60405180910390f35b61030360048036038101906102fe9190612f11565b6109c6565b6040516103109190613431565b60405180910390f35b610333600480360381019061032e9190612c9e565b6109d8565b005b61034f600480360381019061034a9190612e41565b6109f8565b005b61036b60048036038101906103669190612f11565b610a91565b604051610378919061372e565b60405180910390f35b610389610b02565b6040516103969190613431565b60405180910390f35b6103b960048036038101906103b49190612ec8565b610b15565b005b6103d560048036038101906103d09190612f11565b610bab565b6040516103e291906133a1565b60405180910390f35b6103f3610c5d565b604051610400919061344c565b60405180910390f35b610423600480360381019061041e9190612c04565b610ceb565b604051610430919061372e565b60405180910390f35b610441610da3565b005b61044b610e2b565b60405161045891906133a1565b60405180910390f35b610469610e55565b604051610476919061344c565b60405180910390f35b61049960048036038101906104949190612d74565b610ee7565b005b6104b560048036038101906104b09190612cf1565b611068565b005b6104d160048036038101906104cc9190612f6b565b6110ca565b005b6104ed60048036038101906104e89190612f11565b6113a0565b6040516104fa919061344c565b60405180910390f35b61050b611447565b005b61052760048036038101906105229190612c5e565b6114fe565b6040516105349190613431565b60405180910390f35b61055760048036038101906105529190612c04565b611592565b005b610573600480360381019061056e9190612df4565b61168a565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105e857506105e7826118c0565b5b9050919050565b6060600080546105fe90613984565b80601f016020809104026020016040519081016040528092919081815260200182805461062a90613984565b80156106775780601f1061064c57610100808354040283529160200191610677565b820191906000526020600020905b81548152906001019060200180831161065a57829003601f168201915b5050505050905090565b600061068c826119a2565b6106cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c29061360e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061071182610bab565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610782576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610779906136ae565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107a1611a0e565b73ffffffffffffffffffffffffffffffffffffffff1614806107d057506107cf816107ca611a0e565b6114fe565b5b61080f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108069061358e565b60405180910390fd5b6108198383611a16565b505050565b610826611a0e565b73ffffffffffffffffffffffffffffffffffffffff16610844610e2b565b73ffffffffffffffffffffffffffffffffffffffff161461089a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108919061362e565b60405180910390fd5b80600c90805190602001906108b0929190612998565b5050565b6000600880549050905090565b6108d26108cc611a0e565b82611acf565b610911576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610908906136ce565b60405180910390fd5b61091c838383611bad565b505050565b600061092c83610ceb565b821061096d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109649061346e565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60006109d1826119a2565b9050919050565b6109f383838360405180602001604052806000815250611068565b505050565b610a00611a0e565b73ffffffffffffffffffffffffffffffffffffffff16610a1e610e2b565b73ffffffffffffffffffffffffffffffffffffffff1614610a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6b9061362e565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b6000610a9b6108b4565b8210610adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad3906136ee565b60405180910390fd5b60088281548110610af057610aef613b1d565b5b90600052602060002001549050919050565b600d60009054906101000a900460ff1681565b610b1d611a0e565b73ffffffffffffffffffffffffffffffffffffffff16610b3b610e2b565b73ffffffffffffffffffffffffffffffffffffffff1614610b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b889061362e565b60405180910390fd5b80600e9080519060200190610ba7929190612998565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b906135ce565b60405180910390fd5b80915050919050565b600c8054610c6a90613984565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9690613984565b8015610ce35780601f10610cb857610100808354040283529160200191610ce3565b820191906000526020600020905b815481529060010190602001808311610cc657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d53906135ae565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dab611a0e565b73ffffffffffffffffffffffffffffffffffffffff16610dc9610e2b565b73ffffffffffffffffffffffffffffffffffffffff1614610e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e169061362e565b60405180910390fd5b610e296000611e09565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610e6490613984565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9090613984565b8015610edd5780601f10610eb257610100808354040283529160200191610edd565b820191906000526020600020905b815481529060010190602001808311610ec057829003601f168201915b5050505050905090565b610eef611a0e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f549061352e565b60405180910390fd5b8060056000610f6a611a0e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611017611a0e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161105c9190613431565b60405180910390a35050565b611079611073611a0e565b83611acf565b6110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af906136ce565b60405180910390fd5b6110c484848484611ecf565b50505050565b600d60009054906101000a900460ff16611119576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111109061356e565b60405180910390fd5b6000811161115c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111539061370e565b60405180910390fd5b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016111b991906133a1565b60206040518083038186803b1580156111d157600080fd5b505afa1580156111e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112099190612f3e565b90508181101561124e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611245906134ae565b60405180910390fd5b818361125a9190613813565b81101561129c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611293906134ae565b60405180910390fd5b60005b81811080156112ad57508281105b1561139a576000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632f745c593387856112ff9190613813565b6040518363ffffffff1660e01b815260040161131c929190613408565b60206040518083038186803b15801561133457600080fd5b505afa158015611348573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136c9190612f3e565b9050611377816119a2565b611386576113853382611f2b565b5b508080611392906139e7565b91505061129f565b50505050565b60606113ab826119a2565b6113ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e19061368e565b60405180910390fd5b60006113f4611f49565b90506000815111611414576040518060200160405280600081525061143f565b8061141e84611fdb565b60405160200161142f92919061337d565b6040516020818303038152906040525b915050919050565b6114fc6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016114a791906133a1565b60206040518083038186803b1580156114bf57600080fd5b505afa1580156114d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114f79190612f3e565b6110ca565b565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61159a611a0e565b73ffffffffffffffffffffffffffffffffffffffff166115b8610e2b565b73ffffffffffffffffffffffffffffffffffffffff161461160e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116059061362e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561167e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611675906134ce565b60405180910390fd5b61168781611e09565b50565b600d60009054906101000a900460ff166116d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d09061356e565b60405180910390fd5b6000828290501161171f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117169061370e565b60405180910390fd5b60005b828290508110156118bb573373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e85858581811061179557611794613b1d565b5b905060200201356040518263ffffffff1660e01b81526004016117b8919061372e565b60206040518083038186803b1580156117d057600080fd5b505afa1580156117e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118089190612c31565b73ffffffffffffffffffffffffffffffffffffffff161461185e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118559061366e565b60405180910390fd5b61188083838381811061187457611873613b1d565b5b905060200201356119a2565b6118a8576118a73384848481811061189b5761189a613b1d565b5b90506020020135611f2b565b5b80806118b3906139e7565b915050611722565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061198b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061199b575061199a8261213c565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a8983610bab565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611ada826119a2565b611b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b109061354e565b60405180910390fd5b6000611b2483610bab565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b9357508373ffffffffffffffffffffffffffffffffffffffff16611b7b84610681565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ba45750611ba381856114fe565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611bcd82610bab565b73ffffffffffffffffffffffffffffffffffffffff1614611c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1a9061364e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8a9061350e565b60405180910390fd5b611c9e8383836121a6565b611ca9600082611a16565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cf9919061389a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d509190613813565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611eda848484611bad565b611ee6848484846122ba565b611f25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1c9061348e565b60405180910390fd5b50505050565b611f45828260405180602001604052806000815250612451565b5050565b6060600e8054611f5890613984565b80601f0160208091040260200160405190810160405280929190818152602001828054611f8490613984565b8015611fd15780601f10611fa657610100808354040283529160200191611fd1565b820191906000526020600020905b815481529060010190602001808311611fb457829003601f168201915b5050505050905090565b60606000821415612023576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612137565b600082905060005b6000821461205557808061203e906139e7565b915050600a8261204e9190613869565b915061202b565b60008167ffffffffffffffff81111561207157612070613b4c565b5b6040519080825280601f01601f1916602001820160405280156120a35781602001600182028036833780820191505090505b5090505b60008514612130576001826120bc919061389a565b9150600a856120cb9190613a30565b60306120d79190613813565b60f81b8183815181106120ed576120ec613b1d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121299190613869565b94506120a7565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6121b18383836124ac565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121f4576121ef816124b1565b612233565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122325761223183826124fa565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122765761227181612667565b6122b5565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146122b4576122b38282612738565b5b5b505050565b60006122db8473ffffffffffffffffffffffffffffffffffffffff166127b7565b15612444578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612304611a0e565b8786866040518563ffffffff1660e01b815260040161232694939291906133bc565b602060405180830381600087803b15801561234057600080fd5b505af192505050801561237157506040513d601f19601f8201168201806040525081019061236e9190612e9b565b60015b6123f4573d80600081146123a1576040519150601f19603f3d011682016040523d82523d6000602084013e6123a6565b606091505b506000815114156123ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e39061348e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612449565b600190505b949350505050565b61245b83836127ca565b61246860008484846122ba565b6124a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249e9061348e565b60405180910390fd5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161250784610ceb565b612511919061389a565b90506000600760008481526020019081526020016000205490508181146125f6576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061267b919061389a565b90506000600960008481526020019081526020016000205490506000600883815481106126ab576126aa613b1d565b5b9060005260206000200154905080600883815481106126cd576126cc613b1d565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061271c5761271b613aee565b5b6001900381819060005260206000200160009055905550505050565b600061274383610ceb565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561283a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612831906135ee565b60405180910390fd5b612843816119a2565b15612883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287a906134ee565b60405180910390fd5b61288f600083836121a6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128df9190613813565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546129a490613984565b90600052602060002090601f0160209004810192826129c65760008555612a0d565b82601f106129df57805160ff1916838001178555612a0d565b82800160010185558215612a0d579182015b82811115612a0c5782518255916020019190600101906129f1565b5b509050612a1a9190612a1e565b5090565b5b80821115612a37576000816000905550600101612a1f565b5090565b6000612a4e612a498461376e565b613749565b905082815260208101848484011115612a6a57612a69613b8a565b5b612a75848285613942565b509392505050565b6000612a90612a8b8461379f565b613749565b905082815260208101848484011115612aac57612aab613b8a565b5b612ab7848285613942565b509392505050565b600081359050612ace81614144565b92915050565b600081519050612ae381614144565b92915050565b60008083601f840112612aff57612afe613b80565b5b8235905067ffffffffffffffff811115612b1c57612b1b613b7b565b5b602083019150836020820283011115612b3857612b37613b85565b5b9250929050565b600081359050612b4e8161415b565b92915050565b600081359050612b6381614172565b92915050565b600081519050612b7881614172565b92915050565b600082601f830112612b9357612b92613b80565b5b8135612ba3848260208601612a3b565b91505092915050565b600082601f830112612bc157612bc0613b80565b5b8135612bd1848260208601612a7d565b91505092915050565b600081359050612be981614189565b92915050565b600081519050612bfe81614189565b92915050565b600060208284031215612c1a57612c19613b94565b5b6000612c2884828501612abf565b91505092915050565b600060208284031215612c4757612c46613b94565b5b6000612c5584828501612ad4565b91505092915050565b60008060408385031215612c7557612c74613b94565b5b6000612c8385828601612abf565b9250506020612c9485828601612abf565b9150509250929050565b600080600060608486031215612cb757612cb6613b94565b5b6000612cc586828701612abf565b9350506020612cd686828701612abf565b9250506040612ce786828701612bda565b9150509250925092565b60008060008060808587031215612d0b57612d0a613b94565b5b6000612d1987828801612abf565b9450506020612d2a87828801612abf565b9350506040612d3b87828801612bda565b925050606085013567ffffffffffffffff811115612d5c57612d5b613b8f565b5b612d6887828801612b7e565b91505092959194509250565b60008060408385031215612d8b57612d8a613b94565b5b6000612d9985828601612abf565b9250506020612daa85828601612b3f565b9150509250929050565b60008060408385031215612dcb57612dca613b94565b5b6000612dd985828601612abf565b9250506020612dea85828601612bda565b9150509250929050565b60008060208385031215612e0b57612e0a613b94565b5b600083013567ffffffffffffffff811115612e2957612e28613b8f565b5b612e3585828601612ae9565b92509250509250929050565b600060208284031215612e5757612e56613b94565b5b6000612e6584828501612b3f565b91505092915050565b600060208284031215612e8457612e83613b94565b5b6000612e9284828501612b54565b91505092915050565b600060208284031215612eb157612eb0613b94565b5b6000612ebf84828501612b69565b91505092915050565b600060208284031215612ede57612edd613b94565b5b600082013567ffffffffffffffff811115612efc57612efb613b8f565b5b612f0884828501612bac565b91505092915050565b600060208284031215612f2757612f26613b94565b5b6000612f3584828501612bda565b91505092915050565b600060208284031215612f5457612f53613b94565b5b6000612f6284828501612bef565b91505092915050565b60008060408385031215612f8257612f81613b94565b5b6000612f9085828601612bda565b9250506020612fa185828601612bda565b9150509250929050565b612fb4816138ce565b82525050565b612fc3816138e0565b82525050565b6000612fd4826137d0565b612fde81856137e6565b9350612fee818560208601613951565b612ff781613b99565b840191505092915050565b600061300d826137db565b61301781856137f7565b9350613027818560208601613951565b61303081613b99565b840191505092915050565b6000613046826137db565b6130508185613808565b9350613060818560208601613951565b80840191505092915050565b6000613079602b836137f7565b915061308482613baa565b604082019050919050565b600061309c6032836137f7565b91506130a782613bf9565b604082019050919050565b60006130bf601b836137f7565b91506130ca82613c48565b602082019050919050565b60006130e26026836137f7565b91506130ed82613c71565b604082019050919050565b6000613105601c836137f7565b915061311082613cc0565b602082019050919050565b60006131286024836137f7565b915061313382613ce9565b604082019050919050565b600061314b6019836137f7565b915061315682613d38565b602082019050919050565b600061316e602c836137f7565b915061317982613d61565b604082019050919050565b6000613191601b836137f7565b915061319c82613db0565b602082019050919050565b60006131b46038836137f7565b91506131bf82613dd9565b604082019050919050565b60006131d7602a836137f7565b91506131e282613e28565b604082019050919050565b60006131fa6029836137f7565b915061320582613e77565b604082019050919050565b600061321d6020836137f7565b915061322882613ec6565b602082019050919050565b6000613240602c836137f7565b915061324b82613eef565b604082019050919050565b60006132636020836137f7565b915061326e82613f3e565b602082019050919050565b60006132866029836137f7565b915061329182613f67565b604082019050919050565b60006132a9601b836137f7565b91506132b482613fb6565b602082019050919050565b60006132cc602f836137f7565b91506132d782613fdf565b604082019050919050565b60006132ef6021836137f7565b91506132fa8261402e565b604082019050919050565b60006133126031836137f7565b915061331d8261407d565b604082019050919050565b6000613335602c836137f7565b9150613340826140cc565b604082019050919050565b6000613358601e836137f7565b91506133638261411b565b602082019050919050565b61337781613938565b82525050565b6000613389828561303b565b9150613395828461303b565b91508190509392505050565b60006020820190506133b66000830184612fab565b92915050565b60006080820190506133d16000830187612fab565b6133de6020830186612fab565b6133eb604083018561336e565b81810360608301526133fd8184612fc9565b905095945050505050565b600060408201905061341d6000830185612fab565b61342a602083018461336e565b9392505050565b60006020820190506134466000830184612fba565b92915050565b600060208201905081810360008301526134668184613002565b905092915050565b600060208201905081810360008301526134878161306c565b9050919050565b600060208201905081810360008301526134a78161308f565b9050919050565b600060208201905081810360008301526134c7816130b2565b9050919050565b600060208201905081810360008301526134e7816130d5565b9050919050565b60006020820190508181036000830152613507816130f8565b9050919050565b600060208201905081810360008301526135278161311b565b9050919050565b600060208201905081810360008301526135478161313e565b9050919050565b6000602082019050818103600083015261356781613161565b9050919050565b6000602082019050818103600083015261358781613184565b9050919050565b600060208201905081810360008301526135a7816131a7565b9050919050565b600060208201905081810360008301526135c7816131ca565b9050919050565b600060208201905081810360008301526135e7816131ed565b9050919050565b6000602082019050818103600083015261360781613210565b9050919050565b6000602082019050818103600083015261362781613233565b9050919050565b6000602082019050818103600083015261364781613256565b9050919050565b6000602082019050818103600083015261366781613279565b9050919050565b600060208201905081810360008301526136878161329c565b9050919050565b600060208201905081810360008301526136a7816132bf565b9050919050565b600060208201905081810360008301526136c7816132e2565b9050919050565b600060208201905081810360008301526136e781613305565b9050919050565b6000602082019050818103600083015261370781613328565b9050919050565b600060208201905081810360008301526137278161334b565b9050919050565b6000602082019050613743600083018461336e565b92915050565b6000613753613764565b905061375f82826139b6565b919050565b6000604051905090565b600067ffffffffffffffff82111561378957613788613b4c565b5b61379282613b99565b9050602081019050919050565b600067ffffffffffffffff8211156137ba576137b9613b4c565b5b6137c382613b99565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061381e82613938565b915061382983613938565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561385e5761385d613a61565b5b828201905092915050565b600061387482613938565b915061387f83613938565b92508261388f5761388e613a90565b5b828204905092915050565b60006138a582613938565b91506138b083613938565b9250828210156138c3576138c2613a61565b5b828203905092915050565b60006138d982613918565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561396f578082015181840152602081019050613954565b8381111561397e576000848401525b50505050565b6000600282049050600182168061399c57607f821691505b602082108114156139b0576139af613abf565b5b50919050565b6139bf82613b99565b810181811067ffffffffffffffff821117156139de576139dd613b4c565b5b80604052505050565b60006139f282613938565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a2557613a24613a61565b5b600182019050919050565b6000613a3b82613938565b9150613a4683613938565b925082613a5657613a55613a90565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f496e73756666696369656e7420706172656e7420746f6b656e732e0000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f436c61696d20706572696f64206973206e6f74206163746976652e0000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4d757374206f776e20616c6c20706172656e7420746f6b656e732e0000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4d75737420636c61696d206174206c65617374206f6e6520746f6b656e2e0000600082015250565b61414d816138ce565b811461415857600080fd5b50565b614164816138e0565b811461416f57600080fd5b50565b61417b816138ec565b811461418657600080fd5b50565b61419281613938565b811461419d57600080fd5b5056fea2646970667358221220cc5281869effdb76fb8a46ecc7e293f928a81c1ce92538cac15b18027e28969364736f6c63430008060033

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

00000000000000000000000018c7766a10df15df8c971f6e8c1d2bba7c7a410b

-----Decoded View---------------
Arg [0] : parentAddress (address): 0x18c7766A10df15Df8c971f6e8c1D2bbA7c7A410b

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000018c7766a10df15df8c971f6e8c1d2bba7c7a410b


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.