ETH Price: $3,439.58 (+0.17%)
Gas: 6 Gwei

Token

Fat Choys (CHOY)
 

Overview

Max Total Supply

448 CHOY

Holders

162

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
nicknamed.eth
Balance
2 CHOY
0x6f4e4664e9b519deab043676d9aafe6c9621c088
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:
FatChoy

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-30
*/

// SPDX-License-Identifier: MIT

/**
    @title ERC721 NFT for FatChoy
    @author KontonLorenz
    @dev Built on the back of the Hashlips NFT Contract template - which itself is built on openzepplin's repository
    @notice Fat Choys are here to bring prosperity to 2022 - Get them before it's too late!
*/

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
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);
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
pragma solidity ^0.8.0;
/**
 * @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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol
pragma solidity ^0.8.0;
/**
 * @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: @openzeppelin/contracts/utils/introspection/ERC165.sol
pragma solidity ^0.8.0;
/**
 * @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: @openzeppelin/contracts/utils/Strings.sol



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: @openzeppelin/contracts/utils/Address.sol



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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol



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

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


// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
pragma solidity ^0.8.0;
/**
 * @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: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol



pragma solidity ^0.8.0;



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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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);
    }
}

pragma solidity >=0.7.0 <0.9.0;

contract FatChoy is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 0.08 ether;
  uint256 public maxSupply = 8888;
  uint256 public maxMintAmount = 20;
  bool public paused = true;
  bool public revealed = true;
  bool public whitelistPaused = true;
  string public notRevealedUri;

  address[] public whitelist;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);

    whitelist = [
        0xA327a16b71bA107393E0dC046B0Be0908AA667aD,
        0x6CC0d7791db228b66c190462eA19FCa92AA1f25F,
        0xc3250be2F664Db7b423973adfd400e4c5541A445,
        0x9311D45341b284900711F9BC155ce2E381248c29,
        0xb4103329230dB58eA6E2480e4022B577833600dF,
        0x8f1CA5Ff845AD2B2527686BC62c3145B92331531,
        0x8Da15F7e6bf20Eae393D0210d0F69eA98fC8Ea5e,
        0x8791C9057566AF6F55f18FDbeA4465E1B1ee2f8E,
        0x08FCa0C57FeC5Cf118A5Bb1474B3dF7942aB877f,
        0xFda54B47e5D4762bb43fC282d33279cfd1b2026C,
        0xFc9e2CF27dAd13B149dD476eeEd2B46E061A1a6d,
        0x7Ea9b8ba0d889Ba42458f657Ed27244AD593dfe7,
        0x0929a4109E7BfD43270Aa3C84084168dcE2A2955,
        0x9829335c360932CB6C17e5A51836de33A0Ae30ef,
        0xc7D47D1f5357Ae5e61BCa9C6D287dF6c5115C415,
        0xDEc096F829AAc7bF4b9D927903eF08F51De34a21,
        0x61ba11A8E0c7005767929c6781A8d3f322C2886D,
        0x954E128f3e3d85ba3aDaFB9d53e7c060833e2Bb0,
        0x5a7fFE8A96d7aBfbBE3B4A239130515F7d2E0ec0,
        0xbf9Fda32692b25c6083cbe48399eF019B62F0712,
        0xd87E0f3F988c2f271CdB2019381b47Ab57115414,
        0x52A8d97577983706F91EcA67513a3412F155a166,
        0xa516BB97dBC89832e9AA02Ea420E63a67EE2cE53,
        0x60EE37531AB136232C8736759F65228129da7a91,
        0x4575890793Ac619ac4E5B6f3849beEf5f1E8D928,
        0x341D13B93a9e6eC3B9b2B5C3EE7747D6eC95Cf69,
        0x062f08f9999a2aeb8235Bb5Fb4B0321C5F6aF10F,
        0xc3250be2F664Db7b423973adfd400e4c5541A445,
        0x10FBec46F97087503b7c535ba645F33ef1Eb692F,
        0x80Cfaf6273eb4C5537914fF492c9a7Ff72DeB433,
        0x7919A9C5961d895CDa921F6E0396E40a3d6f7e51,
        0x48E31c1048f50Ae93d3Db523129AAfC9De2B2b52,
        0x472C4D5EE8B29664a09940e20F2BC871e2b61A06,
        0x29104975057C20062596FB755047c1C9fb59daaE,
        0x407303a3D2c34196EA610911688472C3A223f51B,
        0x97061119a6D30432b0CBD2a28cda2FE8f109e710,
        0x6d9ed472Da62B604eD479026185995889ae8f80e,
        0x0f17ac7a5f4d6A9b1c5876E98bCFf33Ddf33905a,
        0x17e1Ac278b39822AE6B1C8A25b7938ad4672EDC7,
        0x6fec6cB90D4bc025D5249F299d640D66FCbfb6eb,
        0xb464CA834796272E08Dc6460940B281B046a2cEe,
        0x337CfB6E0466977c6419D5DcA8FA8B82904787b1,
        0x1482A191208754D05B69c89f499995FC89e4397C,
        0x4291156c56f09d7E30B33CEA68BF745dFd475C24,
        0xb0C4c6A91a9ed11A89A1EF69de09A3254D6d87E2,
        0x9996b0883179B9f27C20BdCB565a041dBca2eebe,
        0xfdD6D56486B6A1c1CBFc1a1f6cE2573875DaA7df,
        0x744f7738bf3a9446E300FD4E04aF8A2dab1098b5,
        0x649cbF9adb764aC365960eE3e43457c4Aab5c319,
        0x55beA373713D08023659Caa997e2CC282e9B786e,
        0xA10902C668bF73De06471adeF3E47cf56f00602B,
        0xaC72BCf83a55713a49A08420477fDf6f3C9b50FE,
        0xFC8553A7bb0BbB9a7642ACef2224205334C8Ddc0,
        0xeA921aCfe2d96D30690e06b5d4D64be6e1192ce6,
        0x3d8a60d69e4Ce4150177B0B77cb9aC093FCC2c43,
        0x476799Eaf7A58a7A8ebea73a15FC2B7B834151A4,
        0xD7c85b73f7dfb9Ce969025ac931F9C7f17e82Caa,
        0x9cA3AC1637680879cDcaCa85d5E25422c05Eb9F8,
        0x8068BD398396B060d820745FDE9C545a38bb776d,
        0xCE78550a045441905BCEb92C378f67574211439d,
        0x815e969a2bf9a910A09eC5A88EC78BDC90e7957D,
        0x057C416df3cE3Bd89E86A1fB764B106698048FE7,
        0x182B32912D74A620124F7BdC13f6dA38c5DbE8CF,
        0x6C134832ba6b733419e27413176d2cf685075401,
        0xa516BB97dBC89832e9AA02Ea420E63a67EE2cE53,
        0xD827eb2673D3Dc1a7F886413f6f0950Ec2fbBc98,
        0x4892cfe386f14Cf8640F6CA124E0F97DC1b7af57,
        0xF33fd427e695B63C81F238b5d8EA75Aea31d15a4,
        0x2694e8fd3B504Ea897e94391A78F921Ab0250703,
        0x607054b35f06c5b5224A5922b214C33D163f4D90,
        0x1AA963E68CFDE4dab1Df1E15E70B2BB4103c4848,
        0xB71b2eCc3DAa289452d6ff3b34Ef2F5643337505,
        0xdfDf2D882D9ebce6c7EAc3DA9AB66cbfDa263781,
        0xb0C4c6A91a9ed11A89A1EF69de09A3254D6d87E2,
        0xB17C020bb54b2329ddDcD23c668F2e70897Fd7a7,
        0xe12d5e83441614303772C851040EdDF12f4E1A9E,
        0x281A0eC0A602eB9C9B92a6711941f9D8E93fBB0f,
        0xFb7Ac89d730dC18F2FBD86ffc91aD47284D504f4,
        0xd9d748a8F2927DEcc92a8e01b732bf4A056C6868,
        0xc29249BE70ca601934c8250373203AC03C01C3B3,
        0x26bd2f2931e0857D7e749ED4a4a6ecfEd9adc159,
        0x76D6c95DF6be289e18c5a682DcC4263eC6DbA53f,
        0xC9d8D69A74f2f32f7294d242c7272aa873167b22,
        0xad03756c766B32e1ACEfAA28E77d158892b580A6,
        0xe96DB623c2CE30F65171F5fc487127748d1065C6,
        0x2F8D8846C376bC842Cd9B904C9b505e39A6c54Dc,
        0x8C702A9a6e0cd14a53251C630743c4F5327eddE8,
        0x6049CEaA510d5E7585A4D7Fa6C102C1bdaaaBaCe,
        0x2aEfc99091420218De94D8b446d29F08189a3B0c,
        0x6b615390f73Eae2b20C81ab17aBfe8BE7fF57523,
        0x24b0842f31748C7c9eD0e69261F5E3578A24D8e1,
        0xff87a8C90595171D06c92D6926dBBf43777CF7A3,
        0xB2082914a908a91194B3Ad50e5aEe2e7FB77D435,
        0xE800D3401cE4dA88D738df0502f5CcD5d1e63083,
        0x0908823204A6044981b22d636D15B2A4A1916b3e,
        0x1FC7A92b67317CBf8124037bD3A137FcF9ee61E1,
        0xb4b81b693F322F6dadac99c9DE4366970e99f6D8,
        0xe4e45993cc1718dFB1b7dB2bc72Ac10f0737e74A,
        0xB960665D4e601063df28c9067c0d925069cf9142,
        0x116c2978B393453D6C2Cb5F6Ab282F898B8BC128,
        0x0634e57C875d6Cc0037FA5174e8BAF602eBE8344,
        0xB06716762d95080Ef63B74FcEd62F541a48cD660,
        0xDafAa782BcD1d519e7374A8D4a33bE8809d2023b,
        0xaFa47C5911dc32a9047e983c20E3860C2f303592,
        0x59F14A2f59F6d10ac77Ba67576ebE37eda56a064,
        0x6D65ACA6c7e880218A26e324E62422743D845316,
        0x0b0e6e7235d67E35EA8D736766088A28C1985aFC,
        0x2D1E7B6E6284409e16991dE76d2A82847a7d61C5,
        0x788c1702D8E34Ec11cbc99Beadc4d3E2d50f89e2,
        0x6cf313F417937C6ca5aC85b4Efb4175fBA397C7E,
        0xbf45D67779793c5e2387609e497A051e2906c383,
        0x887F4ae78D3F2219998b75Bc8fC2C9d9673a942a,
        0x39BBFC85f0b4bFFef053cf5Ef31c70B0C9B5Dc9b,
        0x4ECF5BC9A031bF984D2a00D3f9eEf0BA6c7f692c,
        0x069D3e170f6A0aa557EF97342BAb3063f77c58DB,
        0x0eD1f069A895a94eF6866979FDD71F556024D018,
        0x06C650E7d03ED5b82ab2a69297888b108E1b0CD1,
        0xBBC3d8108069B10a5859a08f31d140b9f357F73f,
        0x3C045d92B7c3bb83E2018e2e296F6A0BC0E2eB07,
        0x93e266B9a1534acE15314a35D2E8369c30c4f81e,
        0xd83577256002E1F54CE8536F1510e175e7D1db17,
        0x2C8D2e50Ee03f98A2f4CCFbe1A61552b79bDF6fa,
        0xbED050C15224a53a12815Fa79F2B1EF431887Eb2,
        0x383234d747497f8E3e0c485f66f52B19227727a6,
        0x56fF22798ab380616380eb5af6D055aC91f4b114,
        0x53AFdcd8197A9FEF79729f2D6AEE5954aEC1E0D3,
        0x69774A09Ca3E16421712E472DCd16a0a98c330DF,
        0x379CAdAb8F98bF10121E2e9B7fc02CA802345E8b,
        0x476e8C784Cb487Ba1532907556E47AB960F5D137,
        0xD952f25A26404E6C1d3E320C7116fc444296a2e7,
        0x1F124970A7724F0c4A9159498824D505Fde6f9aA,
        0x1A2Cfb4E1eD487c94621C4C8cd73889679D09631,
        0x43A76b029EDCdE8E7fC64A8bb0e240b0E642aAeB,
        0xeb6f552540468e7E3FCb0aA036C1E71076b67e2C,
        0x4dfC3F37a5CeE7Ea111e65D35eCfe61Fdd10fbC5,
        0xbED050C15224a53a12815Fa79F2B1EF431887Eb2,
        0xAAc21Bb3608D996793E256C0E72305F6a4e2185D,
        0x626c19C0EdAc14D34F84e99005c28CfA2Fb2505B,
        0x5C30755fb63e910200016A9be44652F20B8d0164,
        0xF33364a83b6002D5070EC5FA31F5d9EB93572732,
        0x4f8c2d5397262653Cd8956CB977A0bA3660210c7,
        0x1Dca1f25E29Ff5C35BFb4a6E39ff872bf717945B,
        0x94ff6a83A067cC9E6a4C0767792beDA781a16375,
        0x1EC1CcEF3e1735bdA3F4BA698e8a524AA7c93274,
        0x59Fc9b09134cAf06eC444d10Ba01D7999f26252b,
        0xbe2909813f6F850af99C8b968febF6eb884F1454,
        0x14aE683317D9d27957F56C78e9308E7D54BC3b36,
        0xe8000117B9fcAA0612D0bB872846eBA74F9AA43D,
        0xEE9c816B1FB76DCeE3c82777D7253678B7F8BEdf,
        0x15259752Ba5e5708657B2659Aacb543f101D3355,
        0x082ed91C65EcbA6Ac147B115f661B1c7b584D23C,
        0xd3022599033430bF3fDFb6D9CE41D3CdA7E20245,
        0xd1fFdA9C225DDEE34f0837BF4D4a441bDd54C473,
        0x7dE1f5eB781edc662472436eEBc09d331FB73261,
        0x7f64d79293b8eaB2ad215AA17EEc4733abAA9e62,
        0x2434f861cd062A403FfafcC616DeDc81f378b72a,
        0x1e252b86616D5ee310b9676977f392b0E84D193F,
        0xeBf7c4FCA7318df6ca17cAC473C96F71Fc7704b9,
        0xfF9Cfb8eD63fFB4A15e1bDF0451F073155Fd0aa0,
        0x3a647b4e245EE3Ec5dfe76fd97FF8f8f367B454B,
        0x4f960d763e2d153299F310432fD8e16F75cc9BCa,
        0x284F3268d61e07337b6bB461E9994F678b543b10,
        0x48513224a50C339d23484c9cd4A95DaB5a9e8862,
        0x9902f56BA1054a3025cedaD37654e86512614Af1,
        0x8715538b1f9f0402F9175CDc0762bA61A1C35940,
        0x2c8694832425742A9445f4896A8897fd8A603251,
        0x965E0B3CE256AFB883c4320789d9FddFc51a0AAE,
        0xc5912457428bF9dd878F4AFEcC62B52AE977f887,
        0x9Faa6b1a8a24701725452262CdcB24C9bDE10efa,
        0xB2082914a908a91194B3Ad50e5aEe2e7FB77D435,
        0xD50212833C9a1d7be8255744aC0eBabCC3C42eFD,
        0xE284A94E532509b99cBDE842a698DC38444bA93E,
        0x9902f56BA1054a3025cedaD37654e86512614Af1,
        0x6B4Fc8B4c1F60203bd7bE84D85bf8AC6156E2e3f,
        0xC38a2306a8bdC16353a283cEC840BbBd5BDf8799,
        0xb07BE2f3B41cAF8eBbb911b3786D5Ba9B7aE057e,
        0xfd45BA41CFB3FC218565a197405f427c8c65de4a,
        0xFAa5D029D4085C604F2CEb8A7a028c22e7398Be3,
        0x3C045d92B7c3bb83E2018e2e296F6A0BC0E2eB07,
        0x821B6535AA02082a54F35aDaDb8ff2bFd7baFBEB,
        0xf5A7a63c642f7E852569A4D1FA546bE587C3322d,
        0x3A2Ae8c069C0e8D2b41f5A02A4e1779de3FECFc5,
        0x446199dDE35B1D567894B022b1FB86eF13F4001B,
        0x4856b9bcb8c467CCd18B920bDE1673c49855cFdf,
        0x4c6AB491dE3cdE727D931C079348E700EA675472,
        0x4ff08d6Cb961A322e629d4d05b35D548945EfD21,
        0x5Af514bC61f2dEB8209F5EC01281fD58FaA0fe04,
        0x725A4e8a6687a29F706519584532CB0f1a516430,
        0x74961A235B2A402C2Ce571Fa4b38b2dD6b73Db30,
        0x8ab83D869f2Bc250b781D26F6584fd5c562FdD9D,
        0x8d47F71ae25A18dE8d091C8DeE92b1B4be0Bb590,
        0x90214F4d26157CE4bAdf22786Fed2dF45D69d1Ff,
        0x95dD010D54Efb6B4fcD040dBBd93eeE8f2acc7a2,
        0xA3264a6B18b0e43DA9C7C235B5434294C2f9B10D,
        0xa3c5eB3724205D9b134eAE56618C6f69cA57c951,
        0xa6a15056f8DA65E91776bfcDb831eCA37E067133,
        0xAbC5371f421F5b9f1B02Aa1f9756787Fd3dEA6E4,
        0xf45D07e683caE570D56300A108A6D6B1E7F1Dc79,
        0xf5962Dd1cfb95Bd15a598b721091B373FcF1e3D1,
        0xf75E2e45233c6B4aBd0a48984d280228E620E7e4,
        0xD19B33D31c4A654578ECB16163C6e2F1138f5892,
        0xE85A3ec4CC1efB0069c638e57216b8fC478be6D6,
        0x272BD5A3760Ec5C195b872fAd4B6b3e5A142c575,
        0x09EA2FE741AE319207c68738A3275E61ff56Fb96,
        0xdFBB06683a882E827907422dbFE836E5430fE2aC,
        0x7cB0393740204B1034E58Fddd1580563B6f3c0a3,
        0x56348fe5080930CD48aC1E71E9b18CbbDB953B86,
        0x8D16e6AF9faa28277B4fef9F7225ab1642a7dC8E,
        0x7cc4E967242E1CaD92152d47AE0bB9169e97d553,
        0xf4680C0A183f7f0F6a5bb060550140688Bc41042,
        0xe9e75190a114E779a27cF5522dd480b90d703A1A,
        0xC727D9b5Ab6548890A888A3CC68e0b66eE99030A,
        0x84cD3038b7b2983E582092cd4e48761d37BE4348
    ];
  }

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

  // public
  function mint(uint256 _mintAmount) public payable {
    uint256 supply = totalSupply();
    require(!paused);
    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount);
    require(supply + _mintAmount <= maxSupply);

    if (msg.sender != owner()) {
      require(msg.value >= cost * _mintAmount);
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(msg.sender, supply + i);
    }
  }

  /**
    * @dev Public function for verifying whitelist eligibility
    * Called in whitelistMint function
    * @param _to verifies the address as eligible for whitelist
   */
   function whitelistEligible(address _to) public view returns (bool) {
       for (uint i=0; i < whitelist.length; i++) {
           if (whitelist[i] == _to) {
               return true;
           }
       }
       return false;
   }



  /**
    * @dev Public function for purchasing presale {num} tokens. Requires whitelistEligible()
    * Calls _safeMint() for minting process
    * @param _mintAmount is the number of NFTs minted (Max is stored in public uint maxMintAmount)
   */
   function whitelistMint(uint256 _mintAmount) public payable {
       uint256 supply = totalSupply();
       require(!whitelistPaused);
       require(whitelistEligible(msg.sender));
       require(_mintAmount <= maxMintAmount);
       require(supply + _mintAmount <= maxSupply);

       if (msg.sender != owner()) {
        require(msg.value >= cost * _mintAmount);
        }

        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(msg.sender, supply + i);
        }
   }




  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

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

  //only owner
  function reveal() public onlyOwner {
      revealed = true;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }
  
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }

  function pauseWL(bool _wlState) public onlyOwner {
    whitelistPaused = _wlState;
  }

  function pushWL(address _to) public onlyOwner {
      whitelist.push(_to);
  }
 
  function withdraw() public payable onlyOwner {
    // This will payout the owner 100% of the contract balance.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
    // =============================================================================
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_wlState","type":"bool"}],"name":"pauseWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"pushWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelist","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"whitelistEligible","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062001817565b5067011c37937e080000600d556122b8600e556014600f556010805462ffffff1916620101011790553480156200005e57600080fd5b5060405162004213380380620042138339810160408190526200008191620019cc565b8351849084906200009a90600090602085019062001817565b508051620000b090600190602084019062001817565b505050620000cd620000c7620016fe60201b60201c565b62001702565b620000d88262001754565b620000e381620017bc565b60408051611aa08101825273a327a16b71ba107393e0dc046b0be0908aa667ad8152736cc0d7791db228b66c190462ea19fca92aa1f25f602082015273c3250be2f664db7b423973adfd400e4c5541a445918101829052739311d45341b284900711f9bc155ce2e381248c29606082015273b4103329230db58ea6e2480e4022b577833600df6080820152738f1ca5ff845ad2b2527686bc62c3145b9233153160a0820152738da15f7e6bf20eae393d0210d0f69ea98fc8ea5e60c0820152738791c9057566af6f55f18fdbea4465e1b1ee2f8e60e08201527308fca0c57fec5cf118a5bb1474b3df7942ab877f61010082015273fda54b47e5d4762bb43fc282d33279cfd1b2026c61012082015273fc9e2cf27dad13b149dd476eeed2b46e061a1a6d610140820152737ea9b8ba0d889ba42458f657ed27244ad593dfe7610160820152730929a4109e7bfd43270aa3c84084168dce2a2955610180820152739829335c360932cb6c17e5a51836de33a0ae30ef6101a082015273c7d47d1f5357ae5e61bca9c6d287df6c5115c4156101c082015273dec096f829aac7bf4b9d927903ef08f51de34a216101e08201527361ba11a8e0c7005767929c6781a8d3f322c2886d61020082015273954e128f3e3d85ba3adafb9d53e7c060833e2bb0610220820152735a7ffe8a96d7abfbbe3b4a239130515f7d2e0ec061024082015273bf9fda32692b25c6083cbe48399ef019b62f071261026082015273d87e0f3f988c2f271cdb2019381b47ab571154146102808201527352a8d97577983706f91eca67513a3412f155a1666102a082015273a516bb97dbc89832e9aa02ea420e63a67ee2ce536102c082018190527360ee37531ab136232c8736759f65228129da7a916102e0830152734575890793ac619ac4e5b6f3849beef5f1e8d92861030083015273341d13b93a9e6ec3b9b2b5c3ee7747d6ec95cf6961032083015273062f08f9999a2aeb8235bb5fb4b0321c5f6af10f6103408301526103608201929092527310fbec46f97087503b7c535ba645f33ef1eb692f6103808201527380cfaf6273eb4c5537914ff492c9a7ff72deb4336103a0820152737919a9c5961d895cda921f6e0396e40a3d6f7e516103c08201527348e31c1048f50ae93d3db523129aafc9de2b2b526103e082015273472c4d5ee8b29664a09940e20f2bc871e2b61a066104008201527329104975057c20062596fb755047c1c9fb59daae61042082015273407303a3d2c34196ea610911688472c3a223f51b6104408201527397061119a6d30432b0cbd2a28cda2fe8f109e710610460820152736d9ed472da62b604ed479026185995889ae8f80e610480820152730f17ac7a5f4d6a9b1c5876e98bcff33ddf33905a6104a08201527317e1ac278b39822ae6b1c8a25b7938ad4672edc76104c0820152736fec6cb90d4bc025d5249f299d640d66fcbfb6eb6104e082015273b464ca834796272e08dc6460940b281b046a2cee61050082015273337cfb6e0466977c6419d5dca8fa8b82904787b1610520820152731482a191208754d05b69c89f499995fc89e4397c610540820152734291156c56f09d7e30b33cea68bf745dfd475c2461056082015273b0c4c6a91a9ed11a89a1ef69de09a3254d6d87e26105808201819052739996b0883179b9f27c20bdcb565a041dbca2eebe6105a083015273fdd6d56486b6a1c1cbfc1a1f6ce2573875daa7df6105c083015273744f7738bf3a9446e300fd4e04af8a2dab1098b56105e083015273649cbf9adb764ac365960ee3e43457c4aab5c3196106008301527355bea373713d08023659caa997e2cc282e9b786e61062083015273a10902c668bf73de06471adef3e47cf56f00602b61064083015273ac72bcf83a55713a49a08420477fdf6f3c9b50fe61066083015273fc8553a7bb0bbb9a7642acef2224205334c8ddc061068083015273ea921acfe2d96d30690e06b5d4d64be6e1192ce66106a0830152733d8a60d69e4ce4150177b0b77cb9ac093fcc2c436106c083015273476799eaf7a58a7a8ebea73a15fc2b7b834151a46106e083015273d7c85b73f7dfb9ce969025ac931f9c7f17e82caa610700830152739ca3ac1637680879cdcaca85d5e25422c05eb9f8610720830152738068bd398396b060d820745fde9c545a38bb776d61074083015273ce78550a045441905bceb92c378f67574211439d61076083015273815e969a2bf9a910a09ec5a88ec78bdc90e7957d61078083015273057c416df3ce3bd89e86a1fb764b106698048fe76107a083015273182b32912d74a620124f7bdc13f6da38c5dbe8cf6107c0830152736c134832ba6b733419e27413176d2cf6850754016107e083015261080082019290925273d827eb2673d3dc1a7f886413f6f0950ec2fbbc98610820820152734892cfe386f14cf8640f6ca124e0f97dc1b7af5761084082015273f33fd427e695b63c81f238b5d8ea75aea31d15a4610860820152732694e8fd3b504ea897e94391a78f921ab025070361088082015273607054b35f06c5b5224a5922b214c33d163f4d906108a0820152731aa963e68cfde4dab1df1e15e70b2bb4103c48486108c082015273b71b2ecc3daa289452d6ff3b34ef2f56433375056108e082015273dfdf2d882d9ebce6c7eac3da9ab66cbfda26378161090082015261092081019190915273b17c020bb54b2329dddcd23c668f2e70897fd7a761094082015273e12d5e83441614303772c851040eddf12f4e1a9e61096082015273281a0ec0a602eb9c9b92a6711941f9d8e93fbb0f61098082015273fb7ac89d730dc18f2fbd86ffc91ad47284d504f46109a082015273d9d748a8f2927decc92a8e01b732bf4a056c68686109c082015273c29249be70ca601934c8250373203ac03c01c3b36109e08201527326bd2f2931e0857d7e749ed4a4a6ecfed9adc159610a008201527376d6c95df6be289e18c5a682dcc4263ec6dba53f610a2082015273c9d8d69a74f2f32f7294d242c7272aa873167b22610a4082015273ad03756c766b32e1acefaa28e77d158892b580a6610a6082015273e96db623c2ce30f65171f5fc487127748d1065c6610a80820152732f8d8846c376bc842cd9b904c9b505e39a6c54dc610aa0820152738c702a9a6e0cd14a53251c630743c4f5327edde8610ac0820152736049ceaa510d5e7585a4d7fa6c102c1bdaaabace610ae0820152732aefc99091420218de94d8b446d29f08189a3b0c610b00820152736b615390f73eae2b20c81ab17abfe8be7ff57523610b208201527324b0842f31748c7c9ed0e69261f5e3578a24d8e1610b4082015273ff87a8c90595171d06c92d6926dbbf43777cf7a3610b6082015273b2082914a908a91194b3ad50e5aee2e7fb77d435610b80820181905273e800d3401ce4da88d738df0502f5ccd5d1e63083610ba0830152730908823204a6044981b22d636d15b2a4a1916b3e610bc0830152731fc7a92b67317cbf8124037bd3a137fcf9ee61e1610be083015273b4b81b693f322f6dadac99c9de4366970e99f6d8610c0083015273e4e45993cc1718dfb1b7db2bc72ac10f0737e74a610c2083015273b960665d4e601063df28c9067c0d925069cf9142610c4083015273116c2978b393453d6c2cb5f6ab282f898b8bc128610c60830152730634e57c875d6cc0037fa5174e8baf602ebe8344610c8083015273b06716762d95080ef63b74fced62f541a48cd660610ca083015273dafaa782bcd1d519e7374a8d4a33be8809d2023b610cc083015273afa47c5911dc32a9047e983c20e3860c2f303592610ce08301527359f14a2f59f6d10ac77ba67576ebe37eda56a064610d00830152736d65aca6c7e880218a26e324e62422743d845316610d20830152730b0e6e7235d67e35ea8d736766088a28c1985afc610d40830152732d1e7b6e6284409e16991de76d2a82847a7d61c5610d6083015273788c1702d8e34ec11cbc99beadc4d3e2d50f89e2610d80830152736cf313f417937c6ca5ac85b4efb4175fba397c7e610da083015273bf45d67779793c5e2387609e497a051e2906c383610dc083015273887f4ae78d3f2219998b75bc8fc2c9d9673a942a610de08301527339bbfc85f0b4bffef053cf5ef31c70b0c9b5dc9b610e00830152734ecf5bc9a031bf984d2a00d3f9eef0ba6c7f692c610e2083015273069d3e170f6a0aa557ef97342bab3063f77c58db610e40830152730ed1f069a895a94ef6866979fdd71f556024d018610e608301527306c650e7d03ed5b82ab2a69297888b108e1b0cd1610e8083015273bbc3d8108069b10a5859a08f31d140b9f357f73f610ea0830152733c045d92b7c3bb83e2018e2e296f6a0bc0e2eb07610ec083018190527393e266b9a1534ace15314a35d2e8369c30c4f81e610ee084015273d83577256002e1f54ce8536f1510e175e7d1db17610f00840152732c8d2e50ee03f98a2f4ccfbe1a61552b79bdf6fa610f2084015273bed050c15224a53a12815fa79f2b1ef431887eb2610f40840181905273383234d747497f8e3e0c485f66f52b19227727a6610f608501527356ff22798ab380616380eb5af6d055ac91f4b114610f808501527353afdcd8197a9fef79729f2d6aee5954aec1e0d3610fa08501527369774a09ca3e16421712e472dcd16a0a98c330df610fc085015273379cadab8f98bf10121e2e9b7fc02ca802345e8b610fe085015273476e8c784cb487ba1532907556e47ab960f5d13761100085015273d952f25a26404e6c1d3e320c7116fc444296a2e7611020850152731f124970a7724f0c4a9159498824d505fde6f9aa611040850152731a2cfb4e1ed487c94621c4c8cd73889679d096316110608501527343a76b029edcde8e7fc64a8bb0e240b0e642aaeb61108085015273eb6f552540468e7e3fcb0aa036c1e71076b67e2c6110a0850152734dfc3f37a5cee7ea111e65d35ecfe61fdd10fbc56110c08501526110e084015273aac21bb3608d996793e256c0e72305f6a4e2185d61110084015273626c19c0edac14d34f84e99005c28cfa2fb2505b611120840152735c30755fb63e910200016a9be44652f20b8d016461114084015273f33364a83b6002d5070ec5fa31f5d9eb93572732611160840152734f8c2d5397262653cd8956cb977a0ba3660210c7611180840152731dca1f25e29ff5c35bfb4a6e39ff872bf717945b6111a08401527394ff6a83a067cc9e6a4c0767792beda781a163756111c0840152731ec1ccef3e1735bda3f4ba698e8a524aa7c932746111e08401527359fc9b09134caf06ec444d10ba01d7999f26252b61120084015273be2909813f6f850af99c8b968febf6eb884f14546112208401527314ae683317d9d27957f56c78e9308e7d54bc3b3661124084015273e8000117b9fcaa0612d0bb872846eba74f9aa43d61126084015273ee9c816b1fb76dcee3c82777d7253678b7f8bedf6112808401527315259752ba5e5708657b2659aacb543f101d33556112a084015273082ed91c65ecba6ac147b115f661b1c7b584d23c6112c084015273d3022599033430bf3fdfb6d9ce41d3cda7e202456112e084015273d1ffda9c225ddee34f0837bf4d4a441bdd54c473611300840152737de1f5eb781edc662472436eebc09d331fb73261611320840152737f64d79293b8eab2ad215aa17eec4733abaa9e62611340840152732434f861cd062a403ffafcc616dedc81f378b72a611360840152731e252b86616d5ee310b9676977f392b0e84d193f61138084015273ebf7c4fca7318df6ca17cac473c96f71fc7704b96113a084015273ff9cfb8ed63ffb4a15e1bdf0451f073155fd0aa06113c0840152733a647b4e245ee3ec5dfe76fd97ff8f8f367b454b6113e0840152734f960d763e2d153299f310432fd8e16f75cc9bca61140084015273284f3268d61e07337b6bb461e9994f678b543b106114208401527348513224a50c339d23484c9cd4a95dab5a9e8862611440840152739902f56ba1054a3025cedad37654e86512614af16114608401819052738715538b1f9f0402f9175cdc0762ba61a1c35940611480850152732c8694832425742a9445f4896a8897fd8a6032516114a085015273965e0b3ce256afb883c4320789d9fddfc51a0aae6114c085015273c5912457428bf9dd878f4afecc62b52ae977f8876114e0850152739faa6b1a8a24701725452262cdcb24c9bde10efa61150085015261152084019290925273d50212833c9a1d7be8255744ac0ebabcc3c42efd61154084015273e284a94e532509b99cbde842a698dc38444ba93e611560840152611580830191909152736b4fc8b4c1f60203bd7be84d85bf8ac6156e2e3f6115a083015273c38a2306a8bdc16353a283cec840bbbd5bdf87996115c083015273b07be2f3b41caf8ebbb911b3786d5ba9b7ae057e6115e083015273fd45ba41cfb3fc218565a197405f427c8c65de4a61160083015273faa5d029d4085c604f2ceb8a7a028c22e7398be361162083015261164082015273821b6535aa02082a54f35adadb8ff2bfd7bafbeb61166082015273f5a7a63c642f7e852569a4d1fa546be587c3322d611680820152733a2ae8c069c0e8d2b41f5a02a4e1779de3fecfc56116a082015273446199dde35b1d567894b022b1fb86ef13f4001b6116c0820152734856b9bcb8c467ccd18b920bde1673c49855cfdf6116e0820152734c6ab491de3cde727d931c079348e700ea675472611700820152734ff08d6cb961a322e629d4d05b35d548945efd21611720820152735af514bc61f2deb8209f5ec01281fd58faa0fe0461174082015273725a4e8a6687a29f706519584532cb0f1a5164306117608201527374961a235b2a402c2ce571fa4b38b2dd6b73db30611780820152738ab83d869f2bc250b781d26f6584fd5c562fdd9d6117a0820152738d47f71ae25a18de8d091c8dee92b1b4be0bb5906117c08201527390214f4d26157ce4badf22786fed2df45d69d1ff6117e08201527395dd010d54efb6b4fcd040dbbd93eee8f2acc7a261180082015273a3264a6b18b0e43da9c7c235b5434294c2f9b10d61182082015273a3c5eb3724205d9b134eae56618c6f69ca57c95161184082015273a6a15056f8da65e91776bfcdb831eca37e06713361186082015273abc5371f421f5b9f1b02aa1f9756787fd3dea6e461188082015273f45d07e683cae570d56300a108a6d6b1e7f1dc796118a082015273f5962dd1cfb95bd15a598b721091b373fcf1e3d16118c082015273f75e2e45233c6b4abd0a48984d280228e620e7e46118e082015273d19b33d31c4a654578ecb16163c6e2f1138f589261190082015273e85a3ec4cc1efb0069c638e57216b8fc478be6d661192082015273272bd5a3760ec5c195b872fad4b6b3e5a142c5756119408201527309ea2fe741ae319207c68738a3275e61ff56fb9661196082015273dfbb06683a882e827907422dbfe836e5430fe2ac611980820152737cb0393740204b1034e58fddd1580563b6f3c0a36119a08201527356348fe5080930cd48ac1e71e9b18cbbdb953b866119c0820152738d16e6af9faa28277b4fef9f7225ab1642a7dc8e6119e0820152737cc4e967242e1cad92152d47ae0bb9169e97d553611a0082015273f4680c0a183f7f0f6a5bb060550140688bc41042611a2082015273e9e75190a114e779a27cf5522dd480b90d703a1a611a4082015273c727d9b5ab6548890a888a3cc68e0b66ee99030a611a608201527384cd3038b7b2983e582092cd4e48761d37be4348611a80820152620016f39060129060d5620018a6565b505050505062001ad8565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620017a35760405162461bcd60e51b81526020600482018190526024820152600080516020620041f383398151915260448201526064015b60405180910390fd5b8051620017b890600b90602084019062001817565b5050565b600a546001600160a01b03163314620018075760405162461bcd60e51b81526020600482018190526024820152600080516020620041f383398151915260448201526064016200179a565b8051620017b89060119060208401905b828054620018259062001a85565b90600052602060002090601f01602090048101928262001849576000855562001894565b82601f106200186457805160ff191683800117855562001894565b8280016001018555821562001894579182015b828111156200189457825182559160200191906001019062001877565b50620018a2929150620018fe565b5090565b82805482825590600052602060002090810192821562001894579160200282015b828111156200189457825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620018c7565b5b80821115620018a25760008155600101620018ff565b600082601f8301126200192757600080fd5b81516001600160401b038082111562001944576200194462001ac2565b604051601f8301601f19908116603f011681019082821181831017156200196f576200196f62001ac2565b816040528381526020925086838588010111156200198c57600080fd5b600091505b83821015620019b0578582018301518183018401529082019062001991565b83821115620019c25760008385830101525b9695505050505050565b60008060008060808587031215620019e357600080fd5b84516001600160401b0380821115620019fb57600080fd5b62001a098883890162001915565b9550602087015191508082111562001a2057600080fd5b62001a2e8883890162001915565b9450604087015191508082111562001a4557600080fd5b62001a538883890162001915565b9350606087015191508082111562001a6a57600080fd5b5062001a798782880162001915565b91505092959194509250565b600181811c9082168062001a9a57607f821691505b6020821081141562001abc57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61270b8062001ae86000396000f3fe6080604052600436106102515760003560e01c806361e61a2511610139578063a22cb465116100b6578063c87b56dd1161007a578063c87b56dd14610691578063d5abeb01146106b1578063da3ef23f146106c7578063e985e9c5146106e7578063f2c4ce1e14610730578063f2fde38b1461075057600080fd5b8063a22cb46514610607578063a475b5dd14610627578063b34b31021461063c578063b88d4fde1461065c578063c66828621461067c57600080fd5b80637f00c7a6116100fd5780637f00c7a61461058e578063868ff4a2146105ae5780638da5cb5b146105c157806395d89b41146105df578063a0712d68146105f457600080fd5b806361e61a25146104f95780636352211e1461051957806370a0823114610539578063715018a6146105595780637ebd1b301461056e57600080fd5b80632f745c59116101d257806344a0d68a1161019657806344a0d68a14610440578063477bdcb8146104605780634f6ccce71461048057806351830227146104a057806355f804b3146104bf5780635c975abb146104df57600080fd5b80632f745c59146103ab578063345765f9146103cb5780633ccfd60b146103eb57806342842e0e146103f3578063438b63001461041357600080fd5b8063095ea7b311610219578063095ea7b31461031c57806313faede61461033c57806318160ddd14610360578063239c70ae1461037557806323b872dd1461038b57600080fd5b806301ffc9a71461025657806302329a291461028b57806306fdde03146102ad578063081812fc146102cf578063081c8c4414610307575b600080fd5b34801561026257600080fd5b50610276610271366004612261565b610770565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a6366004612246565b61079b565b005b3480156102b957600080fd5b506102c26107e1565b604051610282919061246e565b3480156102db57600080fd5b506102ef6102ea3660046122e4565b610873565b6040516001600160a01b039091168152602001610282565b34801561031357600080fd5b506102c2610908565b34801561032857600080fd5b506102ab61033736600461221c565b610996565b34801561034857600080fd5b50610352600d5481565b604051908152602001610282565b34801561036c57600080fd5b50600854610352565b34801561038157600080fd5b50610352600f5481565b34801561039757600080fd5b506102ab6103a636600461213a565b610aac565b3480156103b757600080fd5b506103526103c636600461221c565b610add565b3480156103d757600080fd5b506102ab6103e6366004612246565b610b73565b6102ab610bb9565b3480156103ff57600080fd5b506102ab61040e36600461213a565b610c57565b34801561041f57600080fd5b5061043361042e3660046120ec565b610c72565b604051610282919061242a565b34801561044c57600080fd5b506102ab61045b3660046122e4565b610d14565b34801561046c57600080fd5b506102ab61047b3660046120ec565b610d43565b34801561048c57600080fd5b5061035261049b3660046122e4565b610dbf565b3480156104ac57600080fd5b5060105461027690610100900460ff1681565b3480156104cb57600080fd5b506102ab6104da36600461229b565b610e52565b3480156104eb57600080fd5b506010546102769060ff1681565b34801561050557600080fd5b506010546102769062010000900460ff1681565b34801561052557600080fd5b506102ef6105343660046122e4565b610e93565b34801561054557600080fd5b506103526105543660046120ec565b610f0a565b34801561056557600080fd5b506102ab610f91565b34801561057a57600080fd5b506102ef6105893660046122e4565b610fc7565b34801561059a57600080fd5b506102ab6105a93660046122e4565b610ff1565b6102ab6105bc3660046122e4565b611020565b3480156105cd57600080fd5b50600a546001600160a01b03166102ef565b3480156105eb57600080fd5b506102c26110d8565b6102ab6106023660046122e4565b6110e7565b34801561061357600080fd5b506102ab6106223660046121f2565b61118f565b34801561063357600080fd5b506102ab611254565b34801561064857600080fd5b506102766106573660046120ec565b61128f565b34801561066857600080fd5b506102ab610677366004612176565b6112f9565b34801561068857600080fd5b506102c2611331565b34801561069d57600080fd5b506102c26106ac3660046122e4565b61133e565b3480156106bd57600080fd5b50610352600e5481565b3480156106d357600080fd5b506102ab6106e236600461229b565b6114bd565b3480156106f357600080fd5b50610276610702366004612107565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561073c57600080fd5b506102ab61074b36600461229b565b6114fa565b34801561075c57600080fd5b506102ab61076b3660046120ec565b611537565b60006001600160e01b0319821663780e9d6360e01b14806107955750610795826115cf565b92915050565b600a546001600160a01b031633146107ce5760405162461bcd60e51b81526004016107c5906124d3565b60405180910390fd5b6010805460ff1916911515919091179055565b6060600080546107f0906125e7565b80601f016020809104026020016040519081016040528092919081815260200182805461081c906125e7565b80156108695780601f1061083e57610100808354040283529160200191610869565b820191906000526020600020905b81548152906001019060200180831161084c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108ec5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107c5565b506000908152600460205260409020546001600160a01b031690565b60118054610915906125e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610941906125e7565b801561098e5780601f106109635761010080835404028352916020019161098e565b820191906000526020600020905b81548152906001019060200180831161097157829003601f168201915b505050505081565b60006109a182610e93565b9050806001600160a01b0316836001600160a01b03161415610a0f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107c5565b336001600160a01b0382161480610a2b5750610a2b8133610702565b610a9d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107c5565b610aa7838361161f565b505050565b610ab6338261168d565b610ad25760405162461bcd60e51b81526004016107c590612508565b610aa7838383611784565b6000610ae883610f0a565b8210610b4a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107c5565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610b9d5760405162461bcd60e51b81526004016107c5906124d3565b60108054911515620100000262ff000019909216919091179055565b600a546001600160a01b03163314610be35760405162461bcd60e51b81526004016107c5906124d3565b6000610bf7600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c41576040519150601f19603f3d011682016040523d82523d6000602084013e610c46565b606091505b5050905080610c5457600080fd5b50565b610aa7838383604051806020016040528060008152506112f9565b60606000610c7f83610f0a565b905060008167ffffffffffffffff811115610c9c57610c9c6126a9565b604051908082528060200260200182016040528015610cc5578160200160208202803683370190505b50905060005b82811015610d0c57610cdd8582610add565b828281518110610cef57610cef612693565b602090810291909101015280610d0481612622565b915050610ccb565b509392505050565b600a546001600160a01b03163314610d3e5760405162461bcd60e51b81526004016107c5906124d3565b600d55565b600a546001600160a01b03163314610d6d5760405162461bcd60e51b81526004016107c5906124d3565b601280546001810182556000919091527fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34440180546001600160a01b0319166001600160a01b0392909216919091179055565b6000610dca60085490565b8210610e2d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107c5565b60088281548110610e4057610e40612693565b90600052602060002001549050919050565b600a546001600160a01b03163314610e7c5760405162461bcd60e51b81526004016107c5906124d3565b8051610e8f90600b906020840190611fb1565b5050565b6000818152600260205260408120546001600160a01b0316806107955760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107c5565b60006001600160a01b038216610f755760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107c5565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610fbb5760405162461bcd60e51b81526004016107c5906124d3565b610fc5600061192f565b565b60128181548110610fd757600080fd5b6000918252602090912001546001600160a01b0316905081565b600a546001600160a01b0316331461101b5760405162461bcd60e51b81526004016107c5906124d3565b600f55565b600061102b60085490565b60105490915062010000900460ff161561104457600080fd5b61104d3361128f565b61105657600080fd5b600f5482111561106557600080fd5b600e546110728383612559565b111561107d57600080fd5b600a546001600160a01b031633146110a95781600d5461109d9190612585565b3410156110a957600080fd5b60015b828111610aa7576110c6336110c18385612559565b611981565b806110d081612622565b9150506110ac565b6060600180546107f0906125e7565b60006110f260085490565b60105490915060ff161561110557600080fd5b6000821161111257600080fd5b600f5482111561112157600080fd5b600e5461112e8383612559565b111561113957600080fd5b600a546001600160a01b031633146111655781600d546111599190612585565b34101561116557600080fd5b60015b828111610aa75761117d336110c18385612559565b8061118781612622565b915050611168565b6001600160a01b0382163314156111e85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107c5565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331461127e5760405162461bcd60e51b81526004016107c5906124d3565b6010805461ff001916610100179055565b6000805b6012548110156112f057826001600160a01b0316601282815481106112ba576112ba612693565b6000918252602090912001546001600160a01b031614156112de5750600192915050565b806112e881612622565b915050611293565b50600092915050565b611303338361168d565b61131f5760405162461bcd60e51b81526004016107c590612508565b61132b8484848461199b565b50505050565b600c8054610915906125e7565b6000818152600260205260409020546060906001600160a01b03166113bd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107c5565b601054610100900460ff1661145e57601180546113d9906125e7565b80601f0160208091040260200160405190810160405280929190818152602001828054611405906125e7565b80156114525780601f1061142757610100808354040283529160200191611452565b820191906000526020600020905b81548152906001019060200180831161143557829003601f168201915b50505050509050919050565b60006114686119ce565b9050600081511161148857604051806020016040528060008152506114b6565b80611492846119dd565b600c6040516020016114a693929190612329565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146114e75760405162461bcd60e51b81526004016107c5906124d3565b8051610e8f90600c906020840190611fb1565b600a546001600160a01b031633146115245760405162461bcd60e51b81526004016107c5906124d3565b8051610e8f906011906020840190611fb1565b600a546001600160a01b031633146115615760405162461bcd60e51b81526004016107c5906124d3565b6001600160a01b0381166115c65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107c5565b610c548161192f565b60006001600160e01b031982166380ac58cd60e01b148061160057506001600160e01b03198216635b5e139f60e01b145b8061079557506301ffc9a760e01b6001600160e01b0319831614610795565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061165482610e93565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117065760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107c5565b600061171183610e93565b9050806001600160a01b0316846001600160a01b0316148061174c5750836001600160a01b031661174184610873565b6001600160a01b0316145b8061177c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661179782610e93565b6001600160a01b0316146117ff5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107c5565b6001600160a01b0382166118615760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107c5565b61186c838383611adb565b61187760008261161f565b6001600160a01b03831660009081526003602052604081208054600192906118a09084906125a4565b90915550506001600160a01b03821660009081526003602052604081208054600192906118ce908490612559565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610e8f828260405180602001604052806000815250611b93565b6119a6848484611784565b6119b284848484611bc6565b61132b5760405162461bcd60e51b81526004016107c590612481565b6060600b80546107f0906125e7565b606081611a015750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a2b5780611a1581612622565b9150611a249050600a83612571565b9150611a05565b60008167ffffffffffffffff811115611a4657611a466126a9565b6040519080825280601f01601f191660200182016040528015611a70576020820181803683370190505b5090505b841561177c57611a856001836125a4565b9150611a92600a8661263d565b611a9d906030612559565b60f81b818381518110611ab257611ab2612693565b60200101906001600160f81b031916908160001a905350611ad4600a86612571565b9450611a74565b6001600160a01b038316611b3657611b3181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b59565b816001600160a01b0316836001600160a01b031614611b5957611b598382611cd3565b6001600160a01b038216611b7057610aa781611d70565b826001600160a01b0316826001600160a01b031614610aa757610aa78282611e1f565b611b9d8383611e63565b611baa6000848484611bc6565b610aa75760405162461bcd60e51b81526004016107c590612481565b60006001600160a01b0384163b15611cc857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c0a9033908990889088906004016123ed565b602060405180830381600087803b158015611c2457600080fd5b505af1925050508015611c54575060408051601f3d908101601f19168201909252611c519181019061227e565b60015b611cae573d808015611c82576040519150601f19603f3d011682016040523d82523d6000602084013e611c87565b606091505b508051611ca65760405162461bcd60e51b81526004016107c590612481565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061177c565b506001949350505050565b60006001611ce084610f0a565b611cea91906125a4565b600083815260076020526040902054909150808214611d3d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d82906001906125a4565b60008381526009602052604081205460088054939450909284908110611daa57611daa612693565b906000526020600020015490508060088381548110611dcb57611dcb612693565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e0357611e0361267d565b6001900381819060005260206000200160009055905550505050565b6000611e2a83610f0a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611eb95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107c5565b6000818152600260205260409020546001600160a01b031615611f1e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107c5565b611f2a60008383611adb565b6001600160a01b0382166000908152600360205260408120805460019290611f53908490612559565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611fbd906125e7565b90600052602060002090601f016020900481019282611fdf5760008555612025565b82601f10611ff857805160ff1916838001178555612025565b82800160010185558215612025579182015b8281111561202557825182559160200191906001019061200a565b50612031929150612035565b5090565b5b808211156120315760008155600101612036565b600067ffffffffffffffff80841115612065576120656126a9565b604051601f8501601f19908116603f0116810190828211818310171561208d5761208d6126a9565b816040528093508581528686860111156120a657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146120d757600080fd5b919050565b803580151581146120d757600080fd5b6000602082840312156120fe57600080fd5b6114b6826120c0565b6000806040838503121561211a57600080fd5b612123836120c0565b9150612131602084016120c0565b90509250929050565b60008060006060848603121561214f57600080fd5b612158846120c0565b9250612166602085016120c0565b9150604084013590509250925092565b6000806000806080858703121561218c57600080fd5b612195856120c0565b93506121a3602086016120c0565b925060408501359150606085013567ffffffffffffffff8111156121c657600080fd5b8501601f810187136121d757600080fd5b6121e68782356020840161204a565b91505092959194509250565b6000806040838503121561220557600080fd5b61220e836120c0565b9150612131602084016120dc565b6000806040838503121561222f57600080fd5b612238836120c0565b946020939093013593505050565b60006020828403121561225857600080fd5b6114b6826120dc565b60006020828403121561227357600080fd5b81356114b6816126bf565b60006020828403121561229057600080fd5b81516114b6816126bf565b6000602082840312156122ad57600080fd5b813567ffffffffffffffff8111156122c457600080fd5b8201601f810184136122d557600080fd5b61177c8482356020840161204a565b6000602082840312156122f657600080fd5b5035919050565b600081518084526123158160208601602086016125bb565b601f01601f19169290920160200192915050565b60008451602061233c8285838a016125bb565b85519184019161234f8184848a016125bb565b8554920191600090600181811c908083168061236c57607f831692505b85831081141561238a57634e487b7160e01b85526022600452602485fd5b80801561239e57600181146123af576123dc565b60ff198516885283880195506123dc565b60008b81526020902060005b858110156123d45781548a8201529084019088016123bb565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612420908301846122fd565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561246257835183529284019291840191600101612446565b50909695505050505050565b6020815260006114b660208301846122fd565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561256c5761256c612651565b500190565b60008261258057612580612667565b500490565b600081600019048311821515161561259f5761259f612651565b500290565b6000828210156125b6576125b6612651565b500390565b60005b838110156125d65781810151838201526020016125be565b8381111561132b5750506000910152565b600181811c908216806125fb57607f821691505b6020821081141561261c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561263657612636612651565b5060010190565b60008261264c5761264c612667565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c5457600080fdfea2646970667358221220552f815d6ea53949b2ae45a9e5f61e75aa8695d3b4ecdf3e3a5ced7c4c70c91a64736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000094661742043686f79730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000443484f59000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6269714d71505a3348355147643179726e787073714855684c7238524e6e767339693377676d5a69503173482f00000000000000000000000000000000000000000000000000000000000000000000000000000000003c697066733a2f2f516d6269714d71505a3348355147643179726e787073714855684c7238524e6e767339693377676d5a69503173482f312e6a736f6e00000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c806361e61a2511610139578063a22cb465116100b6578063c87b56dd1161007a578063c87b56dd14610691578063d5abeb01146106b1578063da3ef23f146106c7578063e985e9c5146106e7578063f2c4ce1e14610730578063f2fde38b1461075057600080fd5b8063a22cb46514610607578063a475b5dd14610627578063b34b31021461063c578063b88d4fde1461065c578063c66828621461067c57600080fd5b80637f00c7a6116100fd5780637f00c7a61461058e578063868ff4a2146105ae5780638da5cb5b146105c157806395d89b41146105df578063a0712d68146105f457600080fd5b806361e61a25146104f95780636352211e1461051957806370a0823114610539578063715018a6146105595780637ebd1b301461056e57600080fd5b80632f745c59116101d257806344a0d68a1161019657806344a0d68a14610440578063477bdcb8146104605780634f6ccce71461048057806351830227146104a057806355f804b3146104bf5780635c975abb146104df57600080fd5b80632f745c59146103ab578063345765f9146103cb5780633ccfd60b146103eb57806342842e0e146103f3578063438b63001461041357600080fd5b8063095ea7b311610219578063095ea7b31461031c57806313faede61461033c57806318160ddd14610360578063239c70ae1461037557806323b872dd1461038b57600080fd5b806301ffc9a71461025657806302329a291461028b57806306fdde03146102ad578063081812fc146102cf578063081c8c4414610307575b600080fd5b34801561026257600080fd5b50610276610271366004612261565b610770565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a6366004612246565b61079b565b005b3480156102b957600080fd5b506102c26107e1565b604051610282919061246e565b3480156102db57600080fd5b506102ef6102ea3660046122e4565b610873565b6040516001600160a01b039091168152602001610282565b34801561031357600080fd5b506102c2610908565b34801561032857600080fd5b506102ab61033736600461221c565b610996565b34801561034857600080fd5b50610352600d5481565b604051908152602001610282565b34801561036c57600080fd5b50600854610352565b34801561038157600080fd5b50610352600f5481565b34801561039757600080fd5b506102ab6103a636600461213a565b610aac565b3480156103b757600080fd5b506103526103c636600461221c565b610add565b3480156103d757600080fd5b506102ab6103e6366004612246565b610b73565b6102ab610bb9565b3480156103ff57600080fd5b506102ab61040e36600461213a565b610c57565b34801561041f57600080fd5b5061043361042e3660046120ec565b610c72565b604051610282919061242a565b34801561044c57600080fd5b506102ab61045b3660046122e4565b610d14565b34801561046c57600080fd5b506102ab61047b3660046120ec565b610d43565b34801561048c57600080fd5b5061035261049b3660046122e4565b610dbf565b3480156104ac57600080fd5b5060105461027690610100900460ff1681565b3480156104cb57600080fd5b506102ab6104da36600461229b565b610e52565b3480156104eb57600080fd5b506010546102769060ff1681565b34801561050557600080fd5b506010546102769062010000900460ff1681565b34801561052557600080fd5b506102ef6105343660046122e4565b610e93565b34801561054557600080fd5b506103526105543660046120ec565b610f0a565b34801561056557600080fd5b506102ab610f91565b34801561057a57600080fd5b506102ef6105893660046122e4565b610fc7565b34801561059a57600080fd5b506102ab6105a93660046122e4565b610ff1565b6102ab6105bc3660046122e4565b611020565b3480156105cd57600080fd5b50600a546001600160a01b03166102ef565b3480156105eb57600080fd5b506102c26110d8565b6102ab6106023660046122e4565b6110e7565b34801561061357600080fd5b506102ab6106223660046121f2565b61118f565b34801561063357600080fd5b506102ab611254565b34801561064857600080fd5b506102766106573660046120ec565b61128f565b34801561066857600080fd5b506102ab610677366004612176565b6112f9565b34801561068857600080fd5b506102c2611331565b34801561069d57600080fd5b506102c26106ac3660046122e4565b61133e565b3480156106bd57600080fd5b50610352600e5481565b3480156106d357600080fd5b506102ab6106e236600461229b565b6114bd565b3480156106f357600080fd5b50610276610702366004612107565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561073c57600080fd5b506102ab61074b36600461229b565b6114fa565b34801561075c57600080fd5b506102ab61076b3660046120ec565b611537565b60006001600160e01b0319821663780e9d6360e01b14806107955750610795826115cf565b92915050565b600a546001600160a01b031633146107ce5760405162461bcd60e51b81526004016107c5906124d3565b60405180910390fd5b6010805460ff1916911515919091179055565b6060600080546107f0906125e7565b80601f016020809104026020016040519081016040528092919081815260200182805461081c906125e7565b80156108695780601f1061083e57610100808354040283529160200191610869565b820191906000526020600020905b81548152906001019060200180831161084c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108ec5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107c5565b506000908152600460205260409020546001600160a01b031690565b60118054610915906125e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610941906125e7565b801561098e5780601f106109635761010080835404028352916020019161098e565b820191906000526020600020905b81548152906001019060200180831161097157829003601f168201915b505050505081565b60006109a182610e93565b9050806001600160a01b0316836001600160a01b03161415610a0f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107c5565b336001600160a01b0382161480610a2b5750610a2b8133610702565b610a9d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107c5565b610aa7838361161f565b505050565b610ab6338261168d565b610ad25760405162461bcd60e51b81526004016107c590612508565b610aa7838383611784565b6000610ae883610f0a565b8210610b4a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107c5565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610b9d5760405162461bcd60e51b81526004016107c5906124d3565b60108054911515620100000262ff000019909216919091179055565b600a546001600160a01b03163314610be35760405162461bcd60e51b81526004016107c5906124d3565b6000610bf7600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c41576040519150601f19603f3d011682016040523d82523d6000602084013e610c46565b606091505b5050905080610c5457600080fd5b50565b610aa7838383604051806020016040528060008152506112f9565b60606000610c7f83610f0a565b905060008167ffffffffffffffff811115610c9c57610c9c6126a9565b604051908082528060200260200182016040528015610cc5578160200160208202803683370190505b50905060005b82811015610d0c57610cdd8582610add565b828281518110610cef57610cef612693565b602090810291909101015280610d0481612622565b915050610ccb565b509392505050565b600a546001600160a01b03163314610d3e5760405162461bcd60e51b81526004016107c5906124d3565b600d55565b600a546001600160a01b03163314610d6d5760405162461bcd60e51b81526004016107c5906124d3565b601280546001810182556000919091527fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34440180546001600160a01b0319166001600160a01b0392909216919091179055565b6000610dca60085490565b8210610e2d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107c5565b60088281548110610e4057610e40612693565b90600052602060002001549050919050565b600a546001600160a01b03163314610e7c5760405162461bcd60e51b81526004016107c5906124d3565b8051610e8f90600b906020840190611fb1565b5050565b6000818152600260205260408120546001600160a01b0316806107955760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107c5565b60006001600160a01b038216610f755760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107c5565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610fbb5760405162461bcd60e51b81526004016107c5906124d3565b610fc5600061192f565b565b60128181548110610fd757600080fd5b6000918252602090912001546001600160a01b0316905081565b600a546001600160a01b0316331461101b5760405162461bcd60e51b81526004016107c5906124d3565b600f55565b600061102b60085490565b60105490915062010000900460ff161561104457600080fd5b61104d3361128f565b61105657600080fd5b600f5482111561106557600080fd5b600e546110728383612559565b111561107d57600080fd5b600a546001600160a01b031633146110a95781600d5461109d9190612585565b3410156110a957600080fd5b60015b828111610aa7576110c6336110c18385612559565b611981565b806110d081612622565b9150506110ac565b6060600180546107f0906125e7565b60006110f260085490565b60105490915060ff161561110557600080fd5b6000821161111257600080fd5b600f5482111561112157600080fd5b600e5461112e8383612559565b111561113957600080fd5b600a546001600160a01b031633146111655781600d546111599190612585565b34101561116557600080fd5b60015b828111610aa75761117d336110c18385612559565b8061118781612622565b915050611168565b6001600160a01b0382163314156111e85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107c5565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331461127e5760405162461bcd60e51b81526004016107c5906124d3565b6010805461ff001916610100179055565b6000805b6012548110156112f057826001600160a01b0316601282815481106112ba576112ba612693565b6000918252602090912001546001600160a01b031614156112de5750600192915050565b806112e881612622565b915050611293565b50600092915050565b611303338361168d565b61131f5760405162461bcd60e51b81526004016107c590612508565b61132b8484848461199b565b50505050565b600c8054610915906125e7565b6000818152600260205260409020546060906001600160a01b03166113bd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107c5565b601054610100900460ff1661145e57601180546113d9906125e7565b80601f0160208091040260200160405190810160405280929190818152602001828054611405906125e7565b80156114525780601f1061142757610100808354040283529160200191611452565b820191906000526020600020905b81548152906001019060200180831161143557829003601f168201915b50505050509050919050565b60006114686119ce565b9050600081511161148857604051806020016040528060008152506114b6565b80611492846119dd565b600c6040516020016114a693929190612329565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146114e75760405162461bcd60e51b81526004016107c5906124d3565b8051610e8f90600c906020840190611fb1565b600a546001600160a01b031633146115245760405162461bcd60e51b81526004016107c5906124d3565b8051610e8f906011906020840190611fb1565b600a546001600160a01b031633146115615760405162461bcd60e51b81526004016107c5906124d3565b6001600160a01b0381166115c65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107c5565b610c548161192f565b60006001600160e01b031982166380ac58cd60e01b148061160057506001600160e01b03198216635b5e139f60e01b145b8061079557506301ffc9a760e01b6001600160e01b0319831614610795565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061165482610e93565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117065760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107c5565b600061171183610e93565b9050806001600160a01b0316846001600160a01b0316148061174c5750836001600160a01b031661174184610873565b6001600160a01b0316145b8061177c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661179782610e93565b6001600160a01b0316146117ff5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107c5565b6001600160a01b0382166118615760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107c5565b61186c838383611adb565b61187760008261161f565b6001600160a01b03831660009081526003602052604081208054600192906118a09084906125a4565b90915550506001600160a01b03821660009081526003602052604081208054600192906118ce908490612559565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610e8f828260405180602001604052806000815250611b93565b6119a6848484611784565b6119b284848484611bc6565b61132b5760405162461bcd60e51b81526004016107c590612481565b6060600b80546107f0906125e7565b606081611a015750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a2b5780611a1581612622565b9150611a249050600a83612571565b9150611a05565b60008167ffffffffffffffff811115611a4657611a466126a9565b6040519080825280601f01601f191660200182016040528015611a70576020820181803683370190505b5090505b841561177c57611a856001836125a4565b9150611a92600a8661263d565b611a9d906030612559565b60f81b818381518110611ab257611ab2612693565b60200101906001600160f81b031916908160001a905350611ad4600a86612571565b9450611a74565b6001600160a01b038316611b3657611b3181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b59565b816001600160a01b0316836001600160a01b031614611b5957611b598382611cd3565b6001600160a01b038216611b7057610aa781611d70565b826001600160a01b0316826001600160a01b031614610aa757610aa78282611e1f565b611b9d8383611e63565b611baa6000848484611bc6565b610aa75760405162461bcd60e51b81526004016107c590612481565b60006001600160a01b0384163b15611cc857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c0a9033908990889088906004016123ed565b602060405180830381600087803b158015611c2457600080fd5b505af1925050508015611c54575060408051601f3d908101601f19168201909252611c519181019061227e565b60015b611cae573d808015611c82576040519150601f19603f3d011682016040523d82523d6000602084013e611c87565b606091505b508051611ca65760405162461bcd60e51b81526004016107c590612481565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061177c565b506001949350505050565b60006001611ce084610f0a565b611cea91906125a4565b600083815260076020526040902054909150808214611d3d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d82906001906125a4565b60008381526009602052604081205460088054939450909284908110611daa57611daa612693565b906000526020600020015490508060088381548110611dcb57611dcb612693565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e0357611e0361267d565b6001900381819060005260206000200160009055905550505050565b6000611e2a83610f0a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611eb95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107c5565b6000818152600260205260409020546001600160a01b031615611f1e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107c5565b611f2a60008383611adb565b6001600160a01b0382166000908152600360205260408120805460019290611f53908490612559565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611fbd906125e7565b90600052602060002090601f016020900481019282611fdf5760008555612025565b82601f10611ff857805160ff1916838001178555612025565b82800160010185558215612025579182015b8281111561202557825182559160200191906001019061200a565b50612031929150612035565b5090565b5b808211156120315760008155600101612036565b600067ffffffffffffffff80841115612065576120656126a9565b604051601f8501601f19908116603f0116810190828211818310171561208d5761208d6126a9565b816040528093508581528686860111156120a657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146120d757600080fd5b919050565b803580151581146120d757600080fd5b6000602082840312156120fe57600080fd5b6114b6826120c0565b6000806040838503121561211a57600080fd5b612123836120c0565b9150612131602084016120c0565b90509250929050565b60008060006060848603121561214f57600080fd5b612158846120c0565b9250612166602085016120c0565b9150604084013590509250925092565b6000806000806080858703121561218c57600080fd5b612195856120c0565b93506121a3602086016120c0565b925060408501359150606085013567ffffffffffffffff8111156121c657600080fd5b8501601f810187136121d757600080fd5b6121e68782356020840161204a565b91505092959194509250565b6000806040838503121561220557600080fd5b61220e836120c0565b9150612131602084016120dc565b6000806040838503121561222f57600080fd5b612238836120c0565b946020939093013593505050565b60006020828403121561225857600080fd5b6114b6826120dc565b60006020828403121561227357600080fd5b81356114b6816126bf565b60006020828403121561229057600080fd5b81516114b6816126bf565b6000602082840312156122ad57600080fd5b813567ffffffffffffffff8111156122c457600080fd5b8201601f810184136122d557600080fd5b61177c8482356020840161204a565b6000602082840312156122f657600080fd5b5035919050565b600081518084526123158160208601602086016125bb565b601f01601f19169290920160200192915050565b60008451602061233c8285838a016125bb565b85519184019161234f8184848a016125bb565b8554920191600090600181811c908083168061236c57607f831692505b85831081141561238a57634e487b7160e01b85526022600452602485fd5b80801561239e57600181146123af576123dc565b60ff198516885283880195506123dc565b60008b81526020902060005b858110156123d45781548a8201529084019088016123bb565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612420908301846122fd565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561246257835183529284019291840191600101612446565b50909695505050505050565b6020815260006114b660208301846122fd565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561256c5761256c612651565b500190565b60008261258057612580612667565b500490565b600081600019048311821515161561259f5761259f612651565b500290565b6000828210156125b6576125b6612651565b500390565b60005b838110156125d65781810151838201526020016125be565b8381111561132b5750506000910152565b600181811c908216806125fb57607f821691505b6020821081141561261c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561263657612636612651565b5060010190565b60008261264c5761264c612667565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c5457600080fdfea2646970667358221220552f815d6ea53949b2ae45a9e5f61e75aa8695d3b4ecdf3e3a5ced7c4c70c91a64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000094661742043686f79730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000443484f59000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6269714d71505a3348355147643179726e787073714855684c7238524e6e767339693377676d5a69503173482f00000000000000000000000000000000000000000000000000000000000000000000000000000000003c697066733a2f2f516d6269714d71505a3348355147643179726e787073714855684c7238524e6e767339693377676d5a69503173482f312e6a736f6e00000000

-----Decoded View---------------
Arg [0] : _name (string): Fat Choys
Arg [1] : _symbol (string): CHOY
Arg [2] : _initBaseURI (string): ipfs://QmbiqMqPZ3H5QGd1yrnxpsqHUhLr8RNnvs9i3wgmZiP1sH/
Arg [3] : _initNotRevealedUri (string): ipfs://QmbiqMqPZ3H5QGd1yrnxpsqHUhLr8RNnvs9i3wgmZiP1sH/1.json

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 4661742043686f79730000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 43484f5900000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d6269714d71505a3348355147643179726e787073714855
Arg [10] : 684c7238524e6e767339693377676d5a69503173482f00000000000000000000
Arg [11] : 000000000000000000000000000000000000000000000000000000000000003c
Arg [12] : 697066733a2f2f516d6269714d71505a3348355147643179726e787073714855
Arg [13] : 684c7238524e6e767339693377676d5a69503173482f312e6a736f6e00000000


Deployed Bytecode Sourcemap

43398:16015:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34945:224;;;;;;;;;;-1:-1:-1;34945:224:0;;;;;:::i;:::-;;:::i;:::-;;;7807:14:1;;7800:22;7782:41;;7770:2;7755:18;34945:224:0;;;;;;;;58687:73;;;;;;;;;;-1:-1:-1;58687:73:0;;;;;:::i;:::-;;:::i;:::-;;22837:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24396:221::-;;;;;;;;;;-1:-1:-1;24396:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6468:32:1;;;6450:51;;6438:2;6423:18;24396:221:0;6304:203:1;43754:28:0;;;;;;;;;;;;;:::i;23919:411::-;;;;;;;;;;-1:-1:-1;23919:411:0;;;;;:::i;:::-;;:::i;43542:32::-;;;;;;;;;;;;;;;;;;;15411:25:1;;;15399:2;15384:18;43542:32:0;15265:177:1;35585:113:0;;;;;;;;;;-1:-1:-1;35673:10:0;:17;35585:113;;43615:33;;;;;;;;;;;;;;;;25286:339;;;;;;;;;;-1:-1:-1;25286:339:0;;;;;:::i;:::-;;:::i;35253:256::-;;;;;;;;;;-1:-1:-1;35253:256:0;;;;;:::i;:::-;;:::i;58766:88::-;;;;;;;;;;-1:-1:-1;58766:88:0;;;;;:::i;:::-;;:::i;58947:463::-;;;:::i;25696:185::-;;;;;;;;;;-1:-1:-1;25696:185:0;;;;;:::i;:::-;;:::i;57173:348::-;;;;;;;;;;-1:-1:-1;57173:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;58119:80::-;;;;;;;;;;-1:-1:-1;58119:80:0;;;;;:::i;:::-;;:::i;58860:::-;;;;;;;;;;-1:-1:-1;58860:80:0;;;;;:::i;:::-;;:::i;35775:233::-;;;;;;;;;;-1:-1:-1;35775:233:0;;;;;:::i;:::-;;:::i;43683:27::-;;;;;;;;;;-1:-1:-1;43683:27:0;;;;;;;;;;;58455:98;;;;;;;;;;-1:-1:-1;58455:98:0;;;;;:::i;:::-;;:::i;43653:25::-;;;;;;;;;;-1:-1:-1;43653:25:0;;;;;;;;43715:34;;;;;;;;;;-1:-1:-1;43715:34:0;;;;;;;;;;;22531:239;;;;;;;;;;-1:-1:-1;22531:239:0;;;;;:::i;:::-;;:::i;22261:208::-;;;;;;;;;;-1:-1:-1;22261:208:0;;;;;:::i;:::-;;:::i;42734:94::-;;;;;;;;;;;;;:::i;43789:26::-;;;;;;;;;;-1:-1:-1;43789:26:0;;;;;:::i;:::-;;:::i;58205:116::-;;;;;;;;;;-1:-1:-1;58205:116:0;;;;;:::i;:::-;;:::i;56657:504::-;;;;;;:::i;:::-;;:::i;42083:87::-;;;;;;;;;;-1:-1:-1;42156:6:0;;-1:-1:-1;;;;;42156:6:0;42083:87;;23006:104;;;;;;;;;;;;;:::i;55530:433::-;;;;;;:::i;:::-;;:::i;24689:295::-;;;;;;;;;;-1:-1:-1;24689:295:0;;;;;:::i;:::-;;:::i;58046:65::-;;;;;;;;;;;;;:::i;56153:240::-;;;;;;;;;;-1:-1:-1;56153:240:0;;;;;:::i;:::-;;:::i;25952:328::-;;;;;;;;;;-1:-1:-1;25952:328:0;;;;;:::i;:::-;;:::i;43500:37::-;;;;;;;;;;;;;:::i;57527:497::-;;;;;;;;;;-1:-1:-1;57527:497:0;;;;;:::i;:::-;;:::i;43579:31::-;;;;;;;;;;;;;;;;58559:122;;;;;;;;;;-1:-1:-1;58559:122:0;;;;;:::i;:::-;;:::i;25055:164::-;;;;;;;;;;-1:-1:-1;25055:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;25176:25:0;;;25152:4;25176:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25055:164;58329:120;;;;;;;;;;-1:-1:-1;58329:120:0;;;;;:::i;:::-;;:::i;42983:192::-;;;;;;;;;;-1:-1:-1;42983:192:0;;;;;:::i;:::-;;:::i;34945:224::-;35047:4;-1:-1:-1;;;;;;35071:50:0;;-1:-1:-1;;;35071:50:0;;:90;;;35125:36;35149:11;35125:23;:36::i;:::-;35064:97;34945:224;-1:-1:-1;;34945:224:0:o;58687:73::-;42156:6;;-1:-1:-1;;;;;42156:6:0;20446:10;42303:23;42295:68;;;;-1:-1:-1;;;42295:68:0;;;;;;;:::i;:::-;;;;;;;;;58739:6:::1;:15:::0;;-1:-1:-1;;58739:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;58687:73::o;22837:100::-;22891:13;22924:5;22917:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22837:100;:::o;24396:221::-;24472:7;27879:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27879:16:0;24492:73;;;;-1:-1:-1;;;24492:73:0;;12634:2:1;24492:73:0;;;12616:21:1;12673:2;12653:18;;;12646:30;12712:34;12692:18;;;12685:62;-1:-1:-1;;;12763:18:1;;;12756:42;12815:19;;24492:73:0;12432:408:1;24492:73:0;-1:-1:-1;24585:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24585:24:0;;24396:221::o;43754:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23919:411::-;24000:13;24016:23;24031:7;24016:14;:23::i;:::-;24000:39;;24064:5;-1:-1:-1;;;;;24058:11:0;:2;-1:-1:-1;;;;;24058:11:0;;;24050:57;;;;-1:-1:-1;;;24050:57:0;;14234:2:1;24050:57:0;;;14216:21:1;14273:2;14253:18;;;14246:30;14312:34;14292:18;;;14285:62;-1:-1:-1;;;14363:18:1;;;14356:31;14404:19;;24050:57:0;14032:397:1;24050:57:0;20446:10;-1:-1:-1;;;;;24142:21:0;;;;:62;;-1:-1:-1;24167:37:0;24184:5;20446:10;25055:164;:::i;24167:37::-;24120:168;;;;-1:-1:-1;;;24120:168:0;;11027:2:1;24120:168:0;;;11009:21:1;11066:2;11046:18;;;11039:30;11105:34;11085:18;;;11078:62;11176:26;11156:18;;;11149:54;11220:19;;24120:168:0;10825:420:1;24120:168:0;24301:21;24310:2;24314:7;24301:8;:21::i;:::-;23989:341;23919:411;;:::o;25286:339::-;25481:41;20446:10;25514:7;25481:18;:41::i;:::-;25473:103;;;;-1:-1:-1;;;25473:103:0;;;;;;;:::i;:::-;25589:28;25599:4;25605:2;25609:7;25589:9;:28::i;35253:256::-;35350:7;35386:23;35403:5;35386:16;:23::i;:::-;35378:5;:31;35370:87;;;;-1:-1:-1;;;35370:87:0;;8260:2:1;35370:87:0;;;8242:21:1;8299:2;8279:18;;;8272:30;8338:34;8318:18;;;8311:62;-1:-1:-1;;;8389:18:1;;;8382:41;8440:19;;35370:87:0;8058:407:1;35370:87:0;-1:-1:-1;;;;;;35475:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35253:256::o;58766:88::-;42156:6;;-1:-1:-1;;;;;42156:6:0;20446:10;42303:23;42295:68;;;;-1:-1:-1;;;42295:68:0;;;;;;;:::i;:::-;58822:15:::1;:26:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;58822:26:0;;::::1;::::0;;;::::1;::::0;;58766:88::o;58947:463::-;42156:6;;-1:-1:-1;;;;;42156:6:0;20446:10;42303:23;42295:68;;;;-1:-1:-1;;;42295:68:0;;;;;;;:::i;:::-;59232:7:::1;59253;42156:6:::0;;-1:-1:-1;;;;;42156:6:0;;42083:87;59253:7:::1;-1:-1:-1::0;;;;;59245:21:0::1;59274;59245:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59231:69;;;59315:2;59307:11;;;::::0;::::1;;58992:418;58947:463::o:0;25696:185::-;25834:39;25851:4;25857:2;25861:7;25834:39;;;;;;;;;;;;:16;:39::i;57173:348::-;57248:16;57276:23;57302:17;57312:6;57302:9;:17::i;:::-;57276:43;;57326:25;57368:15;57354:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57354:30:0;;57326:58;;57396:9;57391:103;57411:15;57407:1;:19;57391:103;;;57456:30;57476:6;57484:1;57456:19;:30::i;:::-;57442:8;57451:1;57442:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;57428:3;;;;:::i;:::-;;;;57391:103;;;-1:-1:-1;57507:8:0;57173:348;-1:-1:-1;;;57173:348:0:o;58119:80::-;42156:6;;-1:-1:-1;;;;;42156:6:0;20446:10;42303:23;42295:68;;;;-1:-1:-1;;;42295:68:0;;;;;;;:::i;:::-;58178:4:::1;:15:::0;58119:80::o;58860:::-;42156:6;;-1:-1:-1;;;;;42156:6:0;20446:10;42303:23;42295:68;;;;-1:-1:-1;;;42295:68:0;;;;;;;:::i;:::-;58915:9:::1;:19:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;58915:19:0;;;;;::::1;::::0;;-1:-1:-1;;;;;;58915:19:0::1;-1:-1:-1::0;;;;;58915:19:0;;;::::1;::::0;;;::::1;::::0;;58860:80::o;35775:233::-;35850:7;35886:30;35673:10;:17;;35585:113;35886:30;35878:5;:38;35870:95;;;;-1:-1:-1;;;35870:95:0;;15054:2:1;35870:95:0;;;15036:21:1;15093:2;15073:18;;;15066:30;15132:34;15112:18;;;15105:62;-1:-1:-1;;;15183:18:1;;;15176:42;15235:19;;35870:95:0;14852:408:1;35870:95:0;35983:10;35994:5;35983:17;;;;;;;;:::i;:::-;;;;;;;;;35976:24;;35775:233;;;:::o;58455:98::-;42156:6;;-1:-1:-1;;;;;42156:6:0;20446:10;42303:23;42295:68;;;;-1:-1:-1;;;42295:68:0;;;;;;;:::i;:::-;58526:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;58455:98:::0;:::o;22531:239::-;22603:7;22639:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22639:16:0;22674:19;22666:73;;;;-1:-1:-1;;;22666:73:0;;11863:2:1;22666:73:0;;;11845:21:1;11902:2;11882:18;;;11875:30;11941:34;11921:18;;;11914:62;-1:-1:-1;;;11992:18:1;;;11985:39;12041:19;;22666:73:0;11661:405:1;22261:208:0;22333:7;-1:-1:-1;;;;;22361:19:0;;22353:74;;;;-1:-1:-1;;;22353:74:0;;11452:2:1;22353:74:0;;;11434:21:1;11491:2;11471:18;;;11464:30;11530:34;11510:18;;;11503:62;-1:-1:-1;;;11581:18:1;;;11574:40;11631:19;;22353:74:0;11250:406:1;22353:74:0;-1:-1:-1;;;;;;22445:16:0;;;;;:9;:16;;;;;;;22261:208::o;42734:94::-;42156:6;;-1:-1:-1;;;;;42156:6:0;20446:10;42303:23;42295:68;;;;-1:-1:-1;;;42295:68:0;;;;;;;:::i;:::-;42799:21:::1;42817:1;42799:9;:21::i;:::-;42734:94::o:0;43789:26::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43789:26:0;;-1:-1:-1;43789:26:0;:::o;58205:116::-;42156:6;;-1:-1:-1;;;;;42156:6:0;20446:10;42303:23;42295:68;;;;-1:-1:-1;;;42295:68:0;;;;;;;:::i;:::-;58282:13:::1;:33:::0;58205:116::o;56657:504::-;56726:14;56743:13;35673:10;:17;;35585:113;56743:13;56775:15;;56726:30;;-1:-1:-1;56775:15:0;;;;;56774:16;56766:25;;;;;;56809:29;56827:10;56809:17;:29::i;:::-;56801:38;;;;;;56872:13;;56857:11;:28;;56849:37;;;;;;56928:9;;56904:20;56913:11;56904:6;:20;:::i;:::-;:33;;56896:42;;;;;;42156:6;;-1:-1:-1;;;;;42156:6:0;56954:10;:21;56950:90;;57016:11;57009:4;;:18;;;;:::i;:::-;56996:9;:31;;56988:40;;;;;;57069:1;57052:103;57077:11;57072:1;:16;57052:103;;57110:33;57120:10;57132;57141:1;57132:6;:10;:::i;:::-;57110:9;:33::i;:::-;57090:3;;;;:::i;:::-;;;;57052:103;;23006:104;23062:13;23095:7;23088:14;;;;;:::i;55530:433::-;55587:14;55604:13;35673:10;:17;;35585:113;55604:13;55633:6;;55587:30;;-1:-1:-1;55633:6:0;;55632:7;55624:16;;;;;;55669:1;55655:11;:15;55647:24;;;;;;55701:13;;55686:11;:28;;55678:37;;;;;;55754:9;;55730:20;55739:11;55730:6;:20;:::i;:::-;:33;;55722:42;;;;;;42156:6;;-1:-1:-1;;;;;42156:6:0;55777:10;:21;55773:84;;55837:11;55830:4;;:18;;;;:::i;:::-;55817:9;:31;;55809:40;;;;;;55882:1;55865:93;55890:11;55885:1;:16;55865:93;;55917:33;55927:10;55939;55948:1;55939:6;:10;:::i;55917:33::-;55903:3;;;;:::i;:::-;;;;55865:93;;24689:295;-1:-1:-1;;;;;24792:24:0;;20446:10;24792:24;;24784:62;;;;-1:-1:-1;;;24784:62:0;;10260:2:1;24784:62:0;;;10242:21:1;10299:2;10279:18;;;10272:30;10338:27;10318:18;;;10311:55;10383:18;;24784:62:0;10058:349:1;24784:62:0;20446:10;24859:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24859:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24859:53:0;;;;;;;;;;24928:48;;7782:41:1;;;24859:42:0;;20446:10;24928:48;;7755:18:1;24928:48:0;;;;;;;24689:295;;:::o;58046:65::-;42156:6;;-1:-1:-1;;;;;42156:6:0;20446:10;42303:23;42295:68;;;;-1:-1:-1;;;42295:68:0;;;;;;;:::i;:::-;58090:8:::1;:15:::0;;-1:-1:-1;;58090:15:0::1;;;::::0;;58046:65::o;56153:240::-;56214:4;;56230:135;56249:9;:16;56245:20;;56230:135;;;56306:3;-1:-1:-1;;;;;56290:19:0;:9;56300:1;56290:12;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;56290:12:0;:19;56286:69;;;-1:-1:-1;56336:4:0;;56153:240;-1:-1:-1;;56153:240:0:o;56286:69::-;56267:3;;;;:::i;:::-;;;;56230:135;;;-1:-1:-1;56381:5:0;;56153:240;-1:-1:-1;;56153:240:0:o;25952:328::-;26127:41;20446:10;26160:7;26127:18;:41::i;:::-;26119:103;;;;-1:-1:-1;;;26119:103:0;;;;;;;:::i;:::-;26233:39;26247:4;26253:2;26257:7;26266:5;26233:13;:39::i;:::-;25952:328;;;;:::o;43500:37::-;;;;;;;:::i;57527:497::-;27855:4;27879:16;;;:7;:16;;;;;;57625:13;;-1:-1:-1;;;;;27879:16:0;57650:97;;;;-1:-1:-1;;;57650:97:0;;13818:2:1;57650:97:0;;;13800:21:1;13857:2;13837:18;;;13830:30;13896:34;13876:18;;;13869:62;-1:-1:-1;;;13947:18:1;;;13940:45;14002:19;;57650:97:0;13616:411:1;57650:97:0;57763:8;;;;;;;57760:62;;57800:14;57793:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57527:497;;;:::o;57760:62::-;57830:28;57861:10;:8;:10::i;:::-;57830:41;;57916:1;57891:14;57885:28;:32;:133;;;;;;;;;;;;;;;;;57953:14;57969:18;:7;:16;:18::i;:::-;57989:13;57936:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57885:133;57878:140;57527:497;-1:-1:-1;;;57527:497:0:o;58559:122::-;42156:6;;-1:-1:-1;;;;;42156:6:0;20446:10;42303:23;42295:68;;;;-1:-1:-1;;;42295:68:0;;;;;;;:::i;:::-;58642:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;58329:120::-:0;42156:6;;-1:-1:-1;;;;;42156:6:0;20446:10;42303:23;42295:68;;;;-1:-1:-1;;;42295:68:0;;;;;;;:::i;:::-;58411:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;42983:192::-:0;42156:6;;-1:-1:-1;;;;;42156:6:0;20446:10;42303:23;42295:68;;;;-1:-1:-1;;;42295:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43072:22:0;::::1;43064:73;;;::::0;-1:-1:-1;;;43064:73:0;;9091:2:1;43064:73:0::1;::::0;::::1;9073:21:1::0;9130:2;9110:18;;;9103:30;9169:34;9149:18;;;9142:62;-1:-1:-1;;;9220:18:1;;;9213:36;9266:19;;43064:73:0::1;8889:402:1::0;43064:73:0::1;43148:19;43158:8;43148:9;:19::i;21892:305::-:0;21994:4;-1:-1:-1;;;;;;22031:40:0;;-1:-1:-1;;;22031:40:0;;:105;;-1:-1:-1;;;;;;;22088:48:0;;-1:-1:-1;;;22088:48:0;22031:105;:158;;;-1:-1:-1;;;;;;;;;;7832:40:0;;;22153:36;7723:157;31772:174;31847:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31847:29:0;-1:-1:-1;;;;;31847:29:0;;;;;;;;:24;;31901:23;31847:24;31901:14;:23::i;:::-;-1:-1:-1;;;;;31892:46:0;;;;;;;;;;;31772:174;;:::o;28084:348::-;28177:4;27879:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27879:16:0;28194:73;;;;-1:-1:-1;;;28194:73:0;;10614:2:1;28194:73:0;;;10596:21:1;10653:2;10633:18;;;10626:30;10692:34;10672:18;;;10665:62;-1:-1:-1;;;10743:18:1;;;10736:42;10795:19;;28194:73:0;10412:408:1;28194:73:0;28278:13;28294:23;28309:7;28294:14;:23::i;:::-;28278:39;;28347:5;-1:-1:-1;;;;;28336:16:0;:7;-1:-1:-1;;;;;28336:16:0;;:51;;;;28380:7;-1:-1:-1;;;;;28356:31:0;:20;28368:7;28356:11;:20::i;:::-;-1:-1:-1;;;;;28356:31:0;;28336:51;:87;;;-1:-1:-1;;;;;;25176:25:0;;;25152:4;25176:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28391:32;28328:96;28084:348;-1:-1:-1;;;;28084:348:0:o;31076:578::-;31235:4;-1:-1:-1;;;;;31208:31:0;:23;31223:7;31208:14;:23::i;:::-;-1:-1:-1;;;;;31208:31:0;;31200:85;;;;-1:-1:-1;;;31200:85:0;;13408:2:1;31200:85:0;;;13390:21:1;13447:2;13427:18;;;13420:30;13486:34;13466:18;;;13459:62;-1:-1:-1;;;13537:18:1;;;13530:39;13586:19;;31200:85:0;13206:405:1;31200:85:0;-1:-1:-1;;;;;31304:16:0;;31296:65;;;;-1:-1:-1;;;31296:65:0;;9855:2:1;31296:65:0;;;9837:21:1;9894:2;9874:18;;;9867:30;9933:34;9913:18;;;9906:62;-1:-1:-1;;;9984:18:1;;;9977:34;10028:19;;31296:65:0;9653:400:1;31296:65:0;31374:39;31395:4;31401:2;31405:7;31374:20;:39::i;:::-;31478:29;31495:1;31499:7;31478:8;:29::i;:::-;-1:-1:-1;;;;;31520:15:0;;;;;;:9;:15;;;;;:20;;31539:1;;31520:15;:20;;31539:1;;31520:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31551:13:0;;;;;;:9;:13;;;;;:18;;31568:1;;31551:13;:18;;31568:1;;31551:18;:::i;:::-;;;;-1:-1:-1;;31580:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31580:21:0;-1:-1:-1;;;;;31580:21:0;;;;;;;;;31619:27;;31580:16;;31619:27;;;;;;;31076:578;;;:::o;43183:173::-;43258:6;;;-1:-1:-1;;;;;43275:17:0;;;-1:-1:-1;;;;;;43275:17:0;;;;;;;43308:40;;43258:6;;;43275:17;43258:6;;43308:40;;43239:16;;43308:40;43228:128;43183:173;:::o;28774:110::-;28850:26;28860:2;28864:7;28850:26;;;;;;;;;;;;:9;:26::i;27162:315::-;27319:28;27329:4;27335:2;27339:7;27319:9;:28::i;:::-;27366:48;27389:4;27395:2;27399:7;27408:5;27366:22;:48::i;:::-;27358:111;;;;-1:-1:-1;;;27358:111:0;;;;;;;:::i;55409:102::-;55469:13;55498:7;55491:14;;;;;:::i;8198:723::-;8254:13;8475:10;8471:53;;-1:-1:-1;;8502:10:0;;;;;;;;;;;;-1:-1:-1;;;8502:10:0;;;;;8198:723::o;8471:53::-;8549:5;8534:12;8590:78;8597:9;;8590:78;;8623:8;;;;:::i;:::-;;-1:-1:-1;8646:10:0;;-1:-1:-1;8654:2:0;8646:10;;:::i;:::-;;;8590:78;;;8678:19;8710:6;8700:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8700:17:0;;8678:39;;8728:154;8735:10;;8728:154;;8762:11;8772:1;8762:11;;:::i;:::-;;-1:-1:-1;8831:10:0;8839:2;8831:5;:10;:::i;:::-;8818:24;;:2;:24;:::i;:::-;8805:39;;8788:6;8795;8788:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8788:56:0;;;;;;;;-1:-1:-1;8859:11:0;8868:2;8859:11;;:::i;:::-;;;8728:154;;36621:589;-1:-1:-1;;;;;36827:18:0;;36823:187;;36862:40;36894:7;38037:10;:17;;38010:24;;;;:15;:24;;;;;:44;;;38065:24;;;;;;;;;;;;37933:164;36862:40;36823:187;;;36932:2;-1:-1:-1;;;;;36924:10:0;:4;-1:-1:-1;;;;;36924:10:0;;36920:90;;36951:47;36984:4;36990:7;36951:32;:47::i;:::-;-1:-1:-1;;;;;37024:16:0;;37020:183;;37057:45;37094:7;37057:36;:45::i;37020:183::-;37130:4;-1:-1:-1;;;;;37124:10:0;:2;-1:-1:-1;;;;;37124:10:0;;37120:83;;37151:40;37179:2;37183:7;37151:27;:40::i;29111:321::-;29241:18;29247:2;29251:7;29241:5;:18::i;:::-;29292:54;29323:1;29327:2;29331:7;29340:5;29292:22;:54::i;:::-;29270:154;;;;-1:-1:-1;;;29270:154:0;;;;;;;:::i;32511:799::-;32666:4;-1:-1:-1;;;;;32687:13:0;;11046:20;11094:8;32683:620;;32723:72;;-1:-1:-1;;;32723:72:0;;-1:-1:-1;;;;;32723:36:0;;;;;:72;;20446:10;;32774:4;;32780:7;;32789:5;;32723:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32723:72:0;;;;;;;;-1:-1:-1;;32723:72:0;;;;;;;;;;;;:::i;:::-;;;32719:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32965:13:0;;32961:272;;33008:60;;-1:-1:-1;;;33008:60:0;;;;;;;:::i;32961:272::-;33183:6;33177:13;33168:6;33164:2;33160:15;33153:38;32719:529;-1:-1:-1;;;;;;32846:51:0;-1:-1:-1;;;32846:51:0;;-1:-1:-1;32839:58:0;;32683:620;-1:-1:-1;33287:4:0;32511:799;;;;;;:::o;38724:988::-;38990:22;39040:1;39015:22;39032:4;39015:16;:22::i;:::-;:26;;;;:::i;:::-;39052:18;39073:26;;;:17;:26;;;;;;38990:51;;-1:-1:-1;39206:28:0;;;39202:328;;-1:-1:-1;;;;;39273:18:0;;39251:19;39273:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39324:30;;;;;;:44;;;39441:30;;:17;:30;;;;;:43;;;39202:328;-1:-1:-1;39626:26:0;;;;:17;:26;;;;;;;;39619:33;;;-1:-1:-1;;;;;39670:18:0;;;;;:12;:18;;;;;:34;;;;;;;39663:41;38724:988::o;40007:1079::-;40285:10;:17;40260:22;;40285:21;;40305:1;;40285:21;:::i;:::-;40317:18;40338:24;;;:15;:24;;;;;;40711:10;:26;;40260:46;;-1:-1:-1;40338:24:0;;40260:46;;40711:26;;;;;;:::i;:::-;;;;;;;;;40689:48;;40775:11;40750:10;40761;40750:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40855:28;;;:15;:28;;;;;;;:41;;;41027:24;;;;;41020:31;41062:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;40078:1008;;;40007:1079;:::o;37511:221::-;37596:14;37613:20;37630:2;37613:16;:20::i;:::-;-1:-1:-1;;;;;37644:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37689:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37511:221:0:o;29768:382::-;-1:-1:-1;;;;;29848:16:0;;29840:61;;;;-1:-1:-1;;;29840:61:0;;12273:2:1;29840:61:0;;;12255:21:1;;;12292:18;;;12285:30;12351:34;12331:18;;;12324:62;12403:18;;29840:61:0;12071:356:1;29840:61:0;27855:4;27879:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27879:16:0;:30;29912:58;;;;-1:-1:-1;;;29912:58:0;;9498:2:1;29912:58:0;;;9480:21:1;9537:2;9517:18;;;9510:30;9576;9556:18;;;9549:58;9624:18;;29912:58:0;9296:352:1;29912:58:0;29983:45;30012:1;30016:2;30020:7;29983:20;:45::i;:::-;-1:-1:-1;;;;;30041:13:0;;;;;;:9;:13;;;;;:18;;30058:1;;30041:13;:18;;30058:1;;30041:18;:::i;:::-;;;;-1:-1:-1;;30070:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30070:21:0;-1:-1:-1;;;;;30070:21:0;;;;;;;;30109:33;;30070:16;;;30109:33;;30070:16;;30109:33;29768:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:1527::-;4786:3;4824:6;4818:13;4850:4;4863:51;4907:6;4902:3;4897:2;4889:6;4885:15;4863:51;:::i;:::-;4977:13;;4936:16;;;;4999:55;4977:13;4936:16;5021:15;;;4999:55;:::i;:::-;5143:13;;5076:20;;;5116:1;;5203;5225:18;;;;5278;;;;5305:93;;5383:4;5373:8;5369:19;5357:31;;5305:93;5446:2;5436:8;5433:16;5413:18;5410:40;5407:167;;;-1:-1:-1;;;5473:33:1;;5529:4;5526:1;5519:15;5559:4;5480:3;5547:17;5407:167;5590:18;5617:110;;;;5741:1;5736:328;;;;5583:481;;5617:110;-1:-1:-1;;5652:24:1;;5638:39;;5697:20;;;;-1:-1:-1;5617:110:1;;5736:328;15520:1;15513:14;;;15557:4;15544:18;;5831:1;5845:169;5859:8;5856:1;5853:15;5845:169;;;5941:14;;5926:13;;;5919:37;5984:16;;;;5876:10;;5845:169;;;5849:3;;6045:8;6038:5;6034:20;6027:27;;5583:481;-1:-1:-1;6080:3:1;;4562:1527;-1:-1:-1;;;;;;;;;;;4562:1527:1:o;6512:488::-;-1:-1:-1;;;;;6781:15:1;;;6763:34;;6833:15;;6828:2;6813:18;;6806:43;6880:2;6865:18;;6858:34;;;6928:3;6923:2;6908:18;;6901:31;;;6706:4;;6949:45;;6974:19;;6966:6;6949:45;:::i;:::-;6941:53;6512:488;-1:-1:-1;;;;;;6512:488:1:o;7005:632::-;7176:2;7228:21;;;7298:13;;7201:18;;;7320:22;;;7147:4;;7176:2;7399:15;;;;7373:2;7358:18;;;7147:4;7442:169;7456:6;7453:1;7450:13;7442:169;;;7517:13;;7505:26;;7586:15;;;;7551:12;;;;7478:1;7471:9;7442:169;;;-1:-1:-1;7628:3:1;;7005:632;-1:-1:-1;;;;;;7005:632:1:o;7834:219::-;7983:2;7972:9;7965:21;7946:4;8003:44;8043:2;8032:9;8028:18;8020:6;8003:44;:::i;8470:414::-;8672:2;8654:21;;;8711:2;8691:18;;;8684:30;8750:34;8745:2;8730:18;;8723:62;-1:-1:-1;;;8816:2:1;8801:18;;8794:48;8874:3;8859:19;;8470:414::o;12845:356::-;13047:2;13029:21;;;13066:18;;;13059:30;13125:34;13120:2;13105:18;;13098:62;13192:2;13177:18;;12845:356::o;14434:413::-;14636:2;14618:21;;;14675:2;14655:18;;;14648:30;14714:34;14709:2;14694:18;;14687:62;-1:-1:-1;;;14780:2:1;14765:18;;14758:47;14837:3;14822:19;;14434:413::o;15573:128::-;15613:3;15644:1;15640:6;15637:1;15634:13;15631:39;;;15650:18;;:::i;:::-;-1:-1:-1;15686:9:1;;15573:128::o;15706:120::-;15746:1;15772;15762:35;;15777:18;;:::i;:::-;-1:-1:-1;15811:9:1;;15706:120::o;15831:168::-;15871:7;15937:1;15933;15929:6;15925:14;15922:1;15919:21;15914:1;15907:9;15900:17;15896:45;15893:71;;;15944:18;;:::i;:::-;-1:-1:-1;15984:9:1;;15831:168::o;16004:125::-;16044:4;16072:1;16069;16066:8;16063:34;;;16077:18;;:::i;:::-;-1:-1:-1;16114:9:1;;16004:125::o;16134:258::-;16206:1;16216:113;16230:6;16227:1;16224:13;16216:113;;;16306:11;;;16300:18;16287:11;;;16280:39;16252:2;16245:10;16216:113;;;16347:6;16344:1;16341:13;16338:48;;;-1:-1:-1;;16382:1:1;16364:16;;16357:27;16134:258::o;16397:380::-;16476:1;16472:12;;;;16519;;;16540:61;;16594:4;16586:6;16582:17;16572:27;;16540:61;16647:2;16639:6;16636:14;16616:18;16613:38;16610:161;;;16693:10;16688:3;16684:20;16681:1;16674:31;16728:4;16725:1;16718:15;16756:4;16753:1;16746:15;16610:161;;16397:380;;;:::o;16782:135::-;16821:3;-1:-1:-1;;16842:17:1;;16839:43;;;16862:18;;:::i;:::-;-1:-1:-1;16909:1:1;16898:13;;16782:135::o;16922:112::-;16954:1;16980;16970:35;;16985:18;;:::i;:::-;-1:-1:-1;17019:9:1;;16922:112::o;17039:127::-;17100:10;17095:3;17091:20;17088:1;17081:31;17131:4;17128:1;17121:15;17155:4;17152:1;17145:15;17171:127;17232:10;17227:3;17223:20;17220:1;17213:31;17263:4;17260:1;17253:15;17287:4;17284:1;17277:15;17303:127;17364:10;17359:3;17355:20;17352:1;17345:31;17395:4;17392:1;17385:15;17419:4;17416:1;17409:15;17435:127;17496:10;17491:3;17487:20;17484:1;17477:31;17527:4;17524:1;17517:15;17551:4;17548:1;17541:15;17567:127;17628:10;17623:3;17619:20;17616:1;17609:31;17659:4;17656:1;17649:15;17683:4;17680:1;17673:15;17699:131;-1:-1:-1;;;;;;17773:32:1;;17763:43;;17753:71;;17820:1;17817;17810:12

Swarm Source

ipfs://552f815d6ea53949b2ae45a9e5f61e75aa8695d3b4ecdf3e3a5ced7c4c70c91a
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.