ETH Price: $3,376.35 (+3.10%)
Gas: 3 Gwei

Token

Crypto Genies (GENIE)
 

Overview

Max Total Supply

87 GENIE

Holders

51

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
fk404.eth
Balance
1 GENIE
0xf942ce6643bc80d0bcc1bea4fd4657e600a1de88
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:
CryptoGenies

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : CryptoGenies.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

/**
 * @title Crypto Genies contract
 */
contract CryptoGenies is ERC721Enumerable, Ownable {
    string public PROVENANCE_HASH = "";
    uint256 public MAX_ITEMS;
    uint256 public MAX_PRESALE_ITEMS;
    uint256 public PUBLIC_ITEMS;
    uint256 public COMMUNITY_ITEMS;

    string public baseUri;
    bool public isSaleActive;
    bool public isPresaleActive;
    uint256 public saleStartBlock;
    uint256 public presaleStartBlock;
    uint256 public mintPrice;
    uint256 public maxPerMint;
    uint256 public maxPerPresaleMint;
    uint256 public communityMinted;
    uint256 public presaleMinted;

    mapping(address => bool) public presaleWhitelist;
    mapping(address => uint) public presaleClaimed;

    event SetBaseUri(string indexed baseUri);

    modifier whenSaleActive {
        require(isSaleActive || block.number >= saleStartBlock, "Crypto Genies: Sale is not active");
        _;
    }

    modifier whenPresaleActive {
        require(isPresaleActive || block.number >= presaleStartBlock, "Crypto Genies: Presale is not active");
        require(presaleMinted < MAX_PRESALE_ITEMS, "Crypto Genies: Presale sold out");
        _;
    }

    constructor() ERC721("Crypto Genies", "GENIE") {
        presaleStartBlock = 13199200;
        saleStartBlock = 13210900;

        MAX_ITEMS = 10000;
        MAX_PRESALE_ITEMS = 2000;
        COMMUNITY_ITEMS = 50;
        PUBLIC_ITEMS = MAX_ITEMS - COMMUNITY_ITEMS;

        mintPrice = 0.005 ether;
        maxPerMint = 20;
        maxPerPresaleMint = 3;
        baseUri = "ipfs://QmYR4iYpRZEhpShoU5UiNqXjZYvMpwQGSvazPKufSn3YXp/";
    }

    // ------------------
    // Utility view functions
    // ------------------

    function exists(uint256 _tokenId) public view returns (bool) {
        return _exists(_tokenId);
    }

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

    function mint(uint256 amount) external payable whenSaleActive {
        uint256 publicMinted = totalSupply() - communityMinted;

        require(amount <= maxPerMint, "Crypto Genies: Amount exceeds max per mint");
        require(publicMinted + amount <= PUBLIC_ITEMS, "Crypto Genies: Purchase would exceed cap");
        require(mintPrice * amount <= msg.value, "Crypto Genies: Ether value sent is not correct");

        for(uint256 i = 0; i < amount; i++) {
            uint256 mintIndex = totalSupply() + 1;
            if (publicMinted< PUBLIC_ITEMS) {
                _safeMint(msg.sender, mintIndex);
            }
        }
    }

    function presaleMint(uint256 amount) external payable whenPresaleActive {
        require(amount <= maxPerPresaleMint, "Crypto Genies: Amount exceeds max per presale mint");
        require(presaleMinted + amount <= MAX_PRESALE_ITEMS, "Crypto Genies: Purchase would exceed presale supply cap");
        require(presaleClaimed[msg.sender] + amount <= maxPerPresaleMint, 'Purchase exceeds max allowed presale address cap');
        require(mintPrice * amount <= msg.value, "Crypto Genies: Ether value sent is not correct");

        for(uint256 i = 0; i < amount; i++) {
            uint256 mintIndex = totalSupply() + 1;
            if (presaleMinted < MAX_PRESALE_ITEMS) {
                presaleClaimed[msg.sender] += 1;
                presaleMinted += 1;
                _safeMint(msg.sender, mintIndex);
            }
        }
    }

    // ------------------
    // Functions for the owner
    // ------------------

    function updateWhitelist(address[] memory addresses, bool remove) external onlyOwner {
      for (uint i=0; i < addresses.length; i++) {
        require(addresses[i] != address(0), "Can't add the null address");

        presaleWhitelist[addresses[i]] = remove ? false : true;
        presaleClaimed[addresses[i]] > 0 ? presaleClaimed[addresses[i]] : 0;
      }
    }

    function setMaxPerMint(uint256 _maxPerMint) external onlyOwner {
        maxPerMint = _maxPerMint;
    }

    function setMaxPerPresaleMint(uint256 _maxPerPresaleMint) external onlyOwner {
        maxPerPresaleMint = _maxPerPresaleMint;
    }

    function setMintPrice(uint256 _mintPrice) external onlyOwner {
        mintPrice = _mintPrice;
    }

    function setBaseUri(string memory _baseUri) external onlyOwner {
        baseUri = _baseUri;
        emit SetBaseUri(baseUri);
    }

    function setPresaleStartBlock(uint256 blockNumber) external onlyOwner {
        presaleStartBlock = blockNumber;
    }

    function setSaleStartBlock(uint256 blockNumber) external onlyOwner {
        saleStartBlock = blockNumber;
    }

    function mintForCommunity(address _to, uint256 _numberOfTokens) external onlyOwner {
        require(_to != address(0), "Crypto Genies: Cannot mint to zero address.");
        require(totalSupply() + _numberOfTokens <= MAX_ITEMS, "Crypto Genies: Minting would exceed cap");
        require(communityMinted + _numberOfTokens <= COMMUNITY_ITEMS, "Crypto Genies: Minting would exceed community cap");

        for(uint256 i = 0; i < _numberOfTokens; i++) {
            uint256 mintIndex = totalSupply() + 1;
            if (totalSupply() < MAX_ITEMS && communityMinted < COMMUNITY_ITEMS) {
                _safeMint(_to, mintIndex);
                communityMinted = communityMinted + 1;
            }
        }
    }

    function setProvenanceHash(string memory _provenanceHash) external onlyOwner {
        PROVENANCE_HASH = _provenanceHash;
    }

    function toggleSaleState() external onlyOwner {
        isSaleActive = !isSaleActive;
    }

    function togglePresaleState() external onlyOwner {
        isPresaleActive = !isPresaleActive;
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function tokensOfOwner(address _owner) external view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            for (uint256 index; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }
}

File 2 of 13 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

File 4 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.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 5 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 6 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 8 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 9 of 13 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 13 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 11 of 13 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"string","name":"baseUri","type":"string"}],"name":"SetBaseUri","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":"COMMUNITY_ITEMS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ITEMS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PRESALE_ITEMS","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":"PUBLIC_ITEMS","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":[],"name":"communityMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerPresaleMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_numberOfTokens","type":"uint256"}],"name":"mintForCommunity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintPrice","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":"","type":"address"}],"name":"presaleClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleStartBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStartBlock","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":"_maxPerMint","type":"uint256"}],"name":"setMaxPerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerPresaleMint","type":"uint256"}],"name":"setMaxPerPresaleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"setPresaleStartBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"setSaleStartBlock","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":"togglePresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleState","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"bool","name":"remove","type":"bool"}],"name":"updateWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600b90805190602001906200002b92919062000264565b503480156200003957600080fd5b506040518060400160405280600d81526020017f43727970746f2047656e696573000000000000000000000000000000000000008152506040518060400160405280600581526020017f47454e49450000000000000000000000000000000000000000000000000000008152508160009080519060200190620000be92919062000264565b508060019080519060200190620000d792919062000264565b505050620000fa620000ee6200019660201b60201c565b6200019e60201b60201c565b62c9676060138190555062c99514601281905550612710600c819055506107d0600d819055506032600f81905550600f54600c546200013a919062000314565b600e819055506611c37937e080006014819055506014601581905550600360168190555060405180606001604052806036815260200162005e1160369139601090805190602001906200018f92919062000264565b50620003ed565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002729062000359565b90600052602060002090601f016020900481019282620002965760008555620002e2565b82601f10620002b157805160ff1916838001178555620002e2565b82800160010185558215620002e2579182015b82811115620002e1578251825591602001919060010190620002c4565b5b509050620002f19190620002f5565b5090565b5b8082111562000310576000816000905550600101620002f6565b5090565b600062000321826200034f565b91506200032e836200034f565b9250828210156200034457620003436200038f565b5b828203905092915050565b6000819050919050565b600060028204905060018216806200037257607f821691505b60208210811415620003895762000388620003be565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b615a1480620003fd6000396000f3fe6080604052600436106102ff5760003560e01c806373aee92911610190578063c87b56dd116100dc578063e985e9c511610095578063f2fde38b1161006f578063f2fde38b14610b52578063f4a0a52814610b7b578063f9765bc114610ba4578063ff1b655614610be1576102ff565b8063e985e9c514610ac1578063eb8835ab14610afe578063f285e69e14610b3b576102ff565b8063c87b56dd146109d2578063c9b298f114610a0f578063d4431b3214610a2b578063d9c5b0d314610a56578063daaeec8614610a81578063db6242c314610a98576102ff565b80639ceeb71c11610149578063a22cb46511610123578063a22cb4651461092c578063aff177ca14610955578063b88d4fde1461097e578063c73d4795146109a7576102ff565b80639ceeb71c146108be578063a0712d68146108e7578063a0bcfc7f14610903576102ff565b806373aee929146107ac57806373c84010146107d75780638462151c146108005780638da5cb5b1461083d57806395d89b41146108685780639abc832014610893576102ff565b806342842e0e1161024f578063564566a8116102085780636352211e116101e25780636352211e146106f05780636817c76c1461072d57806370a0823114610758578063715018a614610795576102ff565b8063564566a81461066f57806357d4c4ee1461069a57806360d938dc146106c5576102ff565b806342842e0e1461054d5780634cb79536146105765780634e114e19146105a15780634f558e79146105ca5780634f6ccce714610607578063507e094f14610644576102ff565b80630ffc6728116102bc578063200272751161029657806320027275146104a557806323b872dd146104d05780632f745c59146104f95780633ccfd60b14610536576102ff565b80630ffc672814610426578063109695231461045157806318160ddd1461047a576102ff565b806301ffc9a714610304578063029826c81461034157806304824a021461036a57806306fdde0314610395578063081812fc146103c0578063095ea7b3146103fd575b600080fd5b34801561031057600080fd5b5061032b60048036038101906103269190614053565b610c0c565b60405161033891906147e4565b60405180910390f35b34801561034d57600080fd5b50610368600480360381019061036391906140e6565b610c86565b005b34801561037657600080fd5b5061037f610d0c565b60405161038c9190614c01565b60405180910390f35b3480156103a157600080fd5b506103aa610d12565b6040516103b791906147ff565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e291906140e6565b610da4565b6040516103f4919061475b565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f9190613fc3565b610e29565b005b34801561043257600080fd5b5061043b610f41565b6040516104489190614c01565b60405180910390f35b34801561045d57600080fd5b50610478600480360381019061047391906140a5565b610f47565b005b34801561048657600080fd5b5061048f610fdd565b60405161049c9190614c01565b60405180910390f35b3480156104b157600080fd5b506104ba610fea565b6040516104c79190614c01565b60405180910390f35b3480156104dc57600080fd5b506104f760048036038101906104f29190613ebd565b610ff0565b005b34801561050557600080fd5b50610520600480360381019061051b9190613fc3565b611050565b60405161052d9190614c01565b60405180910390f35b34801561054257600080fd5b5061054b6110f5565b005b34801561055957600080fd5b50610574600480360381019061056f9190613ebd565b6111c0565b005b34801561058257600080fd5b5061058b6111e0565b6040516105989190614c01565b60405180910390f35b3480156105ad57600080fd5b506105c860048036038101906105c39190613fc3565b6111e6565b005b3480156105d657600080fd5b506105f160048036038101906105ec91906140e6565b6113f7565b6040516105fe91906147e4565b60405180910390f35b34801561061357600080fd5b5061062e600480360381019061062991906140e6565b611409565b60405161063b9190614c01565b60405180910390f35b34801561065057600080fd5b506106596114a0565b6040516106669190614c01565b60405180910390f35b34801561067b57600080fd5b506106846114a6565b60405161069191906147e4565b60405180910390f35b3480156106a657600080fd5b506106af6114b9565b6040516106bc9190614c01565b60405180910390f35b3480156106d157600080fd5b506106da6114bf565b6040516106e791906147e4565b60405180910390f35b3480156106fc57600080fd5b50610717600480360381019061071291906140e6565b6114d2565b604051610724919061475b565b60405180910390f35b34801561073957600080fd5b50610742611584565b60405161074f9190614c01565b60405180910390f35b34801561076457600080fd5b5061077f600480360381019061077a9190613e58565b61158a565b60405161078c9190614c01565b60405180910390f35b3480156107a157600080fd5b506107aa611642565b005b3480156107b857600080fd5b506107c16116ca565b6040516107ce9190614c01565b60405180910390f35b3480156107e357600080fd5b506107fe60048036038101906107f991906140e6565b6116d0565b005b34801561080c57600080fd5b5061082760048036038101906108229190613e58565b611756565b60405161083491906147c2565b60405180910390f35b34801561084957600080fd5b506108526118d2565b60405161085f919061475b565b60405180910390f35b34801561087457600080fd5b5061087d6118fc565b60405161088a91906147ff565b60405180910390f35b34801561089f57600080fd5b506108a861198e565b6040516108b591906147ff565b60405180910390f35b3480156108ca57600080fd5b506108e560048036038101906108e091906140e6565b611a1c565b005b61090160048036038101906108fc91906140e6565b611aa2565b005b34801561090f57600080fd5b5061092a600480360381019061092591906140a5565b611c4d565b005b34801561093857600080fd5b50610953600480360381019061094e9190613f87565b611d26565b005b34801561096157600080fd5b5061097c60048036038101906109779190613fff565b611ea7565b005b34801561098a57600080fd5b506109a560048036038101906109a09190613f0c565b6121ac565b005b3480156109b357600080fd5b506109bc61220e565b6040516109c99190614c01565b60405180910390f35b3480156109de57600080fd5b506109f960048036038101906109f491906140e6565b612214565b604051610a0691906147ff565b60405180910390f35b610a296004803603810190610a2491906140e6565b6122bb565b005b348015610a3757600080fd5b50610a40612596565b604051610a4d9190614c01565b60405180910390f35b348015610a6257600080fd5b50610a6b61259c565b604051610a789190614c01565b60405180910390f35b348015610a8d57600080fd5b50610a966125a2565b005b348015610aa457600080fd5b50610abf6004803603810190610aba91906140e6565b61264a565b005b348015610acd57600080fd5b50610ae86004803603810190610ae39190613e81565b6126d0565b604051610af591906147e4565b60405180910390f35b348015610b0a57600080fd5b50610b256004803603810190610b209190613e58565b612764565b604051610b3291906147e4565b60405180910390f35b348015610b4757600080fd5b50610b50612784565b005b348015610b5e57600080fd5b50610b796004803603810190610b749190613e58565b61282c565b005b348015610b8757600080fd5b50610ba26004803603810190610b9d91906140e6565b612924565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc69190613e58565b6129aa565b604051610bd89190614c01565b60405180910390f35b348015610bed57600080fd5b50610bf66129c2565b604051610c0391906147ff565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c7f5750610c7e82612a50565b5b9050919050565b610c8e612b32565b73ffffffffffffffffffffffffffffffffffffffff16610cac6118d2565b73ffffffffffffffffffffffffffffffffffffffff1614610d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf990614aa1565b60405180910390fd5b8060168190555050565b600f5481565b606060008054610d2190614f2b565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4d90614f2b565b8015610d9a5780601f10610d6f57610100808354040283529160200191610d9a565b820191906000526020600020905b815481529060010190602001808311610d7d57829003601f168201915b5050505050905090565b6000610daf82612b3a565b610dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de590614a81565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e34826114d2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ea5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9c90614b41565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ec4612b32565b73ffffffffffffffffffffffffffffffffffffffff161480610ef35750610ef281610eed612b32565b6126d0565b5b610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2990614a01565b60405180910390fd5b610f3c8383612ba6565b505050565b600d5481565b610f4f612b32565b73ffffffffffffffffffffffffffffffffffffffff16610f6d6118d2565b73ffffffffffffffffffffffffffffffffffffffff1614610fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fba90614aa1565b60405180910390fd5b80600b9080519060200190610fd9929190613be6565b5050565b6000600880549050905090565b60125481565b611001610ffb612b32565b82612c5f565b611040576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103790614ba1565b60405180910390fd5b61104b838383612d3d565b505050565b600061105b8361158a565b821061109c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109390614861565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6110fd612b32565b73ffffffffffffffffffffffffffffffffffffffff1661111b6118d2565b73ffffffffffffffffffffffffffffffffffffffff1614611171576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116890614aa1565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156111bc573d6000803e3d6000fd5b5050565b6111db838383604051806020016040528060008152506121ac565b505050565b60135481565b6111ee612b32565b73ffffffffffffffffffffffffffffffffffffffff1661120c6118d2565b73ffffffffffffffffffffffffffffffffffffffff1614611262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125990614aa1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c990614b61565b60405180910390fd5b600c54816112de610fdd565b6112e89190614d60565b1115611329576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132090614941565b60405180910390fd5b600f548160175461133a9190614d60565b111561137b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137290614821565b60405180910390fd5b60005b818110156113f25760006001611392610fdd565b61139c9190614d60565b9050600c546113a9610fdd565b1080156113b95750600f54601754105b156113de576113c88482612f99565b60016017546113d79190614d60565b6017819055505b5080806113ea90614f8e565b91505061137e565b505050565b600061140282612b3a565b9050919050565b6000611413610fdd565b8210611454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144b90614bc1565b60405180910390fd5b6008828154811061148e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b60155481565b601160009054906101000a900460ff1681565b600c5481565b601160019054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561157b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157290614a41565b60405180910390fd5b80915050919050565b60145481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f290614a21565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61164a612b32565b73ffffffffffffffffffffffffffffffffffffffff166116686118d2565b73ffffffffffffffffffffffffffffffffffffffff16146116be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b590614aa1565b60405180910390fd5b6116c86000612fb7565b565b60185481565b6116d8612b32565b73ffffffffffffffffffffffffffffffffffffffff166116f66118d2565b73ffffffffffffffffffffffffffffffffffffffff161461174c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174390614aa1565b60405180910390fd5b8060138190555050565b606060006117638361158a565b905060008114156117e657600067ffffffffffffffff8111156117af577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156117dd5781602001602082028036833780820191505090505b509150506118cd565b60008167ffffffffffffffff811115611828577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156118565781602001602082028036833780820191505090505b50905060005b828110156118c65761186e8582611050565b8282815181106118a7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806118be90614f8e565b91505061185c565b5080925050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461190b90614f2b565b80601f016020809104026020016040519081016040528092919081815260200182805461193790614f2b565b80156119845780601f1061195957610100808354040283529160200191611984565b820191906000526020600020905b81548152906001019060200180831161196757829003601f168201915b5050505050905090565b6010805461199b90614f2b565b80601f01602080910402602001604051908101604052809291908181526020018280546119c790614f2b565b8015611a145780601f106119e957610100808354040283529160200191611a14565b820191906000526020600020905b8154815290600101906020018083116119f757829003601f168201915b505050505081565b611a24612b32565b73ffffffffffffffffffffffffffffffffffffffff16611a426118d2565b73ffffffffffffffffffffffffffffffffffffffff1614611a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8f90614aa1565b60405180910390fd5b8060128190555050565b601160009054906101000a900460ff1680611abf57506012544310155b611afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af590614b21565b60405180910390fd5b6000601754611b0b610fdd565b611b159190614e41565b9050601554821115611b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5390614b81565b60405180910390fd5b600e548282611b6b9190614d60565b1115611bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba390614be1565b60405180910390fd5b3482601454611bbb9190614de7565b1115611bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf390614841565b60405180910390fd5b60005b82811015611c485760006001611c13610fdd565b611c1d9190614d60565b9050600e54831015611c3457611c333382612f99565b5b508080611c4090614f8e565b915050611bff565b505050565b611c55612b32565b73ffffffffffffffffffffffffffffffffffffffff16611c736118d2565b73ffffffffffffffffffffffffffffffffffffffff1614611cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc090614aa1565b60405180910390fd5b8060109080519060200190611cdf929190613be6565b506010604051611cef9190614744565b60405180910390207fafa35f42f46f5052816d7c6a2e9406eca98294b20726677862d83b4a7418d8d560405160405180910390a250565b611d2e612b32565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d93906149a1565b60405180910390fd5b8060056000611da9612b32565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e56612b32565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e9b91906147e4565b60405180910390a35050565b611eaf612b32565b73ffffffffffffffffffffffffffffffffffffffff16611ecd6118d2565b73ffffffffffffffffffffffffffffffffffffffff1614611f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1a90614aa1565b60405180910390fd5b60005b82518110156121a757600073ffffffffffffffffffffffffffffffffffffffff16838281518110611f80577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff161415611fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd690614ac1565b60405180910390fd5b81611feb576001611fee565b60005b6019600085848151811061202b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000601a60008584815181106120c3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411612112576000612193565b601a600084838151811061214f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b50808061219f90614f8e565b915050611f26565b505050565b6121bd6121b7612b32565b83612c5f565b6121fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f390614ba1565b60405180910390fd5b6122088484848461307d565b50505050565b60165481565b606061221f82612b3a565b61225e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225590614b01565b60405180910390fd5b60006122686130d9565b9050600081511161228857604051806020016040528060008152506122b3565b806122928461316b565b6040516020016122a3929190614720565b6040516020818303038152906040525b915050919050565b601160019054906101000a900460ff16806122d857506013544310155b612317576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230e90614961565b60405180910390fd5b600d546018541061235d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235490614921565b60405180910390fd5b6016548111156123a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612399906148c1565b60405180910390fd5b600d54816018546123b39190614d60565b11156123f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123eb906149c1565b60405180910390fd5b60165481601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124429190614d60565b1115612483576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247a90614901565b60405180910390fd5b34816014546124929190614de7565b11156124d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ca90614841565b60405180910390fd5b60005b8181101561259257600060016124ea610fdd565b6124f49190614d60565b9050600d54601854101561257e576001601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125529190614d60565b9250508190555060016018600082825461256c9190614d60565b9250508190555061257d3382612f99565b5b50808061258a90614f8e565b9150506124d6565b5050565b600e5481565b60175481565b6125aa612b32565b73ffffffffffffffffffffffffffffffffffffffff166125c86118d2565b73ffffffffffffffffffffffffffffffffffffffff161461261e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261590614aa1565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b612652612b32565b73ffffffffffffffffffffffffffffffffffffffff166126706118d2565b73ffffffffffffffffffffffffffffffffffffffff16146126c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bd90614aa1565b60405180910390fd5b8060158190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60196020528060005260406000206000915054906101000a900460ff1681565b61278c612b32565b73ffffffffffffffffffffffffffffffffffffffff166127aa6118d2565b73ffffffffffffffffffffffffffffffffffffffff1614612800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f790614aa1565b60405180910390fd5b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b612834612b32565b73ffffffffffffffffffffffffffffffffffffffff166128526118d2565b73ffffffffffffffffffffffffffffffffffffffff16146128a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289f90614aa1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290f906148a1565b60405180910390fd5b61292181612fb7565b50565b61292c612b32565b73ffffffffffffffffffffffffffffffffffffffff1661294a6118d2565b73ffffffffffffffffffffffffffffffffffffffff16146129a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299790614aa1565b60405180910390fd5b8060148190555050565b601a6020528060005260406000206000915090505481565b600b80546129cf90614f2b565b80601f01602080910402602001604051908101604052809291908181526020018280546129fb90614f2b565b8015612a485780601f10612a1d57610100808354040283529160200191612a48565b820191906000526020600020905b815481529060010190602001808311612a2b57829003601f168201915b505050505081565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612b1b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612b2b5750612b2a82613318565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612c19836114d2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612c6a82612b3a565b612ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca0906149e1565b60405180910390fd5b6000612cb4836114d2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612d2357508373ffffffffffffffffffffffffffffffffffffffff16612d0b84610da4565b73ffffffffffffffffffffffffffffffffffffffff16145b80612d345750612d3381856126d0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612d5d826114d2565b73ffffffffffffffffffffffffffffffffffffffff1614612db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612daa90614ae1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1a90614981565b60405180910390fd5b612e2e838383613382565b612e39600082612ba6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e899190614e41565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ee09190614d60565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612fb3828260405180602001604052806000815250613496565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613088848484612d3d565b613094848484846134f1565b6130d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ca90614881565b60405180910390fd5b50505050565b6060601080546130e890614f2b565b80601f016020809104026020016040519081016040528092919081815260200182805461311490614f2b565b80156131615780601f1061313657610100808354040283529160200191613161565b820191906000526020600020905b81548152906001019060200180831161314457829003601f168201915b5050505050905090565b606060008214156131b3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613313565b600082905060005b600082146131e55780806131ce90614f8e565b915050600a826131de9190614db6565b91506131bb565b60008167ffffffffffffffff811115613227577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156132595781602001600182028036833780820191505090505b5090505b6000851461330c576001826132729190614e41565b9150600a856132819190614fd7565b603061328d9190614d60565b60f81b8183815181106132c9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133059190614db6565b945061325d565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61338d838383613688565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156133d0576133cb8161368d565b61340f565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461340e5761340d83826136d6565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134525761344d81613843565b613491565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146134905761348f8282613986565b5b5b505050565b6134a08383613a05565b6134ad60008484846134f1565b6134ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134e390614881565b60405180910390fd5b505050565b60006135128473ffffffffffffffffffffffffffffffffffffffff16613bd3565b1561367b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261353b612b32565b8786866040518563ffffffff1660e01b815260040161355d9493929190614776565b602060405180830381600087803b15801561357757600080fd5b505af19250505080156135a857506040513d601f19601f820116820180604052508101906135a5919061407c565b60015b61362b573d80600081146135d8576040519150601f19603f3d011682016040523d82523d6000602084013e6135dd565b606091505b50600081511415613623576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161361a90614881565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613680565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016136e38461158a565b6136ed9190614e41565b90506000600760008481526020019081526020016000205490508181146137d2576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506138579190614e41565b90506000600960008481526020019081526020016000205490506000600883815481106138ad577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106138f5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061396a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006139918361158a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a6c90614a61565b60405180910390fd5b613a7e81612b3a565b15613abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ab5906148e1565b60405180910390fd5b613aca60008383613382565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613b1a9190614d60565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613bf290614f2b565b90600052602060002090601f016020900481019282613c145760008555613c5b565b82601f10613c2d57805160ff1916838001178555613c5b565b82800160010185558215613c5b579182015b82811115613c5a578251825591602001919060010190613c3f565b5b509050613c689190613c6c565b5090565b5b80821115613c85576000816000905550600101613c6d565b5090565b6000613c9c613c9784614c41565b614c1c565b90508083825260208201905082856020860282011115613cbb57600080fd5b60005b85811015613ceb5781613cd18882613d71565b845260208401935060208301925050600181019050613cbe565b5050509392505050565b6000613d08613d0384614c6d565b614c1c565b905082815260208101848484011115613d2057600080fd5b613d2b848285614ee9565b509392505050565b6000613d46613d4184614c9e565b614c1c565b905082815260208101848484011115613d5e57600080fd5b613d69848285614ee9565b509392505050565b600081359050613d8081615982565b92915050565b600082601f830112613d9757600080fd5b8135613da7848260208601613c89565b91505092915050565b600081359050613dbf81615999565b92915050565b600081359050613dd4816159b0565b92915050565b600081519050613de9816159b0565b92915050565b600082601f830112613e0057600080fd5b8135613e10848260208601613cf5565b91505092915050565b600082601f830112613e2a57600080fd5b8135613e3a848260208601613d33565b91505092915050565b600081359050613e52816159c7565b92915050565b600060208284031215613e6a57600080fd5b6000613e7884828501613d71565b91505092915050565b60008060408385031215613e9457600080fd5b6000613ea285828601613d71565b9250506020613eb385828601613d71565b9150509250929050565b600080600060608486031215613ed257600080fd5b6000613ee086828701613d71565b9350506020613ef186828701613d71565b9250506040613f0286828701613e43565b9150509250925092565b60008060008060808587031215613f2257600080fd5b6000613f3087828801613d71565b9450506020613f4187828801613d71565b9350506040613f5287828801613e43565b925050606085013567ffffffffffffffff811115613f6f57600080fd5b613f7b87828801613def565b91505092959194509250565b60008060408385031215613f9a57600080fd5b6000613fa885828601613d71565b9250506020613fb985828601613db0565b9150509250929050565b60008060408385031215613fd657600080fd5b6000613fe485828601613d71565b9250506020613ff585828601613e43565b9150509250929050565b6000806040838503121561401257600080fd5b600083013567ffffffffffffffff81111561402c57600080fd5b61403885828601613d86565b925050602061404985828601613db0565b9150509250929050565b60006020828403121561406557600080fd5b600061407384828501613dc5565b91505092915050565b60006020828403121561408e57600080fd5b600061409c84828501613dda565b91505092915050565b6000602082840312156140b757600080fd5b600082013567ffffffffffffffff8111156140d157600080fd5b6140dd84828501613e19565b91505092915050565b6000602082840312156140f857600080fd5b600061410684828501613e43565b91505092915050565b600061411b8383614702565b60208301905092915050565b61413081614e75565b82525050565b600061414182614cf4565b61414b8185614d22565b935061415683614ccf565b8060005b8381101561418757815161416e888261410f565b975061417983614d15565b92505060018101905061415a565b5085935050505092915050565b61419d81614e87565b82525050565b60006141ae82614cff565b6141b88185614d33565b93506141c8818560208601614ef8565b6141d1816150c4565b840191505092915050565b60006141e782614d0a565b6141f18185614d44565b9350614201818560208601614ef8565b61420a816150c4565b840191505092915050565b600061422082614d0a565b61422a8185614d55565b935061423a818560208601614ef8565b80840191505092915050565b6000815461425381614f2b565b61425d8186614d55565b945060018216600081146142785760018114614289576142bc565b60ff198316865281860193506142bc565b61429285614cdf565b60005b838110156142b457815481890152600182019150602081019050614295565b838801955050505b50505092915050565b60006142d2603183614d44565b91506142dd826150d5565b604082019050919050565b60006142f5602e83614d44565b915061430082615124565b604082019050919050565b6000614318602b83614d44565b915061432382615173565b604082019050919050565b600061433b603283614d44565b9150614346826151c2565b604082019050919050565b600061435e602683614d44565b915061436982615211565b604082019050919050565b6000614381603283614d44565b915061438c82615260565b604082019050919050565b60006143a4601c83614d44565b91506143af826152af565b602082019050919050565b60006143c7603083614d44565b91506143d2826152d8565b604082019050919050565b60006143ea601f83614d44565b91506143f582615327565b602082019050919050565b600061440d602783614d44565b915061441882615350565b604082019050919050565b6000614430602483614d44565b915061443b8261539f565b604082019050919050565b6000614453602483614d44565b915061445e826153ee565b604082019050919050565b6000614476601983614d44565b91506144818261543d565b602082019050919050565b6000614499603783614d44565b91506144a482615466565b604082019050919050565b60006144bc602c83614d44565b91506144c7826154b5565b604082019050919050565b60006144df603883614d44565b91506144ea82615504565b604082019050919050565b6000614502602a83614d44565b915061450d82615553565b604082019050919050565b6000614525602983614d44565b9150614530826155a2565b604082019050919050565b6000614548602083614d44565b9150614553826155f1565b602082019050919050565b600061456b602c83614d44565b91506145768261561a565b604082019050919050565b600061458e602083614d44565b915061459982615669565b602082019050919050565b60006145b1601a83614d44565b91506145bc82615692565b602082019050919050565b60006145d4602983614d44565b91506145df826156bb565b604082019050919050565b60006145f7602f83614d44565b91506146028261570a565b604082019050919050565b600061461a602183614d44565b915061462582615759565b604082019050919050565b600061463d602183614d44565b9150614648826157a8565b604082019050919050565b6000614660602b83614d44565b915061466b826157f7565b604082019050919050565b6000614683602a83614d44565b915061468e82615846565b604082019050919050565b60006146a6603183614d44565b91506146b182615895565b604082019050919050565b60006146c9602c83614d44565b91506146d4826158e4565b604082019050919050565b60006146ec602883614d44565b91506146f782615933565b604082019050919050565b61470b81614edf565b82525050565b61471a81614edf565b82525050565b600061472c8285614215565b91506147388284614215565b91508190509392505050565b60006147508284614246565b915081905092915050565b60006020820190506147706000830184614127565b92915050565b600060808201905061478b6000830187614127565b6147986020830186614127565b6147a56040830185614711565b81810360608301526147b781846141a3565b905095945050505050565b600060208201905081810360008301526147dc8184614136565b905092915050565b60006020820190506147f96000830184614194565b92915050565b6000602082019050818103600083015261481981846141dc565b905092915050565b6000602082019050818103600083015261483a816142c5565b9050919050565b6000602082019050818103600083015261485a816142e8565b9050919050565b6000602082019050818103600083015261487a8161430b565b9050919050565b6000602082019050818103600083015261489a8161432e565b9050919050565b600060208201905081810360008301526148ba81614351565b9050919050565b600060208201905081810360008301526148da81614374565b9050919050565b600060208201905081810360008301526148fa81614397565b9050919050565b6000602082019050818103600083015261491a816143ba565b9050919050565b6000602082019050818103600083015261493a816143dd565b9050919050565b6000602082019050818103600083015261495a81614400565b9050919050565b6000602082019050818103600083015261497a81614423565b9050919050565b6000602082019050818103600083015261499a81614446565b9050919050565b600060208201905081810360008301526149ba81614469565b9050919050565b600060208201905081810360008301526149da8161448c565b9050919050565b600060208201905081810360008301526149fa816144af565b9050919050565b60006020820190508181036000830152614a1a816144d2565b9050919050565b60006020820190508181036000830152614a3a816144f5565b9050919050565b60006020820190508181036000830152614a5a81614518565b9050919050565b60006020820190508181036000830152614a7a8161453b565b9050919050565b60006020820190508181036000830152614a9a8161455e565b9050919050565b60006020820190508181036000830152614aba81614581565b9050919050565b60006020820190508181036000830152614ada816145a4565b9050919050565b60006020820190508181036000830152614afa816145c7565b9050919050565b60006020820190508181036000830152614b1a816145ea565b9050919050565b60006020820190508181036000830152614b3a8161460d565b9050919050565b60006020820190508181036000830152614b5a81614630565b9050919050565b60006020820190508181036000830152614b7a81614653565b9050919050565b60006020820190508181036000830152614b9a81614676565b9050919050565b60006020820190508181036000830152614bba81614699565b9050919050565b60006020820190508181036000830152614bda816146bc565b9050919050565b60006020820190508181036000830152614bfa816146df565b9050919050565b6000602082019050614c166000830184614711565b92915050565b6000614c26614c37565b9050614c328282614f5d565b919050565b6000604051905090565b600067ffffffffffffffff821115614c5c57614c5b615095565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614c8857614c87615095565b5b614c91826150c4565b9050602081019050919050565b600067ffffffffffffffff821115614cb957614cb8615095565b5b614cc2826150c4565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614d6b82614edf565b9150614d7683614edf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614dab57614daa615008565b5b828201905092915050565b6000614dc182614edf565b9150614dcc83614edf565b925082614ddc57614ddb615037565b5b828204905092915050565b6000614df282614edf565b9150614dfd83614edf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614e3657614e35615008565b5b828202905092915050565b6000614e4c82614edf565b9150614e5783614edf565b925082821015614e6a57614e69615008565b5b828203905092915050565b6000614e8082614ebf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614f16578082015181840152602081019050614efb565b83811115614f25576000848401525b50505050565b60006002820490506001821680614f4357607f821691505b60208210811415614f5757614f56615066565b5b50919050565b614f66826150c4565b810181811067ffffffffffffffff82111715614f8557614f84615095565b5b80604052505050565b6000614f9982614edf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614fcc57614fcb615008565b5b600182019050919050565b6000614fe282614edf565b9150614fed83614edf565b925082614ffd57614ffc615037565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f43727970746f2047656e6965733a204d696e74696e6720776f756c642065786360008201527f65656420636f6d6d756e69747920636170000000000000000000000000000000602082015250565b7f43727970746f2047656e6965733a2045746865722076616c75652073656e742060008201527f6973206e6f7420636f7272656374000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f43727970746f2047656e6965733a20416d6f756e742065786365656473206d6160008201527f78207065722070726573616c65206d696e740000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f50757263686173652065786365656473206d617820616c6c6f7765642070726560008201527f73616c6520616464726573732063617000000000000000000000000000000000602082015250565b7f43727970746f2047656e6965733a2050726573616c6520736f6c64206f757400600082015250565b7f43727970746f2047656e6965733a204d696e74696e6720776f756c642065786360008201527f6565642063617000000000000000000000000000000000000000000000000000602082015250565b7f43727970746f2047656e6965733a2050726573616c65206973206e6f7420616360008201527f7469766500000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f43727970746f2047656e6965733a20507572636861736520776f756c6420657860008201527f636565642070726573616c6520737570706c7920636170000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43616e27742061646420746865206e756c6c2061646472657373000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f43727970746f2047656e6965733a2053616c65206973206e6f7420616374697660008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f43727970746f2047656e6965733a2043616e6e6f74206d696e7420746f207a6560008201527f726f20616464726573732e000000000000000000000000000000000000000000602082015250565b7f43727970746f2047656e6965733a20416d6f756e742065786365656473206d6160008201527f7820706572206d696e7400000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f43727970746f2047656e6965733a20507572636861736520776f756c6420657860008201527f6365656420636170000000000000000000000000000000000000000000000000602082015250565b61598b81614e75565b811461599657600080fd5b50565b6159a281614e87565b81146159ad57600080fd5b50565b6159b981614e93565b81146159c457600080fd5b50565b6159d081614edf565b81146159db57600080fd5b5056fea26469706673582212207f068793e4cfc8a0b4648b0ec467c57498e3e2ad2020d4d32c81f73ecb9d957b64736f6c63430008040033697066733a2f2f516d595234695970525a45687053686f553555694e71586a5a59764d707751475376617a504b7566536e335958702f

Deployed Bytecode

0x6080604052600436106102ff5760003560e01c806373aee92911610190578063c87b56dd116100dc578063e985e9c511610095578063f2fde38b1161006f578063f2fde38b14610b52578063f4a0a52814610b7b578063f9765bc114610ba4578063ff1b655614610be1576102ff565b8063e985e9c514610ac1578063eb8835ab14610afe578063f285e69e14610b3b576102ff565b8063c87b56dd146109d2578063c9b298f114610a0f578063d4431b3214610a2b578063d9c5b0d314610a56578063daaeec8614610a81578063db6242c314610a98576102ff565b80639ceeb71c11610149578063a22cb46511610123578063a22cb4651461092c578063aff177ca14610955578063b88d4fde1461097e578063c73d4795146109a7576102ff565b80639ceeb71c146108be578063a0712d68146108e7578063a0bcfc7f14610903576102ff565b806373aee929146107ac57806373c84010146107d75780638462151c146108005780638da5cb5b1461083d57806395d89b41146108685780639abc832014610893576102ff565b806342842e0e1161024f578063564566a8116102085780636352211e116101e25780636352211e146106f05780636817c76c1461072d57806370a0823114610758578063715018a614610795576102ff565b8063564566a81461066f57806357d4c4ee1461069a57806360d938dc146106c5576102ff565b806342842e0e1461054d5780634cb79536146105765780634e114e19146105a15780634f558e79146105ca5780634f6ccce714610607578063507e094f14610644576102ff565b80630ffc6728116102bc578063200272751161029657806320027275146104a557806323b872dd146104d05780632f745c59146104f95780633ccfd60b14610536576102ff565b80630ffc672814610426578063109695231461045157806318160ddd1461047a576102ff565b806301ffc9a714610304578063029826c81461034157806304824a021461036a57806306fdde0314610395578063081812fc146103c0578063095ea7b3146103fd575b600080fd5b34801561031057600080fd5b5061032b60048036038101906103269190614053565b610c0c565b60405161033891906147e4565b60405180910390f35b34801561034d57600080fd5b50610368600480360381019061036391906140e6565b610c86565b005b34801561037657600080fd5b5061037f610d0c565b60405161038c9190614c01565b60405180910390f35b3480156103a157600080fd5b506103aa610d12565b6040516103b791906147ff565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e291906140e6565b610da4565b6040516103f4919061475b565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f9190613fc3565b610e29565b005b34801561043257600080fd5b5061043b610f41565b6040516104489190614c01565b60405180910390f35b34801561045d57600080fd5b50610478600480360381019061047391906140a5565b610f47565b005b34801561048657600080fd5b5061048f610fdd565b60405161049c9190614c01565b60405180910390f35b3480156104b157600080fd5b506104ba610fea565b6040516104c79190614c01565b60405180910390f35b3480156104dc57600080fd5b506104f760048036038101906104f29190613ebd565b610ff0565b005b34801561050557600080fd5b50610520600480360381019061051b9190613fc3565b611050565b60405161052d9190614c01565b60405180910390f35b34801561054257600080fd5b5061054b6110f5565b005b34801561055957600080fd5b50610574600480360381019061056f9190613ebd565b6111c0565b005b34801561058257600080fd5b5061058b6111e0565b6040516105989190614c01565b60405180910390f35b3480156105ad57600080fd5b506105c860048036038101906105c39190613fc3565b6111e6565b005b3480156105d657600080fd5b506105f160048036038101906105ec91906140e6565b6113f7565b6040516105fe91906147e4565b60405180910390f35b34801561061357600080fd5b5061062e600480360381019061062991906140e6565b611409565b60405161063b9190614c01565b60405180910390f35b34801561065057600080fd5b506106596114a0565b6040516106669190614c01565b60405180910390f35b34801561067b57600080fd5b506106846114a6565b60405161069191906147e4565b60405180910390f35b3480156106a657600080fd5b506106af6114b9565b6040516106bc9190614c01565b60405180910390f35b3480156106d157600080fd5b506106da6114bf565b6040516106e791906147e4565b60405180910390f35b3480156106fc57600080fd5b50610717600480360381019061071291906140e6565b6114d2565b604051610724919061475b565b60405180910390f35b34801561073957600080fd5b50610742611584565b60405161074f9190614c01565b60405180910390f35b34801561076457600080fd5b5061077f600480360381019061077a9190613e58565b61158a565b60405161078c9190614c01565b60405180910390f35b3480156107a157600080fd5b506107aa611642565b005b3480156107b857600080fd5b506107c16116ca565b6040516107ce9190614c01565b60405180910390f35b3480156107e357600080fd5b506107fe60048036038101906107f991906140e6565b6116d0565b005b34801561080c57600080fd5b5061082760048036038101906108229190613e58565b611756565b60405161083491906147c2565b60405180910390f35b34801561084957600080fd5b506108526118d2565b60405161085f919061475b565b60405180910390f35b34801561087457600080fd5b5061087d6118fc565b60405161088a91906147ff565b60405180910390f35b34801561089f57600080fd5b506108a861198e565b6040516108b591906147ff565b60405180910390f35b3480156108ca57600080fd5b506108e560048036038101906108e091906140e6565b611a1c565b005b61090160048036038101906108fc91906140e6565b611aa2565b005b34801561090f57600080fd5b5061092a600480360381019061092591906140a5565b611c4d565b005b34801561093857600080fd5b50610953600480360381019061094e9190613f87565b611d26565b005b34801561096157600080fd5b5061097c60048036038101906109779190613fff565b611ea7565b005b34801561098a57600080fd5b506109a560048036038101906109a09190613f0c565b6121ac565b005b3480156109b357600080fd5b506109bc61220e565b6040516109c99190614c01565b60405180910390f35b3480156109de57600080fd5b506109f960048036038101906109f491906140e6565b612214565b604051610a0691906147ff565b60405180910390f35b610a296004803603810190610a2491906140e6565b6122bb565b005b348015610a3757600080fd5b50610a40612596565b604051610a4d9190614c01565b60405180910390f35b348015610a6257600080fd5b50610a6b61259c565b604051610a789190614c01565b60405180910390f35b348015610a8d57600080fd5b50610a966125a2565b005b348015610aa457600080fd5b50610abf6004803603810190610aba91906140e6565b61264a565b005b348015610acd57600080fd5b50610ae86004803603810190610ae39190613e81565b6126d0565b604051610af591906147e4565b60405180910390f35b348015610b0a57600080fd5b50610b256004803603810190610b209190613e58565b612764565b604051610b3291906147e4565b60405180910390f35b348015610b4757600080fd5b50610b50612784565b005b348015610b5e57600080fd5b50610b796004803603810190610b749190613e58565b61282c565b005b348015610b8757600080fd5b50610ba26004803603810190610b9d91906140e6565b612924565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc69190613e58565b6129aa565b604051610bd89190614c01565b60405180910390f35b348015610bed57600080fd5b50610bf66129c2565b604051610c0391906147ff565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c7f5750610c7e82612a50565b5b9050919050565b610c8e612b32565b73ffffffffffffffffffffffffffffffffffffffff16610cac6118d2565b73ffffffffffffffffffffffffffffffffffffffff1614610d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf990614aa1565b60405180910390fd5b8060168190555050565b600f5481565b606060008054610d2190614f2b565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4d90614f2b565b8015610d9a5780601f10610d6f57610100808354040283529160200191610d9a565b820191906000526020600020905b815481529060010190602001808311610d7d57829003601f168201915b5050505050905090565b6000610daf82612b3a565b610dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de590614a81565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e34826114d2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ea5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9c90614b41565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ec4612b32565b73ffffffffffffffffffffffffffffffffffffffff161480610ef35750610ef281610eed612b32565b6126d0565b5b610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2990614a01565b60405180910390fd5b610f3c8383612ba6565b505050565b600d5481565b610f4f612b32565b73ffffffffffffffffffffffffffffffffffffffff16610f6d6118d2565b73ffffffffffffffffffffffffffffffffffffffff1614610fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fba90614aa1565b60405180910390fd5b80600b9080519060200190610fd9929190613be6565b5050565b6000600880549050905090565b60125481565b611001610ffb612b32565b82612c5f565b611040576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103790614ba1565b60405180910390fd5b61104b838383612d3d565b505050565b600061105b8361158a565b821061109c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109390614861565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6110fd612b32565b73ffffffffffffffffffffffffffffffffffffffff1661111b6118d2565b73ffffffffffffffffffffffffffffffffffffffff1614611171576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116890614aa1565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156111bc573d6000803e3d6000fd5b5050565b6111db838383604051806020016040528060008152506121ac565b505050565b60135481565b6111ee612b32565b73ffffffffffffffffffffffffffffffffffffffff1661120c6118d2565b73ffffffffffffffffffffffffffffffffffffffff1614611262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125990614aa1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c990614b61565b60405180910390fd5b600c54816112de610fdd565b6112e89190614d60565b1115611329576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132090614941565b60405180910390fd5b600f548160175461133a9190614d60565b111561137b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137290614821565b60405180910390fd5b60005b818110156113f25760006001611392610fdd565b61139c9190614d60565b9050600c546113a9610fdd565b1080156113b95750600f54601754105b156113de576113c88482612f99565b60016017546113d79190614d60565b6017819055505b5080806113ea90614f8e565b91505061137e565b505050565b600061140282612b3a565b9050919050565b6000611413610fdd565b8210611454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144b90614bc1565b60405180910390fd5b6008828154811061148e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b60155481565b601160009054906101000a900460ff1681565b600c5481565b601160019054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561157b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157290614a41565b60405180910390fd5b80915050919050565b60145481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f290614a21565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61164a612b32565b73ffffffffffffffffffffffffffffffffffffffff166116686118d2565b73ffffffffffffffffffffffffffffffffffffffff16146116be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b590614aa1565b60405180910390fd5b6116c86000612fb7565b565b60185481565b6116d8612b32565b73ffffffffffffffffffffffffffffffffffffffff166116f66118d2565b73ffffffffffffffffffffffffffffffffffffffff161461174c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174390614aa1565b60405180910390fd5b8060138190555050565b606060006117638361158a565b905060008114156117e657600067ffffffffffffffff8111156117af577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156117dd5781602001602082028036833780820191505090505b509150506118cd565b60008167ffffffffffffffff811115611828577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156118565781602001602082028036833780820191505090505b50905060005b828110156118c65761186e8582611050565b8282815181106118a7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806118be90614f8e565b91505061185c565b5080925050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461190b90614f2b565b80601f016020809104026020016040519081016040528092919081815260200182805461193790614f2b565b80156119845780601f1061195957610100808354040283529160200191611984565b820191906000526020600020905b81548152906001019060200180831161196757829003601f168201915b5050505050905090565b6010805461199b90614f2b565b80601f01602080910402602001604051908101604052809291908181526020018280546119c790614f2b565b8015611a145780601f106119e957610100808354040283529160200191611a14565b820191906000526020600020905b8154815290600101906020018083116119f757829003601f168201915b505050505081565b611a24612b32565b73ffffffffffffffffffffffffffffffffffffffff16611a426118d2565b73ffffffffffffffffffffffffffffffffffffffff1614611a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8f90614aa1565b60405180910390fd5b8060128190555050565b601160009054906101000a900460ff1680611abf57506012544310155b611afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af590614b21565b60405180910390fd5b6000601754611b0b610fdd565b611b159190614e41565b9050601554821115611b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5390614b81565b60405180910390fd5b600e548282611b6b9190614d60565b1115611bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba390614be1565b60405180910390fd5b3482601454611bbb9190614de7565b1115611bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf390614841565b60405180910390fd5b60005b82811015611c485760006001611c13610fdd565b611c1d9190614d60565b9050600e54831015611c3457611c333382612f99565b5b508080611c4090614f8e565b915050611bff565b505050565b611c55612b32565b73ffffffffffffffffffffffffffffffffffffffff16611c736118d2565b73ffffffffffffffffffffffffffffffffffffffff1614611cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc090614aa1565b60405180910390fd5b8060109080519060200190611cdf929190613be6565b506010604051611cef9190614744565b60405180910390207fafa35f42f46f5052816d7c6a2e9406eca98294b20726677862d83b4a7418d8d560405160405180910390a250565b611d2e612b32565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d93906149a1565b60405180910390fd5b8060056000611da9612b32565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e56612b32565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e9b91906147e4565b60405180910390a35050565b611eaf612b32565b73ffffffffffffffffffffffffffffffffffffffff16611ecd6118d2565b73ffffffffffffffffffffffffffffffffffffffff1614611f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1a90614aa1565b60405180910390fd5b60005b82518110156121a757600073ffffffffffffffffffffffffffffffffffffffff16838281518110611f80577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff161415611fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd690614ac1565b60405180910390fd5b81611feb576001611fee565b60005b6019600085848151811061202b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000601a60008584815181106120c3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411612112576000612193565b601a600084838151811061214f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b50808061219f90614f8e565b915050611f26565b505050565b6121bd6121b7612b32565b83612c5f565b6121fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f390614ba1565b60405180910390fd5b6122088484848461307d565b50505050565b60165481565b606061221f82612b3a565b61225e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225590614b01565b60405180910390fd5b60006122686130d9565b9050600081511161228857604051806020016040528060008152506122b3565b806122928461316b565b6040516020016122a3929190614720565b6040516020818303038152906040525b915050919050565b601160019054906101000a900460ff16806122d857506013544310155b612317576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230e90614961565b60405180910390fd5b600d546018541061235d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235490614921565b60405180910390fd5b6016548111156123a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612399906148c1565b60405180910390fd5b600d54816018546123b39190614d60565b11156123f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123eb906149c1565b60405180910390fd5b60165481601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124429190614d60565b1115612483576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247a90614901565b60405180910390fd5b34816014546124929190614de7565b11156124d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ca90614841565b60405180910390fd5b60005b8181101561259257600060016124ea610fdd565b6124f49190614d60565b9050600d54601854101561257e576001601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125529190614d60565b9250508190555060016018600082825461256c9190614d60565b9250508190555061257d3382612f99565b5b50808061258a90614f8e565b9150506124d6565b5050565b600e5481565b60175481565b6125aa612b32565b73ffffffffffffffffffffffffffffffffffffffff166125c86118d2565b73ffffffffffffffffffffffffffffffffffffffff161461261e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261590614aa1565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b612652612b32565b73ffffffffffffffffffffffffffffffffffffffff166126706118d2565b73ffffffffffffffffffffffffffffffffffffffff16146126c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bd90614aa1565b60405180910390fd5b8060158190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60196020528060005260406000206000915054906101000a900460ff1681565b61278c612b32565b73ffffffffffffffffffffffffffffffffffffffff166127aa6118d2565b73ffffffffffffffffffffffffffffffffffffffff1614612800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f790614aa1565b60405180910390fd5b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b612834612b32565b73ffffffffffffffffffffffffffffffffffffffff166128526118d2565b73ffffffffffffffffffffffffffffffffffffffff16146128a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289f90614aa1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290f906148a1565b60405180910390fd5b61292181612fb7565b50565b61292c612b32565b73ffffffffffffffffffffffffffffffffffffffff1661294a6118d2565b73ffffffffffffffffffffffffffffffffffffffff16146129a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299790614aa1565b60405180910390fd5b8060148190555050565b601a6020528060005260406000206000915090505481565b600b80546129cf90614f2b565b80601f01602080910402602001604051908101604052809291908181526020018280546129fb90614f2b565b8015612a485780601f10612a1d57610100808354040283529160200191612a48565b820191906000526020600020905b815481529060010190602001808311612a2b57829003601f168201915b505050505081565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612b1b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612b2b5750612b2a82613318565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612c19836114d2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612c6a82612b3a565b612ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca0906149e1565b60405180910390fd5b6000612cb4836114d2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612d2357508373ffffffffffffffffffffffffffffffffffffffff16612d0b84610da4565b73ffffffffffffffffffffffffffffffffffffffff16145b80612d345750612d3381856126d0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612d5d826114d2565b73ffffffffffffffffffffffffffffffffffffffff1614612db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612daa90614ae1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1a90614981565b60405180910390fd5b612e2e838383613382565b612e39600082612ba6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e899190614e41565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ee09190614d60565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612fb3828260405180602001604052806000815250613496565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613088848484612d3d565b613094848484846134f1565b6130d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ca90614881565b60405180910390fd5b50505050565b6060601080546130e890614f2b565b80601f016020809104026020016040519081016040528092919081815260200182805461311490614f2b565b80156131615780601f1061313657610100808354040283529160200191613161565b820191906000526020600020905b81548152906001019060200180831161314457829003601f168201915b5050505050905090565b606060008214156131b3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613313565b600082905060005b600082146131e55780806131ce90614f8e565b915050600a826131de9190614db6565b91506131bb565b60008167ffffffffffffffff811115613227577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156132595781602001600182028036833780820191505090505b5090505b6000851461330c576001826132729190614e41565b9150600a856132819190614fd7565b603061328d9190614d60565b60f81b8183815181106132c9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133059190614db6565b945061325d565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61338d838383613688565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156133d0576133cb8161368d565b61340f565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461340e5761340d83826136d6565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134525761344d81613843565b613491565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146134905761348f8282613986565b5b5b505050565b6134a08383613a05565b6134ad60008484846134f1565b6134ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134e390614881565b60405180910390fd5b505050565b60006135128473ffffffffffffffffffffffffffffffffffffffff16613bd3565b1561367b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261353b612b32565b8786866040518563ffffffff1660e01b815260040161355d9493929190614776565b602060405180830381600087803b15801561357757600080fd5b505af19250505080156135a857506040513d601f19601f820116820180604052508101906135a5919061407c565b60015b61362b573d80600081146135d8576040519150601f19603f3d011682016040523d82523d6000602084013e6135dd565b606091505b50600081511415613623576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161361a90614881565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613680565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016136e38461158a565b6136ed9190614e41565b90506000600760008481526020019081526020016000205490508181146137d2576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506138579190614e41565b90506000600960008481526020019081526020016000205490506000600883815481106138ad577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106138f5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061396a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006139918361158a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a6c90614a61565b60405180910390fd5b613a7e81612b3a565b15613abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ab5906148e1565b60405180910390fd5b613aca60008383613382565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613b1a9190614d60565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613bf290614f2b565b90600052602060002090601f016020900481019282613c145760008555613c5b565b82601f10613c2d57805160ff1916838001178555613c5b565b82800160010185558215613c5b579182015b82811115613c5a578251825591602001919060010190613c3f565b5b509050613c689190613c6c565b5090565b5b80821115613c85576000816000905550600101613c6d565b5090565b6000613c9c613c9784614c41565b614c1c565b90508083825260208201905082856020860282011115613cbb57600080fd5b60005b85811015613ceb5781613cd18882613d71565b845260208401935060208301925050600181019050613cbe565b5050509392505050565b6000613d08613d0384614c6d565b614c1c565b905082815260208101848484011115613d2057600080fd5b613d2b848285614ee9565b509392505050565b6000613d46613d4184614c9e565b614c1c565b905082815260208101848484011115613d5e57600080fd5b613d69848285614ee9565b509392505050565b600081359050613d8081615982565b92915050565b600082601f830112613d9757600080fd5b8135613da7848260208601613c89565b91505092915050565b600081359050613dbf81615999565b92915050565b600081359050613dd4816159b0565b92915050565b600081519050613de9816159b0565b92915050565b600082601f830112613e0057600080fd5b8135613e10848260208601613cf5565b91505092915050565b600082601f830112613e2a57600080fd5b8135613e3a848260208601613d33565b91505092915050565b600081359050613e52816159c7565b92915050565b600060208284031215613e6a57600080fd5b6000613e7884828501613d71565b91505092915050565b60008060408385031215613e9457600080fd5b6000613ea285828601613d71565b9250506020613eb385828601613d71565b9150509250929050565b600080600060608486031215613ed257600080fd5b6000613ee086828701613d71565b9350506020613ef186828701613d71565b9250506040613f0286828701613e43565b9150509250925092565b60008060008060808587031215613f2257600080fd5b6000613f3087828801613d71565b9450506020613f4187828801613d71565b9350506040613f5287828801613e43565b925050606085013567ffffffffffffffff811115613f6f57600080fd5b613f7b87828801613def565b91505092959194509250565b60008060408385031215613f9a57600080fd5b6000613fa885828601613d71565b9250506020613fb985828601613db0565b9150509250929050565b60008060408385031215613fd657600080fd5b6000613fe485828601613d71565b9250506020613ff585828601613e43565b9150509250929050565b6000806040838503121561401257600080fd5b600083013567ffffffffffffffff81111561402c57600080fd5b61403885828601613d86565b925050602061404985828601613db0565b9150509250929050565b60006020828403121561406557600080fd5b600061407384828501613dc5565b91505092915050565b60006020828403121561408e57600080fd5b600061409c84828501613dda565b91505092915050565b6000602082840312156140b757600080fd5b600082013567ffffffffffffffff8111156140d157600080fd5b6140dd84828501613e19565b91505092915050565b6000602082840312156140f857600080fd5b600061410684828501613e43565b91505092915050565b600061411b8383614702565b60208301905092915050565b61413081614e75565b82525050565b600061414182614cf4565b61414b8185614d22565b935061415683614ccf565b8060005b8381101561418757815161416e888261410f565b975061417983614d15565b92505060018101905061415a565b5085935050505092915050565b61419d81614e87565b82525050565b60006141ae82614cff565b6141b88185614d33565b93506141c8818560208601614ef8565b6141d1816150c4565b840191505092915050565b60006141e782614d0a565b6141f18185614d44565b9350614201818560208601614ef8565b61420a816150c4565b840191505092915050565b600061422082614d0a565b61422a8185614d55565b935061423a818560208601614ef8565b80840191505092915050565b6000815461425381614f2b565b61425d8186614d55565b945060018216600081146142785760018114614289576142bc565b60ff198316865281860193506142bc565b61429285614cdf565b60005b838110156142b457815481890152600182019150602081019050614295565b838801955050505b50505092915050565b60006142d2603183614d44565b91506142dd826150d5565b604082019050919050565b60006142f5602e83614d44565b915061430082615124565b604082019050919050565b6000614318602b83614d44565b915061432382615173565b604082019050919050565b600061433b603283614d44565b9150614346826151c2565b604082019050919050565b600061435e602683614d44565b915061436982615211565b604082019050919050565b6000614381603283614d44565b915061438c82615260565b604082019050919050565b60006143a4601c83614d44565b91506143af826152af565b602082019050919050565b60006143c7603083614d44565b91506143d2826152d8565b604082019050919050565b60006143ea601f83614d44565b91506143f582615327565b602082019050919050565b600061440d602783614d44565b915061441882615350565b604082019050919050565b6000614430602483614d44565b915061443b8261539f565b604082019050919050565b6000614453602483614d44565b915061445e826153ee565b604082019050919050565b6000614476601983614d44565b91506144818261543d565b602082019050919050565b6000614499603783614d44565b91506144a482615466565b604082019050919050565b60006144bc602c83614d44565b91506144c7826154b5565b604082019050919050565b60006144df603883614d44565b91506144ea82615504565b604082019050919050565b6000614502602a83614d44565b915061450d82615553565b604082019050919050565b6000614525602983614d44565b9150614530826155a2565b604082019050919050565b6000614548602083614d44565b9150614553826155f1565b602082019050919050565b600061456b602c83614d44565b91506145768261561a565b604082019050919050565b600061458e602083614d44565b915061459982615669565b602082019050919050565b60006145b1601a83614d44565b91506145bc82615692565b602082019050919050565b60006145d4602983614d44565b91506145df826156bb565b604082019050919050565b60006145f7602f83614d44565b91506146028261570a565b604082019050919050565b600061461a602183614d44565b915061462582615759565b604082019050919050565b600061463d602183614d44565b9150614648826157a8565b604082019050919050565b6000614660602b83614d44565b915061466b826157f7565b604082019050919050565b6000614683602a83614d44565b915061468e82615846565b604082019050919050565b60006146a6603183614d44565b91506146b182615895565b604082019050919050565b60006146c9602c83614d44565b91506146d4826158e4565b604082019050919050565b60006146ec602883614d44565b91506146f782615933565b604082019050919050565b61470b81614edf565b82525050565b61471a81614edf565b82525050565b600061472c8285614215565b91506147388284614215565b91508190509392505050565b60006147508284614246565b915081905092915050565b60006020820190506147706000830184614127565b92915050565b600060808201905061478b6000830187614127565b6147986020830186614127565b6147a56040830185614711565b81810360608301526147b781846141a3565b905095945050505050565b600060208201905081810360008301526147dc8184614136565b905092915050565b60006020820190506147f96000830184614194565b92915050565b6000602082019050818103600083015261481981846141dc565b905092915050565b6000602082019050818103600083015261483a816142c5565b9050919050565b6000602082019050818103600083015261485a816142e8565b9050919050565b6000602082019050818103600083015261487a8161430b565b9050919050565b6000602082019050818103600083015261489a8161432e565b9050919050565b600060208201905081810360008301526148ba81614351565b9050919050565b600060208201905081810360008301526148da81614374565b9050919050565b600060208201905081810360008301526148fa81614397565b9050919050565b6000602082019050818103600083015261491a816143ba565b9050919050565b6000602082019050818103600083015261493a816143dd565b9050919050565b6000602082019050818103600083015261495a81614400565b9050919050565b6000602082019050818103600083015261497a81614423565b9050919050565b6000602082019050818103600083015261499a81614446565b9050919050565b600060208201905081810360008301526149ba81614469565b9050919050565b600060208201905081810360008301526149da8161448c565b9050919050565b600060208201905081810360008301526149fa816144af565b9050919050565b60006020820190508181036000830152614a1a816144d2565b9050919050565b60006020820190508181036000830152614a3a816144f5565b9050919050565b60006020820190508181036000830152614a5a81614518565b9050919050565b60006020820190508181036000830152614a7a8161453b565b9050919050565b60006020820190508181036000830152614a9a8161455e565b9050919050565b60006020820190508181036000830152614aba81614581565b9050919050565b60006020820190508181036000830152614ada816145a4565b9050919050565b60006020820190508181036000830152614afa816145c7565b9050919050565b60006020820190508181036000830152614b1a816145ea565b9050919050565b60006020820190508181036000830152614b3a8161460d565b9050919050565b60006020820190508181036000830152614b5a81614630565b9050919050565b60006020820190508181036000830152614b7a81614653565b9050919050565b60006020820190508181036000830152614b9a81614676565b9050919050565b60006020820190508181036000830152614bba81614699565b9050919050565b60006020820190508181036000830152614bda816146bc565b9050919050565b60006020820190508181036000830152614bfa816146df565b9050919050565b6000602082019050614c166000830184614711565b92915050565b6000614c26614c37565b9050614c328282614f5d565b919050565b6000604051905090565b600067ffffffffffffffff821115614c5c57614c5b615095565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614c8857614c87615095565b5b614c91826150c4565b9050602081019050919050565b600067ffffffffffffffff821115614cb957614cb8615095565b5b614cc2826150c4565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614d6b82614edf565b9150614d7683614edf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614dab57614daa615008565b5b828201905092915050565b6000614dc182614edf565b9150614dcc83614edf565b925082614ddc57614ddb615037565b5b828204905092915050565b6000614df282614edf565b9150614dfd83614edf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614e3657614e35615008565b5b828202905092915050565b6000614e4c82614edf565b9150614e5783614edf565b925082821015614e6a57614e69615008565b5b828203905092915050565b6000614e8082614ebf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614f16578082015181840152602081019050614efb565b83811115614f25576000848401525b50505050565b60006002820490506001821680614f4357607f821691505b60208210811415614f5757614f56615066565b5b50919050565b614f66826150c4565b810181811067ffffffffffffffff82111715614f8557614f84615095565b5b80604052505050565b6000614f9982614edf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614fcc57614fcb615008565b5b600182019050919050565b6000614fe282614edf565b9150614fed83614edf565b925082614ffd57614ffc615037565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f43727970746f2047656e6965733a204d696e74696e6720776f756c642065786360008201527f65656420636f6d6d756e69747920636170000000000000000000000000000000602082015250565b7f43727970746f2047656e6965733a2045746865722076616c75652073656e742060008201527f6973206e6f7420636f7272656374000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f43727970746f2047656e6965733a20416d6f756e742065786365656473206d6160008201527f78207065722070726573616c65206d696e740000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f50757263686173652065786365656473206d617820616c6c6f7765642070726560008201527f73616c6520616464726573732063617000000000000000000000000000000000602082015250565b7f43727970746f2047656e6965733a2050726573616c6520736f6c64206f757400600082015250565b7f43727970746f2047656e6965733a204d696e74696e6720776f756c642065786360008201527f6565642063617000000000000000000000000000000000000000000000000000602082015250565b7f43727970746f2047656e6965733a2050726573616c65206973206e6f7420616360008201527f7469766500000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f43727970746f2047656e6965733a20507572636861736520776f756c6420657860008201527f636565642070726573616c6520737570706c7920636170000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43616e27742061646420746865206e756c6c2061646472657373000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f43727970746f2047656e6965733a2053616c65206973206e6f7420616374697660008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f43727970746f2047656e6965733a2043616e6e6f74206d696e7420746f207a6560008201527f726f20616464726573732e000000000000000000000000000000000000000000602082015250565b7f43727970746f2047656e6965733a20416d6f756e742065786365656473206d6160008201527f7820706572206d696e7400000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f43727970746f2047656e6965733a20507572636861736520776f756c6420657860008201527f6365656420636170000000000000000000000000000000000000000000000000602082015250565b61598b81614e75565b811461599657600080fd5b50565b6159a281614e87565b81146159ad57600080fd5b50565b6159b981614e93565b81146159c457600080fd5b50565b6159d081614edf565b81146159db57600080fd5b5056fea26469706673582212207f068793e4cfc8a0b4648b0ec467c57498e3e2ad2020d4d32c81f73ecb9d957b64736f6c63430008040033

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.