ETH Price: $3,230.96 (-0.72%)
Gas: 1 Gwei

Token

PalmTreeCollective (PTC)
 

Overview

Max Total Supply

56 PTC

Holders

47

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
basedceo.eth
Balance
1 PTC
0xe781fe7a6f65ee6b3efe66ed8f7f5c1e9f01cc55
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
PalmTreeCollective

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

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

pragma solidity 0.8.9;

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

contract PalmTreeCollective is ERC721Enumerable, Ownable, ReentrancyGuard {

    // Events
    event Burn(uint256 tokenId, address burner);

    // Constants
    uint256 public constant TOKEN_LIMIT = 1000;
    uint256 public constant PRESALE_MINT_LIMIT = 100;
    uint256 public constant MAX_MINT_QUANTITY = 5;
    uint256 private constant _GIVEAWAY_LIMIT = 100;

    uint256 public mint_price = .1 ether;

    // Addresses
    address payable constant private _PT_WALLET = payable(0x452A89F1316798fDdC9D03f9af38b0586F8142e5);

    // States
    uint256 public sale_state = 3; // 0 = closed, 1 = presale tier 1, 2 = presale tier 2, 3 = sale
    bool public burn_active = false;

    // General
    string public baseURI;
    string public PROVENANCE_HASH = "";

    // Internal state
    // _presale_allowance[address] > 0 | tier 2 eligible
    // _presale_allowance[address] - 1 | remaining tier 1 mints
    mapping(address => uint256) private _presale_allowance;
    mapping(uint256 => address) private _token_id_burners;

    // Random index
    uint256 private _nonce = 0;
    uint256[TOKEN_LIMIT] private _indices;

    constructor() ERC721("PalmTreeCollective", "PTC") {}

    // General
    function _randomMint(address to) private {
        uint256 randomIndex = uint256(keccak256(abi.encodePacked(_nonce, msg.sender, block.difficulty, block.timestamp)));

        _validMint(to, randomIndex);
    }

    function _validMint(address to, uint256 index) private {
        uint256 validIndex = _validateIndex(index);

        _safeMint(to, validIndex);
    }

    function _validateIndex(uint256 index_to_validate) private returns (uint256) {
        uint256 total_size = TOKEN_LIMIT - totalSupply();
        uint256 index = index_to_validate % total_size;
        uint256 value = 0;

        if(_indices[index] != 0) {
            value = _indices[index];
        }
        else {
            value = index;
        }

        if(_indices[total_size - 1] == 0) {
            _indices[index] = total_size - 1;
        }
        else {
            _indices[index] = _indices[total_size - 1];
        }

        _nonce++;

        return value;
    }

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

    function listTokensForOwner(address owner) external view returns (uint256[] memory) {
        uint256 token_count = balanceOf(owner);
        uint256[] memory result = new uint256[](token_count);
        uint256 index;

        for(index = 0; index < token_count; index++) {
            result[index] = tokenOfOwnerByIndex(owner, index);
        }

        return result;
    }

    // Presale eligible
    function isTierTwoPresaleEligible(address minter) external view returns(bool) {
        return _presale_allowance[minter] > 0;
    }

    function isTierOnePresaleEligible(address minter) external view returns(bool) {
        return _presale_allowance[minter] > 1;
    }

    function presaleAllowanceForAddress(address minter) external view returns(uint) {
        return _presale_allowance[minter];
    }

    // Minting
    function mintTokens(address recipient, uint256 num_tokens) external payable nonReentrant {
        require(sale_state != 0, "Sale is closed");
        require(num_tokens > 0 && num_tokens <= MAX_MINT_QUANTITY, "You can only mint 1 to 5 tokens at a time");

        if(sale_state == 3) {
            // Open sale
            require(totalSupply() + num_tokens <= TOKEN_LIMIT, "Palm Tree Collective has sold out");
        }
        else {
            require(totalSupply() + num_tokens <= PRESALE_MINT_LIMIT, "The maximum presale tokens have been minted");

            if(sale_state == 2) {
                // Tier 2 presale
                require(_presale_allowance[recipient] > 0, "You are not eligible to presale mint");
            }
            else if(sale_state == 1) {
                // Tier 1 presale
                require(_presale_allowance[recipient] - num_tokens >= 1, "You cannot mint that many tokens at this time");
                _presale_allowance[recipient] -= num_tokens;
            }
        }

        if(msg.sender != _PT_WALLET) {
            uint256 total_price = mint_price * num_tokens;
            require(msg.value >= total_price, "Ether value sent too low");
        }

        for(uint256 i = 0; i < num_tokens; i++) {
            _randomMint(recipient);
        }
    }

    // Burning
    function burn(uint256 token_id) external {
        require(burn_active, "You cannot burn at this time");
        require(ownerOf(token_id) == msg.sender, "You cannot burn a token you do not own");

        _burn(token_id);
        _token_id_burners[token_id] = msg.sender;

        emit Burn(token_id, msg.sender);
    }

    function burnerOf(uint256 token_id) external view returns (address) {
        return _token_id_burners[token_id];
    }

    // Owner only
    function setProvenanceHash(string calldata provenanceHash) external onlyOwner {
        PROVENANCE_HASH = provenanceHash;
    }

    function editPresaleAllowance(address[] memory addresses, uint256 amount) public onlyOwner {
        for(uint256 i; i < addresses.length; i++){
            _presale_allowance[addresses[i]] = amount;
        }
    }

    function setBaseURI(string calldata baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function reserveTokens(uint256[] calldata tokens) external onlyOwner {
        require(sale_state == 0, "Sale is not in closed state");
        require(totalSupply() + tokens.length <= _GIVEAWAY_LIMIT, "Exceeded giveaway supply");

        for (uint256 i = 0; i < tokens.length; i++) {
            _validMint(_PT_WALLET, tokens[i]);
        }
    }

    function setMintPrice(uint256 new_mint_price) external onlyOwner {
        mint_price = new_mint_price;
    }

    function setSaleState(uint256 new_state) external onlyOwner {
        sale_state = new_state;
    }

    function toggleBurnState() external onlyOwner {
        burn_active = !burn_active;
    }

    function withdraw() external onlyOwner {
        uint256 full_balance = (address(this).balance * 100) / 100; // 100%
//        uint256 tenPercentOfBalance = (address(this).balance * 10) / 100; // 10.0%

        _PT_WALLET.transfer(full_balance);
    }
}

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

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 5 of 14 : 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 14 : 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 14 : 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 14 : 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 14 : 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 14 : 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 14 : 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 12 of 14 : 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 13 of 14 : 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 14 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"burner","type":"address"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINT_QUANTITY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"token_id","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burn_active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"token_id","type":"uint256"}],"name":"burnerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"editPresaleAllowance","outputs":[],"stateMutability":"nonpayable","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":"address","name":"minter","type":"address"}],"name":"isTierOnePresaleEligible","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"isTierTwoPresaleEligible","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"listTokensForOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"num_tokens","type":"uint256"}],"name":"mintTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mint_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"minter","type":"address"}],"name":"presaleAllowanceForAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokens","type":"uint256[]"}],"name":"reserveTokens","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":[],"name":"sale_state","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"new_mint_price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"new_state","type":"uint256"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleBurnState","outputs":[],"stateMutability":"nonpayable","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"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405267016345785d8a0000600c556003600d556000600e60006101000a81548160ff02191690831515021790555060405180602001604052806000815250601090805190602001906200005792919062000207565b5060006013553480156200006a57600080fd5b506040518060400160405280601281526020017f50616c6d54726565436f6c6c65637469766500000000000000000000000000008152506040518060400160405280600381526020017f50544300000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000ef92919062000207565b5080600190805190602001906200010892919062000207565b5050506200012b6200011f6200013960201b60201c565b6200014160201b60201c565b6001600b819055506200031c565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021590620002e6565b90600052602060002090601f01602090048101928262000239576000855562000285565b82601f106200025457805160ff191683800117855562000285565b8280016001018555821562000285579182015b828111156200028457825182559160200191906001019062000267565b5b50905062000294919062000298565b5090565b5b80821115620002b357600081600090555060010162000299565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002ff57607f821691505b60208210811415620003165762000315620002b7565b5b50919050565b61556b806200032c6000396000f3fe6080604052600436106102515760003560e01c806371273bb711610139578063ca0df4a1116100b6578063f0dda65c1161007a578063f0dda65c146108fa578063f2fde38b14610916578063f4a0a5281461093f578063f5e1713e14610968578063f5ebec8014610993578063ff1b6556146109be57610251565b8063ca0df4a1146107ef578063cf27f4201461082c578063e28a43e414610855578063e985e9c514610892578063f000fd25146108cf57610251565b8063b224bbf0116100fd578063b224bbf01461070c578063b88d4fde14610749578063be99aaa714610772578063c6cdff5314610789578063c87b56dd146107b257610251565b806371273bb71461064b578063715018a6146106765780638da5cb5b1461068d57806395d89b41146106b8578063a22cb465146106e357610251565b806323b872dd116101d257806342966c681161019657806342966c68146105175780634f6ccce71461054057806355f804b31461057d5780636352211e146105a65780636c0360eb146105e357806370a082311461060e57610251565b806323b872dd146104345780632f745c591461045d57806338aa42e91461049a5780633ccfd60b146104d757806342842e0e146104ee57610251565b8063095ea7b311610219578063095ea7b31461034f578063109695231461037857806318160ddd146103a157806318ba1b61146103cc5780631a4231a41461040957610251565b806301ffc9a714610256578063031bd4c41461029357806306fdde03146102be578063081812fc146102e9578063084c408814610326575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613820565b6109e9565b60405161028a9190613868565b60405180910390f35b34801561029f57600080fd5b506102a8610a63565b6040516102b5919061389c565b60405180910390f35b3480156102ca57600080fd5b506102d3610a69565b6040516102e09190613950565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b919061399e565b610afb565b60405161031d9190613a0c565b60405180910390f35b34801561033257600080fd5b5061034d6004803603810190610348919061399e565b610b80565b005b34801561035b57600080fd5b5061037660048036038101906103719190613a53565b610c06565b005b34801561038457600080fd5b5061039f600480360381019061039a9190613af8565b610d1e565b005b3480156103ad57600080fd5b506103b6610db0565b6040516103c3919061389c565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee9190613b45565b610dbd565b6040516104009190613868565b60405180910390f35b34801561041557600080fd5b5061041e610e09565b60405161042b919061389c565b60405180910390f35b34801561044057600080fd5b5061045b60048036038101906104569190613b72565b610e0f565b005b34801561046957600080fd5b50610484600480360381019061047f9190613a53565b610e6f565b604051610491919061389c565b60405180910390f35b3480156104a657600080fd5b506104c160048036038101906104bc9190613b45565b610f14565b6040516104ce919061389c565b60405180910390f35b3480156104e357600080fd5b506104ec610f5d565b005b3480156104fa57600080fd5b5061051560048036038101906105109190613b72565b611053565b005b34801561052357600080fd5b5061053e6004803603810190610539919061399e565b611073565b005b34801561054c57600080fd5b506105676004803603810190610562919061399e565b6111cf565b604051610574919061389c565b60405180910390f35b34801561058957600080fd5b506105a4600480360381019061059f9190613af8565b611240565b005b3480156105b257600080fd5b506105cd60048036038101906105c8919061399e565b6112d2565b6040516105da9190613a0c565b60405180910390f35b3480156105ef57600080fd5b506105f8611384565b6040516106059190613950565b60405180910390f35b34801561061a57600080fd5b5061063560048036038101906106309190613b45565b611412565b604051610642919061389c565b60405180910390f35b34801561065757600080fd5b506106606114ca565b60405161066d919061389c565b60405180910390f35b34801561068257600080fd5b5061068b6114cf565b005b34801561069957600080fd5b506106a2611557565b6040516106af9190613a0c565b60405180910390f35b3480156106c457600080fd5b506106cd611581565b6040516106da9190613950565b60405180910390f35b3480156106ef57600080fd5b5061070a60048036038101906107059190613bf1565b611613565b005b34801561071857600080fd5b50610733600480360381019061072e9190613b45565b611794565b6040516107409190613868565b60405180910390f35b34801561075557600080fd5b50610770600480360381019061076b9190613d61565b6117df565b005b34801561077e57600080fd5b50610787611841565b005b34801561079557600080fd5b506107b060048036038101906107ab9190613ea7565b6118e9565b005b3480156107be57600080fd5b506107d960048036038101906107d4919061399e565b6119e7565b6040516107e69190613950565b60405180910390f35b3480156107fb57600080fd5b506108166004803603810190610811919061399e565b611a8e565b6040516108239190613a0c565b60405180910390f35b34801561083857600080fd5b50610853600480360381019061084e9190613f59565b611acb565b005b34801561086157600080fd5b5061087c60048036038101906108779190613b45565b611c42565b6040516108899190614064565b60405180910390f35b34801561089e57600080fd5b506108b960048036038101906108b49190614086565b611cf0565b6040516108c69190613868565b60405180910390f35b3480156108db57600080fd5b506108e4611d84565b6040516108f19190613868565b60405180910390f35b610914600480360381019061090f9190613a53565b611d97565b005b34801561092257600080fd5b5061093d60048036038101906109389190613b45565b61218e565b005b34801561094b57600080fd5b506109666004803603810190610961919061399e565b612286565b005b34801561097457600080fd5b5061097d61230c565b60405161098a919061389c565b60405180910390f35b34801561099f57600080fd5b506109a8612312565b6040516109b5919061389c565b60405180910390f35b3480156109ca57600080fd5b506109d3612317565b6040516109e09190613950565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a5c5750610a5b826123a5565b5b9050919050565b6103e881565b606060008054610a78906140f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa4906140f5565b8015610af15780601f10610ac657610100808354040283529160200191610af1565b820191906000526020600020905b815481529060010190602001808311610ad457829003601f168201915b5050505050905090565b6000610b0682612487565b610b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3c90614199565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610b886124f3565b73ffffffffffffffffffffffffffffffffffffffff16610ba6611557565b73ffffffffffffffffffffffffffffffffffffffff1614610bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf390614205565b60405180910390fd5b80600d8190555050565b6000610c11826112d2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7990614297565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ca16124f3565b73ffffffffffffffffffffffffffffffffffffffff161480610cd05750610ccf81610cca6124f3565b611cf0565b5b610d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0690614329565b60405180910390fd5b610d1983836124fb565b505050565b610d266124f3565b73ffffffffffffffffffffffffffffffffffffffff16610d44611557565b73ffffffffffffffffffffffffffffffffffffffff1614610d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9190614205565b60405180910390fd5b818160109190610dab929190613711565b505050565b6000600880549050905090565b60006001601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054119050919050565b600c5481565b610e20610e1a6124f3565b826125b4565b610e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e56906143bb565b60405180910390fd5b610e6a838383612692565b505050565b6000610e7a83611412565b8210610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb29061444d565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f656124f3565b73ffffffffffffffffffffffffffffffffffffffff16610f83611557565b73ffffffffffffffffffffffffffffffffffffffff1614610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd090614205565b60405180910390fd5b600060648047610fe9919061449c565b610ff39190614525565b905073452a89f1316798fddc9d03f9af38b0586f8142e573ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561104f573d6000803e3d6000fd5b5050565b61106e838383604051806020016040528060008152506117df565b505050565b600e60009054906101000a900460ff166110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b9906145a2565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166110e2826112d2565b73ffffffffffffffffffffffffffffffffffffffff1614611138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112f90614634565b60405180910390fd5b611141816128ee565b336012600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507ff6554c3a5d28e08c120b5a69c7edbaf52f935bd2596a60b8a18e282cd257cddb81336040516111c4929190614654565b60405180910390a150565b60006111d9610db0565b821061121a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611211906146ef565b60405180910390fd5b6008828154811061122e5761122d61470f565b5b90600052602060002001549050919050565b6112486124f3565b73ffffffffffffffffffffffffffffffffffffffff16611266611557565b73ffffffffffffffffffffffffffffffffffffffff16146112bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b390614205565b60405180910390fd5b8181600f91906112cd929190613711565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561137b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611372906147b0565b60405180910390fd5b80915050919050565b600f8054611391906140f5565b80601f01602080910402602001604051908101604052809291908181526020018280546113bd906140f5565b801561140a5780601f106113df5761010080835404028352916020019161140a565b820191906000526020600020905b8154815290600101906020018083116113ed57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611483576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147a90614842565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600581565b6114d76124f3565b73ffffffffffffffffffffffffffffffffffffffff166114f5611557565b73ffffffffffffffffffffffffffffffffffffffff161461154b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154290614205565b60405180910390fd5b61155560006129ff565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611590906140f5565b80601f01602080910402602001604051908101604052809291908181526020018280546115bc906140f5565b80156116095780601f106115de57610100808354040283529160200191611609565b820191906000526020600020905b8154815290600101906020018083116115ec57829003601f168201915b5050505050905090565b61161b6124f3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611689576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611680906148ae565b60405180910390fd5b80600560006116966124f3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117436124f3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117889190613868565b60405180910390a35050565b600080601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054119050919050565b6117f06117ea6124f3565b836125b4565b61182f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611826906143bb565b60405180910390fd5b61183b84848484612ac5565b50505050565b6118496124f3565b73ffffffffffffffffffffffffffffffffffffffff16611867611557565b73ffffffffffffffffffffffffffffffffffffffff16146118bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b490614205565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6118f16124f3565b73ffffffffffffffffffffffffffffffffffffffff1661190f611557565b73ffffffffffffffffffffffffffffffffffffffff1614611965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195c90614205565b60405180910390fd5b60005b82518110156119e25781601160008584815181106119895761198861470f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806119da906148ce565b915050611968565b505050565b60606119f282612487565b611a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2890614989565b60405180910390fd5b6000611a3b612b21565b90506000815111611a5b5760405180602001604052806000815250611a86565b80611a6584612bb3565b604051602001611a769291906149e5565b6040516020818303038152906040525b915050919050565b60006012600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b611ad36124f3565b73ffffffffffffffffffffffffffffffffffffffff16611af1611557565b73ffffffffffffffffffffffffffffffffffffffff1614611b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3e90614205565b60405180910390fd5b6000600d5414611b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8390614a55565b60405180910390fd5b606482829050611b9a610db0565b611ba49190614a75565b1115611be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdc90614b17565b60405180910390fd5b60005b82829050811015611c3d57611c2a73452a89f1316798fddc9d03f9af38b0586f8142e5848484818110611c1e57611c1d61470f565b5b90506020020135612d14565b8080611c35906148ce565b915050611be8565b505050565b60606000611c4f83611412565b905060008167ffffffffffffffff811115611c6d57611c6c613c36565b5b604051908082528060200260200182016040528015611c9b5781602001602082028036833780820191505090505b50905060005b82811015611ce557611cb38582610e6f565b828281518110611cc657611cc561470f565b5b6020026020010181815250508080611cdd906148ce565b915050611ca1565b819350505050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e60009054906101000a900460ff1681565b6002600b541415611ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd490614b83565b60405180910390fd5b6002600b819055506000600d541415611e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2290614bef565b60405180910390fd5b600081118015611e3c575060058111155b611e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7290614c81565b60405180910390fd5b6003600d541415611ee2576103e881611e92610db0565b611e9c9190614a75565b1115611edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed490614d13565b60405180910390fd5b6120bc565b606481611eed610db0565b611ef79190614a75565b1115611f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2f90614da5565b60405180910390fd5b6002600d541415611fca576000601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbc90614e37565b60405180910390fd5b6120bb565b6001600d5414156120ba57600181601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120229190614e57565b1015612063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205a90614efd565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120b29190614e57565b925050819055505b5b5b73452a89f1316798fddc9d03f9af38b0586f8142e573ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461215a57600081600c54612113919061449c565b905080341015612158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214f90614f69565b60405180910390fd5b505b60005b818110156121815761216e83612d30565b8080612179906148ce565b91505061215d565b506001600b819055505050565b6121966124f3565b73ffffffffffffffffffffffffffffffffffffffff166121b4611557565b73ffffffffffffffffffffffffffffffffffffffff161461220a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220190614205565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561227a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227190614ffb565b60405180910390fd5b612283816129ff565b50565b61228e6124f3565b73ffffffffffffffffffffffffffffffffffffffff166122ac611557565b73ffffffffffffffffffffffffffffffffffffffff1614612302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f990614205565b60405180910390fd5b80600c8190555050565b600d5481565b606481565b60108054612324906140f5565b80601f0160208091040260200160405190810160405280929190818152602001828054612350906140f5565b801561239d5780601f106123725761010080835404028352916020019161239d565b820191906000526020600020905b81548152906001019060200180831161238057829003601f168201915b505050505081565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061247057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612480575061247f82612d74565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661256e836112d2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006125bf82612487565b6125fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f59061508d565b60405180910390fd5b6000612609836112d2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061267857508373ffffffffffffffffffffffffffffffffffffffff1661266084610afb565b73ffffffffffffffffffffffffffffffffffffffff16145b8061268957506126888185611cf0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126b2826112d2565b73ffffffffffffffffffffffffffffffffffffffff1614612708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ff9061511f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276f906151b1565b60405180910390fd5b612783838383612dde565b61278e6000826124fb565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127de9190614e57565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128359190614a75565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006128f9826112d2565b905061290781600084612dde565b6129126000836124fb565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129629190614e57565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ad0848484612692565b612adc84848484612ef2565b612b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1290615243565b60405180910390fd5b50505050565b6060600f8054612b30906140f5565b80601f0160208091040260200160405190810160405280929190818152602001828054612b5c906140f5565b8015612ba95780601f10612b7e57610100808354040283529160200191612ba9565b820191906000526020600020905b815481529060010190602001808311612b8c57829003601f168201915b5050505050905090565b60606000821415612bfb576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d0f565b600082905060005b60008214612c2d578080612c16906148ce565b915050600a82612c269190614525565b9150612c03565b60008167ffffffffffffffff811115612c4957612c48613c36565b5b6040519080825280601f01601f191660200182016040528015612c7b5781602001600182028036833780820191505090505b5090505b60008514612d0857600182612c949190614e57565b9150600a85612ca39190615263565b6030612caf9190614a75565b60f81b818381518110612cc557612cc461470f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d019190614525565b9450612c7f565b8093505050505b919050565b6000612d1f82613089565b9050612d2b83826131ac565b505050565b6000601354334442604051602001612d4b94939291906152fd565b6040516020818303038152906040528051906020012060001c9050612d708282612d14565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612de98383836131ca565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e2c57612e27816131cf565b612e6b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612e6a57612e698382613218565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612eae57612ea981613385565b612eed565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612eec57612eeb8282613456565b5b5b505050565b6000612f138473ffffffffffffffffffffffffffffffffffffffff166134d5565b1561307c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f3c6124f3565b8786866040518563ffffffff1660e01b8152600401612f5e94939291906153a0565b602060405180830381600087803b158015612f7857600080fd5b505af1925050508015612fa957506040513d601f19601f82011682018060405250810190612fa69190615401565b60015b61302c573d8060008114612fd9576040519150601f19603f3d011682016040523d82523d6000602084013e612fde565b606091505b50600081511415613024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301b90615243565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613081565b600190505b949350505050565b600080613094610db0565b6103e86130a19190614e57565b9050600081846130b19190615263565b90506000806014836103e881106130cb576130ca61470f565b5b0154146130f0576014826103e881106130e7576130e661470f565b5b015490506130f4565b8190505b600060146001856131059190614e57565b6103e881106131175761311661470f565b5b0154141561314b5760018361312c9190614e57565b6014836103e881106131415761314061470f565b5b0181905550613189565b601460018461315a9190614e57565b6103e8811061316c5761316b61470f565b5b01546014836103e881106131835761318261470f565b5b01819055505b6013600081548092919061319c906148ce565b9190505550809350505050919050565b6131c68282604051806020016040528060008152506134e8565b5050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161322584611412565b61322f9190614e57565b9050600060076000848152602001908152602001600020549050818114613314576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506133999190614e57565b90506000600960008481526020019081526020016000205490506000600883815481106133c9576133c861470f565b5b9060005260206000200154905080600883815481106133eb576133ea61470f565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061343a5761343961542e565b5b6001900381819060005260206000200160009055905550505050565b600061346183611412565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b6134f28383613543565b6134ff6000848484612ef2565b61353e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161353590615243565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135aa906154a9565b60405180910390fd5b6135bc81612487565b156135fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135f390615515565b60405180910390fd5b61360860008383612dde565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546136589190614a75565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461371d906140f5565b90600052602060002090601f01602090048101928261373f5760008555613786565b82601f1061375857803560ff1916838001178555613786565b82800160010185558215613786579182015b8281111561378557823582559160200191906001019061376a565b5b5090506137939190613797565b5090565b5b808211156137b0576000816000905550600101613798565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137fd816137c8565b811461380857600080fd5b50565b60008135905061381a816137f4565b92915050565b600060208284031215613836576138356137be565b5b60006138448482850161380b565b91505092915050565b60008115159050919050565b6138628161384d565b82525050565b600060208201905061387d6000830184613859565b92915050565b6000819050919050565b61389681613883565b82525050565b60006020820190506138b1600083018461388d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138f15780820151818401526020810190506138d6565b83811115613900576000848401525b50505050565b6000601f19601f8301169050919050565b6000613922826138b7565b61392c81856138c2565b935061393c8185602086016138d3565b61394581613906565b840191505092915050565b6000602082019050818103600083015261396a8184613917565b905092915050565b61397b81613883565b811461398657600080fd5b50565b60008135905061399881613972565b92915050565b6000602082840312156139b4576139b36137be565b5b60006139c284828501613989565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006139f6826139cb565b9050919050565b613a06816139eb565b82525050565b6000602082019050613a2160008301846139fd565b92915050565b613a30816139eb565b8114613a3b57600080fd5b50565b600081359050613a4d81613a27565b92915050565b60008060408385031215613a6a57613a696137be565b5b6000613a7885828601613a3e565b9250506020613a8985828601613989565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112613ab857613ab7613a93565b5b8235905067ffffffffffffffff811115613ad557613ad4613a98565b5b602083019150836001820283011115613af157613af0613a9d565b5b9250929050565b60008060208385031215613b0f57613b0e6137be565b5b600083013567ffffffffffffffff811115613b2d57613b2c6137c3565b5b613b3985828601613aa2565b92509250509250929050565b600060208284031215613b5b57613b5a6137be565b5b6000613b6984828501613a3e565b91505092915050565b600080600060608486031215613b8b57613b8a6137be565b5b6000613b9986828701613a3e565b9350506020613baa86828701613a3e565b9250506040613bbb86828701613989565b9150509250925092565b613bce8161384d565b8114613bd957600080fd5b50565b600081359050613beb81613bc5565b92915050565b60008060408385031215613c0857613c076137be565b5b6000613c1685828601613a3e565b9250506020613c2785828601613bdc565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613c6e82613906565b810181811067ffffffffffffffff82111715613c8d57613c8c613c36565b5b80604052505050565b6000613ca06137b4565b9050613cac8282613c65565b919050565b600067ffffffffffffffff821115613ccc57613ccb613c36565b5b613cd582613906565b9050602081019050919050565b82818337600083830152505050565b6000613d04613cff84613cb1565b613c96565b905082815260208101848484011115613d2057613d1f613c31565b5b613d2b848285613ce2565b509392505050565b600082601f830112613d4857613d47613a93565b5b8135613d58848260208601613cf1565b91505092915050565b60008060008060808587031215613d7b57613d7a6137be565b5b6000613d8987828801613a3e565b9450506020613d9a87828801613a3e565b9350506040613dab87828801613989565b925050606085013567ffffffffffffffff811115613dcc57613dcb6137c3565b5b613dd887828801613d33565b91505092959194509250565b600067ffffffffffffffff821115613dff57613dfe613c36565b5b602082029050602081019050919050565b6000613e23613e1e84613de4565b613c96565b90508083825260208201905060208402830185811115613e4657613e45613a9d565b5b835b81811015613e6f5780613e5b8882613a3e565b845260208401935050602081019050613e48565b5050509392505050565b600082601f830112613e8e57613e8d613a93565b5b8135613e9e848260208601613e10565b91505092915050565b60008060408385031215613ebe57613ebd6137be565b5b600083013567ffffffffffffffff811115613edc57613edb6137c3565b5b613ee885828601613e79565b9250506020613ef985828601613989565b9150509250929050565b60008083601f840112613f1957613f18613a93565b5b8235905067ffffffffffffffff811115613f3657613f35613a98565b5b602083019150836020820283011115613f5257613f51613a9d565b5b9250929050565b60008060208385031215613f7057613f6f6137be565b5b600083013567ffffffffffffffff811115613f8e57613f8d6137c3565b5b613f9a85828601613f03565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613fdb81613883565b82525050565b6000613fed8383613fd2565b60208301905092915050565b6000602082019050919050565b600061401182613fa6565b61401b8185613fb1565b935061402683613fc2565b8060005b8381101561405757815161403e8882613fe1565b975061404983613ff9565b92505060018101905061402a565b5085935050505092915050565b6000602082019050818103600083015261407e8184614006565b905092915050565b6000806040838503121561409d5761409c6137be565b5b60006140ab85828601613a3e565b92505060206140bc85828601613a3e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061410d57607f821691505b60208210811415614121576141206140c6565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614183602c836138c2565b915061418e82614127565b604082019050919050565b600060208201905081810360008301526141b281614176565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141ef6020836138c2565b91506141fa826141b9565b602082019050919050565b6000602082019050818103600083015261421e816141e2565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006142816021836138c2565b915061428c82614225565b604082019050919050565b600060208201905081810360008301526142b081614274565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006143136038836138c2565b915061431e826142b7565b604082019050919050565b6000602082019050818103600083015261434281614306565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006143a56031836138c2565b91506143b082614349565b604082019050919050565b600060208201905081810360008301526143d481614398565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614437602b836138c2565b9150614442826143db565b604082019050919050565b600060208201905081810360008301526144668161442a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006144a782613883565b91506144b283613883565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144eb576144ea61446d565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061453082613883565b915061453b83613883565b92508261454b5761454a6144f6565b5b828204905092915050565b7f596f752063616e6e6f74206275726e20617420746869732074696d6500000000600082015250565b600061458c601c836138c2565b915061459782614556565b602082019050919050565b600060208201905081810360008301526145bb8161457f565b9050919050565b7f596f752063616e6e6f74206275726e206120746f6b656e20796f7520646f206e60008201527f6f74206f776e0000000000000000000000000000000000000000000000000000602082015250565b600061461e6026836138c2565b9150614629826145c2565b604082019050919050565b6000602082019050818103600083015261464d81614611565b9050919050565b6000604082019050614669600083018561388d565b61467660208301846139fd565b9392505050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006146d9602c836138c2565b91506146e48261467d565b604082019050919050565b60006020820190508181036000830152614708816146cc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061479a6029836138c2565b91506147a58261473e565b604082019050919050565b600060208201905081810360008301526147c98161478d565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061482c602a836138c2565b9150614837826147d0565b604082019050919050565b6000602082019050818103600083015261485b8161481f565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006148986019836138c2565b91506148a382614862565b602082019050919050565b600060208201905081810360008301526148c78161488b565b9050919050565b60006148d982613883565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561490c5761490b61446d565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614973602f836138c2565b915061497e82614917565b604082019050919050565b600060208201905081810360008301526149a281614966565b9050919050565b600081905092915050565b60006149bf826138b7565b6149c981856149a9565b93506149d98185602086016138d3565b80840191505092915050565b60006149f182856149b4565b91506149fd82846149b4565b91508190509392505050565b7f53616c65206973206e6f7420696e20636c6f7365642073746174650000000000600082015250565b6000614a3f601b836138c2565b9150614a4a82614a09565b602082019050919050565b60006020820190508181036000830152614a6e81614a32565b9050919050565b6000614a8082613883565b9150614a8b83613883565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614ac057614abf61446d565b5b828201905092915050565b7f457863656564656420676976656177617920737570706c790000000000000000600082015250565b6000614b016018836138c2565b9150614b0c82614acb565b602082019050919050565b60006020820190508181036000830152614b3081614af4565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614b6d601f836138c2565b9150614b7882614b37565b602082019050919050565b60006020820190508181036000830152614b9c81614b60565b9050919050565b7f53616c6520697320636c6f736564000000000000000000000000000000000000600082015250565b6000614bd9600e836138c2565b9150614be482614ba3565b602082019050919050565b60006020820190508181036000830152614c0881614bcc565b9050919050565b7f596f752063616e206f6e6c79206d696e74203120746f203520746f6b656e732060008201527f617420612074696d650000000000000000000000000000000000000000000000602082015250565b6000614c6b6029836138c2565b9150614c7682614c0f565b604082019050919050565b60006020820190508181036000830152614c9a81614c5e565b9050919050565b7f50616c6d205472656520436f6c6c6563746976652068617320736f6c64206f7560008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b6000614cfd6021836138c2565b9150614d0882614ca1565b604082019050919050565b60006020820190508181036000830152614d2c81614cf0565b9050919050565b7f546865206d6178696d756d2070726573616c6520746f6b656e7320686176652060008201527f6265656e206d696e746564000000000000000000000000000000000000000000602082015250565b6000614d8f602b836138c2565b9150614d9a82614d33565b604082019050919050565b60006020820190508181036000830152614dbe81614d82565b9050919050565b7f596f7520617265206e6f7420656c696769626c6520746f2070726573616c652060008201527f6d696e7400000000000000000000000000000000000000000000000000000000602082015250565b6000614e216024836138c2565b9150614e2c82614dc5565b604082019050919050565b60006020820190508181036000830152614e5081614e14565b9050919050565b6000614e6282613883565b9150614e6d83613883565b925082821015614e8057614e7f61446d565b5b828203905092915050565b7f596f752063616e6e6f74206d696e742074686174206d616e7920746f6b656e7360008201527f20617420746869732074696d6500000000000000000000000000000000000000602082015250565b6000614ee7602d836138c2565b9150614ef282614e8b565b604082019050919050565b60006020820190508181036000830152614f1681614eda565b9050919050565b7f45746865722076616c75652073656e7420746f6f206c6f770000000000000000600082015250565b6000614f536018836138c2565b9150614f5e82614f1d565b602082019050919050565b60006020820190508181036000830152614f8281614f46565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614fe56026836138c2565b9150614ff082614f89565b604082019050919050565b6000602082019050818103600083015261501481614fd8565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000615077602c836138c2565b91506150828261501b565b604082019050919050565b600060208201905081810360008301526150a68161506a565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006151096029836138c2565b9150615114826150ad565b604082019050919050565b60006020820190508181036000830152615138816150fc565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061519b6024836138c2565b91506151a68261513f565b604082019050919050565b600060208201905081810360008301526151ca8161518e565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061522d6032836138c2565b9150615238826151d1565b604082019050919050565b6000602082019050818103600083015261525c81615220565b9050919050565b600061526e82613883565b915061527983613883565b925082615289576152886144f6565b5b828206905092915050565b6000819050919050565b6152af6152aa82613883565b615294565b82525050565b60008160601b9050919050565b60006152cd826152b5565b9050919050565b60006152df826152c2565b9050919050565b6152f76152f2826139eb565b6152d4565b82525050565b6000615309828761529e565b60208201915061531982866152e6565b601482019150615329828561529e565b602082019150615339828461529e565b60208201915081905095945050505050565b600081519050919050565b600082825260208201905092915050565b60006153728261534b565b61537c8185615356565b935061538c8185602086016138d3565b61539581613906565b840191505092915050565b60006080820190506153b560008301876139fd565b6153c260208301866139fd565b6153cf604083018561388d565b81810360608301526153e18184615367565b905095945050505050565b6000815190506153fb816137f4565b92915050565b600060208284031215615417576154166137be565b5b6000615425848285016153ec565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006154936020836138c2565b915061549e8261545d565b602082019050919050565b600060208201905081810360008301526154c281615486565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006154ff601c836138c2565b915061550a826154c9565b602082019050919050565b6000602082019050818103600083015261552e816154f2565b905091905056fea2646970667358221220caf7e9e4df59abdfc25c1370770e09816a315740287f10447bc664b1fabbf98764736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102515760003560e01c806371273bb711610139578063ca0df4a1116100b6578063f0dda65c1161007a578063f0dda65c146108fa578063f2fde38b14610916578063f4a0a5281461093f578063f5e1713e14610968578063f5ebec8014610993578063ff1b6556146109be57610251565b8063ca0df4a1146107ef578063cf27f4201461082c578063e28a43e414610855578063e985e9c514610892578063f000fd25146108cf57610251565b8063b224bbf0116100fd578063b224bbf01461070c578063b88d4fde14610749578063be99aaa714610772578063c6cdff5314610789578063c87b56dd146107b257610251565b806371273bb71461064b578063715018a6146106765780638da5cb5b1461068d57806395d89b41146106b8578063a22cb465146106e357610251565b806323b872dd116101d257806342966c681161019657806342966c68146105175780634f6ccce71461054057806355f804b31461057d5780636352211e146105a65780636c0360eb146105e357806370a082311461060e57610251565b806323b872dd146104345780632f745c591461045d57806338aa42e91461049a5780633ccfd60b146104d757806342842e0e146104ee57610251565b8063095ea7b311610219578063095ea7b31461034f578063109695231461037857806318160ddd146103a157806318ba1b61146103cc5780631a4231a41461040957610251565b806301ffc9a714610256578063031bd4c41461029357806306fdde03146102be578063081812fc146102e9578063084c408814610326575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613820565b6109e9565b60405161028a9190613868565b60405180910390f35b34801561029f57600080fd5b506102a8610a63565b6040516102b5919061389c565b60405180910390f35b3480156102ca57600080fd5b506102d3610a69565b6040516102e09190613950565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b919061399e565b610afb565b60405161031d9190613a0c565b60405180910390f35b34801561033257600080fd5b5061034d6004803603810190610348919061399e565b610b80565b005b34801561035b57600080fd5b5061037660048036038101906103719190613a53565b610c06565b005b34801561038457600080fd5b5061039f600480360381019061039a9190613af8565b610d1e565b005b3480156103ad57600080fd5b506103b6610db0565b6040516103c3919061389c565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee9190613b45565b610dbd565b6040516104009190613868565b60405180910390f35b34801561041557600080fd5b5061041e610e09565b60405161042b919061389c565b60405180910390f35b34801561044057600080fd5b5061045b60048036038101906104569190613b72565b610e0f565b005b34801561046957600080fd5b50610484600480360381019061047f9190613a53565b610e6f565b604051610491919061389c565b60405180910390f35b3480156104a657600080fd5b506104c160048036038101906104bc9190613b45565b610f14565b6040516104ce919061389c565b60405180910390f35b3480156104e357600080fd5b506104ec610f5d565b005b3480156104fa57600080fd5b5061051560048036038101906105109190613b72565b611053565b005b34801561052357600080fd5b5061053e6004803603810190610539919061399e565b611073565b005b34801561054c57600080fd5b506105676004803603810190610562919061399e565b6111cf565b604051610574919061389c565b60405180910390f35b34801561058957600080fd5b506105a4600480360381019061059f9190613af8565b611240565b005b3480156105b257600080fd5b506105cd60048036038101906105c8919061399e565b6112d2565b6040516105da9190613a0c565b60405180910390f35b3480156105ef57600080fd5b506105f8611384565b6040516106059190613950565b60405180910390f35b34801561061a57600080fd5b5061063560048036038101906106309190613b45565b611412565b604051610642919061389c565b60405180910390f35b34801561065757600080fd5b506106606114ca565b60405161066d919061389c565b60405180910390f35b34801561068257600080fd5b5061068b6114cf565b005b34801561069957600080fd5b506106a2611557565b6040516106af9190613a0c565b60405180910390f35b3480156106c457600080fd5b506106cd611581565b6040516106da9190613950565b60405180910390f35b3480156106ef57600080fd5b5061070a60048036038101906107059190613bf1565b611613565b005b34801561071857600080fd5b50610733600480360381019061072e9190613b45565b611794565b6040516107409190613868565b60405180910390f35b34801561075557600080fd5b50610770600480360381019061076b9190613d61565b6117df565b005b34801561077e57600080fd5b50610787611841565b005b34801561079557600080fd5b506107b060048036038101906107ab9190613ea7565b6118e9565b005b3480156107be57600080fd5b506107d960048036038101906107d4919061399e565b6119e7565b6040516107e69190613950565b60405180910390f35b3480156107fb57600080fd5b506108166004803603810190610811919061399e565b611a8e565b6040516108239190613a0c565b60405180910390f35b34801561083857600080fd5b50610853600480360381019061084e9190613f59565b611acb565b005b34801561086157600080fd5b5061087c60048036038101906108779190613b45565b611c42565b6040516108899190614064565b60405180910390f35b34801561089e57600080fd5b506108b960048036038101906108b49190614086565b611cf0565b6040516108c69190613868565b60405180910390f35b3480156108db57600080fd5b506108e4611d84565b6040516108f19190613868565b60405180910390f35b610914600480360381019061090f9190613a53565b611d97565b005b34801561092257600080fd5b5061093d60048036038101906109389190613b45565b61218e565b005b34801561094b57600080fd5b506109666004803603810190610961919061399e565b612286565b005b34801561097457600080fd5b5061097d61230c565b60405161098a919061389c565b60405180910390f35b34801561099f57600080fd5b506109a8612312565b6040516109b5919061389c565b60405180910390f35b3480156109ca57600080fd5b506109d3612317565b6040516109e09190613950565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a5c5750610a5b826123a5565b5b9050919050565b6103e881565b606060008054610a78906140f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa4906140f5565b8015610af15780601f10610ac657610100808354040283529160200191610af1565b820191906000526020600020905b815481529060010190602001808311610ad457829003601f168201915b5050505050905090565b6000610b0682612487565b610b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3c90614199565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610b886124f3565b73ffffffffffffffffffffffffffffffffffffffff16610ba6611557565b73ffffffffffffffffffffffffffffffffffffffff1614610bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf390614205565b60405180910390fd5b80600d8190555050565b6000610c11826112d2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7990614297565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ca16124f3565b73ffffffffffffffffffffffffffffffffffffffff161480610cd05750610ccf81610cca6124f3565b611cf0565b5b610d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0690614329565b60405180910390fd5b610d1983836124fb565b505050565b610d266124f3565b73ffffffffffffffffffffffffffffffffffffffff16610d44611557565b73ffffffffffffffffffffffffffffffffffffffff1614610d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9190614205565b60405180910390fd5b818160109190610dab929190613711565b505050565b6000600880549050905090565b60006001601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054119050919050565b600c5481565b610e20610e1a6124f3565b826125b4565b610e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e56906143bb565b60405180910390fd5b610e6a838383612692565b505050565b6000610e7a83611412565b8210610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb29061444d565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f656124f3565b73ffffffffffffffffffffffffffffffffffffffff16610f83611557565b73ffffffffffffffffffffffffffffffffffffffff1614610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd090614205565b60405180910390fd5b600060648047610fe9919061449c565b610ff39190614525565b905073452a89f1316798fddc9d03f9af38b0586f8142e573ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561104f573d6000803e3d6000fd5b5050565b61106e838383604051806020016040528060008152506117df565b505050565b600e60009054906101000a900460ff166110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b9906145a2565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166110e2826112d2565b73ffffffffffffffffffffffffffffffffffffffff1614611138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112f90614634565b60405180910390fd5b611141816128ee565b336012600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507ff6554c3a5d28e08c120b5a69c7edbaf52f935bd2596a60b8a18e282cd257cddb81336040516111c4929190614654565b60405180910390a150565b60006111d9610db0565b821061121a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611211906146ef565b60405180910390fd5b6008828154811061122e5761122d61470f565b5b90600052602060002001549050919050565b6112486124f3565b73ffffffffffffffffffffffffffffffffffffffff16611266611557565b73ffffffffffffffffffffffffffffffffffffffff16146112bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b390614205565b60405180910390fd5b8181600f91906112cd929190613711565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561137b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611372906147b0565b60405180910390fd5b80915050919050565b600f8054611391906140f5565b80601f01602080910402602001604051908101604052809291908181526020018280546113bd906140f5565b801561140a5780601f106113df5761010080835404028352916020019161140a565b820191906000526020600020905b8154815290600101906020018083116113ed57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611483576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147a90614842565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600581565b6114d76124f3565b73ffffffffffffffffffffffffffffffffffffffff166114f5611557565b73ffffffffffffffffffffffffffffffffffffffff161461154b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154290614205565b60405180910390fd5b61155560006129ff565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611590906140f5565b80601f01602080910402602001604051908101604052809291908181526020018280546115bc906140f5565b80156116095780601f106115de57610100808354040283529160200191611609565b820191906000526020600020905b8154815290600101906020018083116115ec57829003601f168201915b5050505050905090565b61161b6124f3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611689576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611680906148ae565b60405180910390fd5b80600560006116966124f3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117436124f3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117889190613868565b60405180910390a35050565b600080601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054119050919050565b6117f06117ea6124f3565b836125b4565b61182f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611826906143bb565b60405180910390fd5b61183b84848484612ac5565b50505050565b6118496124f3565b73ffffffffffffffffffffffffffffffffffffffff16611867611557565b73ffffffffffffffffffffffffffffffffffffffff16146118bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b490614205565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6118f16124f3565b73ffffffffffffffffffffffffffffffffffffffff1661190f611557565b73ffffffffffffffffffffffffffffffffffffffff1614611965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195c90614205565b60405180910390fd5b60005b82518110156119e25781601160008584815181106119895761198861470f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806119da906148ce565b915050611968565b505050565b60606119f282612487565b611a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2890614989565b60405180910390fd5b6000611a3b612b21565b90506000815111611a5b5760405180602001604052806000815250611a86565b80611a6584612bb3565b604051602001611a769291906149e5565b6040516020818303038152906040525b915050919050565b60006012600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b611ad36124f3565b73ffffffffffffffffffffffffffffffffffffffff16611af1611557565b73ffffffffffffffffffffffffffffffffffffffff1614611b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3e90614205565b60405180910390fd5b6000600d5414611b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8390614a55565b60405180910390fd5b606482829050611b9a610db0565b611ba49190614a75565b1115611be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdc90614b17565b60405180910390fd5b60005b82829050811015611c3d57611c2a73452a89f1316798fddc9d03f9af38b0586f8142e5848484818110611c1e57611c1d61470f565b5b90506020020135612d14565b8080611c35906148ce565b915050611be8565b505050565b60606000611c4f83611412565b905060008167ffffffffffffffff811115611c6d57611c6c613c36565b5b604051908082528060200260200182016040528015611c9b5781602001602082028036833780820191505090505b50905060005b82811015611ce557611cb38582610e6f565b828281518110611cc657611cc561470f565b5b6020026020010181815250508080611cdd906148ce565b915050611ca1565b819350505050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e60009054906101000a900460ff1681565b6002600b541415611ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd490614b83565b60405180910390fd5b6002600b819055506000600d541415611e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2290614bef565b60405180910390fd5b600081118015611e3c575060058111155b611e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7290614c81565b60405180910390fd5b6003600d541415611ee2576103e881611e92610db0565b611e9c9190614a75565b1115611edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed490614d13565b60405180910390fd5b6120bc565b606481611eed610db0565b611ef79190614a75565b1115611f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2f90614da5565b60405180910390fd5b6002600d541415611fca576000601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbc90614e37565b60405180910390fd5b6120bb565b6001600d5414156120ba57600181601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120229190614e57565b1015612063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205a90614efd565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120b29190614e57565b925050819055505b5b5b73452a89f1316798fddc9d03f9af38b0586f8142e573ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461215a57600081600c54612113919061449c565b905080341015612158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214f90614f69565b60405180910390fd5b505b60005b818110156121815761216e83612d30565b8080612179906148ce565b91505061215d565b506001600b819055505050565b6121966124f3565b73ffffffffffffffffffffffffffffffffffffffff166121b4611557565b73ffffffffffffffffffffffffffffffffffffffff161461220a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220190614205565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561227a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227190614ffb565b60405180910390fd5b612283816129ff565b50565b61228e6124f3565b73ffffffffffffffffffffffffffffffffffffffff166122ac611557565b73ffffffffffffffffffffffffffffffffffffffff1614612302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f990614205565b60405180910390fd5b80600c8190555050565b600d5481565b606481565b60108054612324906140f5565b80601f0160208091040260200160405190810160405280929190818152602001828054612350906140f5565b801561239d5780601f106123725761010080835404028352916020019161239d565b820191906000526020600020905b81548152906001019060200180831161238057829003601f168201915b505050505081565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061247057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612480575061247f82612d74565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661256e836112d2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006125bf82612487565b6125fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f59061508d565b60405180910390fd5b6000612609836112d2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061267857508373ffffffffffffffffffffffffffffffffffffffff1661266084610afb565b73ffffffffffffffffffffffffffffffffffffffff16145b8061268957506126888185611cf0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126b2826112d2565b73ffffffffffffffffffffffffffffffffffffffff1614612708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ff9061511f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276f906151b1565b60405180910390fd5b612783838383612dde565b61278e6000826124fb565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127de9190614e57565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128359190614a75565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006128f9826112d2565b905061290781600084612dde565b6129126000836124fb565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129629190614e57565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ad0848484612692565b612adc84848484612ef2565b612b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1290615243565b60405180910390fd5b50505050565b6060600f8054612b30906140f5565b80601f0160208091040260200160405190810160405280929190818152602001828054612b5c906140f5565b8015612ba95780601f10612b7e57610100808354040283529160200191612ba9565b820191906000526020600020905b815481529060010190602001808311612b8c57829003601f168201915b5050505050905090565b60606000821415612bfb576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d0f565b600082905060005b60008214612c2d578080612c16906148ce565b915050600a82612c269190614525565b9150612c03565b60008167ffffffffffffffff811115612c4957612c48613c36565b5b6040519080825280601f01601f191660200182016040528015612c7b5781602001600182028036833780820191505090505b5090505b60008514612d0857600182612c949190614e57565b9150600a85612ca39190615263565b6030612caf9190614a75565b60f81b818381518110612cc557612cc461470f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d019190614525565b9450612c7f565b8093505050505b919050565b6000612d1f82613089565b9050612d2b83826131ac565b505050565b6000601354334442604051602001612d4b94939291906152fd565b6040516020818303038152906040528051906020012060001c9050612d708282612d14565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612de98383836131ca565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e2c57612e27816131cf565b612e6b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612e6a57612e698382613218565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612eae57612ea981613385565b612eed565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612eec57612eeb8282613456565b5b5b505050565b6000612f138473ffffffffffffffffffffffffffffffffffffffff166134d5565b1561307c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f3c6124f3565b8786866040518563ffffffff1660e01b8152600401612f5e94939291906153a0565b602060405180830381600087803b158015612f7857600080fd5b505af1925050508015612fa957506040513d601f19601f82011682018060405250810190612fa69190615401565b60015b61302c573d8060008114612fd9576040519150601f19603f3d011682016040523d82523d6000602084013e612fde565b606091505b50600081511415613024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301b90615243565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613081565b600190505b949350505050565b600080613094610db0565b6103e86130a19190614e57565b9050600081846130b19190615263565b90506000806014836103e881106130cb576130ca61470f565b5b0154146130f0576014826103e881106130e7576130e661470f565b5b015490506130f4565b8190505b600060146001856131059190614e57565b6103e881106131175761311661470f565b5b0154141561314b5760018361312c9190614e57565b6014836103e881106131415761314061470f565b5b0181905550613189565b601460018461315a9190614e57565b6103e8811061316c5761316b61470f565b5b01546014836103e881106131835761318261470f565b5b01819055505b6013600081548092919061319c906148ce565b9190505550809350505050919050565b6131c68282604051806020016040528060008152506134e8565b5050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161322584611412565b61322f9190614e57565b9050600060076000848152602001908152602001600020549050818114613314576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506133999190614e57565b90506000600960008481526020019081526020016000205490506000600883815481106133c9576133c861470f565b5b9060005260206000200154905080600883815481106133eb576133ea61470f565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061343a5761343961542e565b5b6001900381819060005260206000200160009055905550505050565b600061346183611412565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b6134f28383613543565b6134ff6000848484612ef2565b61353e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161353590615243565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135aa906154a9565b60405180910390fd5b6135bc81612487565b156135fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135f390615515565b60405180910390fd5b61360860008383612dde565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546136589190614a75565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461371d906140f5565b90600052602060002090601f01602090048101928261373f5760008555613786565b82601f1061375857803560ff1916838001178555613786565b82800160010185558215613786579182015b8281111561378557823582559160200191906001019061376a565b5b5090506137939190613797565b5090565b5b808211156137b0576000816000905550600101613798565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137fd816137c8565b811461380857600080fd5b50565b60008135905061381a816137f4565b92915050565b600060208284031215613836576138356137be565b5b60006138448482850161380b565b91505092915050565b60008115159050919050565b6138628161384d565b82525050565b600060208201905061387d6000830184613859565b92915050565b6000819050919050565b61389681613883565b82525050565b60006020820190506138b1600083018461388d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138f15780820151818401526020810190506138d6565b83811115613900576000848401525b50505050565b6000601f19601f8301169050919050565b6000613922826138b7565b61392c81856138c2565b935061393c8185602086016138d3565b61394581613906565b840191505092915050565b6000602082019050818103600083015261396a8184613917565b905092915050565b61397b81613883565b811461398657600080fd5b50565b60008135905061399881613972565b92915050565b6000602082840312156139b4576139b36137be565b5b60006139c284828501613989565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006139f6826139cb565b9050919050565b613a06816139eb565b82525050565b6000602082019050613a2160008301846139fd565b92915050565b613a30816139eb565b8114613a3b57600080fd5b50565b600081359050613a4d81613a27565b92915050565b60008060408385031215613a6a57613a696137be565b5b6000613a7885828601613a3e565b9250506020613a8985828601613989565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112613ab857613ab7613a93565b5b8235905067ffffffffffffffff811115613ad557613ad4613a98565b5b602083019150836001820283011115613af157613af0613a9d565b5b9250929050565b60008060208385031215613b0f57613b0e6137be565b5b600083013567ffffffffffffffff811115613b2d57613b2c6137c3565b5b613b3985828601613aa2565b92509250509250929050565b600060208284031215613b5b57613b5a6137be565b5b6000613b6984828501613a3e565b91505092915050565b600080600060608486031215613b8b57613b8a6137be565b5b6000613b9986828701613a3e565b9350506020613baa86828701613a3e565b9250506040613bbb86828701613989565b9150509250925092565b613bce8161384d565b8114613bd957600080fd5b50565b600081359050613beb81613bc5565b92915050565b60008060408385031215613c0857613c076137be565b5b6000613c1685828601613a3e565b9250506020613c2785828601613bdc565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613c6e82613906565b810181811067ffffffffffffffff82111715613c8d57613c8c613c36565b5b80604052505050565b6000613ca06137b4565b9050613cac8282613c65565b919050565b600067ffffffffffffffff821115613ccc57613ccb613c36565b5b613cd582613906565b9050602081019050919050565b82818337600083830152505050565b6000613d04613cff84613cb1565b613c96565b905082815260208101848484011115613d2057613d1f613c31565b5b613d2b848285613ce2565b509392505050565b600082601f830112613d4857613d47613a93565b5b8135613d58848260208601613cf1565b91505092915050565b60008060008060808587031215613d7b57613d7a6137be565b5b6000613d8987828801613a3e565b9450506020613d9a87828801613a3e565b9350506040613dab87828801613989565b925050606085013567ffffffffffffffff811115613dcc57613dcb6137c3565b5b613dd887828801613d33565b91505092959194509250565b600067ffffffffffffffff821115613dff57613dfe613c36565b5b602082029050602081019050919050565b6000613e23613e1e84613de4565b613c96565b90508083825260208201905060208402830185811115613e4657613e45613a9d565b5b835b81811015613e6f5780613e5b8882613a3e565b845260208401935050602081019050613e48565b5050509392505050565b600082601f830112613e8e57613e8d613a93565b5b8135613e9e848260208601613e10565b91505092915050565b60008060408385031215613ebe57613ebd6137be565b5b600083013567ffffffffffffffff811115613edc57613edb6137c3565b5b613ee885828601613e79565b9250506020613ef985828601613989565b9150509250929050565b60008083601f840112613f1957613f18613a93565b5b8235905067ffffffffffffffff811115613f3657613f35613a98565b5b602083019150836020820283011115613f5257613f51613a9d565b5b9250929050565b60008060208385031215613f7057613f6f6137be565b5b600083013567ffffffffffffffff811115613f8e57613f8d6137c3565b5b613f9a85828601613f03565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613fdb81613883565b82525050565b6000613fed8383613fd2565b60208301905092915050565b6000602082019050919050565b600061401182613fa6565b61401b8185613fb1565b935061402683613fc2565b8060005b8381101561405757815161403e8882613fe1565b975061404983613ff9565b92505060018101905061402a565b5085935050505092915050565b6000602082019050818103600083015261407e8184614006565b905092915050565b6000806040838503121561409d5761409c6137be565b5b60006140ab85828601613a3e565b92505060206140bc85828601613a3e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061410d57607f821691505b60208210811415614121576141206140c6565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614183602c836138c2565b915061418e82614127565b604082019050919050565b600060208201905081810360008301526141b281614176565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141ef6020836138c2565b91506141fa826141b9565b602082019050919050565b6000602082019050818103600083015261421e816141e2565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006142816021836138c2565b915061428c82614225565b604082019050919050565b600060208201905081810360008301526142b081614274565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006143136038836138c2565b915061431e826142b7565b604082019050919050565b6000602082019050818103600083015261434281614306565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006143a56031836138c2565b91506143b082614349565b604082019050919050565b600060208201905081810360008301526143d481614398565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614437602b836138c2565b9150614442826143db565b604082019050919050565b600060208201905081810360008301526144668161442a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006144a782613883565b91506144b283613883565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144eb576144ea61446d565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061453082613883565b915061453b83613883565b92508261454b5761454a6144f6565b5b828204905092915050565b7f596f752063616e6e6f74206275726e20617420746869732074696d6500000000600082015250565b600061458c601c836138c2565b915061459782614556565b602082019050919050565b600060208201905081810360008301526145bb8161457f565b9050919050565b7f596f752063616e6e6f74206275726e206120746f6b656e20796f7520646f206e60008201527f6f74206f776e0000000000000000000000000000000000000000000000000000602082015250565b600061461e6026836138c2565b9150614629826145c2565b604082019050919050565b6000602082019050818103600083015261464d81614611565b9050919050565b6000604082019050614669600083018561388d565b61467660208301846139fd565b9392505050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006146d9602c836138c2565b91506146e48261467d565b604082019050919050565b60006020820190508181036000830152614708816146cc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061479a6029836138c2565b91506147a58261473e565b604082019050919050565b600060208201905081810360008301526147c98161478d565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061482c602a836138c2565b9150614837826147d0565b604082019050919050565b6000602082019050818103600083015261485b8161481f565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006148986019836138c2565b91506148a382614862565b602082019050919050565b600060208201905081810360008301526148c78161488b565b9050919050565b60006148d982613883565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561490c5761490b61446d565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614973602f836138c2565b915061497e82614917565b604082019050919050565b600060208201905081810360008301526149a281614966565b9050919050565b600081905092915050565b60006149bf826138b7565b6149c981856149a9565b93506149d98185602086016138d3565b80840191505092915050565b60006149f182856149b4565b91506149fd82846149b4565b91508190509392505050565b7f53616c65206973206e6f7420696e20636c6f7365642073746174650000000000600082015250565b6000614a3f601b836138c2565b9150614a4a82614a09565b602082019050919050565b60006020820190508181036000830152614a6e81614a32565b9050919050565b6000614a8082613883565b9150614a8b83613883565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614ac057614abf61446d565b5b828201905092915050565b7f457863656564656420676976656177617920737570706c790000000000000000600082015250565b6000614b016018836138c2565b9150614b0c82614acb565b602082019050919050565b60006020820190508181036000830152614b3081614af4565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614b6d601f836138c2565b9150614b7882614b37565b602082019050919050565b60006020820190508181036000830152614b9c81614b60565b9050919050565b7f53616c6520697320636c6f736564000000000000000000000000000000000000600082015250565b6000614bd9600e836138c2565b9150614be482614ba3565b602082019050919050565b60006020820190508181036000830152614c0881614bcc565b9050919050565b7f596f752063616e206f6e6c79206d696e74203120746f203520746f6b656e732060008201527f617420612074696d650000000000000000000000000000000000000000000000602082015250565b6000614c6b6029836138c2565b9150614c7682614c0f565b604082019050919050565b60006020820190508181036000830152614c9a81614c5e565b9050919050565b7f50616c6d205472656520436f6c6c6563746976652068617320736f6c64206f7560008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b6000614cfd6021836138c2565b9150614d0882614ca1565b604082019050919050565b60006020820190508181036000830152614d2c81614cf0565b9050919050565b7f546865206d6178696d756d2070726573616c6520746f6b656e7320686176652060008201527f6265656e206d696e746564000000000000000000000000000000000000000000602082015250565b6000614d8f602b836138c2565b9150614d9a82614d33565b604082019050919050565b60006020820190508181036000830152614dbe81614d82565b9050919050565b7f596f7520617265206e6f7420656c696769626c6520746f2070726573616c652060008201527f6d696e7400000000000000000000000000000000000000000000000000000000602082015250565b6000614e216024836138c2565b9150614e2c82614dc5565b604082019050919050565b60006020820190508181036000830152614e5081614e14565b9050919050565b6000614e6282613883565b9150614e6d83613883565b925082821015614e8057614e7f61446d565b5b828203905092915050565b7f596f752063616e6e6f74206d696e742074686174206d616e7920746f6b656e7360008201527f20617420746869732074696d6500000000000000000000000000000000000000602082015250565b6000614ee7602d836138c2565b9150614ef282614e8b565b604082019050919050565b60006020820190508181036000830152614f1681614eda565b9050919050565b7f45746865722076616c75652073656e7420746f6f206c6f770000000000000000600082015250565b6000614f536018836138c2565b9150614f5e82614f1d565b602082019050919050565b60006020820190508181036000830152614f8281614f46565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614fe56026836138c2565b9150614ff082614f89565b604082019050919050565b6000602082019050818103600083015261501481614fd8565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000615077602c836138c2565b91506150828261501b565b604082019050919050565b600060208201905081810360008301526150a68161506a565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006151096029836138c2565b9150615114826150ad565b604082019050919050565b60006020820190508181036000830152615138816150fc565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061519b6024836138c2565b91506151a68261513f565b604082019050919050565b600060208201905081810360008301526151ca8161518e565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061522d6032836138c2565b9150615238826151d1565b604082019050919050565b6000602082019050818103600083015261525c81615220565b9050919050565b600061526e82613883565b915061527983613883565b925082615289576152886144f6565b5b828206905092915050565b6000819050919050565b6152af6152aa82613883565b615294565b82525050565b60008160601b9050919050565b60006152cd826152b5565b9050919050565b60006152df826152c2565b9050919050565b6152f76152f2826139eb565b6152d4565b82525050565b6000615309828761529e565b60208201915061531982866152e6565b601482019150615329828561529e565b602082019150615339828461529e565b60208201915081905095945050505050565b600081519050919050565b600082825260208201905092915050565b60006153728261534b565b61537c8185615356565b935061538c8185602086016138d3565b61539581613906565b840191505092915050565b60006080820190506153b560008301876139fd565b6153c260208301866139fd565b6153cf604083018561388d565b81810360608301526153e18184615367565b905095945050505050565b6000815190506153fb816137f4565b92915050565b600060208284031215615417576154166137be565b5b6000615425848285016153ec565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006154936020836138c2565b915061549e8261545d565b602082019050919050565b600060208201905081810360008301526154c281615486565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006154ff601c836138c2565b915061550a826154c9565b602082019050919050565b6000602082019050818103600083015261552e816154f2565b905091905056fea2646970667358221220caf7e9e4df59abdfc25c1370770e09816a315740287f10447bc664b1fabbf98764736f6c63430008090033

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.