CRO Price: $0.08 (-0.14%)

Token

Lovestruck Hyenas (LoveHYN)

Overview

Max Total Supply

243 LoveHYN

Holders

188

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Balance
1 LoveHYN
0x5b2ee21f698bbdf6bdf477b1b2423438f3f3ad99
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
LovestruckHyenas

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at cronoscan.com on 2024-02-13
*/

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts (last updated v4.7.0) (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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts (last updated v4.7.0) (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`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (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);

    /**
     * @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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts (last updated v4.7.0) (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: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (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/3_Ballot.sol



pragma solidity ^0.8.9;



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

  string baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 999 ether;
  uint256 constant public maxSupply = 300;
  bool public paused = false;
  uint256[maxSupply] internal availableIds;
  
  address public teamWallet = 0xC1ec8665C40B8cAB988C3E126d96d28Bbcdd550a;
  uint256 public ArtistFee = 10; 
  address public ArtistWallet = 0xC1ec8665C40B8cAB988C3E126d96d28Bbcdd550a;
  address public creatorWallet = 0xC1ec8665C40B8cAB988C3E126d96d28Bbcdd550a;
  uint256 public creatorFee = 10;
  address public LpWallet = 0xC1ec8665C40B8cAB988C3E126d96d28Bbcdd550a;
  uint256 public LpFee = 10; 
  uint256 public marketingFee = 10; 
  address public marketingWallet =  0xC1ec8665C40B8cAB988C3E126d96d28Bbcdd550a;

  uint256 constant SCALE = 1000;

  constructor(string memory _initBaseURI) ERC721("Lovestruck Hyenas", "LoveHYN") {
    setBaseURI(_initBaseURI);
  }

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

  function _getNewId(uint256 _totalMinted) internal returns(uint256 value) {
    uint256 remaining = maxSupply - _totalMinted;
    uint256 rand = uint256(keccak256(abi.encodePacked(msg.sender, block.difficulty, block.timestamp, remaining))) % remaining;
    value = 0;
    // if array value exists, use, otherwise, use generated random value
    if (availableIds[rand] != 0)
      value = availableIds[rand];
    else
      value = rand;
    // store remaining - 1 in used ID to create mapping
    if (availableIds[remaining - 1] == 0)
      availableIds[rand] = remaining - 1;
    else
      availableIds[rand] = availableIds[remaining - 1];
    value += 1;
  } 

  // public
  function mint(uint256 amount) public payable {
      require(!paused, "paused");
      require(amount > 0, "amount shouldn't be zero");
      uint256 supply = totalSupply();
      require(supply + amount <= maxSupply, "Max supply exceeded");
      require(msg.value >= cost * amount, "insufficient funds");
      for (uint256 i = 0; i < amount; i++) {
          _safeMint(msg.sender, _getNewId(supply+i));
      }        
  }

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

  function tokenURI(uint256 tokenId)
      public
      view
      virtual
      override
      returns (string memory)
  {
      require(
          _exists(tokenId),
          "ERC721Metadata: URI query for nonexistent token"
      );

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

  function setCost(uint256 _newCost) public onlyOwner {
      cost = _newCost;
  }
  
  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 mintCost(address)
      external
      view
      returns (uint256)
  {
      return cost;
  }

  function setTeamWallet(address account) external onlyOwner {
    teamWallet = account;
  }

  function airdropNFTs(
    address[] memory _holders,
    uint256[] memory _counts
  ) external onlyOwner {
    require(_holders.length == _counts.length, "Input Data error");
    uint256 _tokenId = totalSupply();
    for (uint256 i = 0; i < _holders.length; i++) {
      for (uint256 j = 0; j < _counts[i]; j++) {
        _mint(_holders[i], _tokenId+1);
        availableIds[_tokenId] = maxSupply - _tokenId - 1;
        _tokenId++;
      }
    }
  }

  function withdraw() external {
    uint256 balance = address(this).balance;
    uint256 artist = balance * ArtistFee / SCALE;
    uint256 creator = balance * creatorFee / SCALE;
    uint256 lp = balance * LpFee / SCALE;
    uint256 marketing = balance * marketingFee / SCALE;
    
    (bool sent,) = payable(ArtistWallet).call{value: artist}("");
    require(sent, "Sending eth failed");
    (sent, ) = payable(creatorWallet).call{value: creator}("");
    require(sent, "Sending eth failed");
    (sent, ) = payable(LpWallet).call{value: lp}("");
    require(sent, "Sending eth failed");
    (sent, ) = payable(marketingWallet).call{value: marketing}("");
    require(sent, "Sending eth failed");
    (sent, ) = payable(teamWallet).call{value: address(this).balance}("");
    require(sent, "Sending eth failed");
  }
}

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":[],"name":"ArtistFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ArtistWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LpFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LpWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_holders","type":"address[]"},{"internalType":"uint256[]","name":"_counts","type":"uint256[]"}],"name":"airdropNFTs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"creatorFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"creatorWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"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":"address","name":"account","type":"address"}],"name":"setTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062000258565b50683627e8f712373c0000600d55600e805460ff1916905561013b805473c1ec8665c40b8cab988c3e126d96d28bbcdd550a6001600160a01b03199182168117909255600a61013c81905561013d805483168417905561013e805483168417905561013f81905561014080548316841790556101418190556101425561014380549091169091179055348015620000be57600080fd5b5060405162002ddd38038062002ddd833981016040819052620000e19162000314565b60408051808201825260118152704c6f766573747275636b204879656e617360781b6020808301918252835180850190945260078452662637bb32a42ca760c91b908401528151919291620001399160009162000258565b5080516200014f90600190602084019062000258565b5050506200016c620001666200017e60201b60201c565b62000182565b6200017781620001d4565b506200042d565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001de620001f7565b8051620001f390600b90602084019062000258565b5050565b600a546001600160a01b03163314620002565760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b8280546200026690620003f0565b90600052602060002090601f0160209004810192826200028a5760008555620002d5565b82601f10620002a557805160ff1916838001178555620002d5565b82800160010185558215620002d5579182015b82811115620002d5578251825591602001919060010190620002b8565b50620002e3929150620002e7565b5090565b5b80821115620002e35760008155600101620002e8565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200032857600080fd5b82516001600160401b03808211156200034057600080fd5b818501915085601f8301126200035557600080fd5b8151818111156200036a576200036a620002fe565b604051601f8201601f19908116603f01168101908382118183101715620003955762000395620002fe565b816040528281528886848701011115620003ae57600080fd5b600093505b82841015620003d25784840186015181850187015292850192620003b3565b82841115620003e45760008684830101525b98975050505050505050565b600181811c908216806200040557607f821691505b602082108114156200042757634e487b7160e01b600052602260045260246000fd5b50919050565b6129a0806200043d6000396000f3fe6080604052600436106102515760003560e01c80636b67c4df11610139578063a5c0cf4e116100b6578063d5abeb011161007a578063d5abeb01146106b8578063da3ef23f146106ce578063e213b5f6146106ee578063e88958dc1461070e578063e985e9c514610725578063f2fde38b1461076e57600080fd5b8063a5c0cf4e14610635578063b88d4fde1461064c578063c66828621461066c578063c87b56dd14610681578063c885ca86146106a157600080fd5b806383cf6e43116100fd57806383cf6e43146105ae5780638da5cb5b146105cf57806395d89b41146105ed578063a0712d6814610602578063a22cb4651461061557600080fd5b80636b67c4df1461052057806370a0823114610537578063715018a61461055757806375f0a8741461056c5780637cdc65f21461058d57600080fd5b80632f745c59116101d257806344a0d68a1161019657806344a0d68a146104655780634f6ccce71461048557806355f804b3146104a557806359927044146104c55780635c975abb146104e65780636352211e1461050057600080fd5b80632f745c59146103c2578063362c3484146103e25780633ccfd60b1461040357806342842e0e14610418578063438b63001461043857600080fd5b806313faede61161021957806313faede6146103275780631525ff7d1461034b57806318160ddd1461036b57806323b872dd146103805780632acc659e146103a057600080fd5b806301ffc9a71461025657806302329a291461028b57806306fdde03146102ad578063081812fc146102cf578063095ea7b314610307575b600080fd5b34801561026257600080fd5b5061027661027136600461219f565b61078e565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a63660046121d1565b6107b9565b005b3480156102b957600080fd5b506102c26107d4565b6040516102829190612244565b3480156102db57600080fd5b506102ef6102ea366004612257565b610866565b6040516001600160a01b039091168152602001610282565b34801561031357600080fd5b506102ab610322366004612287565b61088d565b34801561033357600080fd5b5061033d600d5481565b604051908152602001610282565b34801561035757600080fd5b506102ab6103663660046122b1565b6109a8565b34801561037757600080fd5b5060085461033d565b34801561038c57600080fd5b506102ab61039b3660046122cc565b6109d3565b3480156103ac57600080fd5b5061033d6103bb3660046122b1565b50600d5490565b3480156103ce57600080fd5b5061033d6103dd366004612287565b610a04565b3480156103ee57600080fd5b50610140546102ef906001600160a01b031681565b34801561040f57600080fd5b506102ab610a9a565b34801561042457600080fd5b506102ab6104333660046122cc565b610d74565b34801561044457600080fd5b506104586104533660046122b1565b610d8f565b6040516102829190612308565b34801561047157600080fd5b506102ab610480366004612257565b610e31565b34801561049157600080fd5b5061033d6104a0366004612257565b610e3e565b3480156104b157600080fd5b506102ab6104c03660046123eb565b610ed1565b3480156104d157600080fd5b5061013b546102ef906001600160a01b031681565b3480156104f257600080fd5b50600e546102769060ff1681565b34801561050c57600080fd5b506102ef61051b366004612257565b610ef0565b34801561052c57600080fd5b5061033d6101425481565b34801561054357600080fd5b5061033d6105523660046122b1565b610f50565b34801561056357600080fd5b506102ab610fd6565b34801561057857600080fd5b50610143546102ef906001600160a01b031681565b34801561059957600080fd5b5061013e546102ef906001600160a01b031681565b3480156105ba57600080fd5b5061013d546102ef906001600160a01b031681565b3480156105db57600080fd5b50600a546001600160a01b03166102ef565b3480156105f957600080fd5b506102c2610fea565b6102ab610610366004612257565b610ff9565b34801561062157600080fd5b506102ab610630366004612434565b61116d565b34801561064157600080fd5b5061033d6101415481565b34801561065857600080fd5b506102ab610667366004612467565b611178565b34801561067857600080fd5b506102c26111b0565b34801561068d57600080fd5b506102c261069c366004612257565b61123e565b3480156106ad57600080fd5b5061033d61013c5481565b3480156106c457600080fd5b5061033d61012c81565b3480156106da57600080fd5b506102ab6106e93660046123eb565b61131c565b3480156106fa57600080fd5b506102ab610709366004612572565b611337565b34801561071a57600080fd5b5061033d61013f5481565b34801561073157600080fd5b50610276610740366004612632565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561077a57600080fd5b506102ab6107893660046122b1565b611450565b60006001600160e01b0319821663780e9d6360e01b14806107b357506107b3826114c9565b92915050565b6107c1611519565b600e805460ff1916911515919091179055565b6060600080546107e39061265c565b80601f016020809104026020016040519081016040528092919081815260200182805461080f9061265c565b801561085c5780601f106108315761010080835404028352916020019161085c565b820191906000526020600020905b81548152906001019060200180831161083f57829003601f168201915b5050505050905090565b600061087182611573565b506000908152600460205260409020546001600160a01b031690565b600061089882610ef0565b9050806001600160a01b0316836001600160a01b0316141561090b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061092757506109278133610740565b6109995760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610902565b6109a383836115d2565b505050565b6109b0611519565b61013b80546001600160a01b0319166001600160a01b0392909216919091179055565b6109dd3382611640565b6109f95760405162461bcd60e51b815260040161090290612697565b6109a38383836116bf565b6000610a0f83610f50565b8210610a715760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610902565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61013c5447906000906103e890610ab190846126fb565b610abb9190612730565b905060006103e861013f5484610ad191906126fb565b610adb9190612730565b905060006103e86101415485610af191906126fb565b610afb9190612730565b905060006103e86101425486610b1191906126fb565b610b1b9190612730565b61013d546040519192506000916001600160a01b039091169086908381818185875af1925050503d8060008114610b6e576040519150601f19603f3d011682016040523d82523d6000602084013e610b73565b606091505b5050905080610b945760405162461bcd60e51b815260040161090290612744565b61013e546040516001600160a01b03909116908590600081818185875af1925050503d8060008114610be2576040519150601f19603f3d011682016040523d82523d6000602084013e610be7565b606091505b50508091505080610c0a5760405162461bcd60e51b815260040161090290612744565b610140546040516001600160a01b03909116908490600081818185875af1925050503d8060008114610c58576040519150601f19603f3d011682016040523d82523d6000602084013e610c5d565b606091505b50508091505080610c805760405162461bcd60e51b815260040161090290612744565b610143546040516001600160a01b03909116908390600081818185875af1925050503d8060008114610cce576040519150601f19603f3d011682016040523d82523d6000602084013e610cd3565b606091505b50508091505080610cf65760405162461bcd60e51b815260040161090290612744565b61013b546040516001600160a01b03909116904790600081818185875af1925050503d8060008114610d44576040519150601f19603f3d011682016040523d82523d6000602084013e610d49565b606091505b50508091505080610d6c5760405162461bcd60e51b815260040161090290612744565b505050505050565b6109a383838360405180602001604052806000815250611178565b60606000610d9c83610f50565b905060008167ffffffffffffffff811115610db957610db961234c565b604051908082528060200260200182016040528015610de2578160200160208202803683370190505b50905060005b82811015610e2957610dfa8582610a04565b828281518110610e0c57610e0c612770565b602090810291909101015280610e2181612786565b915050610de8565b509392505050565b610e39611519565b600d55565b6000610e4960085490565b8210610eac5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610902565b60088281548110610ebf57610ebf612770565b90600052602060002001549050919050565b610ed9611519565b8051610eec90600b9060208401906120f0565b5050565b6000818152600260205260408120546001600160a01b0316806107b35760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610902565b60006001600160a01b038216610fba5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610902565b506001600160a01b031660009081526003602052604090205490565b610fde611519565b610fe86000611866565b565b6060600180546107e39061265c565b600e5460ff16156110355760405162461bcd60e51b81526020600482015260066024820152651c185d5cd95960d21b6044820152606401610902565b600081116110855760405162461bcd60e51b815260206004820152601860248201527f616d6f756e742073686f756c646e2774206265207a65726f00000000000000006044820152606401610902565b600061109060085490565b905061012c61109f83836127a1565b11156110e35760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b6044820152606401610902565b81600d546110f191906126fb565b3410156111355760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610902565b60005b828110156109a35761115b3361115661115184866127a1565b6118b8565b6119f1565b8061116581612786565b915050611138565b610eec338383611a0b565b6111823383611640565b61119e5760405162461bcd60e51b815260040161090290612697565b6111aa84848484611ada565b50505050565b600c80546111bd9061265c565b80601f01602080910402602001604051908101604052809291908181526020018280546111e99061265c565b80156112365780601f1061120b57610100808354040283529160200191611236565b820191906000526020600020905b81548152906001019060200180831161121957829003601f168201915b505050505081565b6000818152600260205260409020546060906001600160a01b03166112bd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610902565b60006112c7611b0d565b905060008151116112e75760405180602001604052806000815250611315565b806112f184611b1c565b600c604051602001611305939291906127b9565b6040516020818303038152906040525b9392505050565b611324611519565b8051610eec90600c9060208401906120f0565b61133f611519565b80518251146113835760405162461bcd60e51b815260206004820152601060248201526f24b7383aba102230ba309032b93937b960811b6044820152606401610902565b600061138e60085490565b905060005b83518110156111aa5760005b8382815181106113b1576113b1612770565b602002602001015181101561143d576113ef8583815181106113d5576113d5612770565b60200260200101518460016113ea91906127a1565b611c1a565b60016113fd8461012c61287d565b611407919061287d565b600f8461012c811061141b5761141b612770565b01558261142781612786565b935050808061143590612786565b91505061139f565b508061144881612786565b915050611393565b611458611519565b6001600160a01b0381166114bd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610902565b6114c681611866565b50565b60006001600160e01b031982166380ac58cd60e01b14806114fa57506001600160e01b03198216635b5e139f60e01b145b806107b357506301ffc9a760e01b6001600160e01b03198316146107b3565b600a546001600160a01b03163314610fe85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610902565b6000818152600260205260409020546001600160a01b03166114c65760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610902565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061160782610ef0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061164c83610ef0565b9050806001600160a01b0316846001600160a01b0316148061169357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806116b75750836001600160a01b03166116ac84610866565b6001600160a01b0316145b949350505050565b826001600160a01b03166116d282610ef0565b6001600160a01b0316146117365760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610902565b6001600160a01b0382166117985760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610902565b6117a3838383611d68565b6117ae6000826115d2565b6001600160a01b03831660009081526003602052604081208054600192906117d790849061287d565b90915550506001600160a01b03821660009081526003602052604081208054600192906118059084906127a1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000806118c78361012c61287d565b6040516bffffffffffffffffffffffff193360601b1660208201524460348201524260548201526074810182905290915060009082906094016040516020818303038152906040528051906020012060001c6119239190612894565b905060009250600f8161012c811061193d5761193d612770565b01541561196157600f8161012c811061195857611958612770565b01549250611965565b8092505b600f61197260018461287d565b61012c811061198357611983612770565b01546119af5761199460018361287d565b600f8261012c81106119a8576119a8612770565b01556119e6565b600f6119bc60018461287d565b61012c81106119cd576119cd612770565b0154600f8261012c81106119e3576119e3612770565b01555b6116b76001846127a1565b610eec828260405180602001604052806000815250611e20565b816001600160a01b0316836001600160a01b03161415611a6d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610902565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611ae58484846116bf565b611af184848484611e53565b6111aa5760405162461bcd60e51b8152600401610902906128a8565b6060600b80546107e39061265c565b606081611b405750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b6a5780611b5481612786565b9150611b639050600a83612730565b9150611b44565b60008167ffffffffffffffff811115611b8557611b8561234c565b6040519080825280601f01601f191660200182016040528015611baf576020820181803683370190505b5090505b84156116b757611bc460018361287d565b9150611bd1600a86612894565b611bdc9060306127a1565b60f81b818381518110611bf157611bf1612770565b60200101906001600160f81b031916908160001a905350611c13600a86612730565b9450611bb3565b6001600160a01b038216611c705760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610902565b6000818152600260205260409020546001600160a01b031615611cd55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610902565b611ce160008383611d68565b6001600160a01b0382166000908152600360205260408120805460019290611d0a9084906127a1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b038316611dc357611dbe81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611de6565b816001600160a01b0316836001600160a01b031614611de657611de68382611f60565b6001600160a01b038216611dfd576109a381611ffd565b826001600160a01b0316826001600160a01b0316146109a3576109a382826120ac565b611e2a8383611c1a565b611e376000848484611e53565b6109a35760405162461bcd60e51b8152600401610902906128a8565b60006001600160a01b0384163b15611f5557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e979033908990889088906004016128fa565b602060405180830381600087803b158015611eb157600080fd5b505af1925050508015611ee1575060408051601f3d908101601f19168201909252611ede91810190612937565b60015b611f3b573d808015611f0f576040519150601f19603f3d011682016040523d82523d6000602084013e611f14565b606091505b508051611f335760405162461bcd60e51b8152600401610902906128a8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116b7565b506001949350505050565b60006001611f6d84610f50565b611f77919061287d565b600083815260076020526040902054909150808214611fca576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061200f9060019061287d565b6000838152600960205260408120546008805493945090928490811061203757612037612770565b90600052602060002001549050806008838154811061205857612058612770565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061209057612090612954565b6001900381819060005260206000200160009055905550505050565b60006120b783610f50565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546120fc9061265c565b90600052602060002090601f01602090048101928261211e5760008555612164565b82601f1061213757805160ff1916838001178555612164565b82800160010185558215612164579182015b82811115612164578251825591602001919060010190612149565b50612170929150612174565b5090565b5b808211156121705760008155600101612175565b6001600160e01b0319811681146114c657600080fd5b6000602082840312156121b157600080fd5b813561131581612189565b803580151581146121cc57600080fd5b919050565b6000602082840312156121e357600080fd5b611315826121bc565b60005b838110156122075781810151838201526020016121ef565b838111156111aa5750506000910152565b600081518084526122308160208601602086016121ec565b601f01601f19169290920160200192915050565b6020815260006113156020830184612218565b60006020828403121561226957600080fd5b5035919050565b80356001600160a01b03811681146121cc57600080fd5b6000806040838503121561229a57600080fd5b6122a383612270565b946020939093013593505050565b6000602082840312156122c357600080fd5b61131582612270565b6000806000606084860312156122e157600080fd5b6122ea84612270565b92506122f860208501612270565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b8181101561234057835183529284019291840191600101612324565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561238b5761238b61234c565b604052919050565b600067ffffffffffffffff8311156123ad576123ad61234c565b6123c0601f8401601f1916602001612362565b90508281528383830111156123d457600080fd5b828260208301376000602084830101529392505050565b6000602082840312156123fd57600080fd5b813567ffffffffffffffff81111561241457600080fd5b8201601f8101841361242557600080fd5b6116b784823560208401612393565b6000806040838503121561244757600080fd5b61245083612270565b915061245e602084016121bc565b90509250929050565b6000806000806080858703121561247d57600080fd5b61248685612270565b935061249460208601612270565b925060408501359150606085013567ffffffffffffffff8111156124b757600080fd5b8501601f810187136124c857600080fd5b6124d787823560208401612393565b91505092959194509250565b600067ffffffffffffffff8211156124fd576124fd61234c565b5060051b60200190565b600082601f83011261251857600080fd5b8135602061252d612528836124e3565b612362565b82815260059290921b8401810191818101908684111561254c57600080fd5b8286015b848110156125675780358352918301918301612550565b509695505050505050565b6000806040838503121561258557600080fd5b823567ffffffffffffffff8082111561259d57600080fd5b818501915085601f8301126125b157600080fd5b813560206125c1612528836124e3565b82815260059290921b840181019181810190898411156125e057600080fd5b948201945b83861015612605576125f686612270565b825294820194908201906125e5565b9650508601359250508082111561261b57600080fd5b5061262885828601612507565b9150509250929050565b6000806040838503121561264557600080fd5b61264e83612270565b915061245e60208401612270565b600181811c9082168061267057607f821691505b6020821081141561269157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612715576127156126e5565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261273f5761273f61271a565b500490565b60208082526012908201527114d95b991a5b99c8195d1a0819985a5b195960721b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600060001982141561279a5761279a6126e5565b5060010190565b600082198211156127b4576127b46126e5565b500190565b6000845160206127cc8285838a016121ec565b8551918401916127df8184848a016121ec565b8554920191600090600181811c90808316806127fc57607f831692505b85831081141561281a57634e487b7160e01b85526022600452602485fd5b80801561282e576001811461283f5761286c565b60ff1985168852838801955061286c565b60008b81526020902060005b858110156128645781548a82015290840190880161284b565b505083880195505b50939b9a5050505050505050505050565b60008282101561288f5761288f6126e5565b500390565b6000826128a3576128a361271a565b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061292d90830184612218565b9695505050505050565b60006020828403121561294957600080fd5b815161131581612189565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220cfaf6f3e367b4a56d69b3220c88849faea3805c77304bf5081fe317d807400e964736f6c634300080900330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d5153466b6e6a797145744665375669697844396e7872366571596647703853786e72433166467268365369622f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c80636b67c4df11610139578063a5c0cf4e116100b6578063d5abeb011161007a578063d5abeb01146106b8578063da3ef23f146106ce578063e213b5f6146106ee578063e88958dc1461070e578063e985e9c514610725578063f2fde38b1461076e57600080fd5b8063a5c0cf4e14610635578063b88d4fde1461064c578063c66828621461066c578063c87b56dd14610681578063c885ca86146106a157600080fd5b806383cf6e43116100fd57806383cf6e43146105ae5780638da5cb5b146105cf57806395d89b41146105ed578063a0712d6814610602578063a22cb4651461061557600080fd5b80636b67c4df1461052057806370a0823114610537578063715018a61461055757806375f0a8741461056c5780637cdc65f21461058d57600080fd5b80632f745c59116101d257806344a0d68a1161019657806344a0d68a146104655780634f6ccce71461048557806355f804b3146104a557806359927044146104c55780635c975abb146104e65780636352211e1461050057600080fd5b80632f745c59146103c2578063362c3484146103e25780633ccfd60b1461040357806342842e0e14610418578063438b63001461043857600080fd5b806313faede61161021957806313faede6146103275780631525ff7d1461034b57806318160ddd1461036b57806323b872dd146103805780632acc659e146103a057600080fd5b806301ffc9a71461025657806302329a291461028b57806306fdde03146102ad578063081812fc146102cf578063095ea7b314610307575b600080fd5b34801561026257600080fd5b5061027661027136600461219f565b61078e565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a63660046121d1565b6107b9565b005b3480156102b957600080fd5b506102c26107d4565b6040516102829190612244565b3480156102db57600080fd5b506102ef6102ea366004612257565b610866565b6040516001600160a01b039091168152602001610282565b34801561031357600080fd5b506102ab610322366004612287565b61088d565b34801561033357600080fd5b5061033d600d5481565b604051908152602001610282565b34801561035757600080fd5b506102ab6103663660046122b1565b6109a8565b34801561037757600080fd5b5060085461033d565b34801561038c57600080fd5b506102ab61039b3660046122cc565b6109d3565b3480156103ac57600080fd5b5061033d6103bb3660046122b1565b50600d5490565b3480156103ce57600080fd5b5061033d6103dd366004612287565b610a04565b3480156103ee57600080fd5b50610140546102ef906001600160a01b031681565b34801561040f57600080fd5b506102ab610a9a565b34801561042457600080fd5b506102ab6104333660046122cc565b610d74565b34801561044457600080fd5b506104586104533660046122b1565b610d8f565b6040516102829190612308565b34801561047157600080fd5b506102ab610480366004612257565b610e31565b34801561049157600080fd5b5061033d6104a0366004612257565b610e3e565b3480156104b157600080fd5b506102ab6104c03660046123eb565b610ed1565b3480156104d157600080fd5b5061013b546102ef906001600160a01b031681565b3480156104f257600080fd5b50600e546102769060ff1681565b34801561050c57600080fd5b506102ef61051b366004612257565b610ef0565b34801561052c57600080fd5b5061033d6101425481565b34801561054357600080fd5b5061033d6105523660046122b1565b610f50565b34801561056357600080fd5b506102ab610fd6565b34801561057857600080fd5b50610143546102ef906001600160a01b031681565b34801561059957600080fd5b5061013e546102ef906001600160a01b031681565b3480156105ba57600080fd5b5061013d546102ef906001600160a01b031681565b3480156105db57600080fd5b50600a546001600160a01b03166102ef565b3480156105f957600080fd5b506102c2610fea565b6102ab610610366004612257565b610ff9565b34801561062157600080fd5b506102ab610630366004612434565b61116d565b34801561064157600080fd5b5061033d6101415481565b34801561065857600080fd5b506102ab610667366004612467565b611178565b34801561067857600080fd5b506102c26111b0565b34801561068d57600080fd5b506102c261069c366004612257565b61123e565b3480156106ad57600080fd5b5061033d61013c5481565b3480156106c457600080fd5b5061033d61012c81565b3480156106da57600080fd5b506102ab6106e93660046123eb565b61131c565b3480156106fa57600080fd5b506102ab610709366004612572565b611337565b34801561071a57600080fd5b5061033d61013f5481565b34801561073157600080fd5b50610276610740366004612632565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561077a57600080fd5b506102ab6107893660046122b1565b611450565b60006001600160e01b0319821663780e9d6360e01b14806107b357506107b3826114c9565b92915050565b6107c1611519565b600e805460ff1916911515919091179055565b6060600080546107e39061265c565b80601f016020809104026020016040519081016040528092919081815260200182805461080f9061265c565b801561085c5780601f106108315761010080835404028352916020019161085c565b820191906000526020600020905b81548152906001019060200180831161083f57829003601f168201915b5050505050905090565b600061087182611573565b506000908152600460205260409020546001600160a01b031690565b600061089882610ef0565b9050806001600160a01b0316836001600160a01b0316141561090b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061092757506109278133610740565b6109995760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610902565b6109a383836115d2565b505050565b6109b0611519565b61013b80546001600160a01b0319166001600160a01b0392909216919091179055565b6109dd3382611640565b6109f95760405162461bcd60e51b815260040161090290612697565b6109a38383836116bf565b6000610a0f83610f50565b8210610a715760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610902565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61013c5447906000906103e890610ab190846126fb565b610abb9190612730565b905060006103e861013f5484610ad191906126fb565b610adb9190612730565b905060006103e86101415485610af191906126fb565b610afb9190612730565b905060006103e86101425486610b1191906126fb565b610b1b9190612730565b61013d546040519192506000916001600160a01b039091169086908381818185875af1925050503d8060008114610b6e576040519150601f19603f3d011682016040523d82523d6000602084013e610b73565b606091505b5050905080610b945760405162461bcd60e51b815260040161090290612744565b61013e546040516001600160a01b03909116908590600081818185875af1925050503d8060008114610be2576040519150601f19603f3d011682016040523d82523d6000602084013e610be7565b606091505b50508091505080610c0a5760405162461bcd60e51b815260040161090290612744565b610140546040516001600160a01b03909116908490600081818185875af1925050503d8060008114610c58576040519150601f19603f3d011682016040523d82523d6000602084013e610c5d565b606091505b50508091505080610c805760405162461bcd60e51b815260040161090290612744565b610143546040516001600160a01b03909116908390600081818185875af1925050503d8060008114610cce576040519150601f19603f3d011682016040523d82523d6000602084013e610cd3565b606091505b50508091505080610cf65760405162461bcd60e51b815260040161090290612744565b61013b546040516001600160a01b03909116904790600081818185875af1925050503d8060008114610d44576040519150601f19603f3d011682016040523d82523d6000602084013e610d49565b606091505b50508091505080610d6c5760405162461bcd60e51b815260040161090290612744565b505050505050565b6109a383838360405180602001604052806000815250611178565b60606000610d9c83610f50565b905060008167ffffffffffffffff811115610db957610db961234c565b604051908082528060200260200182016040528015610de2578160200160208202803683370190505b50905060005b82811015610e2957610dfa8582610a04565b828281518110610e0c57610e0c612770565b602090810291909101015280610e2181612786565b915050610de8565b509392505050565b610e39611519565b600d55565b6000610e4960085490565b8210610eac5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610902565b60088281548110610ebf57610ebf612770565b90600052602060002001549050919050565b610ed9611519565b8051610eec90600b9060208401906120f0565b5050565b6000818152600260205260408120546001600160a01b0316806107b35760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610902565b60006001600160a01b038216610fba5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610902565b506001600160a01b031660009081526003602052604090205490565b610fde611519565b610fe86000611866565b565b6060600180546107e39061265c565b600e5460ff16156110355760405162461bcd60e51b81526020600482015260066024820152651c185d5cd95960d21b6044820152606401610902565b600081116110855760405162461bcd60e51b815260206004820152601860248201527f616d6f756e742073686f756c646e2774206265207a65726f00000000000000006044820152606401610902565b600061109060085490565b905061012c61109f83836127a1565b11156110e35760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b6044820152606401610902565b81600d546110f191906126fb565b3410156111355760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610902565b60005b828110156109a35761115b3361115661115184866127a1565b6118b8565b6119f1565b8061116581612786565b915050611138565b610eec338383611a0b565b6111823383611640565b61119e5760405162461bcd60e51b815260040161090290612697565b6111aa84848484611ada565b50505050565b600c80546111bd9061265c565b80601f01602080910402602001604051908101604052809291908181526020018280546111e99061265c565b80156112365780601f1061120b57610100808354040283529160200191611236565b820191906000526020600020905b81548152906001019060200180831161121957829003601f168201915b505050505081565b6000818152600260205260409020546060906001600160a01b03166112bd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610902565b60006112c7611b0d565b905060008151116112e75760405180602001604052806000815250611315565b806112f184611b1c565b600c604051602001611305939291906127b9565b6040516020818303038152906040525b9392505050565b611324611519565b8051610eec90600c9060208401906120f0565b61133f611519565b80518251146113835760405162461bcd60e51b815260206004820152601060248201526f24b7383aba102230ba309032b93937b960811b6044820152606401610902565b600061138e60085490565b905060005b83518110156111aa5760005b8382815181106113b1576113b1612770565b602002602001015181101561143d576113ef8583815181106113d5576113d5612770565b60200260200101518460016113ea91906127a1565b611c1a565b60016113fd8461012c61287d565b611407919061287d565b600f8461012c811061141b5761141b612770565b01558261142781612786565b935050808061143590612786565b91505061139f565b508061144881612786565b915050611393565b611458611519565b6001600160a01b0381166114bd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610902565b6114c681611866565b50565b60006001600160e01b031982166380ac58cd60e01b14806114fa57506001600160e01b03198216635b5e139f60e01b145b806107b357506301ffc9a760e01b6001600160e01b03198316146107b3565b600a546001600160a01b03163314610fe85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610902565b6000818152600260205260409020546001600160a01b03166114c65760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610902565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061160782610ef0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061164c83610ef0565b9050806001600160a01b0316846001600160a01b0316148061169357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806116b75750836001600160a01b03166116ac84610866565b6001600160a01b0316145b949350505050565b826001600160a01b03166116d282610ef0565b6001600160a01b0316146117365760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610902565b6001600160a01b0382166117985760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610902565b6117a3838383611d68565b6117ae6000826115d2565b6001600160a01b03831660009081526003602052604081208054600192906117d790849061287d565b90915550506001600160a01b03821660009081526003602052604081208054600192906118059084906127a1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000806118c78361012c61287d565b6040516bffffffffffffffffffffffff193360601b1660208201524460348201524260548201526074810182905290915060009082906094016040516020818303038152906040528051906020012060001c6119239190612894565b905060009250600f8161012c811061193d5761193d612770565b01541561196157600f8161012c811061195857611958612770565b01549250611965565b8092505b600f61197260018461287d565b61012c811061198357611983612770565b01546119af5761199460018361287d565b600f8261012c81106119a8576119a8612770565b01556119e6565b600f6119bc60018461287d565b61012c81106119cd576119cd612770565b0154600f8261012c81106119e3576119e3612770565b01555b6116b76001846127a1565b610eec828260405180602001604052806000815250611e20565b816001600160a01b0316836001600160a01b03161415611a6d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610902565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611ae58484846116bf565b611af184848484611e53565b6111aa5760405162461bcd60e51b8152600401610902906128a8565b6060600b80546107e39061265c565b606081611b405750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b6a5780611b5481612786565b9150611b639050600a83612730565b9150611b44565b60008167ffffffffffffffff811115611b8557611b8561234c565b6040519080825280601f01601f191660200182016040528015611baf576020820181803683370190505b5090505b84156116b757611bc460018361287d565b9150611bd1600a86612894565b611bdc9060306127a1565b60f81b818381518110611bf157611bf1612770565b60200101906001600160f81b031916908160001a905350611c13600a86612730565b9450611bb3565b6001600160a01b038216611c705760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610902565b6000818152600260205260409020546001600160a01b031615611cd55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610902565b611ce160008383611d68565b6001600160a01b0382166000908152600360205260408120805460019290611d0a9084906127a1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b038316611dc357611dbe81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611de6565b816001600160a01b0316836001600160a01b031614611de657611de68382611f60565b6001600160a01b038216611dfd576109a381611ffd565b826001600160a01b0316826001600160a01b0316146109a3576109a382826120ac565b611e2a8383611c1a565b611e376000848484611e53565b6109a35760405162461bcd60e51b8152600401610902906128a8565b60006001600160a01b0384163b15611f5557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e979033908990889088906004016128fa565b602060405180830381600087803b158015611eb157600080fd5b505af1925050508015611ee1575060408051601f3d908101601f19168201909252611ede91810190612937565b60015b611f3b573d808015611f0f576040519150601f19603f3d011682016040523d82523d6000602084013e611f14565b606091505b508051611f335760405162461bcd60e51b8152600401610902906128a8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116b7565b506001949350505050565b60006001611f6d84610f50565b611f77919061287d565b600083815260076020526040902054909150808214611fca576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061200f9060019061287d565b6000838152600960205260408120546008805493945090928490811061203757612037612770565b90600052602060002001549050806008838154811061205857612058612770565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061209057612090612954565b6001900381819060005260206000200160009055905550505050565b60006120b783610f50565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546120fc9061265c565b90600052602060002090601f01602090048101928261211e5760008555612164565b82601f1061213757805160ff1916838001178555612164565b82800160010185558215612164579182015b82811115612164578251825591602001919060010190612149565b50612170929150612174565b5090565b5b808211156121705760008155600101612175565b6001600160e01b0319811681146114c657600080fd5b6000602082840312156121b157600080fd5b813561131581612189565b803580151581146121cc57600080fd5b919050565b6000602082840312156121e357600080fd5b611315826121bc565b60005b838110156122075781810151838201526020016121ef565b838111156111aa5750506000910152565b600081518084526122308160208601602086016121ec565b601f01601f19169290920160200192915050565b6020815260006113156020830184612218565b60006020828403121561226957600080fd5b5035919050565b80356001600160a01b03811681146121cc57600080fd5b6000806040838503121561229a57600080fd5b6122a383612270565b946020939093013593505050565b6000602082840312156122c357600080fd5b61131582612270565b6000806000606084860312156122e157600080fd5b6122ea84612270565b92506122f860208501612270565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b8181101561234057835183529284019291840191600101612324565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561238b5761238b61234c565b604052919050565b600067ffffffffffffffff8311156123ad576123ad61234c565b6123c0601f8401601f1916602001612362565b90508281528383830111156123d457600080fd5b828260208301376000602084830101529392505050565b6000602082840312156123fd57600080fd5b813567ffffffffffffffff81111561241457600080fd5b8201601f8101841361242557600080fd5b6116b784823560208401612393565b6000806040838503121561244757600080fd5b61245083612270565b915061245e602084016121bc565b90509250929050565b6000806000806080858703121561247d57600080fd5b61248685612270565b935061249460208601612270565b925060408501359150606085013567ffffffffffffffff8111156124b757600080fd5b8501601f810187136124c857600080fd5b6124d787823560208401612393565b91505092959194509250565b600067ffffffffffffffff8211156124fd576124fd61234c565b5060051b60200190565b600082601f83011261251857600080fd5b8135602061252d612528836124e3565b612362565b82815260059290921b8401810191818101908684111561254c57600080fd5b8286015b848110156125675780358352918301918301612550565b509695505050505050565b6000806040838503121561258557600080fd5b823567ffffffffffffffff8082111561259d57600080fd5b818501915085601f8301126125b157600080fd5b813560206125c1612528836124e3565b82815260059290921b840181019181810190898411156125e057600080fd5b948201945b83861015612605576125f686612270565b825294820194908201906125e5565b9650508601359250508082111561261b57600080fd5b5061262885828601612507565b9150509250929050565b6000806040838503121561264557600080fd5b61264e83612270565b915061245e60208401612270565b600181811c9082168061267057607f821691505b6020821081141561269157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612715576127156126e5565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261273f5761273f61271a565b500490565b60208082526012908201527114d95b991a5b99c8195d1a0819985a5b195960721b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600060001982141561279a5761279a6126e5565b5060010190565b600082198211156127b4576127b46126e5565b500190565b6000845160206127cc8285838a016121ec565b8551918401916127df8184848a016121ec565b8554920191600090600181811c90808316806127fc57607f831692505b85831081141561281a57634e487b7160e01b85526022600452602485fd5b80801561282e576001811461283f5761286c565b60ff1985168852838801955061286c565b60008b81526020902060005b858110156128645781548a82015290840190880161284b565b505083880195505b50939b9a5050505050505050505050565b60008282101561288f5761288f6126e5565b500390565b6000826128a3576128a361271a565b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061292d90830184612218565b9695505050505050565b60006020828403121561294957600080fd5b815161131581612189565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220cfaf6f3e367b4a56d69b3220c88849faea3805c77304bf5081fe317d807400e964736f6c63430008090033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d5153466b6e6a797145744665375669697844396e7872366571596647703853786e72433166467268365369622f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): https://ipfs.io/ipfs/QmQSFknjyqEtFe7ViixD9nxr6eqYfGp8SxnrC1fFrh6Sib/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [2] : 68747470733a2f2f697066732e696f2f697066732f516d5153466b6e6a797145
Arg [3] : 744665375669697844396e7872366571596647703853786e7243316646726836
Arg [4] : 5369622f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

46228:5182:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40010:224;;;;;;;;;;-1:-1:-1;40010:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;40010:224:0;;;;;;;;49805:75;;;;;;;;;;-1:-1:-1;49805:75:0;;;;;:::i;:::-;;:::i;:::-;;26744:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28257:171::-;;;;;;;;;;-1:-1:-1;28257:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:1;;;2024:51;;2012:2;1997:18;28257:171:0;1878:203:1;27774:417:0;;;;;;;;;;-1:-1:-1;27774:417:0;;;;;:::i;:::-;;:::i;46381:31::-;;;;;;;;;;;;;;;;;;;2669:25:1;;;2657:2;2642:18;46381:31:0;2523:177:1;50007:92:0;;;;;;;;;;-1:-1:-1;50007:92:0;;;;;:::i;:::-;;:::i;40650:113::-;;;;;;;;;;-1:-1:-1;40738:10:0;:17;40650:113;;28957:336;;;;;;;;;;-1:-1:-1;28957:336:0;;;;;:::i;:::-;;:::i;49892:109::-;;;;;;;;;;-1:-1:-1;49892:109:0;;;;;:::i;:::-;-1:-1:-1;49991:4:0;;;49892:109;40318:256;;;;;;;;;;-1:-1:-1;40318:256:0;;;;;:::i;:::-;;:::i;46841:68::-;;;;;;;;;;-1:-1:-1;46841:68:0;;;;-1:-1:-1;;;;;46841:68:0;;;50574:833;;;;;;;;;;;;;:::i;29364:185::-;;;;;;;;;;-1:-1:-1;29364:185:0;;;;;:::i;:::-;;:::i;48484:368::-;;;;;;;;;;-1:-1:-1;48484:368:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;49462:82::-;;;;;;;;;;-1:-1:-1;49462:82:0;;;;;:::i;:::-;;:::i;40840:233::-;;;;;;;;;;-1:-1:-1;40840:233:0;;;;;:::i;:::-;;:::i;49552:100::-;;;;;;;;;;-1:-1:-1;49552:100:0;;;;;:::i;:::-;;:::i;46541:70::-;;;;;;;;;;-1:-1:-1;46541:70:0;;;;-1:-1:-1;;;;;46541:70:0;;;46461:26;;;;;;;;;;-1:-1:-1;46461:26:0;;;;;;;;26455:222;;;;;;;;;;-1:-1:-1;26455:222:0;;;;;:::i;:::-;;:::i;46945:32::-;;;;;;;;;;;;;;;;26186:207;;;;;;;;;;-1:-1:-1;26186:207:0;;;;;:::i;:::-;;:::i;5273:103::-;;;;;;;;;;;;;:::i;46983:76::-;;;;;;;;;;-1:-1:-1;46983:76:0;;;;-1:-1:-1;;;;;46983:76:0;;;46728:73;;;;;;;;;;-1:-1:-1;46728:73:0;;;;-1:-1:-1;;;;;46728:73:0;;;46651:72;;;;;;;;;;-1:-1:-1;46651:72:0;;;;-1:-1:-1;;;;;46651:72:0;;;4625:87;;;;;;;;;;-1:-1:-1;4698:6:0;;-1:-1:-1;;;;;4698:6:0;4625:87;;26913:104;;;;;;;;;;;;;:::i;48044:434::-;;;;;;:::i;:::-;;:::i;28500:155::-;;;;;;;;;;-1:-1:-1;28500:155:0;;;;;:::i;:::-;;:::i;46914:25::-;;;;;;;;;;;;;;;;29620:323;;;;;;;;;;-1:-1:-1;29620:323:0;;;;;:::i;:::-;;:::i;46339:37::-;;;;;;;;;;;;;:::i;48858:598::-;;;;;;;;;;-1:-1:-1;48858:598:0;;;;;:::i;:::-;;:::i;46616:29::-;;;;;;;;;;;;;;;;46417:39;;;;;;;;;;;;46453:3;46417:39;;49658:141;;;;;;;;;;-1:-1:-1;49658:141:0;;;;;:::i;:::-;;:::i;50105:463::-;;;;;;;;;;-1:-1:-1;50105:463:0;;;;;:::i;:::-;;:::i;46806:30::-;;;;;;;;;;;;;;;;28726:164;;;;;;;;;;-1:-1:-1;28726:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28847:25:0;;;28823:4;28847:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28726:164;5531:201;;;;;;;;;;-1:-1:-1;5531:201:0;;;;;:::i;:::-;;:::i;40010:224::-;40112:4;-1:-1:-1;;;;;;40136:50:0;;-1:-1:-1;;;40136:50:0;;:90;;;40190:36;40214:11;40190:23;:36::i;:::-;40129:97;40010:224;-1:-1:-1;;40010:224:0:o;49805:75::-;4511:13;:11;:13::i;:::-;49859:6:::1;:15:::0;;-1:-1:-1;;49859:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49805:75::o;26744:100::-;26798:13;26831:5;26824:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26744:100;:::o;28257:171::-;28333:7;28353:23;28368:7;28353:14;:23::i;:::-;-1:-1:-1;28396:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28396:24:0;;28257:171::o;27774:417::-;27855:13;27871:23;27886:7;27871:14;:23::i;:::-;27855:39;;27919:5;-1:-1:-1;;;;;27913:11:0;:2;-1:-1:-1;;;;;27913:11:0;;;27905:57;;;;-1:-1:-1;;;27905:57:0;;8935:2:1;27905:57:0;;;8917:21:1;8974:2;8954:18;;;8947:30;9013:34;8993:18;;;8986:62;-1:-1:-1;;;9064:18:1;;;9057:31;9105:19;;27905:57:0;;;;;;;;;3256:10;-1:-1:-1;;;;;27997:21:0;;;;:62;;-1:-1:-1;28022:37:0;28039:5;3256:10;28726:164;:::i;28022:37::-;27975:174;;;;-1:-1:-1;;;27975:174:0;;9337:2:1;27975:174:0;;;9319:21:1;9376:2;9356:18;;;9349:30;9415:34;9395:18;;;9388:62;9486:32;9466:18;;;9459:60;9536:19;;27975:174:0;9135:426:1;27975:174:0;28162:21;28171:2;28175:7;28162:8;:21::i;:::-;27844:347;27774:417;;:::o;50007:92::-;4511:13;:11;:13::i;:::-;50073:10:::1;:20:::0;;-1:-1:-1;;;;;;50073:20:0::1;-1:-1:-1::0;;;;;50073:20:0;;;::::1;::::0;;;::::1;::::0;;50007:92::o;28957:336::-;29152:41;3256:10;29185:7;29152:18;:41::i;:::-;29144:100;;;;-1:-1:-1;;;29144:100:0;;;;;;;:::i;:::-;29257:28;29267:4;29273:2;29277:7;29257:9;:28::i;40318:256::-;40415:7;40451:23;40468:5;40451:16;:23::i;:::-;40443:5;:31;40435:87;;;;-1:-1:-1;;;40435:87:0;;10183:2:1;40435:87:0;;;10165:21:1;10222:2;10202:18;;;10195:30;10261:34;10241:18;;;10234:62;-1:-1:-1;;;10312:18:1;;;10305:41;10363:19;;40435:87:0;9981:407:1;40435:87:0;-1:-1:-1;;;;;;40540:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40318:256::o;50574:833::-;50683:9;;50628:21;;50610:15;;47091:4;;50673:19;;50628:21;50673:19;:::i;:::-;:27;;;;:::i;:::-;50656:44;;50707:15;47091:4;50735:10;;50725:7;:20;;;;:::i;:::-;:28;;;;:::i;:::-;50707:46;;50760:10;47091:4;50783:5;;50773:7;:15;;;;:::i;:::-;:23;;;;:::i;:::-;50760:36;;50803:17;47091:4;50833:12;;50823:7;:22;;;;:::i;:::-;:30;;;;:::i;:::-;50889:12;;50881:45;;50803:50;;-1:-1:-1;50867:9:0;;-1:-1:-1;;;;;50889:12:0;;;;50915:6;;50867:9;50881:45;50867:9;50881:45;50915:6;50889:12;50881:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50866:60;;;50941:4;50933:35;;;;-1:-1:-1;;;50933:35:0;;;;;;;:::i;:::-;50994:13;;50986:47;;-1:-1:-1;;;;;50994:13:0;;;;51021:7;;50986:47;;;;51021:7;50994:13;50986:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50975:58;;;;;51048:4;51040:35;;;;-1:-1:-1;;;51040:35:0;;;;;;;:::i;:::-;51101:8;;51093:37;;-1:-1:-1;;;;;51101:8:0;;;;51123:2;;51093:37;;;;51123:2;51101:8;51093:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51082:48;;;;;51145:4;51137:35;;;;-1:-1:-1;;;51137:35:0;;;;;;;:::i;:::-;51198:15;;51190:51;;-1:-1:-1;;;;;51198:15:0;;;;51227:9;;51190:51;;;;51227:9;51198:15;51190:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51179:62;;;;;51256:4;51248:35;;;;-1:-1:-1;;;51248:35:0;;;;;;;:::i;:::-;51309:10;;51301:58;;-1:-1:-1;;;;;51309:10:0;;;;51333:21;;51301:58;;;;51333:21;51309:10;51301:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51290:69;;;;;51374:4;51366:35;;;;-1:-1:-1;;;51366:35:0;;;;;;;:::i;:::-;50603:804;;;;;;50574:833::o;29364:185::-;29502:39;29519:4;29525:2;29529:7;29502:39;;;;;;;;;;;;:16;:39::i;48484:368::-;48565:16;48595:23;48621:17;48631:6;48621:9;:17::i;:::-;48595:43;;48647:25;48689:15;48675:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48675:30:0;;48647:58;;48719:9;48714:109;48734:15;48730:1;:19;48714:109;;;48783:30;48803:6;48811:1;48783:19;:30::i;:::-;48769:8;48778:1;48769:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;48751:3;;;;:::i;:::-;;;;48714:109;;;-1:-1:-1;48838:8:0;48484:368;-1:-1:-1;;;48484:368:0:o;49462:82::-;4511:13;:11;:13::i;:::-;49523:4:::1;:15:::0;49462:82::o;40840:233::-;40915:7;40951:30;40738:10;:17;;40650:113;40951:30;40943:5;:38;40935:95;;;;-1:-1:-1;;;40935:95:0;;11986:2:1;40935:95:0;;;11968:21:1;12025:2;12005:18;;;11998:30;12064:34;12044:18;;;12037:62;-1:-1:-1;;;12115:18:1;;;12108:42;12167:19;;40935:95:0;11784:408:1;40935:95:0;41048:10;41059:5;41048:17;;;;;;;;:::i;:::-;;;;;;;;;41041:24;;40840:233;;;:::o;49552:100::-;4511:13;:11;:13::i;:::-;49625:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49552:100:::0;:::o;26455:222::-;26527:7;26563:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26563:16:0;26598:19;26590:56;;;;-1:-1:-1;;;26590:56:0;;12399:2:1;26590:56:0;;;12381:21:1;12438:2;12418:18;;;12411:30;-1:-1:-1;;;12457:18:1;;;12450:54;12521:18;;26590:56:0;12197:348:1;26186:207:0;26258:7;-1:-1:-1;;;;;26286:19:0;;26278:73;;;;-1:-1:-1;;;26278:73:0;;12752:2:1;26278:73:0;;;12734:21:1;12791:2;12771:18;;;12764:30;12830:34;12810:18;;;12803:62;-1:-1:-1;;;12881:18:1;;;12874:39;12930:19;;26278:73:0;12550:405:1;26278:73:0;-1:-1:-1;;;;;;26369:16:0;;;;;:9;:16;;;;;;;26186:207::o;5273:103::-;4511:13;:11;:13::i;:::-;5338:30:::1;5365:1;5338:18;:30::i;:::-;5273:103::o:0;26913:104::-;26969:13;27002:7;26995:14;;;;;:::i;48044:434::-;48107:6;;;;48106:7;48098:26;;;;-1:-1:-1;;;48098:26:0;;13162:2:1;48098:26:0;;;13144:21:1;13201:1;13181:18;;;13174:29;-1:-1:-1;;;13219:18:1;;;13212:36;13265:18;;48098:26:0;12960:329:1;48098:26:0;48150:1;48141:6;:10;48133:47;;;;-1:-1:-1;;;48133:47:0;;13496:2:1;48133:47:0;;;13478:21:1;13535:2;13515:18;;;13508:30;13574:26;13554:18;;;13547:54;13618:18;;48133:47:0;13294:348:1;48133:47:0;48189:14;48206:13;40738:10;:17;;40650:113;48206:13;48189:30;-1:-1:-1;46453:3:0;48236:15;48245:6;48189:30;48236:15;:::i;:::-;:28;;48228:60;;;;-1:-1:-1;;;48228:60:0;;13982:2:1;48228:60:0;;;13964:21:1;14021:2;14001:18;;;13994:30;-1:-1:-1;;;14040:18:1;;;14033:49;14099:18;;48228:60:0;13780:343:1;48228:60:0;48325:6;48318:4;;:13;;;;:::i;:::-;48305:9;:26;;48297:57;;;;-1:-1:-1;;;48297:57:0;;14330:2:1;48297:57:0;;;14312:21:1;14369:2;14349:18;;;14342:30;-1:-1:-1;;;14388:18:1;;;14381:48;14446:18;;48297:57:0;14128:342:1;48297:57:0;48368:9;48363:102;48387:6;48383:1;:10;48363:102;;;48413:42;48423:10;48435:19;48445:8;48452:1;48445:6;:8;:::i;:::-;48435:9;:19::i;:::-;48413:9;:42::i;:::-;48395:3;;;;:::i;:::-;;;;48363:102;;28500:155;28595:52;3256:10;28628:8;28638;28595:18;:52::i;29620:323::-;29794:41;3256:10;29827:7;29794:18;:41::i;:::-;29786:100;;;;-1:-1:-1;;;29786:100:0;;;;;;;:::i;:::-;29897:38;29911:4;29917:2;29921:7;29930:4;29897:13;:38::i;:::-;29620:323;;;;:::o;46339:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48858:598::-;31515:4;31539:16;;;:7;:16;;;;;;48966:13;;-1:-1:-1;;;;;31539:16:0;48993:107;;;;-1:-1:-1;;;48993:107:0;;14677:2:1;48993:107:0;;;14659:21:1;14716:2;14696:18;;;14689:30;14755:34;14735:18;;;14728:62;-1:-1:-1;;;14806:18:1;;;14799:45;14861:19;;48993:107:0;14475:411:1;48993:107:0;49111:28;49142:10;:8;:10::i;:::-;49111:41;;49210:1;49185:14;49179:28;:32;:271;;;;;;;;;;;;;;;;;49297:14;49336:18;:7;:16;:18::i;:::-;49379:13;49256:157;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49179:271;49161:289;48858:598;-1:-1:-1;;;48858:598:0:o;49658:141::-;4511:13;:11;:13::i;:::-;49760:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;50105:463::-:0;4511:13;:11;:13::i;:::-;50247:7:::1;:14;50228:8;:15;:33;50220:62;;;::::0;-1:-1:-1;;;50220:62:0;;16751:2:1;50220:62:0::1;::::0;::::1;16733:21:1::0;16790:2;16770:18;;;16763:30;-1:-1:-1;;;16809:18:1;;;16802:46;16865:18;;50220:62:0::1;16549:340:1::0;50220:62:0::1;50289:16;50308:13;40738:10:::0;:17;;40650:113;50308:13:::1;50289:32;;50333:9;50328:235;50352:8;:15;50348:1;:19;50328:235;;;50388:9;50383:173;50407:7;50415:1;50407:10;;;;;;;;:::i;:::-;;;;;;;50403:1;:14;50383:173;;;50435:30;50441:8;50450:1;50441:11;;;;;;;;:::i;:::-;;;;;;;50454:8;50463:1;50454:10;;;;:::i;:::-;50435:5;:30::i;:::-;50524:1;50501:20;50513:8:::0;46453:3:::1;50501:20;:::i;:::-;:24;;;;:::i;:::-;50476:12;50489:8;50476:22;;;;;;;:::i;:::-;;:49:::0;50536:10;::::1;::::0;::::1;:::i;:::-;;;;50419:3;;;;;:::i;:::-;;;;50383:173;;;-1:-1:-1::0;50369:3:0;::::1;::::0;::::1;:::i;:::-;;;;50328:235;;5531:201:::0;4511:13;:11;:13::i;:::-;-1:-1:-1;;;;;5620:22:0;::::1;5612:73;;;::::0;-1:-1:-1;;;5612:73:0;;17226:2:1;5612:73:0::1;::::0;::::1;17208:21:1::0;17265:2;17245:18;;;17238:30;17304:34;17284:18;;;17277:62;-1:-1:-1;;;17355:18:1;;;17348:36;17401:19;;5612:73:0::1;17024:402:1::0;5612:73:0::1;5696:28;5715:8;5696:18;:28::i;:::-;5531:201:::0;:::o;25817:305::-;25919:4;-1:-1:-1;;;;;;25956:40:0;;-1:-1:-1;;;25956:40:0;;:105;;-1:-1:-1;;;;;;;26013:48:0;;-1:-1:-1;;;26013:48:0;25956:105;:158;;;-1:-1:-1;;;;;;;;;;17588:40:0;;;26078:36;17479:157;4790:132;4698:6;;-1:-1:-1;;;;;4698:6:0;3256:10;4854:23;4846:68;;;;-1:-1:-1;;;4846:68:0;;17633:2:1;4846:68:0;;;17615:21:1;;;17652:18;;;17645:30;17711:34;17691:18;;;17684:62;17763:18;;4846:68:0;17431:356:1;36232:135:0;31515:4;31539:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31539:16:0;36306:53;;;;-1:-1:-1;;;36306:53:0;;12399:2:1;36306:53:0;;;12381:21:1;12438:2;12418:18;;;12411:30;-1:-1:-1;;;12457:18:1;;;12450:54;12521:18;;36306:53:0;12197:348:1;35511:174:0;35586:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35586:29:0;-1:-1:-1;;;;;35586:29:0;;;;;;;;:24;;35640:23;35586:24;35640:14;:23::i;:::-;-1:-1:-1;;;;;35631:46:0;;;;;;;;;;;35511:174;;:::o;31744:264::-;31837:4;31854:13;31870:23;31885:7;31870:14;:23::i;:::-;31854:39;;31923:5;-1:-1:-1;;;;;31912:16:0;:7;-1:-1:-1;;;;;31912:16:0;;:52;;;-1:-1:-1;;;;;;28847:25:0;;;28823:4;28847:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31932:32;31912:87;;;;31992:7;-1:-1:-1;;;;;31968:31:0;:20;31980:7;31968:11;:20::i;:::-;-1:-1:-1;;;;;31968:31:0;;31912:87;31904:96;31744:264;-1:-1:-1;;;;31744:264:0:o;34767:625::-;34926:4;-1:-1:-1;;;;;34899:31:0;:23;34914:7;34899:14;:23::i;:::-;-1:-1:-1;;;;;34899:31:0;;34891:81;;;;-1:-1:-1;;;34891:81:0;;17994:2:1;34891:81:0;;;17976:21:1;18033:2;18013:18;;;18006:30;18072:34;18052:18;;;18045:62;-1:-1:-1;;;18123:18:1;;;18116:35;18168:19;;34891:81:0;17792:401:1;34891:81:0;-1:-1:-1;;;;;34991:16:0;;34983:65;;;;-1:-1:-1;;;34983:65:0;;18400:2:1;34983:65:0;;;18382:21:1;18439:2;18419:18;;;18412:30;18478:34;18458:18;;;18451:62;-1:-1:-1;;;18529:18:1;;;18522:34;18573:19;;34983:65:0;18198:400:1;34983:65:0;35061:39;35082:4;35088:2;35092:7;35061:20;:39::i;:::-;35165:29;35182:1;35186:7;35165:8;:29::i;:::-;-1:-1:-1;;;;;35207:15:0;;;;;;:9;:15;;;;;:20;;35226:1;;35207:15;:20;;35226:1;;35207:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35238:13:0;;;;;;:9;:13;;;;;:18;;35255:1;;35238:13;:18;;35255:1;;35238:18;:::i;:::-;;;;-1:-1:-1;;35267:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35267:21:0;-1:-1:-1;;;;;35267:21:0;;;;;;;;;35306:27;;35267:16;;35306:27;;;;;;;27844:347;27774:417;;:::o;5892:191::-;5985:6;;;-1:-1:-1;;;;;6002:17:0;;;-1:-1:-1;;;;;;6002:17:0;;;;;;;6035:40;;5985:6;;;6002:17;5985:6;;6035:40;;5966:16;;6035:40;5955:128;5892:191;:::o;47349:675::-;47407:13;;47449:24;47461:12;46453:3;47449:24;:::i;:::-;47513:74;;-1:-1:-1;;47530:10:0;18836:2:1;18832:15;18828:53;47513:74:0;;;18816:66:1;47542:16:0;18898:12:1;;;18891:28;47560:15:0;18935:12:1;;;18928:28;18972:12;;;18965:28;;;47429:44:0;;-1:-1:-1;47480:12:0;;47429:44;;19009:13:1;;47513:74:0;;;;;;;;;;;;47503:85;;;;;;47495:94;;:106;;;;:::i;:::-;47480:121;;47616:1;47608:9;;47702:12;47715:4;47702:18;;;;;;;:::i;:::-;;;:23;47698:93;;47742:12;47755:4;47742:18;;;;;;;:::i;:::-;;;47734:26;;47698:93;;;47787:4;47779:12;;47698:93;47859:12;47872:13;47884:1;47872:9;:13;:::i;:::-;47859:27;;;;;;;:::i;:::-;;;47855:146;;47921:13;47933:1;47921:9;:13;:::i;:::-;47900:12;47913:4;47900:18;;;;;;;:::i;:::-;;:34;47855:146;;;47974:12;47987:13;47999:1;47987:9;:13;:::i;:::-;47974:27;;;;;;;:::i;:::-;;;47953:12;47966:4;47953:18;;;;;;;:::i;:::-;;:48;47855:146;48008:10;48017:1;48008:10;;:::i;32350:110::-;32426:26;32436:2;32440:7;32426:26;;;;;;;;;;;;:9;:26::i;35828:315::-;35983:8;-1:-1:-1;;;;;35974:17:0;:5;-1:-1:-1;;;;;35974:17:0;;;35966:55;;;;-1:-1:-1;;;35966:55:0;;19352:2:1;35966:55:0;;;19334:21:1;19391:2;19371:18;;;19364:30;19430:27;19410:18;;;19403:55;19475:18;;35966:55:0;19150:349:1;35966:55:0;-1:-1:-1;;;;;36032:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36032:46:0;;;;;;;;;;36094:41;;540::1;;;36094::0;;513:18:1;36094:41:0;;;;;;;35828:315;;;:::o;30824:313::-;30980:28;30990:4;30996:2;31000:7;30980:9;:28::i;:::-;31027:47;31050:4;31056:2;31060:7;31069:4;31027:22;:47::i;:::-;31019:110;;;;-1:-1:-1;;;31019:110:0;;;;;;;:::i;47239:104::-;47299:13;47330:7;47323:14;;;;;:::i;430:723::-;486:13;707:10;703:53;;-1:-1:-1;;734:10:0;;;;;;;;;;;;-1:-1:-1;;;734:10:0;;;;;430:723::o;703:53::-;781:5;766:12;822:78;829:9;;822:78;;855:8;;;;:::i;:::-;;-1:-1:-1;878:10:0;;-1:-1:-1;886:2:0;878:10;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;932:17:0;;910:39;;960:154;967:10;;960:154;;994:11;1004:1;994:11;;:::i;:::-;;-1:-1:-1;1063:10:0;1071:2;1063:5;:10;:::i;:::-;1050:24;;:2;:24;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1020:56:0;;;;;;;;-1:-1:-1;1091:11:0;1100:2;1091:11;;:::i;:::-;;;960:154;;33342:439;-1:-1:-1;;;;;33422:16:0;;33414:61;;;;-1:-1:-1;;;33414:61:0;;20125:2:1;33414:61:0;;;20107:21:1;;;20144:18;;;20137:30;20203:34;20183:18;;;20176:62;20255:18;;33414:61:0;19923:356:1;33414:61:0;31515:4;31539:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31539:16:0;:30;33486:58;;;;-1:-1:-1;;;33486:58:0;;20486:2:1;33486:58:0;;;20468:21:1;20525:2;20505:18;;;20498:30;20564;20544:18;;;20537:58;20612:18;;33486:58:0;20284:352:1;33486:58:0;33557:45;33586:1;33590:2;33594:7;33557:20;:45::i;:::-;-1:-1:-1;;;;;33615:13:0;;;;;;:9;:13;;;;;:18;;33632:1;;33615:13;:18;;33632:1;;33615:18;:::i;:::-;;;;-1:-1:-1;;33644:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33644:21:0;-1:-1:-1;;;;;33644:21:0;;;;;;;;33683:33;;33644:16;;;33683:33;;33644:16;;33683:33;49625:21:::1;49552:100:::0;:::o;41686:589::-;-1:-1:-1;;;;;41892:18:0;;41888:187;;41927:40;41959:7;43102:10;:17;;43075:24;;;;:15;:24;;;;;:44;;;43130:24;;;;;;;;;;;;42998:164;41927:40;41888:187;;;41997:2;-1:-1:-1;;;;;41989:10:0;:4;-1:-1:-1;;;;;41989:10:0;;41985:90;;42016:47;42049:4;42055:7;42016:32;:47::i;:::-;-1:-1:-1;;;;;42089:16:0;;42085:183;;42122:45;42159:7;42122:36;:45::i;42085:183::-;42195:4;-1:-1:-1;;;;;42189:10:0;:2;-1:-1:-1;;;;;42189:10:0;;42185:83;;42216:40;42244:2;42248:7;42216:27;:40::i;32687:319::-;32816:18;32822:2;32826:7;32816:5;:18::i;:::-;32867:53;32898:1;32902:2;32906:7;32915:4;32867:22;:53::i;:::-;32845:153;;;;-1:-1:-1;;;32845:153:0;;;;;;;:::i;36931:853::-;37085:4;-1:-1:-1;;;;;37106:13:0;;7618:19;:23;37102:675;;37142:71;;-1:-1:-1;;;37142:71:0;;-1:-1:-1;;;;;37142:36:0;;;;;:71;;3256:10;;37193:4;;37199:7;;37208:4;;37142:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37142:71:0;;;;;;;;-1:-1:-1;;37142:71:0;;;;;;;;;;;;:::i;:::-;;;37138:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37383:13:0;;37379:328;;37426:60;;-1:-1:-1;;;37426:60:0;;;;;;;:::i;37379:328::-;37657:6;37651:13;37642:6;37638:2;37634:15;37627:38;37138:584;-1:-1:-1;;;;;;37264:51:0;-1:-1:-1;;;37264:51:0;;-1:-1:-1;37257:58:0;;37102:675;-1:-1:-1;37761:4:0;36931:853;;;;;;:::o;43789:988::-;44055:22;44105:1;44080:22;44097:4;44080:16;:22::i;:::-;:26;;;;:::i;:::-;44117:18;44138:26;;;:17;:26;;;;;;44055:51;;-1:-1:-1;44271:28:0;;;44267:328;;-1:-1:-1;;;;;44338:18:0;;44316:19;44338:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44389:30;;;;;;:44;;;44506:30;;:17;:30;;;;;:43;;;44267:328;-1:-1:-1;44691:26:0;;;;:17;:26;;;;;;;;44684:33;;;-1:-1:-1;;;;;44735:18:0;;;;;:12;:18;;;;;:34;;;;;;;44728:41;43789:988::o;45072:1079::-;45350:10;:17;45325:22;;45350:21;;45370:1;;45350:21;:::i;:::-;45382:18;45403:24;;;:15;:24;;;;;;45776:10;:26;;45325:46;;-1:-1:-1;45403:24:0;;45325:46;;45776:26;;;;;;:::i;:::-;;;;;;;;;45754:48;;45840:11;45815:10;45826;45815:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45920:28;;;:15;:28;;;;;;;:41;;;46092:24;;;;;46085:31;46127:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;45143:1008;;;45072:1079;:::o;42576:221::-;42661:14;42678:20;42695:2;42678:16;:20::i;:::-;-1:-1:-1;;;;;42709:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42754:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42576:221:0: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:186::-;2764:6;2817:2;2805:9;2796:7;2792:23;2788:32;2785:52;;;2833:1;2830;2823:12;2785:52;2856:29;2875:9;2856:29;:::i;2896:328::-;2973:6;2981;2989;3042:2;3030:9;3021:7;3017:23;3013:32;3010:52;;;3058:1;3055;3048:12;3010:52;3081:29;3100:9;3081:29;:::i;:::-;3071:39;;3129:38;3163:2;3152:9;3148:18;3129:38;:::i;:::-;3119:48;;3214:2;3203:9;3199:18;3186:32;3176:42;;2896:328;;;;;:::o;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:183::-;6137:4;6170:18;6162:6;6159:30;6156:56;;;6192:18;;:::i;:::-;-1:-1:-1;6237:1:1;6233:14;6249:4;6229:25;;6077:183::o;6265:662::-;6319:5;6372:3;6365:4;6357:6;6353:17;6349:27;6339:55;;6390:1;6387;6380:12;6339:55;6426:6;6413:20;6452:4;6476:60;6492:43;6532:2;6492:43;:::i;:::-;6476:60;:::i;:::-;6570:15;;;6656:1;6652:10;;;;6640:23;;6636:32;;;6601:12;;;;6680:15;;;6677:35;;;6708:1;6705;6698:12;6677:35;6744:2;6736:6;6732:15;6756:142;6772:6;6767:3;6764:15;6756:142;;;6838:17;;6826:30;;6876:12;;;;6789;;6756:142;;;-1:-1:-1;6916:5:1;6265:662;-1:-1:-1;;;;;;6265:662:1:o;6932:1146::-;7050:6;7058;7111:2;7099:9;7090:7;7086:23;7082:32;7079:52;;;7127:1;7124;7117:12;7079:52;7167:9;7154:23;7196:18;7237:2;7229:6;7226:14;7223:34;;;7253:1;7250;7243:12;7223:34;7291:6;7280:9;7276:22;7266:32;;7336:7;7329:4;7325:2;7321:13;7317:27;7307:55;;7358:1;7355;7348:12;7307:55;7394:2;7381:16;7416:4;7440:60;7456:43;7496:2;7456:43;:::i;7440:60::-;7534:15;;;7616:1;7612:10;;;;7604:19;;7600:28;;;7565:12;;;;7640:19;;;7637:39;;;7672:1;7669;7662:12;7637:39;7696:11;;;;7716:148;7732:6;7727:3;7724:15;7716:148;;;7798:23;7817:3;7798:23;:::i;:::-;7786:36;;7749:12;;;;7842;;;;7716:148;;;7883:5;-1:-1:-1;;7926:18:1;;7913:32;;-1:-1:-1;;7957:16:1;;;7954:36;;;7986:1;7983;7976:12;7954:36;;8009:63;8064:7;8053:8;8042:9;8038:24;8009:63;:::i;:::-;7999:73;;;6932:1146;;;;;:::o;8083:260::-;8151:6;8159;8212:2;8200:9;8191:7;8187:23;8183:32;8180:52;;;8228:1;8225;8218:12;8180:52;8251:29;8270:9;8251:29;:::i;:::-;8241:39;;8299:38;8333:2;8322:9;8318:18;8299:38;:::i;8348:380::-;8427:1;8423:12;;;;8470;;;8491:61;;8545:4;8537:6;8533:17;8523:27;;8491:61;8598:2;8590:6;8587:14;8567:18;8564:38;8561:161;;;8644:10;8639:3;8635:20;8632:1;8625:31;8679:4;8676:1;8669:15;8707:4;8704:1;8697:15;8561:161;;8348:380;;;:::o;9566:410::-;9768:2;9750:21;;;9807:2;9787:18;;;9780:30;9846:34;9841:2;9826:18;;9819:62;-1:-1:-1;;;9912:2:1;9897:18;;9890:44;9966:3;9951:19;;9566:410::o;10393:127::-;10454:10;10449:3;10445:20;10442:1;10435:31;10485:4;10482:1;10475:15;10509:4;10506:1;10499:15;10525:168;10565:7;10631:1;10627;10623:6;10619:14;10616:1;10613:21;10608:1;10601:9;10594:17;10590:45;10587:71;;;10638:18;;:::i;:::-;-1:-1:-1;10678:9:1;;10525:168::o;10698:127::-;10759:10;10754:3;10750:20;10747:1;10740:31;10790:4;10787:1;10780:15;10814:4;10811:1;10804:15;10830:120;10870:1;10896;10886:35;;10901:18;;:::i;:::-;-1:-1:-1;10935:9:1;;10830:120::o;11165:342::-;11367:2;11349:21;;;11406:2;11386:18;;;11379:30;-1:-1:-1;;;11440:2:1;11425:18;;11418:48;11498:2;11483:18;;11165:342::o;11512:127::-;11573:10;11568:3;11564:20;11561:1;11554:31;11604:4;11601:1;11594:15;11628:4;11625:1;11618:15;11644:135;11683:3;-1:-1:-1;;11704:17:1;;11701:43;;;11724:18;;:::i;:::-;-1:-1:-1;11771:1:1;11760:13;;11644:135::o;13647:128::-;13687:3;13718:1;13714:6;13711:1;13708:13;13705:39;;;13724:18;;:::i;:::-;-1:-1:-1;13760:9:1;;13647:128::o;15017:1527::-;15241:3;15279:6;15273:13;15305:4;15318:51;15362:6;15357:3;15352:2;15344:6;15340:15;15318:51;:::i;:::-;15432:13;;15391:16;;;;15454:55;15432:13;15391:16;15476:15;;;15454:55;:::i;:::-;15598:13;;15531:20;;;15571:1;;15658;15680:18;;;;15733;;;;15760:93;;15838:4;15828:8;15824:19;15812:31;;15760:93;15901:2;15891:8;15888:16;15868:18;15865:40;15862:167;;;-1:-1:-1;;;15928:33:1;;15984:4;15981:1;15974:15;16014:4;15935:3;16002:17;15862:167;16045:18;16072:110;;;;16196:1;16191:328;;;;16038:481;;16072:110;-1:-1:-1;;16107:24:1;;16093:39;;16152:20;;;;-1:-1:-1;16072:110:1;;16191:328;14964:1;14957:14;;;15001:4;14988:18;;16286:1;16300:169;16314:8;16311:1;16308:15;16300:169;;;16396:14;;16381:13;;;16374:37;16439:16;;;;16331:10;;16300:169;;;16304:3;;16500:8;16493:5;16489:20;16482:27;;16038:481;-1:-1:-1;16535:3:1;;15017:1527;-1:-1:-1;;;;;;;;;;;15017:1527:1:o;16894:125::-;16934:4;16962:1;16959;16956:8;16953:34;;;16967:18;;:::i;:::-;-1:-1:-1;17004:9:1;;16894:125::o;19033:112::-;19065:1;19091;19081:35;;19096:18;;:::i;:::-;-1:-1:-1;19130:9:1;;19033:112::o;19504:414::-;19706:2;19688:21;;;19745:2;19725:18;;;19718:30;19784:34;19779:2;19764:18;;19757:62;-1:-1:-1;;;19850:2:1;19835:18;;19828:48;19908:3;19893:19;;19504:414::o;20641:489::-;-1:-1:-1;;;;;20910:15:1;;;20892:34;;20962:15;;20957:2;20942:18;;20935:43;21009:2;20994:18;;20987:34;;;21057:3;21052:2;21037:18;;21030:31;;;20835:4;;21078:46;;21104:19;;21096:6;21078:46;:::i;:::-;21070:54;20641:489;-1:-1:-1;;;;;;20641:489:1:o;21135:249::-;21204:6;21257:2;21245:9;21236:7;21232:23;21228:32;21225:52;;;21273:1;21270;21263:12;21225:52;21305:9;21299:16;21324:30;21348:5;21324:30;:::i;21389:127::-;21450:10;21445:3;21441:20;21438:1;21431:31;21481:4;21478:1;21471:15;21505:4;21502:1;21495:15

Swarm Source

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