ETH Price: $2,619.38 (+0.78%)

Token

SunnySloths (SNS)
 

Overview

Max Total Supply

176 SNS

Holders

102

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 SNS
0x3a5D440ca541c4d15a47e7cc28DEc17D53c70c6F
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:
SunnySloths

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-19
*/

// 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/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/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);
    }
}

// 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/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/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/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/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/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/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: contracts/SunnySloths.sol



pragma solidity >=0.7.0 <0.9.0;



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

  string public baseURI;
  string public baseExtension = '.json';

  uint256 public cost = 0.038 ether;
  uint256 public maxSupply = 8888;
  uint256 public giveawayReserve = 200;
  //only applies to mainSale
  uint256 public maxMintAmount = 15;
  //only applies to presale
  uint256 public presaleMaxPerAddress = 5;

  bool public paused = false;
  bool public presaleOpen = false;
  bool public mainSaleOpen = false;

  mapping(address => uint256) public presaleWhitelist;

  constructor(string memory _initBaseURI) ERC721('SunnySloths', 'SNS') {
    setBaseURI(_initBaseURI);
  }

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

  // public
  function mint(uint256 _mintAmount) public payable {
    require(!paused, 'Contract is paused');
    require(mainSaleOpen, 'Main sale not open');
    uint256 supply = totalSupply();
    require(_mintAmount > 0, 'Mint at least 1 NFT');
    require(supply + _mintAmount <= maxSupply - giveawayReserve, 'Sold out!');

    if (msg.sender != owner()) {
      require(_mintAmount <= maxMintAmount, 'Exceed max quantity per mint');
      require(msg.value >= cost * _mintAmount, 'Insufficient funds');
    }

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

  function mintPresale(uint256 _mintAmount) public payable {
    require(!paused, 'Contract is paused');
    require(presaleOpen, 'Presale not open');
    require(_mintAmount > 0, 'Mint at least 1 NFT');
    require(
      _mintAmount <= presaleWhitelist[msg.sender],
      'Not in whitelist / exceeded presale limit'
    );
    uint256 supply = totalSupply();
    require(supply + _mintAmount <= maxSupply - giveawayReserve, 'Sold out!');
    require(msg.value >= cost * _mintAmount, 'Insufficient funds');

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

    presaleWhitelist[msg.sender] = presaleWhitelist[msg.sender] - _mintAmount;
  }

  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'
    );

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

  // only Owner
  function burn(uint256 _tokenId) public onlyOwner {
    _burn(_tokenId);
  }

  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setMaxMintAmount(uint256 _newMaxMintAmount) public onlyOwner {
    maxMintAmount = _newMaxMintAmount;
  }

  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 setPresaleOpen(bool _state) public onlyOwner {
    presaleOpen = _state;
  }

  function setMainSaleOpen(bool _state) public onlyOwner {
    mainSaleOpen = _state;
  }

  function whitelistUsers(address[] memory _users) external onlyOwner {
    for (uint256 i = 0; i < _users.length; i++) {
      presaleWhitelist[_users[i]] = presaleMaxPerAddress;
    }
  }

  function giveAway(address _to, uint256 _amount) external onlyOwner {
    require(_amount <= giveawayReserve, 'Exceeded reserved giveaway supply');

    uint256 supply = totalSupply();
    for (uint256 i = 1; i <= _amount; i++) {
      _safeMint(_to, supply + i);
    }

    giveawayReserve -= _amount;
  }

  function withdraw() public payable onlyOwner {
    (bool success, ) = payable(msg.sender).call{ value: address(this).balance }(
      ''
    );
    require(success);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"giveawayReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"mainSaleOpen","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":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleMaxPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_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":"bool","name":"_state","type":"bool"}],"name":"setMainSaleOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPresaleOpen","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":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c9190620001e6565b50668700cc75770000600d556122b8600e5560c8600f90815560105560056011556012805462ffffff191690553480156200006257600080fd5b5060405162002f4838038062002f488339810160408190526200008591620002a2565b604080518082018252600b81526a53756e6e79536c6f74687360a81b602080830191825283518085019094526003845262534e5360e81b908401528151919291620000d391600091620001e6565b508051620000e9906001906020840190620001e6565b50505062000106620001006200011860201b60201c565b6200011c565b62000111816200016e565b50620003bb565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001cd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001e290600b906020840190620001e6565b5050565b828054620001f4906200037e565b90600052602060002090601f01602090048101928262000218576000855562000263565b82601f106200023357805160ff191683800117855562000263565b8280016001018555821562000263579182015b828111156200026357825182559160200191906001019062000246565b506200027192915062000275565b5090565b5b8082111562000271576000815560010162000276565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215620002b657600080fd5b82516001600160401b0380821115620002ce57600080fd5b818501915085601f830112620002e357600080fd5b815181811115620002f857620002f86200028c565b604051601f8201601f19908116603f011681019083821181831017156200032357620003236200028c565b8160405282815288868487010111156200033c57600080fd5b600093505b8284101562000360578484018601518185018701529285019262000341565b82841115620003725760008684830101525b98975050505050505050565b600181811c908216806200039357607f821691505b60208210811415620003b557634e487b7160e01b600052602260045260246000fd5b50919050565b612b7d80620003cb6000396000f3fe6080604052600436106102675760003560e01c80635c975abb11610144578063c6682862116100b6578063e985e9c51161007a578063e985e9c5146106e1578063eb8835ab1461072a578063edec5f2714610757578063f2fde38b14610777578063f5b9662114610797578063f759867a146107b757600080fd5b8063c668286214610656578063c87b56dd1461066b578063ca8001441461068b578063d5abeb01146106ab578063da3ef23f146106c157600080fd5b80638da5cb5b116101085780638da5cb5b146105b157806395d89b41146105cf578063a0712d68146105e4578063a22cb465146105f7578063b88d4fde14610617578063bee6348a1461063757600080fd5b80635c975abb1461052d5780636352211e146105475780636c0360eb1461056757806370a082311461057c578063715018a61461059c57600080fd5b8063239c70ae116101dd57806342966c68116101a157806342966c681461046a578063438b63001461048a57806344a0d68a146104b75780634f6ccce7146104d7578063538a8c21146104f757806355f804b31461050d57600080fd5b8063239c70ae146103ec57806323b872dd146104025780632f745c59146104225780633ccfd60b1461044257806342842e0e1461044a57600080fd5b8063088a4ed01161022f578063088a4ed01461033d578063095ea7b31461035d57806313faede61461037d57806318160ddd146103a15780631c4e2ae0146103b65780631d2316e5146103d657600080fd5b806301ffc9a71461026c57806302329a29146102a157806305bf0801146102c357806306fdde03146102e3578063081812fc14610305575b600080fd5b34801561027857600080fd5b5061028c610287366004612412565b6107ca565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102c16102bc366004612444565b6107f5565b005b3480156102cf57600080fd5b5060125461028c9062010000900460ff1681565b3480156102ef57600080fd5b506102f861083b565b60405161029891906124b7565b34801561031157600080fd5b506103256103203660046124ca565b6108cd565b6040516001600160a01b039091168152602001610298565b34801561034957600080fd5b506102c16103583660046124ca565b610962565b34801561036957600080fd5b506102c16103783660046124fa565b610991565b34801561038957600080fd5b50610393600d5481565b604051908152602001610298565b3480156103ad57600080fd5b50600854610393565b3480156103c257600080fd5b506102c16103d1366004612444565b610aa7565b3480156103e257600080fd5b5061039360115481565b3480156103f857600080fd5b5061039360105481565b34801561040e57600080fd5b506102c161041d366004612524565b610aed565b34801561042e57600080fd5b5061039361043d3660046124fa565b610b1e565b6102c1610bb4565b34801561045657600080fd5b506102c1610465366004612524565b610c36565b34801561047657600080fd5b506102c16104853660046124ca565b610c51565b34801561049657600080fd5b506104aa6104a5366004612560565b610c84565b604051610298919061257b565b3480156104c357600080fd5b506102c16104d23660046124ca565b610d26565b3480156104e357600080fd5b506103936104f23660046124ca565b610d55565b34801561050357600080fd5b50610393600f5481565b34801561051957600080fd5b506102c161052836600461265e565b610de8565b34801561053957600080fd5b5060125461028c9060ff1681565b34801561055357600080fd5b506103256105623660046124ca565b610e29565b34801561057357600080fd5b506102f8610ea0565b34801561058857600080fd5b50610393610597366004612560565b610f2e565b3480156105a857600080fd5b506102c1610fb5565b3480156105bd57600080fd5b50600a546001600160a01b0316610325565b3480156105db57600080fd5b506102f8610feb565b6102c16105f23660046124ca565b610ffa565b34801561060357600080fd5b506102c16106123660046126a7565b61121b565b34801561062357600080fd5b506102c16106323660046126da565b6112e0565b34801561064357600080fd5b5060125461028c90610100900460ff1681565b34801561066257600080fd5b506102f8611318565b34801561067757600080fd5b506102f86106863660046124ca565b611325565b34801561069757600080fd5b506102c16106a63660046124fa565b611403565b3480156106b757600080fd5b50610393600e5481565b3480156106cd57600080fd5b506102c16106dc36600461265e565b6114dd565b3480156106ed57600080fd5b5061028c6106fc366004612756565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561073657600080fd5b50610393610745366004612560565b60136020526000908152604090205481565b34801561076357600080fd5b506102c1610772366004612780565b61151a565b34801561078357600080fd5b506102c1610792366004612560565b6115a8565b3480156107a357600080fd5b506102c16107b2366004612444565b611640565b6102c16107c53660046124ca565b611684565b60006001600160e01b0319821663780e9d6360e01b14806107ef57506107ef826118da565b92915050565b600a546001600160a01b031633146108285760405162461bcd60e51b815260040161081f9061282d565b60405180910390fd5b6012805460ff1916911515919091179055565b60606000805461084a90612862565b80601f016020809104026020016040519081016040528092919081815260200182805461087690612862565b80156108c35780601f10610898576101008083540402835291602001916108c3565b820191906000526020600020905b8154815290600101906020018083116108a657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109465760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161081f565b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b0316331461098c5760405162461bcd60e51b815260040161081f9061282d565b601055565b600061099c82610e29565b9050806001600160a01b0316836001600160a01b03161415610a0a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161081f565b336001600160a01b0382161480610a265750610a2681336106fc565b610a985760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161081f565b610aa2838361192a565b505050565b600a546001600160a01b03163314610ad15760405162461bcd60e51b815260040161081f9061282d565b60128054911515620100000262ff000019909216919091179055565b610af73382611998565b610b135760405162461bcd60e51b815260040161081f9061289d565b610aa2838383611a8f565b6000610b2983610f2e565b8210610b8b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161081f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610bde5760405162461bcd60e51b815260040161081f9061282d565b604051600090339047908381818185875af1925050503d8060008114610c20576040519150601f19603f3d011682016040523d82523d6000602084013e610c25565b606091505b5050905080610c3357600080fd5b50565b610aa2838383604051806020016040528060008152506112e0565b600a546001600160a01b03163314610c7b5760405162461bcd60e51b815260040161081f9061282d565b610c3381611c3a565b60606000610c9183610f2e565b905060008167ffffffffffffffff811115610cae57610cae6125bf565b604051908082528060200260200182016040528015610cd7578160200160208202803683370190505b50905060005b82811015610d1e57610cef8582610b1e565b828281518110610d0157610d016128ee565b602090810291909101015280610d168161291a565b915050610cdd565b509392505050565b600a546001600160a01b03163314610d505760405162461bcd60e51b815260040161081f9061282d565b600d55565b6000610d6060085490565b8210610dc35760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161081f565b60088281548110610dd657610dd66128ee565b90600052602060002001549050919050565b600a546001600160a01b03163314610e125760405162461bcd60e51b815260040161081f9061282d565b8051610e2590600b906020840190612363565b5050565b6000818152600260205260408120546001600160a01b0316806107ef5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161081f565b600b8054610ead90612862565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed990612862565b8015610f265780601f10610efb57610100808354040283529160200191610f26565b820191906000526020600020905b815481529060010190602001808311610f0957829003601f168201915b505050505081565b60006001600160a01b038216610f995760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161081f565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610fdf5760405162461bcd60e51b815260040161081f9061282d565b610fe96000611ce1565b565b60606001805461084a90612862565b60125460ff16156110425760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b604482015260640161081f565b60125462010000900460ff1661108f5760405162461bcd60e51b815260206004820152601260248201527126b0b4b71039b0b632903737ba1037b832b760711b604482015260640161081f565b600061109a60085490565b9050600082116110e25760405162461bcd60e51b8152602060048201526013602482015272135a5b9d08185d081b19585cdd080c48139195606a1b604482015260640161081f565b600f54600e546110f29190612935565b6110fc838361294c565b11156111365760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b604482015260640161081f565b600a546001600160a01b031633146111ec5760105482111561119a5760405162461bcd60e51b815260206004820152601c60248201527f457863656564206d6178207175616e7469747920706572206d696e7400000000604482015260640161081f565b81600d546111a89190612964565b3410156111ec5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b604482015260640161081f565b60015b828111610aa25761120933611204838561294c565b611d33565b806112138161291a565b9150506111ef565b6001600160a01b0382163314156112745760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161081f565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6112ea3383611998565b6113065760405162461bcd60e51b815260040161081f9061289d565b61131284848484611d4d565b50505050565b600c8054610ead90612862565b6000818152600260205260409020546060906001600160a01b03166113a45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161081f565b60006113ae611d80565b905060008151116113ce57604051806020016040528060008152506113fc565b806113d884611d8f565b600c6040516020016113ec93929190612983565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461142d5760405162461bcd60e51b815260040161081f9061282d565b600f548111156114895760405162461bcd60e51b815260206004820152602160248201527f457863656564656420726573657276656420676976656177617920737570706c6044820152607960f81b606482015260840161081f565b600061149460085490565b905060015b8281116114c0576114ae84611204838561294c565b806114b88161291a565b915050611499565b5081600f60008282546114d39190612935565b9091555050505050565b600a546001600160a01b031633146115075760405162461bcd60e51b815260040161081f9061282d565b8051610e2590600c906020840190612363565b600a546001600160a01b031633146115445760405162461bcd60e51b815260040161081f9061282d565b60005b8151811015610e255760115460136000848481518110611569576115696128ee565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806115a09061291a565b915050611547565b600a546001600160a01b031633146115d25760405162461bcd60e51b815260040161081f9061282d565b6001600160a01b0381166116375760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161081f565b610c3381611ce1565b600a546001600160a01b0316331461166a5760405162461bcd60e51b815260040161081f9061282d565b601280549115156101000261ff0019909216919091179055565b60125460ff16156116cc5760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b604482015260640161081f565b601254610100900460ff166117165760405162461bcd60e51b815260206004820152601060248201526f283932b9b0b632903737ba1037b832b760811b604482015260640161081f565b6000811161175c5760405162461bcd60e51b8152602060048201526013602482015272135a5b9d08185d081b19585cdd080c48139195606a1b604482015260640161081f565b336000908152601360205260409020548111156117cd5760405162461bcd60e51b815260206004820152602960248201527f4e6f7420696e2077686974656c697374202f2065786365656465642070726573604482015268185b19481b1a5b5a5d60ba1b606482015260840161081f565b60006117d860085490565b9050600f54600e546117ea9190612935565b6117f4838361294c565b111561182e5760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b604482015260640161081f565b81600d5461183c9190612964565b3410156118805760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b604482015260640161081f565b60015b8281116118aa5761189833611204838561294c565b806118a28161291a565b915050611883565b50336000908152601360205260409020546118c6908390612935565b336000908152601360205260409020555050565b60006001600160e01b031982166380ac58cd60e01b148061190b57506001600160e01b03198216635b5e139f60e01b145b806107ef57506301ffc9a760e01b6001600160e01b03198316146107ef565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061195f82610e29565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611a115760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161081f565b6000611a1c83610e29565b9050806001600160a01b0316846001600160a01b03161480611a575750836001600160a01b0316611a4c846108cd565b6001600160a01b0316145b80611a8757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611aa282610e29565b6001600160a01b031614611b0a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161081f565b6001600160a01b038216611b6c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161081f565b611b77838383611e8d565b611b8260008261192a565b6001600160a01b0383166000908152600360205260408120805460019290611bab908490612935565b90915550506001600160a01b0382166000908152600360205260408120805460019290611bd990849061294c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611c4582610e29565b9050611c5381600084611e8d565b611c5e60008361192a565b6001600160a01b0381166000908152600360205260408120805460019290611c87908490612935565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610e25828260405180602001604052806000815250611f45565b611d58848484611a8f565b611d6484848484611f78565b6113125760405162461bcd60e51b815260040161081f90612a47565b6060600b805461084a90612862565b606081611db35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ddd5780611dc78161291a565b9150611dd69050600a83612aaf565b9150611db7565b60008167ffffffffffffffff811115611df857611df86125bf565b6040519080825280601f01601f191660200182016040528015611e22576020820181803683370190505b5090505b8415611a8757611e37600183612935565b9150611e44600a86612ac3565b611e4f90603061294c565b60f81b818381518110611e6457611e646128ee565b60200101906001600160f81b031916908160001a905350611e86600a86612aaf565b9450611e26565b6001600160a01b038316611ee857611ee381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611f0b565b816001600160a01b0316836001600160a01b031614611f0b57611f0b8382612085565b6001600160a01b038216611f2257610aa281612122565b826001600160a01b0316826001600160a01b031614610aa257610aa282826121d1565b611f4f8383612215565b611f5c6000848484611f78565b610aa25760405162461bcd60e51b815260040161081f90612a47565b60006001600160a01b0384163b1561207a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fbc903390899088908890600401612ad7565b602060405180830381600087803b158015611fd657600080fd5b505af1925050508015612006575060408051601f3d908101601f1916820190925261200391810190612b14565b60015b612060573d808015612034576040519150601f19603f3d011682016040523d82523d6000602084013e612039565b606091505b5080516120585760405162461bcd60e51b815260040161081f90612a47565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a87565b506001949350505050565b6000600161209284610f2e565b61209c9190612935565b6000838152600760205260409020549091508082146120ef576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061213490600190612935565b6000838152600960205260408120546008805493945090928490811061215c5761215c6128ee565b90600052602060002001549050806008838154811061217d5761217d6128ee565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806121b5576121b5612b31565b6001900381819060005260206000200160009055905550505050565b60006121dc83610f2e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661226b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161081f565b6000818152600260205260409020546001600160a01b0316156122d05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161081f565b6122dc60008383611e8d565b6001600160a01b038216600090815260036020526040812080546001929061230590849061294c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461236f90612862565b90600052602060002090601f01602090048101928261239157600085556123d7565b82601f106123aa57805160ff19168380011785556123d7565b828001600101855582156123d7579182015b828111156123d75782518255916020019190600101906123bc565b506123e39291506123e7565b5090565b5b808211156123e357600081556001016123e8565b6001600160e01b031981168114610c3357600080fd5b60006020828403121561242457600080fd5b81356113fc816123fc565b8035801515811461243f57600080fd5b919050565b60006020828403121561245657600080fd5b6113fc8261242f565b60005b8381101561247a578181015183820152602001612462565b838111156113125750506000910152565b600081518084526124a381602086016020860161245f565b601f01601f19169290920160200192915050565b6020815260006113fc602083018461248b565b6000602082840312156124dc57600080fd5b5035919050565b80356001600160a01b038116811461243f57600080fd5b6000806040838503121561250d57600080fd5b612516836124e3565b946020939093013593505050565b60008060006060848603121561253957600080fd5b612542846124e3565b9250612550602085016124e3565b9150604084013590509250925092565b60006020828403121561257257600080fd5b6113fc826124e3565b6020808252825182820181905260009190848201906040850190845b818110156125b357835183529284019291840191600101612597565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156125fe576125fe6125bf565b604052919050565b600067ffffffffffffffff831115612620576126206125bf565b612633601f8401601f19166020016125d5565b905082815283838301111561264757600080fd5b828260208301376000602084830101529392505050565b60006020828403121561267057600080fd5b813567ffffffffffffffff81111561268757600080fd5b8201601f8101841361269857600080fd5b611a8784823560208401612606565b600080604083850312156126ba57600080fd5b6126c3836124e3565b91506126d16020840161242f565b90509250929050565b600080600080608085870312156126f057600080fd5b6126f9856124e3565b9350612707602086016124e3565b925060408501359150606085013567ffffffffffffffff81111561272a57600080fd5b8501601f8101871361273b57600080fd5b61274a87823560208401612606565b91505092959194509250565b6000806040838503121561276957600080fd5b612772836124e3565b91506126d1602084016124e3565b6000602080838503121561279357600080fd5b823567ffffffffffffffff808211156127ab57600080fd5b818501915085601f8301126127bf57600080fd5b8135818111156127d1576127d16125bf565b8060051b91506127e28483016125d5565b81815291830184019184810190888411156127fc57600080fd5b938501935b8385101561282157612812856124e3565b82529385019390850190612801565b98975050505050505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061287657607f821691505b6020821081141561289757634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561292e5761292e612904565b5060010190565b60008282101561294757612947612904565b500390565b6000821982111561295f5761295f612904565b500190565b600081600019048311821515161561297e5761297e612904565b500290565b6000845160206129968285838a0161245f565b8551918401916129a98184848a0161245f565b8554920191600090600181811c90808316806129c657607f831692505b8583108114156129e457634e487b7160e01b85526022600452602485fd5b8080156129f85760018114612a0957612a36565b60ff19851688528388019550612a36565b60008b81526020902060005b85811015612a2e5781548a820152908401908801612a15565b505083880195505b50939b9a5050505050505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612abe57612abe612a99565b500490565b600082612ad257612ad2612a99565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b0a9083018461248b565b9695505050505050565b600060208284031215612b2657600080fd5b81516113fc816123fc565b634e487b7160e01b600052603160045260246000fdfea26469706673582212203b2ba26dc63a01b3071c55c56be78515368e08cb338ada10d38d9ee1b8b6544d64736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d65796f6575776e6a6d3378444267424e4d774174556759535639524b7a3764756443527135333271657564552f00000000000000000000

Deployed Bytecode

0x6080604052600436106102675760003560e01c80635c975abb11610144578063c6682862116100b6578063e985e9c51161007a578063e985e9c5146106e1578063eb8835ab1461072a578063edec5f2714610757578063f2fde38b14610777578063f5b9662114610797578063f759867a146107b757600080fd5b8063c668286214610656578063c87b56dd1461066b578063ca8001441461068b578063d5abeb01146106ab578063da3ef23f146106c157600080fd5b80638da5cb5b116101085780638da5cb5b146105b157806395d89b41146105cf578063a0712d68146105e4578063a22cb465146105f7578063b88d4fde14610617578063bee6348a1461063757600080fd5b80635c975abb1461052d5780636352211e146105475780636c0360eb1461056757806370a082311461057c578063715018a61461059c57600080fd5b8063239c70ae116101dd57806342966c68116101a157806342966c681461046a578063438b63001461048a57806344a0d68a146104b75780634f6ccce7146104d7578063538a8c21146104f757806355f804b31461050d57600080fd5b8063239c70ae146103ec57806323b872dd146104025780632f745c59146104225780633ccfd60b1461044257806342842e0e1461044a57600080fd5b8063088a4ed01161022f578063088a4ed01461033d578063095ea7b31461035d57806313faede61461037d57806318160ddd146103a15780631c4e2ae0146103b65780631d2316e5146103d657600080fd5b806301ffc9a71461026c57806302329a29146102a157806305bf0801146102c357806306fdde03146102e3578063081812fc14610305575b600080fd5b34801561027857600080fd5b5061028c610287366004612412565b6107ca565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102c16102bc366004612444565b6107f5565b005b3480156102cf57600080fd5b5060125461028c9062010000900460ff1681565b3480156102ef57600080fd5b506102f861083b565b60405161029891906124b7565b34801561031157600080fd5b506103256103203660046124ca565b6108cd565b6040516001600160a01b039091168152602001610298565b34801561034957600080fd5b506102c16103583660046124ca565b610962565b34801561036957600080fd5b506102c16103783660046124fa565b610991565b34801561038957600080fd5b50610393600d5481565b604051908152602001610298565b3480156103ad57600080fd5b50600854610393565b3480156103c257600080fd5b506102c16103d1366004612444565b610aa7565b3480156103e257600080fd5b5061039360115481565b3480156103f857600080fd5b5061039360105481565b34801561040e57600080fd5b506102c161041d366004612524565b610aed565b34801561042e57600080fd5b5061039361043d3660046124fa565b610b1e565b6102c1610bb4565b34801561045657600080fd5b506102c1610465366004612524565b610c36565b34801561047657600080fd5b506102c16104853660046124ca565b610c51565b34801561049657600080fd5b506104aa6104a5366004612560565b610c84565b604051610298919061257b565b3480156104c357600080fd5b506102c16104d23660046124ca565b610d26565b3480156104e357600080fd5b506103936104f23660046124ca565b610d55565b34801561050357600080fd5b50610393600f5481565b34801561051957600080fd5b506102c161052836600461265e565b610de8565b34801561053957600080fd5b5060125461028c9060ff1681565b34801561055357600080fd5b506103256105623660046124ca565b610e29565b34801561057357600080fd5b506102f8610ea0565b34801561058857600080fd5b50610393610597366004612560565b610f2e565b3480156105a857600080fd5b506102c1610fb5565b3480156105bd57600080fd5b50600a546001600160a01b0316610325565b3480156105db57600080fd5b506102f8610feb565b6102c16105f23660046124ca565b610ffa565b34801561060357600080fd5b506102c16106123660046126a7565b61121b565b34801561062357600080fd5b506102c16106323660046126da565b6112e0565b34801561064357600080fd5b5060125461028c90610100900460ff1681565b34801561066257600080fd5b506102f8611318565b34801561067757600080fd5b506102f86106863660046124ca565b611325565b34801561069757600080fd5b506102c16106a63660046124fa565b611403565b3480156106b757600080fd5b50610393600e5481565b3480156106cd57600080fd5b506102c16106dc36600461265e565b6114dd565b3480156106ed57600080fd5b5061028c6106fc366004612756565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561073657600080fd5b50610393610745366004612560565b60136020526000908152604090205481565b34801561076357600080fd5b506102c1610772366004612780565b61151a565b34801561078357600080fd5b506102c1610792366004612560565b6115a8565b3480156107a357600080fd5b506102c16107b2366004612444565b611640565b6102c16107c53660046124ca565b611684565b60006001600160e01b0319821663780e9d6360e01b14806107ef57506107ef826118da565b92915050565b600a546001600160a01b031633146108285760405162461bcd60e51b815260040161081f9061282d565b60405180910390fd5b6012805460ff1916911515919091179055565b60606000805461084a90612862565b80601f016020809104026020016040519081016040528092919081815260200182805461087690612862565b80156108c35780601f10610898576101008083540402835291602001916108c3565b820191906000526020600020905b8154815290600101906020018083116108a657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109465760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161081f565b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b0316331461098c5760405162461bcd60e51b815260040161081f9061282d565b601055565b600061099c82610e29565b9050806001600160a01b0316836001600160a01b03161415610a0a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161081f565b336001600160a01b0382161480610a265750610a2681336106fc565b610a985760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161081f565b610aa2838361192a565b505050565b600a546001600160a01b03163314610ad15760405162461bcd60e51b815260040161081f9061282d565b60128054911515620100000262ff000019909216919091179055565b610af73382611998565b610b135760405162461bcd60e51b815260040161081f9061289d565b610aa2838383611a8f565b6000610b2983610f2e565b8210610b8b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161081f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610bde5760405162461bcd60e51b815260040161081f9061282d565b604051600090339047908381818185875af1925050503d8060008114610c20576040519150601f19603f3d011682016040523d82523d6000602084013e610c25565b606091505b5050905080610c3357600080fd5b50565b610aa2838383604051806020016040528060008152506112e0565b600a546001600160a01b03163314610c7b5760405162461bcd60e51b815260040161081f9061282d565b610c3381611c3a565b60606000610c9183610f2e565b905060008167ffffffffffffffff811115610cae57610cae6125bf565b604051908082528060200260200182016040528015610cd7578160200160208202803683370190505b50905060005b82811015610d1e57610cef8582610b1e565b828281518110610d0157610d016128ee565b602090810291909101015280610d168161291a565b915050610cdd565b509392505050565b600a546001600160a01b03163314610d505760405162461bcd60e51b815260040161081f9061282d565b600d55565b6000610d6060085490565b8210610dc35760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161081f565b60088281548110610dd657610dd66128ee565b90600052602060002001549050919050565b600a546001600160a01b03163314610e125760405162461bcd60e51b815260040161081f9061282d565b8051610e2590600b906020840190612363565b5050565b6000818152600260205260408120546001600160a01b0316806107ef5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161081f565b600b8054610ead90612862565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed990612862565b8015610f265780601f10610efb57610100808354040283529160200191610f26565b820191906000526020600020905b815481529060010190602001808311610f0957829003601f168201915b505050505081565b60006001600160a01b038216610f995760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161081f565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610fdf5760405162461bcd60e51b815260040161081f9061282d565b610fe96000611ce1565b565b60606001805461084a90612862565b60125460ff16156110425760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b604482015260640161081f565b60125462010000900460ff1661108f5760405162461bcd60e51b815260206004820152601260248201527126b0b4b71039b0b632903737ba1037b832b760711b604482015260640161081f565b600061109a60085490565b9050600082116110e25760405162461bcd60e51b8152602060048201526013602482015272135a5b9d08185d081b19585cdd080c48139195606a1b604482015260640161081f565b600f54600e546110f29190612935565b6110fc838361294c565b11156111365760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b604482015260640161081f565b600a546001600160a01b031633146111ec5760105482111561119a5760405162461bcd60e51b815260206004820152601c60248201527f457863656564206d6178207175616e7469747920706572206d696e7400000000604482015260640161081f565b81600d546111a89190612964565b3410156111ec5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b604482015260640161081f565b60015b828111610aa25761120933611204838561294c565b611d33565b806112138161291a565b9150506111ef565b6001600160a01b0382163314156112745760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161081f565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6112ea3383611998565b6113065760405162461bcd60e51b815260040161081f9061289d565b61131284848484611d4d565b50505050565b600c8054610ead90612862565b6000818152600260205260409020546060906001600160a01b03166113a45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161081f565b60006113ae611d80565b905060008151116113ce57604051806020016040528060008152506113fc565b806113d884611d8f565b600c6040516020016113ec93929190612983565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461142d5760405162461bcd60e51b815260040161081f9061282d565b600f548111156114895760405162461bcd60e51b815260206004820152602160248201527f457863656564656420726573657276656420676976656177617920737570706c6044820152607960f81b606482015260840161081f565b600061149460085490565b905060015b8281116114c0576114ae84611204838561294c565b806114b88161291a565b915050611499565b5081600f60008282546114d39190612935565b9091555050505050565b600a546001600160a01b031633146115075760405162461bcd60e51b815260040161081f9061282d565b8051610e2590600c906020840190612363565b600a546001600160a01b031633146115445760405162461bcd60e51b815260040161081f9061282d565b60005b8151811015610e255760115460136000848481518110611569576115696128ee565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806115a09061291a565b915050611547565b600a546001600160a01b031633146115d25760405162461bcd60e51b815260040161081f9061282d565b6001600160a01b0381166116375760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161081f565b610c3381611ce1565b600a546001600160a01b0316331461166a5760405162461bcd60e51b815260040161081f9061282d565b601280549115156101000261ff0019909216919091179055565b60125460ff16156116cc5760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b604482015260640161081f565b601254610100900460ff166117165760405162461bcd60e51b815260206004820152601060248201526f283932b9b0b632903737ba1037b832b760811b604482015260640161081f565b6000811161175c5760405162461bcd60e51b8152602060048201526013602482015272135a5b9d08185d081b19585cdd080c48139195606a1b604482015260640161081f565b336000908152601360205260409020548111156117cd5760405162461bcd60e51b815260206004820152602960248201527f4e6f7420696e2077686974656c697374202f2065786365656465642070726573604482015268185b19481b1a5b5a5d60ba1b606482015260840161081f565b60006117d860085490565b9050600f54600e546117ea9190612935565b6117f4838361294c565b111561182e5760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b604482015260640161081f565b81600d5461183c9190612964565b3410156118805760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b604482015260640161081f565b60015b8281116118aa5761189833611204838561294c565b806118a28161291a565b915050611883565b50336000908152601360205260409020546118c6908390612935565b336000908152601360205260409020555050565b60006001600160e01b031982166380ac58cd60e01b148061190b57506001600160e01b03198216635b5e139f60e01b145b806107ef57506301ffc9a760e01b6001600160e01b03198316146107ef565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061195f82610e29565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611a115760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161081f565b6000611a1c83610e29565b9050806001600160a01b0316846001600160a01b03161480611a575750836001600160a01b0316611a4c846108cd565b6001600160a01b0316145b80611a8757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611aa282610e29565b6001600160a01b031614611b0a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161081f565b6001600160a01b038216611b6c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161081f565b611b77838383611e8d565b611b8260008261192a565b6001600160a01b0383166000908152600360205260408120805460019290611bab908490612935565b90915550506001600160a01b0382166000908152600360205260408120805460019290611bd990849061294c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611c4582610e29565b9050611c5381600084611e8d565b611c5e60008361192a565b6001600160a01b0381166000908152600360205260408120805460019290611c87908490612935565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610e25828260405180602001604052806000815250611f45565b611d58848484611a8f565b611d6484848484611f78565b6113125760405162461bcd60e51b815260040161081f90612a47565b6060600b805461084a90612862565b606081611db35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ddd5780611dc78161291a565b9150611dd69050600a83612aaf565b9150611db7565b60008167ffffffffffffffff811115611df857611df86125bf565b6040519080825280601f01601f191660200182016040528015611e22576020820181803683370190505b5090505b8415611a8757611e37600183612935565b9150611e44600a86612ac3565b611e4f90603061294c565b60f81b818381518110611e6457611e646128ee565b60200101906001600160f81b031916908160001a905350611e86600a86612aaf565b9450611e26565b6001600160a01b038316611ee857611ee381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611f0b565b816001600160a01b0316836001600160a01b031614611f0b57611f0b8382612085565b6001600160a01b038216611f2257610aa281612122565b826001600160a01b0316826001600160a01b031614610aa257610aa282826121d1565b611f4f8383612215565b611f5c6000848484611f78565b610aa25760405162461bcd60e51b815260040161081f90612a47565b60006001600160a01b0384163b1561207a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fbc903390899088908890600401612ad7565b602060405180830381600087803b158015611fd657600080fd5b505af1925050508015612006575060408051601f3d908101601f1916820190925261200391810190612b14565b60015b612060573d808015612034576040519150601f19603f3d011682016040523d82523d6000602084013e612039565b606091505b5080516120585760405162461bcd60e51b815260040161081f90612a47565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a87565b506001949350505050565b6000600161209284610f2e565b61209c9190612935565b6000838152600760205260409020549091508082146120ef576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061213490600190612935565b6000838152600960205260408120546008805493945090928490811061215c5761215c6128ee565b90600052602060002001549050806008838154811061217d5761217d6128ee565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806121b5576121b5612b31565b6001900381819060005260206000200160009055905550505050565b60006121dc83610f2e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661226b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161081f565b6000818152600260205260409020546001600160a01b0316156122d05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161081f565b6122dc60008383611e8d565b6001600160a01b038216600090815260036020526040812080546001929061230590849061294c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461236f90612862565b90600052602060002090601f01602090048101928261239157600085556123d7565b82601f106123aa57805160ff19168380011785556123d7565b828001600101855582156123d7579182015b828111156123d75782518255916020019190600101906123bc565b506123e39291506123e7565b5090565b5b808211156123e357600081556001016123e8565b6001600160e01b031981168114610c3357600080fd5b60006020828403121561242457600080fd5b81356113fc816123fc565b8035801515811461243f57600080fd5b919050565b60006020828403121561245657600080fd5b6113fc8261242f565b60005b8381101561247a578181015183820152602001612462565b838111156113125750506000910152565b600081518084526124a381602086016020860161245f565b601f01601f19169290920160200192915050565b6020815260006113fc602083018461248b565b6000602082840312156124dc57600080fd5b5035919050565b80356001600160a01b038116811461243f57600080fd5b6000806040838503121561250d57600080fd5b612516836124e3565b946020939093013593505050565b60008060006060848603121561253957600080fd5b612542846124e3565b9250612550602085016124e3565b9150604084013590509250925092565b60006020828403121561257257600080fd5b6113fc826124e3565b6020808252825182820181905260009190848201906040850190845b818110156125b357835183529284019291840191600101612597565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156125fe576125fe6125bf565b604052919050565b600067ffffffffffffffff831115612620576126206125bf565b612633601f8401601f19166020016125d5565b905082815283838301111561264757600080fd5b828260208301376000602084830101529392505050565b60006020828403121561267057600080fd5b813567ffffffffffffffff81111561268757600080fd5b8201601f8101841361269857600080fd5b611a8784823560208401612606565b600080604083850312156126ba57600080fd5b6126c3836124e3565b91506126d16020840161242f565b90509250929050565b600080600080608085870312156126f057600080fd5b6126f9856124e3565b9350612707602086016124e3565b925060408501359150606085013567ffffffffffffffff81111561272a57600080fd5b8501601f8101871361273b57600080fd5b61274a87823560208401612606565b91505092959194509250565b6000806040838503121561276957600080fd5b612772836124e3565b91506126d1602084016124e3565b6000602080838503121561279357600080fd5b823567ffffffffffffffff808211156127ab57600080fd5b818501915085601f8301126127bf57600080fd5b8135818111156127d1576127d16125bf565b8060051b91506127e28483016125d5565b81815291830184019184810190888411156127fc57600080fd5b938501935b8385101561282157612812856124e3565b82529385019390850190612801565b98975050505050505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061287657607f821691505b6020821081141561289757634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561292e5761292e612904565b5060010190565b60008282101561294757612947612904565b500390565b6000821982111561295f5761295f612904565b500190565b600081600019048311821515161561297e5761297e612904565b500290565b6000845160206129968285838a0161245f565b8551918401916129a98184848a0161245f565b8554920191600090600181811c90808316806129c657607f831692505b8583108114156129e457634e487b7160e01b85526022600452602485fd5b8080156129f85760018114612a0957612a36565b60ff19851688528388019550612a36565b60008b81526020902060005b85811015612a2e5781548a820152908401908801612a15565b505083880195505b50939b9a5050505050505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612abe57612abe612a99565b500490565b600082612ad257612ad2612a99565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b0a9083018461248b565b9695505050505050565b600060208284031215612b2657600080fd5b81516113fc816123fc565b634e487b7160e01b600052603160045260246000fdfea26469706673582212203b2ba26dc63a01b3071c55c56be78515368e08cb338ada10d38d9ee1b8b6544d64736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d65796f6575776e6a6d3378444267424e4d774174556759535639524b7a3764756443527135333271657564552f00000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://Qmeyoeuwnjm3xDBgBNMwAtUgYSV9RKz7dudCRq532qeudU/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d65796f6575776e6a6d3378444267424e4d774174556759
Arg [3] : 535639524b7a3764756443527135333271657564552f00000000000000000000


Deployed Bytecode Sourcemap

43196:4470:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36967:224;;;;;;;;;;-1:-1:-1;36967:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;36967:224:0;;;;;;;;46705:73;;;;;;;;;;-1:-1:-1;46705:73:0;;;;;:::i;:::-;;:::i;:::-;;43678:32;;;;;;;;;;-1:-1:-1;43678:32:0;;;;;;;;;;;24859:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26418:221::-;;;;;;;;;;-1:-1:-1;26418:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:1;;;2024:51;;2012:2;1997:18;26418:221:0;1878:203:1;46351:116:0;;;;;;;;;;-1:-1:-1;46351:116:0;;;;;:::i;:::-;;:::i;25941:411::-;;;;;;;;;;-1:-1:-1;25941:411:0;;;;;:::i;:::-;;:::i;43353:33::-;;;;;;;;;;;;;;;;;;;2669:25:1;;;2657:2;2642:18;43353:33:0;2523:177:1;37607:113:0;;;;;;;;;;-1:-1:-1;37695:10:0;:17;37607:113;;46877:89;;;;;;;;;;-1:-1:-1;46877:89:0;;;;;:::i;:::-;;:::i;43565:39::-;;;;;;;;;;;;;;;;43498:33;;;;;;;;;;;;;;;;27308:339;;;;;;;;;;-1:-1:-1;27308:339:0;;;;;:::i;:::-;;:::i;37275:256::-;;;;;;;;;;-1:-1:-1;37275:256:0;;;;;:::i;:::-;;:::i;47489:174::-;;;:::i;27718:185::-;;;;;;;;;;-1:-1:-1;27718:185:0;;;;;:::i;:::-;;:::i;46182:77::-;;;;;;;;;;-1:-1:-1;46182:77:0;;;;;:::i;:::-;;:::i;45353:348::-;;;;;;;;;;-1:-1:-1;45353:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46265:80::-;;;;;;;;;;-1:-1:-1;46265:80:0;;;;;:::i;:::-;;:::i;37797:233::-;;;;;;;;;;-1:-1:-1;37797:233:0;;;;;:::i;:::-;;:::i;43427:36::-;;;;;;;;;;;;;;;;46473:98;;;;;;;;;;-1:-1:-1;46473:98:0;;;;;:::i;:::-;;:::i;43611:26::-;;;;;;;;;;-1:-1:-1;43611:26:0;;;;;;;;24553:239;;;;;;;;;;-1:-1:-1;24553:239:0;;;;;:::i;:::-;;:::i;43283:21::-;;;;;;;;;;;;;:::i;24283:208::-;;;;;;;;;;-1:-1:-1;24283:208:0;;;;;:::i;:::-;;:::i;4558:94::-;;;;;;;;;;;;;:::i;3907:87::-;;;;;;;;;;-1:-1:-1;3980:6:0;;-1:-1:-1;;;;;3980:6:0;3907:87;;25028:104;;;;;;;;;;;;;:::i;44023:615::-;;;;;;:::i;:::-;;:::i;26711:295::-;;;;;;;;;;-1:-1:-1;26711:295:0;;;;;:::i;:::-;;:::i;27974:328::-;;;;;;;;;;-1:-1:-1;27974:328:0;;;;;:::i;:::-;;:::i;43642:31::-;;;;;;;;;;-1:-1:-1;43642:31:0;;;;;;;;;;;43309:37;;;;;;;;;;;;;:::i;45707:452::-;;;;;;;;;;-1:-1:-1;45707:452:0;;;;;:::i;:::-;;:::i;47169:314::-;;;;;;;;;;-1:-1:-1;47169:314:0;;;;;:::i;:::-;;:::i;43391:31::-;;;;;;;;;;;;;;;;46577:122;;;;;;;;;;-1:-1:-1;46577:122:0;;;;;:::i;:::-;;:::i;27077:164::-;;;;;;;;;;-1:-1:-1;27077:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27198:25:0;;;27174:4;27198:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27077:164;43717:51;;;;;;;;;;-1:-1:-1;43717:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;46972:191;;;;;;;;;;-1:-1:-1;46972:191:0;;;;;:::i;:::-;;:::i;4807:192::-;;;;;;;;;;-1:-1:-1;4807:192:0;;;;;:::i;:::-;;:::i;46784:87::-;;;;;;;;;;-1:-1:-1;46784:87:0;;;;;:::i;:::-;;:::i;44644:703::-;;;;;;:::i;:::-;;:::i;36967:224::-;37069:4;-1:-1:-1;;;;;;37093:50:0;;-1:-1:-1;;;37093:50:0;;:90;;;37147:36;37171:11;37147:23;:36::i;:::-;37086:97;36967:224;-1:-1:-1;;36967:224:0:o;46705:73::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;;;;;;;;;46757:6:::1;:15:::0;;-1:-1:-1;;46757:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46705:73::o;24859:100::-;24913:13;24946:5;24939:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24859:100;:::o;26418:221::-;26494:7;29901:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29901:16:0;26514:73;;;;-1:-1:-1;;;26514:73:0;;8247:2:1;26514:73:0;;;8229:21:1;8286:2;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;-1:-1:-1;;;8376:18:1;;;8369:42;8428:19;;26514:73:0;8045:408:1;26514:73:0;-1:-1:-1;26607:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26607:24:0;;26418:221::o;46351:116::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;46428:13:::1;:33:::0;46351:116::o;25941:411::-;26022:13;26038:23;26053:7;26038:14;:23::i;:::-;26022:39;;26086:5;-1:-1:-1;;;;;26080:11:0;:2;-1:-1:-1;;;;;26080:11:0;;;26072:57;;;;-1:-1:-1;;;26072:57:0;;8660:2:1;26072:57:0;;;8642:21:1;8699:2;8679:18;;;8672:30;8738:34;8718:18;;;8711:62;-1:-1:-1;;;8789:18:1;;;8782:31;8830:19;;26072:57:0;8458:397:1;26072:57:0;2775:10;-1:-1:-1;;;;;26164:21:0;;;;:62;;-1:-1:-1;26189:37:0;26206:5;2775:10;27077:164;:::i;26189:37::-;26142:168;;;;-1:-1:-1;;;26142:168:0;;9062:2:1;26142:168:0;;;9044:21:1;9101:2;9081:18;;;9074:30;9140:34;9120:18;;;9113:62;9211:26;9191:18;;;9184:54;9255:19;;26142:168:0;8860:420:1;26142:168:0;26323:21;26332:2;26336:7;26323:8;:21::i;:::-;26011:341;25941:411;;:::o;46877:89::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;46939:12:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;46939:21:0;;::::1;::::0;;;::::1;::::0;;46877:89::o;27308:339::-;27503:41;2775:10;27536:7;27503:18;:41::i;:::-;27495:103;;;;-1:-1:-1;;;27495:103:0;;;;;;;:::i;:::-;27611:28;27621:4;27627:2;27631:7;27611:9;:28::i;37275:256::-;37372:7;37408:23;37425:5;37408:16;:23::i;:::-;37400:5;:31;37392:87;;;;-1:-1:-1;;;37392:87:0;;9905:2:1;37392:87:0;;;9887:21:1;9944:2;9924:18;;;9917:30;9983:34;9963:18;;;9956:62;-1:-1:-1;;;10034:18:1;;;10027:41;10085:19;;37392:87:0;9703:407:1;37392:87:0;-1:-1:-1;;;;;;37497:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;37275:256::o;47489:174::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;47560:74:::1;::::0;47542:12:::1;::::0;47568:10:::1;::::0;47593:21:::1;::::0;47542:12;47560:74;47542:12;47560:74;47593:21;47568:10;47560:74:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47541:93;;;47649:7;47641:16;;;::::0;::::1;;47534:129;47489:174::o:0;27718:185::-;27856:39;27873:4;27879:2;27883:7;27856:39;;;;;;;;;;;;:16;:39::i;46182:77::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;46238:15:::1;46244:8;46238:5;:15::i;45353:348::-:0;45428:16;45456:23;45482:17;45492:6;45482:9;:17::i;:::-;45456:43;;45506:25;45548:15;45534:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45534:30:0;;45506:58;;45576:9;45571:103;45591:15;45587:1;:19;45571:103;;;45636:30;45656:6;45664:1;45636:19;:30::i;:::-;45622:8;45631:1;45622:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;45608:3;;;;:::i;:::-;;;;45571:103;;;-1:-1:-1;45687:8:0;45353:348;-1:-1:-1;;;45353:348:0:o;46265:80::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;46324:4:::1;:15:::0;46265:80::o;37797:233::-;37872:7;37908:30;37695:10;:17;;37607:113;37908:30;37900:5;:38;37892:95;;;;-1:-1:-1;;;37892:95:0;;10931:2:1;37892:95:0;;;10913:21:1;10970:2;10950:18;;;10943:30;11009:34;10989:18;;;10982:62;-1:-1:-1;;;11060:18:1;;;11053:42;11112:19;;37892:95:0;10729:408:1;37892:95:0;38005:10;38016:5;38005:17;;;;;;;;:::i;:::-;;;;;;;;;37998:24;;37797:233;;;:::o;46473:98::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;46544:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46473:98:::0;:::o;24553:239::-;24625:7;24661:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24661:16:0;24696:19;24688:73;;;;-1:-1:-1;;;24688:73:0;;11344:2:1;24688:73:0;;;11326:21:1;11383:2;11363:18;;;11356:30;11422:34;11402:18;;;11395:62;-1:-1:-1;;;11473:18:1;;;11466:39;11522:19;;24688:73:0;11142:405:1;43283:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24283:208::-;24355:7;-1:-1:-1;;;;;24383:19:0;;24375:74;;;;-1:-1:-1;;;24375:74:0;;11754:2:1;24375:74:0;;;11736:21:1;11793:2;11773:18;;;11766:30;11832:34;11812:18;;;11805:62;-1:-1:-1;;;11883:18:1;;;11876:40;11933:19;;24375:74:0;11552:406:1;24375:74:0;-1:-1:-1;;;;;;24467:16:0;;;;;:9;:16;;;;;;;24283:208::o;4558:94::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;4623:21:::1;4641:1;4623:9;:21::i;:::-;4558:94::o:0;25028:104::-;25084:13;25117:7;25110:14;;;;;:::i;44023:615::-;44089:6;;;;44088:7;44080:38;;;;-1:-1:-1;;;44080:38:0;;12165:2:1;44080:38:0;;;12147:21:1;12204:2;12184:18;;;12177:30;-1:-1:-1;;;12223:18:1;;;12216:48;12281:18;;44080:38:0;11963:342:1;44080:38:0;44133:12;;;;;;;44125:43;;;;-1:-1:-1;;;44125:43:0;;12512:2:1;44125:43:0;;;12494:21:1;12551:2;12531:18;;;12524:30;-1:-1:-1;;;12570:18:1;;;12563:48;12628:18;;44125:43:0;12310:342:1;44125:43:0;44175:14;44192:13;37695:10;:17;;37607:113;44192:13;44175:30;;44234:1;44220:11;:15;44212:47;;;;-1:-1:-1;;;44212:47:0;;12859:2:1;44212:47:0;;;12841:21:1;12898:2;12878:18;;;12871:30;-1:-1:-1;;;12917:18:1;;;12910:49;12976:18;;44212:47:0;12657:343:1;44212:47:0;44310:15;;44298:9;;:27;;;;:::i;:::-;44274:20;44283:11;44274:6;:20;:::i;:::-;:51;;44266:73;;;;-1:-1:-1;;;44266:73:0;;13470:2:1;44266:73:0;;;13452:21:1;13509:1;13489:18;;;13482:29;-1:-1:-1;;;13527:18:1;;;13520:39;13576:18;;44266:73:0;13268:332:1;44266:73:0;3980:6;;-1:-1:-1;;;;;3980:6:0;44352:10;:21;44348:184;;44407:13;;44392:11;:28;;44384:69;;;;-1:-1:-1;;;44384:69:0;;13807:2:1;44384:69:0;;;13789:21:1;13846:2;13826:18;;;13819:30;13885;13865:18;;;13858:58;13933:18;;44384:69:0;13605:352:1;44384:69:0;44490:11;44483:4;;:18;;;;:::i;:::-;44470:9;:31;;44462:62;;;;-1:-1:-1;;;44462:62:0;;14337:2:1;44462:62:0;;;14319:21:1;14376:2;14356:18;;;14349:30;-1:-1:-1;;;14395:18:1;;;14388:48;14453:18;;44462:62:0;14135:342:1;44462:62:0;44557:1;44540:93;44565:11;44560:1;:16;44540:93;;44592:33;44602:10;44614;44623:1;44614:6;:10;:::i;:::-;44592:9;:33::i;:::-;44578:3;;;;:::i;:::-;;;;44540:93;;26711:295;-1:-1:-1;;;;;26814:24:0;;2775:10;26814:24;;26806:62;;;;-1:-1:-1;;;26806:62:0;;14684:2:1;26806:62:0;;;14666:21:1;14723:2;14703:18;;;14696:30;14762:27;14742:18;;;14735:55;14807:18;;26806:62:0;14482:349:1;26806:62:0;2775:10;26881:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26881:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26881:53:0;;;;;;;;;;26950:48;;540:41:1;;;26881:42:0;;2775:10;26950:48;;513:18:1;26950:48:0;;;;;;;26711:295;;:::o;27974:328::-;28149:41;2775:10;28182:7;28149:18;:41::i;:::-;28141:103;;;;-1:-1:-1;;;28141:103:0;;;;;;;:::i;:::-;28255:39;28269:4;28275:2;28279:7;28288:5;28255:13;:39::i;:::-;27974:328;;;;:::o;43309:37::-;;;;;;;:::i;45707:452::-;29877:4;29901:16;;;:7;:16;;;;;;45805:13;;-1:-1:-1;;;;;29901:16:0;45830:97;;;;-1:-1:-1;;;45830:97:0;;15038:2:1;45830:97:0;;;15020:21:1;15077:2;15057:18;;;15050:30;15116:34;15096:18;;;15089:62;-1:-1:-1;;;15167:18:1;;;15160:45;15222:19;;45830:97:0;14836:411:1;45830:97:0;45936:28;45967:10;:8;:10::i;:::-;45936:41;;46029:1;46004:14;45998:28;:32;:155;;;;;;;;;;;;;;;;;46078:14;46094:18;:7;:16;:18::i;:::-;46114:13;46061:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45998:155;45984:169;45707:452;-1:-1:-1;;;45707:452:0:o;47169:314::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;47262:15:::1;;47251:7;:26;;47243:72;;;::::0;-1:-1:-1;;;47243:72:0;;17112:2:1;47243:72:0::1;::::0;::::1;17094:21:1::0;17151:2;17131:18;;;17124:30;17190:34;17170:18;;;17163:62;-1:-1:-1;;;17241:18:1;;;17234:31;17282:19;;47243:72:0::1;16910:397:1::0;47243:72:0::1;47324:14;47341:13;37695:10:::0;:17;;37607:113;47341:13:::1;47324:30:::0;-1:-1:-1;47378:1:0::1;47361:82;47386:7;47381:1;:12;47361:82;;47409:26;47419:3:::0;47424:10:::1;47433:1:::0;47424:6;:10:::1;:::i;47409:26::-;47395:3:::0;::::1;::::0;::::1;:::i;:::-;;;;47361:82;;;;47470:7;47451:15;;:26;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;47169:314:0:o;46577:122::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;46660:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;46972:191::-:0;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;47052:9:::1;47047:111;47071:6;:13;47067:1;:17;47047:111;;;47130:20;;47100:16;:27;47117:6;47124:1;47117:9;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;47100:27:0::1;-1:-1:-1::0;;;;;47100:27:0::1;;;;;;;;;;;;:50;;;;47086:3;;;;;:::i;:::-;;;;47047:111;;4807:192:::0;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4896:22:0;::::1;4888:73;;;::::0;-1:-1:-1;;;4888:73:0;;17514:2:1;4888:73:0::1;::::0;::::1;17496:21:1::0;17553:2;17533:18;;;17526:30;17592:34;17572:18;;;17565:62;-1:-1:-1;;;17643:18:1;;;17636:36;17689:19;;4888:73:0::1;17312:402:1::0;4888:73:0::1;4972:19;4982:8;4972:9;:19::i;46784:87::-:0;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;46845:11:::1;:20:::0;;;::::1;;;;-1:-1:-1::0;;46845:20:0;;::::1;::::0;;;::::1;::::0;;46784:87::o;44644:703::-;44717:6;;;;44716:7;44708:38;;;;-1:-1:-1;;;44708:38:0;;12165:2:1;44708:38:0;;;12147:21:1;12204:2;12184:18;;;12177:30;-1:-1:-1;;;12223:18:1;;;12216:48;12281:18;;44708:38:0;11963:342:1;44708:38:0;44761:11;;;;;;;44753:40;;;;-1:-1:-1;;;44753:40:0;;17921:2:1;44753:40:0;;;17903:21:1;17960:2;17940:18;;;17933:30;-1:-1:-1;;;17979:18:1;;;17972:46;18035:18;;44753:40:0;17719:340:1;44753:40:0;44822:1;44808:11;:15;44800:47;;;;-1:-1:-1;;;44800:47:0;;12859:2:1;44800:47:0;;;12841:21:1;12898:2;12878:18;;;12871:30;-1:-1:-1;;;12917:18:1;;;12910:49;12976:18;;44800:47:0;12657:343:1;44800:47:0;44902:10;44885:28;;;;:16;:28;;;;;;44870:43;;;44854:118;;;;-1:-1:-1;;;44854:118:0;;18266:2:1;44854:118:0;;;18248:21:1;18305:2;18285:18;;;18278:30;18344:34;18324:18;;;18317:62;-1:-1:-1;;;18395:18:1;;;18388:39;18444:19;;44854:118:0;18064:405:1;44854:118:0;44979:14;44996:13;37695:10;:17;;37607:113;44996:13;44979:30;;45060:15;;45048:9;;:27;;;;:::i;:::-;45024:20;45033:11;45024:6;:20;:::i;:::-;:51;;45016:73;;;;-1:-1:-1;;;45016:73:0;;13470:2:1;45016:73:0;;;13452:21:1;13509:1;13489:18;;;13482:29;-1:-1:-1;;;13527:18:1;;;13520:39;13576:18;;45016:73:0;13268:332:1;45016:73:0;45124:11;45117:4;;:18;;;;:::i;:::-;45104:9;:31;;45096:62;;;;-1:-1:-1;;;45096:62:0;;14337:2:1;45096:62:0;;;14319:21:1;14376:2;14356:18;;;14349:30;-1:-1:-1;;;14395:18:1;;;14388:48;14453:18;;45096:62:0;14135:342:1;45096:62:0;45184:1;45167:93;45192:11;45187:1;:16;45167:93;;45219:33;45229:10;45241;45250:1;45241:6;:10;:::i;45219:33::-;45205:3;;;;:::i;:::-;;;;45167:93;;;-1:-1:-1;45316:10:0;45299:28;;;;:16;:28;;;;;;:42;;45330:11;;45299:42;:::i;:::-;45285:10;45268:28;;;;:16;:28;;;;;:73;-1:-1:-1;;44644:703:0:o;23914:305::-;24016:4;-1:-1:-1;;;;;;24053:40:0;;-1:-1:-1;;;24053:40:0;;:105;;-1:-1:-1;;;;;;;24110:48:0;;-1:-1:-1;;;24110:48:0;24053:105;:158;;;-1:-1:-1;;;;;;;;;;16002:40:0;;;24175:36;15893:157;33794:174;33869:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33869:29:0;-1:-1:-1;;;;;33869:29:0;;;;;;;;:24;;33923:23;33869:24;33923:14;:23::i;:::-;-1:-1:-1;;;;;33914:46:0;;;;;;;;;;;33794:174;;:::o;30106:348::-;30199:4;29901:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29901:16:0;30216:73;;;;-1:-1:-1;;;30216:73:0;;18676:2:1;30216:73:0;;;18658:21:1;18715:2;18695:18;;;18688:30;18754:34;18734:18;;;18727:62;-1:-1:-1;;;18805:18:1;;;18798:42;18857:19;;30216:73:0;18474:408:1;30216:73:0;30300:13;30316:23;30331:7;30316:14;:23::i;:::-;30300:39;;30369:5;-1:-1:-1;;;;;30358:16:0;:7;-1:-1:-1;;;;;30358:16:0;;:51;;;;30402:7;-1:-1:-1;;;;;30378:31:0;:20;30390:7;30378:11;:20::i;:::-;-1:-1:-1;;;;;30378:31:0;;30358:51;:87;;;-1:-1:-1;;;;;;27198:25:0;;;27174:4;27198:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30413:32;30350:96;30106:348;-1:-1:-1;;;;30106:348:0:o;33098:578::-;33257:4;-1:-1:-1;;;;;33230:31:0;:23;33245:7;33230:14;:23::i;:::-;-1:-1:-1;;;;;33230:31:0;;33222:85;;;;-1:-1:-1;;;33222:85:0;;19089:2:1;33222:85:0;;;19071:21:1;19128:2;19108:18;;;19101:30;19167:34;19147:18;;;19140:62;-1:-1:-1;;;19218:18:1;;;19211:39;19267:19;;33222:85:0;18887:405:1;33222:85:0;-1:-1:-1;;;;;33326:16:0;;33318:65;;;;-1:-1:-1;;;33318:65:0;;19499:2:1;33318:65:0;;;19481:21:1;19538:2;19518:18;;;19511:30;19577:34;19557:18;;;19550:62;-1:-1:-1;;;19628:18:1;;;19621:34;19672:19;;33318:65:0;19297:400:1;33318:65:0;33396:39;33417:4;33423:2;33427:7;33396:20;:39::i;:::-;33500:29;33517:1;33521:7;33500:8;:29::i;:::-;-1:-1:-1;;;;;33542:15:0;;;;;;:9;:15;;;;;:20;;33561:1;;33542:15;:20;;33561:1;;33542:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33573:13:0;;;;;;:9;:13;;;;;:18;;33590:1;;33573:13;:18;;33590:1;;33573:18;:::i;:::-;;;;-1:-1:-1;;33602:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33602:21:0;-1:-1:-1;;;;;33602:21:0;;;;;;;;;33641:27;;33602:16;;33641:27;;;;;;;33098:578;;;:::o;32401:360::-;32461:13;32477:23;32492:7;32477:14;:23::i;:::-;32461:39;;32513:48;32534:5;32549:1;32553:7;32513:20;:48::i;:::-;32602:29;32619:1;32623:7;32602:8;:29::i;:::-;-1:-1:-1;;;;;32644:16:0;;;;;;:9;:16;;;;;:21;;32664:1;;32644:16;:21;;32664:1;;32644:21;:::i;:::-;;;;-1:-1:-1;;32683:16:0;;;;:7;:16;;;;;;32676:23;;-1:-1:-1;;;;;;32676:23:0;;;32717:36;32691:7;;32683:16;-1:-1:-1;;;;;32717:36:0;;;;;32683:16;;32717:36;32450:311;32401:360;:::o;5007:173::-;5082:6;;;-1:-1:-1;;;;;5099:17:0;;;-1:-1:-1;;;;;;5099:17:0;;;;;;;5132:40;;5082:6;;;5099:17;5082:6;;5132:40;;5063:16;;5132:40;5052:128;5007:173;:::o;30796:110::-;30872:26;30882:2;30886:7;30872:26;;;;;;;;;;;;:9;:26::i;29184:315::-;29341:28;29351:4;29357:2;29361:7;29341:9;:28::i;:::-;29388:48;29411:4;29417:2;29421:7;29430:5;29388:22;:48::i;:::-;29380:111;;;;-1:-1:-1;;;29380:111:0;;;;;;;:::i;43902:102::-;43962:13;43991:7;43984:14;;;;;:::i;311:723::-;367:13;588:10;584:53;;-1:-1:-1;;615:10:0;;;;;;;;;;;;-1:-1:-1;;;615:10:0;;;;;311:723::o;584:53::-;662:5;647:12;703:78;710:9;;703:78;;736:8;;;;:::i;:::-;;-1:-1:-1;759:10:0;;-1:-1:-1;767:2:0;759:10;;:::i;:::-;;;703:78;;;791:19;823:6;813:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;813:17:0;;791:39;;841:154;848:10;;841:154;;875:11;885:1;875:11;;:::i;:::-;;-1:-1:-1;944:10:0;952:2;944:5;:10;:::i;:::-;931:24;;:2;:24;:::i;:::-;918:39;;901:6;908;901:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;901:56:0;;;;;;;;-1:-1:-1;972:11:0;981:2;972:11;;:::i;:::-;;;841:154;;38643:589;-1:-1:-1;;;;;38849:18:0;;38845:187;;38884:40;38916:7;40059:10;:17;;40032:24;;;;:15;:24;;;;;:44;;;40087:24;;;;;;;;;;;;39955:164;38884:40;38845:187;;;38954:2;-1:-1:-1;;;;;38946:10:0;:4;-1:-1:-1;;;;;38946:10:0;;38942:90;;38973:47;39006:4;39012:7;38973:32;:47::i;:::-;-1:-1:-1;;;;;39046:16:0;;39042:183;;39079:45;39116:7;39079:36;:45::i;39042:183::-;39152:4;-1:-1:-1;;;;;39146:10:0;:2;-1:-1:-1;;;;;39146:10:0;;39142:83;;39173:40;39201:2;39205:7;39173:27;:40::i;31133:321::-;31263:18;31269:2;31273:7;31263:5;:18::i;:::-;31314:54;31345:1;31349:2;31353:7;31362:5;31314:22;:54::i;:::-;31292:154;;;;-1:-1:-1;;;31292:154:0;;;;;;;:::i;34533:799::-;34688:4;-1:-1:-1;;;;;34709:13:0;;6276:20;6324:8;34705:620;;34745:72;;-1:-1:-1;;;34745:72:0;;-1:-1:-1;;;;;34745:36:0;;;;;:72;;2775:10;;34796:4;;34802:7;;34811:5;;34745:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34745:72:0;;;;;;;;-1:-1:-1;;34745:72:0;;;;;;;;;;;;:::i;:::-;;;34741:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34987:13:0;;34983:272;;35030:60;;-1:-1:-1;;;35030:60:0;;;;;;;:::i;34983:272::-;35205:6;35199:13;35190:6;35186:2;35182:15;35175:38;34741:529;-1:-1:-1;;;;;;34868:51:0;-1:-1:-1;;;34868:51:0;;-1:-1:-1;34861:58:0;;34705:620;-1:-1:-1;35309:4:0;34533:799;;;;;;:::o;40746:988::-;41012:22;41062:1;41037:22;41054:4;41037:16;:22::i;:::-;:26;;;;:::i;:::-;41074:18;41095:26;;;:17;:26;;;;;;41012:51;;-1:-1:-1;41228:28:0;;;41224:328;;-1:-1:-1;;;;;41295:18:0;;41273:19;41295:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41346:30;;;;;;:44;;;41463:30;;:17;:30;;;;;:43;;;41224:328;-1:-1:-1;41648:26:0;;;;:17;:26;;;;;;;;41641:33;;;-1:-1:-1;;;;;41692:18:0;;;;;:12;:18;;;;;:34;;;;;;;41685:41;40746:988::o;42029:1079::-;42307:10;:17;42282:22;;42307:21;;42327:1;;42307:21;:::i;:::-;42339:18;42360:24;;;:15;:24;;;;;;42733:10;:26;;42282:46;;-1:-1:-1;42360:24:0;;42282:46;;42733:26;;;;;;:::i;:::-;;;;;;;;;42711:48;;42797:11;42772:10;42783;42772:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;42877:28;;;:15;:28;;;;;;;:41;;;43049:24;;;;;43042:31;43084:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;42100:1008;;;42029:1079;:::o;39533:221::-;39618:14;39635:20;39652:2;39635:16;:20::i;:::-;-1:-1:-1;;;;;39666:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39711:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39533:221:0:o;31790:382::-;-1:-1:-1;;;;;31870:16:0;;31862:61;;;;-1:-1:-1;;;31862:61:0;;21577:2:1;31862:61:0;;;21559:21:1;;;21596:18;;;21589:30;21655:34;21635:18;;;21628:62;21707:18;;31862:61:0;21375:356:1;31862:61:0;29877:4;29901:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29901:16:0;:30;31934:58;;;;-1:-1:-1;;;31934:58:0;;21938:2:1;31934:58:0;;;21920:21:1;21977:2;21957:18;;;21950:30;22016;21996:18;;;21989:58;22064:18;;31934:58:0;21736:352:1;31934:58:0;32005:45;32034:1;32038:2;32042:7;32005:20;:45::i;:::-;-1:-1:-1;;;;;32063:13:0;;;;;;:9;:13;;;;;:18;;32080:1;;32063:13;:18;;32080:1;;32063:18;:::i;:::-;;;;-1:-1:-1;;32092:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32092:21:0;-1:-1:-1;;;;;32092:21:0;;;;;;;;32131:33;;32092:16;;;32131:33;;32092:16;;32131:33;31790:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:1;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:1:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:1;;1693:180;-1:-1:-1;1693:180:1:o;2086:173::-;2154:20;;-1:-1:-1;;;;;2203:31:1;;2193:42;;2183:70;;2249:1;2246;2239:12;2264:254;2332:6;2340;2393:2;2381:9;2372:7;2368:23;2364:32;2361:52;;;2409:1;2406;2399:12;2361:52;2432:29;2451:9;2432:29;:::i;:::-;2422:39;2508:2;2493:18;;;;2480:32;;-1:-1:-1;;;2264:254:1:o;2705:328::-;2782:6;2790;2798;2851:2;2839:9;2830:7;2826:23;2822:32;2819:52;;;2867:1;2864;2857:12;2819:52;2890:29;2909:9;2890:29;:::i;:::-;2880:39;;2938:38;2972:2;2961:9;2957:18;2938:38;:::i;:::-;2928:48;;3023:2;3012:9;3008:18;2995:32;2985:42;;2705:328;;;;;:::o;3038:186::-;3097:6;3150:2;3138:9;3129:7;3125:23;3121:32;3118:52;;;3166:1;3163;3156:12;3118:52;3189:29;3208:9;3189:29;:::i;3229:632::-;3400:2;3452:21;;;3522:13;;3425:18;;;3544:22;;;3371:4;;3400:2;3623:15;;;;3597:2;3582:18;;;3371:4;3666:169;3680:6;3677:1;3674:13;3666:169;;;3741:13;;3729:26;;3810:15;;;;3775:12;;;;3702:1;3695:9;3666:169;;;-1:-1:-1;3852:3:1;;3229:632;-1:-1:-1;;;;;;3229:632:1:o;3866:127::-;3927:10;3922:3;3918:20;3915:1;3908:31;3958:4;3955:1;3948:15;3982:4;3979:1;3972:15;3998:275;4069:2;4063:9;4134:2;4115:13;;-1:-1:-1;;4111:27:1;4099:40;;4169:18;4154:34;;4190:22;;;4151:62;4148:88;;;4216:18;;:::i;:::-;4252:2;4245:22;3998:275;;-1:-1:-1;3998:275:1:o;4278:407::-;4343:5;4377:18;4369:6;4366:30;4363:56;;;4399:18;;:::i;:::-;4437:57;4482:2;4461:15;;-1:-1:-1;;4457:29:1;4488:4;4453:40;4437:57;:::i;:::-;4428:66;;4517:6;4510:5;4503:21;4557:3;4548:6;4543:3;4539:16;4536:25;4533:45;;;4574:1;4571;4564:12;4533:45;4623:6;4618:3;4611:4;4604:5;4600:16;4587:43;4677:1;4670:4;4661:6;4654:5;4650:18;4646:29;4639:40;4278:407;;;;;:::o;4690:451::-;4759:6;4812:2;4800:9;4791:7;4787:23;4783:32;4780:52;;;4828:1;4825;4818:12;4780:52;4868:9;4855:23;4901:18;4893:6;4890:30;4887:50;;;4933:1;4930;4923:12;4887:50;4956:22;;5009:4;5001:13;;4997:27;-1:-1:-1;4987:55:1;;5038:1;5035;5028:12;4987:55;5061:74;5127:7;5122:2;5109:16;5104:2;5100;5096:11;5061:74;:::i;5146:254::-;5211:6;5219;5272:2;5260:9;5251:7;5247:23;5243:32;5240:52;;;5288:1;5285;5278:12;5240:52;5311:29;5330:9;5311:29;:::i;:::-;5301:39;;5359:35;5390:2;5379:9;5375:18;5359:35;:::i;:::-;5349:45;;5146:254;;;;;:::o;5405:667::-;5500:6;5508;5516;5524;5577:3;5565:9;5556:7;5552:23;5548:33;5545:53;;;5594:1;5591;5584:12;5545:53;5617:29;5636:9;5617:29;:::i;:::-;5607:39;;5665:38;5699:2;5688:9;5684:18;5665:38;:::i;:::-;5655:48;;5750:2;5739:9;5735:18;5722:32;5712:42;;5805:2;5794:9;5790:18;5777:32;5832:18;5824:6;5821:30;5818:50;;;5864:1;5861;5854:12;5818:50;5887:22;;5940:4;5932:13;;5928:27;-1:-1:-1;5918:55:1;;5969:1;5966;5959:12;5918:55;5992:74;6058:7;6053:2;6040:16;6035:2;6031;6027:11;5992:74;:::i;:::-;5982:84;;;5405:667;;;;;;;:::o;6077:260::-;6145:6;6153;6206:2;6194:9;6185:7;6181:23;6177:32;6174:52;;;6222:1;6219;6212:12;6174:52;6245:29;6264:9;6245:29;:::i;:::-;6235:39;;6293:38;6327:2;6316:9;6312:18;6293:38;:::i;6342:952::-;6426:6;6457:2;6500;6488:9;6479:7;6475:23;6471:32;6468:52;;;6516:1;6513;6506:12;6468:52;6556:9;6543:23;6585:18;6626:2;6618:6;6615:14;6612:34;;;6642:1;6639;6632:12;6612:34;6680:6;6669:9;6665:22;6655:32;;6725:7;6718:4;6714:2;6710:13;6706:27;6696:55;;6747:1;6744;6737:12;6696:55;6783:2;6770:16;6805:2;6801;6798:10;6795:36;;;6811:18;;:::i;:::-;6857:2;6854:1;6850:10;6840:20;;6880:28;6904:2;6900;6896:11;6880:28;:::i;:::-;6942:15;;;7012:11;;;7008:20;;;6973:12;;;;7040:19;;;7037:39;;;7072:1;7069;7062:12;7037:39;7096:11;;;;7116:148;7132:6;7127:3;7124:15;7116:148;;;7198:23;7217:3;7198:23;:::i;:::-;7186:36;;7149:12;;;;7242;;;;7116:148;;;7283:5;6342:952;-1:-1:-1;;;;;;;;6342:952:1:o;7299:356::-;7501:2;7483:21;;;7520:18;;;7513:30;7579:34;7574:2;7559:18;;7552:62;7646:2;7631:18;;7299:356::o;7660:380::-;7739:1;7735:12;;;;7782;;;7803:61;;7857:4;7849:6;7845:17;7835:27;;7803:61;7910:2;7902:6;7899:14;7879:18;7876:38;7873:161;;;7956:10;7951:3;7947:20;7944:1;7937:31;7991:4;7988:1;7981:15;8019:4;8016:1;8009:15;7873:161;;7660:380;;;:::o;9285:413::-;9487:2;9469:21;;;9526:2;9506:18;;;9499:30;9565:34;9560:2;9545:18;;9538:62;-1:-1:-1;;;9631:2:1;9616:18;;9609:47;9688:3;9673:19;;9285:413::o;10325:127::-;10386:10;10381:3;10377:20;10374:1;10367:31;10417:4;10414:1;10407:15;10441:4;10438:1;10431:15;10457:127;10518:10;10513:3;10509:20;10506:1;10499:31;10549:4;10546:1;10539:15;10573:4;10570:1;10563:15;10589:135;10628:3;-1:-1:-1;;10649:17:1;;10646:43;;;10669:18;;:::i;:::-;-1:-1:-1;10716:1:1;10705:13;;10589:135::o;13005:125::-;13045:4;13073:1;13070;13067:8;13064:34;;;13078:18;;:::i;:::-;-1:-1:-1;13115:9:1;;13005:125::o;13135:128::-;13175:3;13206:1;13202:6;13199:1;13196:13;13193:39;;;13212:18;;:::i;:::-;-1:-1:-1;13248:9:1;;13135:128::o;13962:168::-;14002:7;14068:1;14064;14060:6;14056:14;14053:1;14050:21;14045:1;14038:9;14031:17;14027:45;14024:71;;;14075:18;;:::i;:::-;-1:-1:-1;14115:9:1;;13962:168::o;15378:1527::-;15602:3;15640:6;15634:13;15666:4;15679:51;15723:6;15718:3;15713:2;15705:6;15701:15;15679:51;:::i;:::-;15793:13;;15752:16;;;;15815:55;15793:13;15752:16;15837:15;;;15815:55;:::i;:::-;15959:13;;15892:20;;;15932:1;;16019;16041:18;;;;16094;;;;16121:93;;16199:4;16189:8;16185:19;16173:31;;16121:93;16262:2;16252:8;16249:16;16229:18;16226:40;16223:167;;;-1:-1:-1;;;16289:33:1;;16345:4;16342:1;16335:15;16375:4;16296:3;16363:17;16223:167;16406:18;16433:110;;;;16557:1;16552:328;;;;16399:481;;16433:110;-1:-1:-1;;16468:24:1;;16454:39;;16513:20;;;;-1:-1:-1;16433:110:1;;16552:328;15325:1;15318:14;;;15362:4;15349:18;;16647:1;16661:169;16675:8;16672:1;16669:15;16661:169;;;16757:14;;16742:13;;;16735:37;16800:16;;;;16692:10;;16661:169;;;16665:3;;16861:8;16854:5;16850:20;16843:27;;16399:481;-1:-1:-1;16896:3:1;;15378:1527;-1:-1:-1;;;;;;;;;;;15378:1527:1:o;19702:414::-;19904:2;19886:21;;;19943:2;19923:18;;;19916:30;19982:34;19977:2;19962:18;;19955:62;-1:-1:-1;;;20048:2:1;20033:18;;20026:48;20106:3;20091:19;;19702:414::o;20121:127::-;20182:10;20177:3;20173:20;20170:1;20163:31;20213:4;20210:1;20203:15;20237:4;20234:1;20227:15;20253:120;20293:1;20319;20309:35;;20324:18;;:::i;:::-;-1:-1:-1;20358:9:1;;20253:120::o;20378:112::-;20410:1;20436;20426:35;;20441:18;;:::i;:::-;-1:-1:-1;20475:9:1;;20378:112::o;20495:489::-;-1:-1:-1;;;;;20764:15:1;;;20746:34;;20816:15;;20811:2;20796:18;;20789:43;20863:2;20848:18;;20841:34;;;20911:3;20906:2;20891:18;;20884:31;;;20689:4;;20932:46;;20958:19;;20950:6;20932:46;:::i;:::-;20924:54;20495:489;-1:-1:-1;;;;;;20495:489:1:o;20989:249::-;21058:6;21111:2;21099:9;21090:7;21086:23;21082:32;21079:52;;;21127:1;21124;21117:12;21079:52;21159:9;21153:16;21178:30;21202:5;21178:30;:::i;21243:127::-;21304:10;21299:3;21295:20;21292:1;21285:31;21335:4;21332:1;21325:15;21359:4;21356:1;21349:15

Swarm Source

ipfs://3b2ba26dc63a01b3071c55c56be78515368e08cb338ada10d38d9ee1b8b6544d
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.