ETH Price: $3,305.65 (-3.11%)
Gas: 17 Gwei

Token

Sugar Skullz (SKULLZ)
 

Overview

Max Total Supply

8,000 SKULLZ

Holders

1,626

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
3 SKULLZ
0x76a51cf8be58b790902a1294ed7d946c95f6f100
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

THE NEXT EVOLUTION IN THE PANDAVERSE IS HERE. From the same minds that built the Phat Pandaz Genesis Collection and a $500M recreational cannabis empire comes the Sugar Skullz.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SugarSkullz

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-19
*/

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


// 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 v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _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.5.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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


// 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 v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// File: SugarSkullz.sol


pragma solidity ^0.8.2;




contract SugarSkullz is ERC721A, Ownable {
    enum Status { Closed, PreSale, Public }
    
    string private _baseURIextended;
    string public provenance = "";
    uint constant public maxSupply = 8000;
    uint public publicPrice = 0.08 ether;
    uint public whitelistPrice = 0.06 ether;
    uint public gasPassPrice = 0.04 ether;
    uint public publicLimit = 5;
    bool public isActive = false;
    uint public preSaleStart = 1650409200; // 1650409200 == 4.19.2022 11PM UTC
    uint public publicStart = preSaleStart + 24 hours;
    bytes32 private gasPassRoot;
    bytes32 private whitelistRoot;
    mapping(address => uint) public gasPassLimit;
    mapping(address => uint) public whitelistLimit;
    mapping(address => bool) public gasPassMinted;
    mapping(address => bool) public whitelistMinted;
    mapping(address => uint) public publicMinted;

    constructor() ERC721A("Sugar Skullz", "SKULLZ") {
        _baseURIextended = "ipfs://QmPJTxG2WLCLNTFg1HRDykTtyJKvwHiJNJpLKpL3AomPGS/";
        teamMint();
    }

    modifier checkPublic(address _to, uint _amount) {
        uint _totalSupply = totalSupply();
        require(isActive, "Sale not active");
        require(getStatus() == Status.Public, "Status is not Public");
        require(_totalSupply < maxSupply, "Sold out");
        require((_totalSupply + _amount) <= maxSupply, "Minting would exceed maximum supply");
        require(msg.value >= (publicPrice * _amount), "Incorrect ether sent");
        require((publicMinted[_to] + _amount) <= publicLimit, "Maximum is 5");
        _;
    }

    modifier checkUser() {
        require(tx.origin == msg.sender, "Caller is not user");
        _;
    }

    function getStatus() public view returns (Status) {
        if(block.timestamp >= publicStart) {
            return Status.Public;
        } else if (block.timestamp >= preSaleStart) {
            return Status.PreSale;
        }
        return Status.Closed;
    }

    function getLastTransfer(uint _tokenId) external view returns (uint) {
        return _ownershipOf(_tokenId).startTimestamp;
    }

    function tokensOfOwner(address owner) external view returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
    
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseURIextended;
    }
    
    function setGasPassRoot (bytes32 _gasPassRoot) external onlyOwner {
        gasPassRoot = _gasPassRoot;
    }

    function setWhitelistRoot (bytes32 _whitelistRoot) external onlyOwner {
        whitelistRoot = _whitelistRoot;
    }

    function setTime(uint _preSaleStart, uint _publicStart) external onlyOwner {
        preSaleStart = _preSaleStart;
        publicStart = _publicStart;
    }

    function setPrices(uint _publicPrice, uint _whitelistPrice, uint _gasPassPrice) external onlyOwner {
        publicPrice = _publicPrice;
        whitelistPrice = _whitelistPrice;
        gasPassPrice = _gasPassPrice;
    }

    function setPublicLimit(uint _publicLimit) external onlyOwner {
        publicLimit = _publicLimit;
    }

    function setGasPassLimit(address _address, uint _gasPassLimit) external onlyOwner {
        gasPassLimit[_address] = _gasPassLimit;
        gasPassMinted[_address] = true;
    }

    function setWhitelistLimit(address _address, uint _whitelistLimit) external onlyOwner {
        whitelistLimit[_address] = _whitelistLimit;
        whitelistMinted[_address] = true;
    }
    
    function setBaseURI(string memory baseURI_) external onlyOwner {
        _baseURIextended = baseURI_;
    }

    function setProvenance(string memory _provenance) external onlyOwner {
        provenance = _provenance;
    }

    function setActive() external onlyOwner {
        isActive = !isActive;
    }

    function teamMint() internal onlyOwner {
        address _to = owner();
        _safeMint(_to, 50);
    }

    function mintPresale(uint _gasPassAmount, uint _whitelistAmount, uint _gasPassLimit, uint _whitelistLimit, bytes32[] calldata _gasPassProof, bytes32[] calldata _gasPassLimitProof, bytes32[] calldata _whitelistProof, bytes32[] calldata _whitelistLimitProof) public payable checkUser {
        require(isActive, "Sale not active");
        require(getStatus() == Status.PreSale, "Status is not PreSale");
        require(msg.value >= ((_gasPassAmount * gasPassPrice) + (_whitelistAmount * whitelistPrice)), "Incorrect ether sent");

        address _to = msg.sender;

        if (_gasPassAmount > 0) {
            if (!gasPassMinted[_to] && MerkleProof.verify(_gasPassLimitProof, gasPassRoot, keccak256(abi.encodePacked(_to, _gasPassLimit)))) {
                gasPassLimit[_to] = _gasPassLimit;
            }
            mintGasPass(_to, _gasPassAmount, _gasPassProof);
        }
        if (_whitelistAmount > 0) {
            if (!whitelistMinted[_to] && MerkleProof.verify(_whitelistLimitProof, whitelistRoot, keccak256(abi.encodePacked(_to, _whitelistLimit)))) {
                whitelistLimit[_to] = _whitelistLimit;
            }
            mintWhitelist(_to, _whitelistAmount, _whitelistProof);
        }
    }

    function mintGasPass(address _to, uint _amount, bytes32[] calldata _proof) internal {
        if (gasPassMinted[_to]) {
            require((gasPassLimit[_to] - _amount) >= 0, "Gas Pass mint limit exceeded");
        } else if (!gasPassMinted[_to]) {
            require(MerkleProof.verify(_proof, gasPassRoot, keccak256(abi.encodePacked(_to, _amount))), "Gas Pass mint limit exceeded");
        }
        _safeMint(_to, _amount);
        gasPassLimit[_to] -= _amount;
        gasPassMinted[_to] = true;
    }
    
    function mintWhitelist(address _to, uint _amount, bytes32[] calldata _proof) internal {
        if (whitelistMinted[_to]) {
            require((whitelistLimit[_to] - _amount) >= 0, "Whitelist mint limit exceeded");
        } else if (!whitelistMinted[_to]) {
            require(MerkleProof.verify(_proof, whitelistRoot, keccak256(abi.encodePacked(_to, _amount))), "Whitelist mint limit exceeded");
        }
        _safeMint(_to, _amount);
        whitelistLimit[_to] -= _amount;
        whitelistMinted[_to] = true;
    }

    function mintPublic(uint _amount) public payable checkPublic(msg.sender, _amount) checkUser {
        address _to = msg.sender;
        _safeMint(_to, _amount);
        publicMinted[_to] += _amount;
    }
    
    function withdraw() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"gasPassLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"gasPassMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gasPassPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getLastTransfer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getStatus","outputs":[{"internalType":"enum SugarSkullz.Status","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_gasPassAmount","type":"uint256"},{"internalType":"uint256","name":"_whitelistAmount","type":"uint256"},{"internalType":"uint256","name":"_gasPassLimit","type":"uint256"},{"internalType":"uint256","name":"_whitelistLimit","type":"uint256"},{"internalType":"bytes32[]","name":"_gasPassProof","type":"bytes32[]"},{"internalType":"bytes32[]","name":"_gasPassLimitProof","type":"bytes32[]"},{"internalType":"bytes32[]","name":"_whitelistProof","type":"bytes32[]"},{"internalType":"bytes32[]","name":"_whitelistLimitProof","type":"bytes32[]"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setActive","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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_gasPassLimit","type":"uint256"}],"name":"setGasPassLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_gasPassRoot","type":"bytes32"}],"name":"setGasPassRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicPrice","type":"uint256"},{"internalType":"uint256","name":"_whitelistPrice","type":"uint256"},{"internalType":"uint256","name":"_gasPassPrice","type":"uint256"}],"name":"setPrices","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenance","type":"string"}],"name":"setProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicLimit","type":"uint256"}],"name":"setPublicLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_preSaleStart","type":"uint256"},{"internalType":"uint256","name":"_publicStart","type":"uint256"}],"name":"setTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_whitelistLimit","type":"uint256"}],"name":"setWhitelistLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistRoot","type":"bytes32"}],"name":"setWhitelistRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600a9162000518565b5067011c37937e080000600b5566d529ae9e860000600c55668e1bc9bf040000600d556005600e55600f805460ff1916905563625f3ef060108190556200006690620151806200066c565b6011553480156200007657600080fd5b50604080518082018252600c81526b29bab3b0b91029b5bab6363d60a11b60208083019182528351808501909452600684526529a5aaa6262d60d11b908401528151919291620000c99160029162000518565b508051620000df90600390602084019062000518565b5050600160005550620000f23362000133565b60405180606001604052806036815260200162003220603691398051620001229160099160209091019062000518565b506200012d62000185565b620006d0565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001e45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b6000620001f96008546001600160a01b031690565b9050620002088160326200020b565b50565b6200022d8282604051806020016040528060008152506200023160201b60201c565b5050565b62000240838383600162000245565b505050565b6000546001600160a01b0385166200026f57604051622e076360e81b815260040160405180910390fd5b836200028e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546001600160801b031981166001600160401b038083168c018116918217680100000000000000006001600160401b031990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801562000347575062000347876001600160a01b03166200040860201b6200176c1760201c565b15620003c7575b60405182906001600160a01b0389169060009060008051602062003256833981519152908290a460018201916200038b9060009089908862000417565b620003a9576040516368d2bf6b60e11b815260040160405180910390fd5b808214156200034e578260005414620003c157600080fd5b620003fd565b5b6040516001830192906001600160a01b0389169060009060008051602062003256833981519152908290a480821415620003c8575b506000555050505050565b6001600160a01b03163b151590565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906200044e903390899088908890600401620005f1565b602060405180830381600087803b1580156200046957600080fd5b505af19250505080156200049c575060408051601f3d908101601f191682019092526200049991810190620005be565b60015b620004fb573d808015620004cd576040519150601f19603f3d011682016040523d82523d6000602084013e620004d2565b606091505b508051620004f3576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b828054620005269062000693565b90600052602060002090601f0160209004810192826200054a576000855562000595565b82601f106200056557805160ff191683800117855562000595565b8280016001018555821562000595579182015b828111156200059557825182559160200191906001019062000578565b50620005a3929150620005a7565b5090565b5b80821115620005a35760008155600101620005a8565b600060208284031215620005d157600080fd5b81516001600160e01b031981168114620005ea57600080fd5b9392505050565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620006405785810182015185820160a00152810162000622565b828111156200065357600060a084870101525b5050601f01601f19169190910160a00195945050505050565b600082198211156200068e57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620006a857607f821691505b60208210811415620006ca57634e487b7160e01b600052602260045260246000fd5b50919050565b612b4080620006e06000396000f3fe6080604052600436106102885760003560e01c8063838ef0711161015a578063bffbfcd8116100c1578063f0e56f0d1161007a578063f0e56f0d146107e0578063f2fde38b14610800578063f5aa406d14610820578063fc1a1c3614610840578063ff2d401214610856578063ffe630b51461086957600080fd5b8063bffbfcd8146106fe578063c87b56dd1461071e578063d4ba4ca41461073e578063d5abeb011461076e578063e985e9c514610784578063efd0cbf9146107cd57600080fd5b8063a22cb46511610113578063a22cb4651461065c578063a4331d2d1461067c578063a5f4c6ff14610692578063a88fe42d146106a8578063a945bf80146106c8578063b88d4fde146106de57600080fd5b8063838ef0711461057f5780638462151c146105ac5780638da5cb5b146105d957806395d89b41146105f757806398a8cffe1461060c578063a0355eca1461063c57600080fd5b806323637617116101fe57806355a9cf11116101b757806355a9cf11146104d557806355f804b3146104f55780636352211e1461051557806370a0823114610535578063715018a614610555578063760a8c2a1461056a57600080fd5b8063236376171461041e57806323b872dd1461043e578063358ccc401461045e5780633ccfd60b1461047e57806342842e0e146104935780634e69d560146104b357600080fd5b80630f7309e8116102505780630f7309e8146103625780631015805b146103775780631789c074146103a457806318160ddd146103d15780632177ef1b146103ee57806322f3e2d41461040457600080fd5b806301ffc9a71461028d57806306fdde03146102c2578063081812fc146102e4578063095ea7b31461031c5780630d5624b31461033e575b600080fd5b34801561029957600080fd5b506102ad6102a8366004612659565b610889565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102d76108db565b6040516102b99190612946565b3480156102f057600080fd5b506103046102ff366004612640565b61096d565b6040516001600160a01b0390911681526020016102b9565b34801561032857600080fd5b5061033c610337366004612616565b6109b1565b005b34801561034a57600080fd5b5061035460105481565b6040519081526020016102b9565b34801561036e57600080fd5b506102d7610a3f565b34801561038357600080fd5b506103546103923660046124d5565b60186020526000908152604090205481565b3480156103b057600080fd5b506103546103bf3660046124d5565b60146020526000908152604090205481565b3480156103dd57600080fd5b506001546000540360001901610354565b3480156103fa57600080fd5b50610354600d5481565b34801561041057600080fd5b50600f546102ad9060ff1681565b34801561042a57600080fd5b5061033c610439366004612640565b610acd565b34801561044a57600080fd5b5061033c610459366004612523565b610b05565b34801561046a57600080fd5b5061033c610479366004612640565b610b10565b34801561048a57600080fd5b5061033c610b3f565b34801561049f57600080fd5b5061033c6104ae366004612523565b610b98565b3480156104bf57600080fd5b506104c8610bb3565b6040516102b9919061291e565b3480156104e157600080fd5b5061033c6104f0366004612616565b610bd9565b34801561050157600080fd5b5061033c610510366004612693565b610c35565b34801561052157600080fd5b50610304610530366004612640565b610c76565b34801561054157600080fd5b506103546105503660046124d5565b610c88565b34801561056157600080fd5b5061033c610cd6565b34801561057657600080fd5b5061033c610d0c565b34801561058b57600080fd5b5061035461059a3660046124d5565b60156020526000908152604090205481565b3480156105b857600080fd5b506105cc6105c73660046124d5565b610d4a565b6040516102b991906128e6565b3480156105e557600080fd5b506008546001600160a01b0316610304565b34801561060357600080fd5b506102d7610e97565b34801561061857600080fd5b506102ad6106273660046124d5565b60176020526000908152604090205460ff1681565b34801561064857600080fd5b5061033c6106573660046126db565b610ea6565b34801561066857600080fd5b5061033c6106773660046125da565b610edb565b34801561068857600080fd5b50610354600e5481565b34801561069e57600080fd5b5061035460115481565b3480156106b457600080fd5b5061033c6106c33660046126fd565b610f71565b3480156106d457600080fd5b50610354600b5481565b3480156106ea57600080fd5b5061033c6106f936600461255f565b610fa9565b34801561070a57600080fd5b5061033c610719366004612616565b610ffa565b34801561072a57600080fd5b506102d7610739366004612640565b611056565b34801561074a57600080fd5b506102ad6107593660046124d5565b60166020526000908152604090205460ff1681565b34801561077a57600080fd5b50610354611f4081565b34801561079057600080fd5b506102ad61079f3660046124f0565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61033c6107db366004612640565b6110db565b3480156107ec57600080fd5b506103546107fb366004612640565b611376565b34801561080c57600080fd5b5061033c61081b3660046124d5565b611394565b34801561082c57600080fd5b5061033c61083b366004612640565b61142c565b34801561084c57600080fd5b50610354600c5481565b61033c610864366004612729565b61145b565b34801561087557600080fd5b5061033c610884366004612693565b61172f565b60006001600160e01b031982166380ac58cd60e01b14806108ba57506001600160e01b03198216635b5e139f60e01b145b806108d557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546108ea90612a1c565b80601f016020809104026020016040519081016040528092919081815260200182805461091690612a1c565b80156109635780601f1061093857610100808354040283529160200191610963565b820191906000526020600020905b81548152906001019060200180831161094657829003601f168201915b5050505050905090565b60006109788261177b565b610995576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109bc82610c76565b9050806001600160a01b0316836001600160a01b031614156109f15760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a115750610a0f813361079f565b155b15610a2f576040516367d9dca160e11b815260040160405180910390fd5b610a3a8383836117b4565b505050565b600a8054610a4c90612a1c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7890612a1c565b8015610ac55780601f10610a9a57610100808354040283529160200191610ac5565b820191906000526020600020905b815481529060010190602001808311610aa857829003601f168201915b505050505081565b6008546001600160a01b03163314610b005760405162461bcd60e51b8152600401610af790612959565b60405180910390fd5b600e55565b610a3a838383611810565b6008546001600160a01b03163314610b3a5760405162461bcd60e51b8152600401610af790612959565b601255565b6008546001600160a01b03163314610b695760405162461bcd60e51b8152600401610af790612959565b60405133904780156108fc02916000818181858888f19350505050158015610b95573d6000803e3d6000fd5b50565b610a3a83838360405180602001604052806000815250610fa9565b60006011544210610bc45750600290565b6010544210610bd35750600190565b50600090565b6008546001600160a01b03163314610c035760405162461bcd60e51b8152600401610af790612959565b6001600160a01b039091166000908152601560209081526040808320939093556017905220805460ff19166001179055565b6008546001600160a01b03163314610c5f5760405162461bcd60e51b8152600401610af790612959565b8051610c72906009906020840190612360565b5050565b6000610c81826119fe565b5192915050565b60006001600160a01b038216610cb1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610d005760405162461bcd60e51b8152600401610af790612959565b610d0a6000611b25565b565b6008546001600160a01b03163314610d365760405162461bcd60e51b8152600401610af790612959565b600f805460ff19811660ff90911615179055565b60606000806000610d5a85610c88565b90506000816001600160401b03811115610d7657610d76612ade565b604051908082528060200260200182016040528015610d9f578160200160208202803683370190505b509050610dc5604080516060810182526000808252602082018190529181019190915290565b60015b838614610e8b57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529250610e2e57610e83565b81516001600160a01b031615610e4357815194505b876001600160a01b0316856001600160a01b03161415610e835780838780600101985081518110610e7657610e76612ac8565b6020026020010181815250505b600101610dc8565b50909695505050505050565b6060600380546108ea90612a1c565b6008546001600160a01b03163314610ed05760405162461bcd60e51b8152600401610af790612959565b601091909155601155565b6001600160a01b038216331415610f055760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610f9b5760405162461bcd60e51b8152600401610af790612959565b600b92909255600c55600d55565b610fb4848484611810565b6001600160a01b0383163b15158015610fd65750610fd484848484611b77565b155b15610ff4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146110245760405162461bcd60e51b8152600401610af790612959565b6001600160a01b039091166000908152601460209081526040808320939093556016905220805460ff19166001179055565b60606110618261177b565b61107e57604051630a14c4b560e41b815260040160405180910390fd5b6000611088611c6f565b90508051600014156110a957604051806020016040528060008152506110d4565b806110b384611c7e565b6040516020016110c492919061287a565b6040516020818303038152906040525b9392505050565b338160006110f26001546000546000199190030190565b600f5490915060ff166111395760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610af7565b6002611143610bb3565b600281111561115457611154612ab2565b146111985760405162461bcd60e51b8152602060048201526014602482015273537461747573206973206e6f74205075626c696360601b6044820152606401610af7565b611f4081106111d45760405162461bcd60e51b815260206004820152600860248201526714dbdb19081bdd5d60c21b6044820152606401610af7565b611f406111e1838361298e565b111561123b5760405162461bcd60e51b815260206004820152602360248201527f4d696e74696e6720776f756c6420657863656564206d6178696d756d20737570604482015262706c7960e81b6064820152608401610af7565b81600b5461124991906129ba565b34101561128f5760405162461bcd60e51b8152602060048201526014602482015273125b98dbdc9c9958dd08195d1a195c881cd95b9d60621b6044820152606401610af7565b600e546001600160a01b0384166000908152601860205260409020546112b690849061298e565b11156112f35760405162461bcd60e51b815260206004820152600c60248201526b4d6178696d756d206973203560a01b6044820152606401610af7565b3233146113375760405162461bcd60e51b815260206004820152601260248201527121b0b63632b91034b9903737ba103ab9b2b960711b6044820152606401610af7565b336113428186611d7b565b6001600160a01b0381166000908152601860205260408120805487929061136a90849061298e565b90915550505050505050565b6000611381826119fe565b602001516001600160401b031692915050565b6008546001600160a01b031633146113be5760405162461bcd60e51b8152600401610af790612959565b6001600160a01b0381166114235760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610af7565b610b9581611b25565b6008546001600160a01b031633146114565760405162461bcd60e51b8152600401610af790612959565b601355565b32331461149f5760405162461bcd60e51b815260206004820152601260248201527121b0b63632b91034b9903737ba103ab9b2b960711b6044820152606401610af7565b600f5460ff166114e35760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610af7565b60016114ed610bb3565b60028111156114fe576114fe612ab2565b146115435760405162461bcd60e51b8152602060048201526015602482015274537461747573206973206e6f742050726553616c6560581b6044820152606401610af7565b600c54611550908c6129ba565b600d5461155d908e6129ba565b611567919061298e565b3410156115ad5760405162461bcd60e51b8152602060048201526014602482015273125b98dbdc9c9958dd08195d1a195c881cd95b9d60621b6044820152606401610af7565b338c1561167b576001600160a01b03811660009081526016602052604090205460ff1615801561164e575061164e878780806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601254838e604051602001611633929190612858565b60405160208183030381529060405280519060200120611d95565b1561166f576001600160a01b03811660009081526014602052604090208b90555b61167b818e8b8b611dab565b8b15611720576001600160a01b03811660009081526017602052604090205460ff161580156116f357506116f383838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601354604051909250611633915085908f90602001612858565b15611714576001600160a01b03811660009081526015602052604090208a90555b611720818d8787611f5d565b50505050505050505050505050565b6008546001600160a01b031633146117595760405162461bcd60e51b8152600401610af790612959565b8051610c7290600a906020840190612360565b6001600160a01b03163b151590565b60008160011115801561178f575060005482105b80156108d5575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061181b826119fe565b9050836001600160a01b031681600001516001600160a01b0316146118525760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806118705750611870853361079f565b8061188b5750336118808461096d565b6001600160a01b0316145b9050806118ab57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166118d257604051633a954ecd60e21b815260040160405180910390fd5b6118de600084876117b4565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166119b25760005482146119b257805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611a2e575060005481105b15611b0c57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611b0a5780516001600160a01b031615611aa1579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611b05579392505050565b611aa1565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611bac9033908990889088906004016128a9565b602060405180830381600087803b158015611bc657600080fd5b505af1925050508015611bf6575060408051601f3d908101601f19168201909252611bf391810190612676565b60015b611c51573d808015611c24576040519150601f19603f3d011682016040523d82523d6000602084013e611c29565b606091505b508051611c49576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546108ea90612a1c565b606081611ca25750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ccc5780611cb681612a57565b9150611cc59050600a836129a6565b9150611ca6565b6000816001600160401b03811115611ce657611ce6612ade565b6040519080825280601f01601f191660200182016040528015611d10576020820181803683370190505b5090505b8415611c6757611d256001836129d9565b9150611d32600a86612a72565b611d3d90603061298e565b60f81b818381518110611d5257611d52612ac8565b60200101906001600160f81b031916908160001a905350611d74600a866129a6565b9450611d14565b610c7282826040518060200160405280600081525061210f565b600082611da2858461211c565b14949350505050565b6001600160a01b03841660009081526016602052604090205460ff1615611e43576001600160a01b038416600090815260146020526040812054611df09085906129d9565b1015611e3e5760405162461bcd60e51b815260206004820152601c60248201527f4761732050617373206d696e74206c696d6974206578636565646564000000006044820152606401610af7565b611efd565b6001600160a01b03841660009081526016602052604090205460ff16611efd57611eb182828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601254604051909250611633915088908890602001612858565b611efd5760405162461bcd60e51b815260206004820152601c60248201527f4761732050617373206d696e74206c696d6974206578636565646564000000006044820152606401610af7565b611f078484611d7b565b6001600160a01b03841660009081526014602052604081208054859290611f2f9084906129d9565b9091555050506001600160a01b039092166000908152601660205260409020805460ff191660011790555050565b6001600160a01b03841660009081526017602052604090205460ff1615611ff5576001600160a01b038416600090815260156020526040812054611fa29085906129d9565b1015611ff05760405162461bcd60e51b815260206004820152601d60248201527f57686974656c697374206d696e74206c696d69742065786365656465640000006044820152606401610af7565b6120af565b6001600160a01b03841660009081526017602052604090205460ff166120af5761206382828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601354604051909250611633915088908890602001612858565b6120af5760405162461bcd60e51b815260206004820152601d60248201527f57686974656c697374206d696e74206c696d69742065786365656465640000006044820152606401610af7565b6120b98484611d7b565b6001600160a01b038416600090815260156020526040812080548592906120e19084906129d9565b9091555050506001600160a01b039092166000908152601760205260409020805460ff191660011790555050565b610a3a8383836001612190565b600081815b845181101561218857600085828151811061213e5761213e612ac8565b602002602001015190508083116121645760008381526020829052604090209250612175565b600081815260208490526040902092505b508061218081612a57565b915050612121565b509392505050565b6000546001600160a01b0385166121b957604051622e076360e81b815260040160405180910390fd5b836121d75760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561228857506001600160a01b0387163b15155b15612311575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46122d96000888480600101955088611b77565b6122f6576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561228e57826000541461230c57600080fd5b612357565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612312575b506000556119f7565b82805461236c90612a1c565b90600052602060002090601f01602090048101928261238e57600085556123d4565b82601f106123a757805160ff19168380011785556123d4565b828001600101855582156123d4579182015b828111156123d45782518255916020019190600101906123b9565b506123e09291506123e4565b5090565b5b808211156123e057600081556001016123e5565b60006001600160401b038084111561241357612413612ade565b604051601f8501601f19908116603f0116810190828211818310171561243b5761243b612ade565b8160405280935085815286868601111561245457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461248557600080fd5b919050565b60008083601f84011261249c57600080fd5b5081356001600160401b038111156124b357600080fd5b6020830191508360208260051b85010111156124ce57600080fd5b9250929050565b6000602082840312156124e757600080fd5b6110d48261246e565b6000806040838503121561250357600080fd5b61250c8361246e565b915061251a6020840161246e565b90509250929050565b60008060006060848603121561253857600080fd5b6125418461246e565b925061254f6020850161246e565b9150604084013590509250925092565b6000806000806080858703121561257557600080fd5b61257e8561246e565b935061258c6020860161246e565b92506040850135915060608501356001600160401b038111156125ae57600080fd5b8501601f810187136125bf57600080fd5b6125ce878235602084016123f9565b91505092959194509250565b600080604083850312156125ed57600080fd5b6125f68361246e565b91506020830135801515811461260b57600080fd5b809150509250929050565b6000806040838503121561262957600080fd5b6126328361246e565b946020939093013593505050565b60006020828403121561265257600080fd5b5035919050565b60006020828403121561266b57600080fd5b81356110d481612af4565b60006020828403121561268857600080fd5b81516110d481612af4565b6000602082840312156126a557600080fd5b81356001600160401b038111156126bb57600080fd5b8201601f810184136126cc57600080fd5b611c67848235602084016123f9565b600080604083850312156126ee57600080fd5b50508035926020909101359150565b60008060006060848603121561271257600080fd5b505081359360208301359350604090920135919050565b6000806000806000806000806000806000806101008d8f03121561274c57600080fd5b8c359b5060208d01359a5060408d0135995060608d013598506001600160401b0360808e0135111561277d57600080fd5b61278d8e60808f01358f0161248a565b90985096506001600160401b0360a08e013511156127aa57600080fd5b6127ba8e60a08f01358f0161248a565b90965094506001600160401b0360c08e013511156127d757600080fd5b6127e78e60c08f01358f0161248a565b90945092506001600160401b0360e08e0135111561280457600080fd5b6128148e60e08f01358f0161248a565b81935080925050509295989b509295989b509295989b565b600081518084526128448160208601602086016129f0565b601f01601f19169290920160200192915050565b60609290921b6bffffffffffffffffffffffff19168252601482015260340190565b6000835161288c8184602088016129f0565b8351908301906128a08183602088016129f0565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128dc9083018461282c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015610e8b57835183529284019291840191600101612902565b602081016003831061294057634e487b7160e01b600052602160045260246000fd5b91905290565b6020815260006110d4602083018461282c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156129a1576129a1612a86565b500190565b6000826129b5576129b5612a9c565b500490565b60008160001904831182151516156129d4576129d4612a86565b500290565b6000828210156129eb576129eb612a86565b500390565b60005b83811015612a0b5781810151838201526020016129f3565b83811115610ff45750506000910152565b600181811c90821680612a3057607f821691505b60208210811415612a5157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a6b57612a6b612a86565b5060010190565b600082612a8157612a81612a9c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b9557600080fdfea2646970667358221220954e8969a7d1f6c643f27a615809cf08b15d519c296dd278cc1c178cad198bd664736f6c63430008070033697066733a2f2f516d504a54784732574c434c4e54466731485244796b5474794a4b767748694a4e4a704c4b704c33416f6d5047532fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef

Deployed Bytecode

0x6080604052600436106102885760003560e01c8063838ef0711161015a578063bffbfcd8116100c1578063f0e56f0d1161007a578063f0e56f0d146107e0578063f2fde38b14610800578063f5aa406d14610820578063fc1a1c3614610840578063ff2d401214610856578063ffe630b51461086957600080fd5b8063bffbfcd8146106fe578063c87b56dd1461071e578063d4ba4ca41461073e578063d5abeb011461076e578063e985e9c514610784578063efd0cbf9146107cd57600080fd5b8063a22cb46511610113578063a22cb4651461065c578063a4331d2d1461067c578063a5f4c6ff14610692578063a88fe42d146106a8578063a945bf80146106c8578063b88d4fde146106de57600080fd5b8063838ef0711461057f5780638462151c146105ac5780638da5cb5b146105d957806395d89b41146105f757806398a8cffe1461060c578063a0355eca1461063c57600080fd5b806323637617116101fe57806355a9cf11116101b757806355a9cf11146104d557806355f804b3146104f55780636352211e1461051557806370a0823114610535578063715018a614610555578063760a8c2a1461056a57600080fd5b8063236376171461041e57806323b872dd1461043e578063358ccc401461045e5780633ccfd60b1461047e57806342842e0e146104935780634e69d560146104b357600080fd5b80630f7309e8116102505780630f7309e8146103625780631015805b146103775780631789c074146103a457806318160ddd146103d15780632177ef1b146103ee57806322f3e2d41461040457600080fd5b806301ffc9a71461028d57806306fdde03146102c2578063081812fc146102e4578063095ea7b31461031c5780630d5624b31461033e575b600080fd5b34801561029957600080fd5b506102ad6102a8366004612659565b610889565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102d76108db565b6040516102b99190612946565b3480156102f057600080fd5b506103046102ff366004612640565b61096d565b6040516001600160a01b0390911681526020016102b9565b34801561032857600080fd5b5061033c610337366004612616565b6109b1565b005b34801561034a57600080fd5b5061035460105481565b6040519081526020016102b9565b34801561036e57600080fd5b506102d7610a3f565b34801561038357600080fd5b506103546103923660046124d5565b60186020526000908152604090205481565b3480156103b057600080fd5b506103546103bf3660046124d5565b60146020526000908152604090205481565b3480156103dd57600080fd5b506001546000540360001901610354565b3480156103fa57600080fd5b50610354600d5481565b34801561041057600080fd5b50600f546102ad9060ff1681565b34801561042a57600080fd5b5061033c610439366004612640565b610acd565b34801561044a57600080fd5b5061033c610459366004612523565b610b05565b34801561046a57600080fd5b5061033c610479366004612640565b610b10565b34801561048a57600080fd5b5061033c610b3f565b34801561049f57600080fd5b5061033c6104ae366004612523565b610b98565b3480156104bf57600080fd5b506104c8610bb3565b6040516102b9919061291e565b3480156104e157600080fd5b5061033c6104f0366004612616565b610bd9565b34801561050157600080fd5b5061033c610510366004612693565b610c35565b34801561052157600080fd5b50610304610530366004612640565b610c76565b34801561054157600080fd5b506103546105503660046124d5565b610c88565b34801561056157600080fd5b5061033c610cd6565b34801561057657600080fd5b5061033c610d0c565b34801561058b57600080fd5b5061035461059a3660046124d5565b60156020526000908152604090205481565b3480156105b857600080fd5b506105cc6105c73660046124d5565b610d4a565b6040516102b991906128e6565b3480156105e557600080fd5b506008546001600160a01b0316610304565b34801561060357600080fd5b506102d7610e97565b34801561061857600080fd5b506102ad6106273660046124d5565b60176020526000908152604090205460ff1681565b34801561064857600080fd5b5061033c6106573660046126db565b610ea6565b34801561066857600080fd5b5061033c6106773660046125da565b610edb565b34801561068857600080fd5b50610354600e5481565b34801561069e57600080fd5b5061035460115481565b3480156106b457600080fd5b5061033c6106c33660046126fd565b610f71565b3480156106d457600080fd5b50610354600b5481565b3480156106ea57600080fd5b5061033c6106f936600461255f565b610fa9565b34801561070a57600080fd5b5061033c610719366004612616565b610ffa565b34801561072a57600080fd5b506102d7610739366004612640565b611056565b34801561074a57600080fd5b506102ad6107593660046124d5565b60166020526000908152604090205460ff1681565b34801561077a57600080fd5b50610354611f4081565b34801561079057600080fd5b506102ad61079f3660046124f0565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61033c6107db366004612640565b6110db565b3480156107ec57600080fd5b506103546107fb366004612640565b611376565b34801561080c57600080fd5b5061033c61081b3660046124d5565b611394565b34801561082c57600080fd5b5061033c61083b366004612640565b61142c565b34801561084c57600080fd5b50610354600c5481565b61033c610864366004612729565b61145b565b34801561087557600080fd5b5061033c610884366004612693565b61172f565b60006001600160e01b031982166380ac58cd60e01b14806108ba57506001600160e01b03198216635b5e139f60e01b145b806108d557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546108ea90612a1c565b80601f016020809104026020016040519081016040528092919081815260200182805461091690612a1c565b80156109635780601f1061093857610100808354040283529160200191610963565b820191906000526020600020905b81548152906001019060200180831161094657829003601f168201915b5050505050905090565b60006109788261177b565b610995576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109bc82610c76565b9050806001600160a01b0316836001600160a01b031614156109f15760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a115750610a0f813361079f565b155b15610a2f576040516367d9dca160e11b815260040160405180910390fd5b610a3a8383836117b4565b505050565b600a8054610a4c90612a1c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7890612a1c565b8015610ac55780601f10610a9a57610100808354040283529160200191610ac5565b820191906000526020600020905b815481529060010190602001808311610aa857829003601f168201915b505050505081565b6008546001600160a01b03163314610b005760405162461bcd60e51b8152600401610af790612959565b60405180910390fd5b600e55565b610a3a838383611810565b6008546001600160a01b03163314610b3a5760405162461bcd60e51b8152600401610af790612959565b601255565b6008546001600160a01b03163314610b695760405162461bcd60e51b8152600401610af790612959565b60405133904780156108fc02916000818181858888f19350505050158015610b95573d6000803e3d6000fd5b50565b610a3a83838360405180602001604052806000815250610fa9565b60006011544210610bc45750600290565b6010544210610bd35750600190565b50600090565b6008546001600160a01b03163314610c035760405162461bcd60e51b8152600401610af790612959565b6001600160a01b039091166000908152601560209081526040808320939093556017905220805460ff19166001179055565b6008546001600160a01b03163314610c5f5760405162461bcd60e51b8152600401610af790612959565b8051610c72906009906020840190612360565b5050565b6000610c81826119fe565b5192915050565b60006001600160a01b038216610cb1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610d005760405162461bcd60e51b8152600401610af790612959565b610d0a6000611b25565b565b6008546001600160a01b03163314610d365760405162461bcd60e51b8152600401610af790612959565b600f805460ff19811660ff90911615179055565b60606000806000610d5a85610c88565b90506000816001600160401b03811115610d7657610d76612ade565b604051908082528060200260200182016040528015610d9f578160200160208202803683370190505b509050610dc5604080516060810182526000808252602082018190529181019190915290565b60015b838614610e8b57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529250610e2e57610e83565b81516001600160a01b031615610e4357815194505b876001600160a01b0316856001600160a01b03161415610e835780838780600101985081518110610e7657610e76612ac8565b6020026020010181815250505b600101610dc8565b50909695505050505050565b6060600380546108ea90612a1c565b6008546001600160a01b03163314610ed05760405162461bcd60e51b8152600401610af790612959565b601091909155601155565b6001600160a01b038216331415610f055760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610f9b5760405162461bcd60e51b8152600401610af790612959565b600b92909255600c55600d55565b610fb4848484611810565b6001600160a01b0383163b15158015610fd65750610fd484848484611b77565b155b15610ff4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146110245760405162461bcd60e51b8152600401610af790612959565b6001600160a01b039091166000908152601460209081526040808320939093556016905220805460ff19166001179055565b60606110618261177b565b61107e57604051630a14c4b560e41b815260040160405180910390fd5b6000611088611c6f565b90508051600014156110a957604051806020016040528060008152506110d4565b806110b384611c7e565b6040516020016110c492919061287a565b6040516020818303038152906040525b9392505050565b338160006110f26001546000546000199190030190565b600f5490915060ff166111395760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610af7565b6002611143610bb3565b600281111561115457611154612ab2565b146111985760405162461bcd60e51b8152602060048201526014602482015273537461747573206973206e6f74205075626c696360601b6044820152606401610af7565b611f4081106111d45760405162461bcd60e51b815260206004820152600860248201526714dbdb19081bdd5d60c21b6044820152606401610af7565b611f406111e1838361298e565b111561123b5760405162461bcd60e51b815260206004820152602360248201527f4d696e74696e6720776f756c6420657863656564206d6178696d756d20737570604482015262706c7960e81b6064820152608401610af7565b81600b5461124991906129ba565b34101561128f5760405162461bcd60e51b8152602060048201526014602482015273125b98dbdc9c9958dd08195d1a195c881cd95b9d60621b6044820152606401610af7565b600e546001600160a01b0384166000908152601860205260409020546112b690849061298e565b11156112f35760405162461bcd60e51b815260206004820152600c60248201526b4d6178696d756d206973203560a01b6044820152606401610af7565b3233146113375760405162461bcd60e51b815260206004820152601260248201527121b0b63632b91034b9903737ba103ab9b2b960711b6044820152606401610af7565b336113428186611d7b565b6001600160a01b0381166000908152601860205260408120805487929061136a90849061298e565b90915550505050505050565b6000611381826119fe565b602001516001600160401b031692915050565b6008546001600160a01b031633146113be5760405162461bcd60e51b8152600401610af790612959565b6001600160a01b0381166114235760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610af7565b610b9581611b25565b6008546001600160a01b031633146114565760405162461bcd60e51b8152600401610af790612959565b601355565b32331461149f5760405162461bcd60e51b815260206004820152601260248201527121b0b63632b91034b9903737ba103ab9b2b960711b6044820152606401610af7565b600f5460ff166114e35760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610af7565b60016114ed610bb3565b60028111156114fe576114fe612ab2565b146115435760405162461bcd60e51b8152602060048201526015602482015274537461747573206973206e6f742050726553616c6560581b6044820152606401610af7565b600c54611550908c6129ba565b600d5461155d908e6129ba565b611567919061298e565b3410156115ad5760405162461bcd60e51b8152602060048201526014602482015273125b98dbdc9c9958dd08195d1a195c881cd95b9d60621b6044820152606401610af7565b338c1561167b576001600160a01b03811660009081526016602052604090205460ff1615801561164e575061164e878780806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601254838e604051602001611633929190612858565b60405160208183030381529060405280519060200120611d95565b1561166f576001600160a01b03811660009081526014602052604090208b90555b61167b818e8b8b611dab565b8b15611720576001600160a01b03811660009081526017602052604090205460ff161580156116f357506116f383838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601354604051909250611633915085908f90602001612858565b15611714576001600160a01b03811660009081526015602052604090208a90555b611720818d8787611f5d565b50505050505050505050505050565b6008546001600160a01b031633146117595760405162461bcd60e51b8152600401610af790612959565b8051610c7290600a906020840190612360565b6001600160a01b03163b151590565b60008160011115801561178f575060005482105b80156108d5575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061181b826119fe565b9050836001600160a01b031681600001516001600160a01b0316146118525760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806118705750611870853361079f565b8061188b5750336118808461096d565b6001600160a01b0316145b9050806118ab57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166118d257604051633a954ecd60e21b815260040160405180910390fd5b6118de600084876117b4565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166119b25760005482146119b257805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611a2e575060005481105b15611b0c57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611b0a5780516001600160a01b031615611aa1579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611b05579392505050565b611aa1565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611bac9033908990889088906004016128a9565b602060405180830381600087803b158015611bc657600080fd5b505af1925050508015611bf6575060408051601f3d908101601f19168201909252611bf391810190612676565b60015b611c51573d808015611c24576040519150601f19603f3d011682016040523d82523d6000602084013e611c29565b606091505b508051611c49576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546108ea90612a1c565b606081611ca25750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ccc5780611cb681612a57565b9150611cc59050600a836129a6565b9150611ca6565b6000816001600160401b03811115611ce657611ce6612ade565b6040519080825280601f01601f191660200182016040528015611d10576020820181803683370190505b5090505b8415611c6757611d256001836129d9565b9150611d32600a86612a72565b611d3d90603061298e565b60f81b818381518110611d5257611d52612ac8565b60200101906001600160f81b031916908160001a905350611d74600a866129a6565b9450611d14565b610c7282826040518060200160405280600081525061210f565b600082611da2858461211c565b14949350505050565b6001600160a01b03841660009081526016602052604090205460ff1615611e43576001600160a01b038416600090815260146020526040812054611df09085906129d9565b1015611e3e5760405162461bcd60e51b815260206004820152601c60248201527f4761732050617373206d696e74206c696d6974206578636565646564000000006044820152606401610af7565b611efd565b6001600160a01b03841660009081526016602052604090205460ff16611efd57611eb182828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601254604051909250611633915088908890602001612858565b611efd5760405162461bcd60e51b815260206004820152601c60248201527f4761732050617373206d696e74206c696d6974206578636565646564000000006044820152606401610af7565b611f078484611d7b565b6001600160a01b03841660009081526014602052604081208054859290611f2f9084906129d9565b9091555050506001600160a01b039092166000908152601660205260409020805460ff191660011790555050565b6001600160a01b03841660009081526017602052604090205460ff1615611ff5576001600160a01b038416600090815260156020526040812054611fa29085906129d9565b1015611ff05760405162461bcd60e51b815260206004820152601d60248201527f57686974656c697374206d696e74206c696d69742065786365656465640000006044820152606401610af7565b6120af565b6001600160a01b03841660009081526017602052604090205460ff166120af5761206382828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601354604051909250611633915088908890602001612858565b6120af5760405162461bcd60e51b815260206004820152601d60248201527f57686974656c697374206d696e74206c696d69742065786365656465640000006044820152606401610af7565b6120b98484611d7b565b6001600160a01b038416600090815260156020526040812080548592906120e19084906129d9565b9091555050506001600160a01b039092166000908152601760205260409020805460ff191660011790555050565b610a3a8383836001612190565b600081815b845181101561218857600085828151811061213e5761213e612ac8565b602002602001015190508083116121645760008381526020829052604090209250612175565b600081815260208490526040902092505b508061218081612a57565b915050612121565b509392505050565b6000546001600160a01b0385166121b957604051622e076360e81b815260040160405180910390fd5b836121d75760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561228857506001600160a01b0387163b15155b15612311575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46122d96000888480600101955088611b77565b6122f6576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561228e57826000541461230c57600080fd5b612357565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612312575b506000556119f7565b82805461236c90612a1c565b90600052602060002090601f01602090048101928261238e57600085556123d4565b82601f106123a757805160ff19168380011785556123d4565b828001600101855582156123d4579182015b828111156123d45782518255916020019190600101906123b9565b506123e09291506123e4565b5090565b5b808211156123e057600081556001016123e5565b60006001600160401b038084111561241357612413612ade565b604051601f8501601f19908116603f0116810190828211818310171561243b5761243b612ade565b8160405280935085815286868601111561245457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461248557600080fd5b919050565b60008083601f84011261249c57600080fd5b5081356001600160401b038111156124b357600080fd5b6020830191508360208260051b85010111156124ce57600080fd5b9250929050565b6000602082840312156124e757600080fd5b6110d48261246e565b6000806040838503121561250357600080fd5b61250c8361246e565b915061251a6020840161246e565b90509250929050565b60008060006060848603121561253857600080fd5b6125418461246e565b925061254f6020850161246e565b9150604084013590509250925092565b6000806000806080858703121561257557600080fd5b61257e8561246e565b935061258c6020860161246e565b92506040850135915060608501356001600160401b038111156125ae57600080fd5b8501601f810187136125bf57600080fd5b6125ce878235602084016123f9565b91505092959194509250565b600080604083850312156125ed57600080fd5b6125f68361246e565b91506020830135801515811461260b57600080fd5b809150509250929050565b6000806040838503121561262957600080fd5b6126328361246e565b946020939093013593505050565b60006020828403121561265257600080fd5b5035919050565b60006020828403121561266b57600080fd5b81356110d481612af4565b60006020828403121561268857600080fd5b81516110d481612af4565b6000602082840312156126a557600080fd5b81356001600160401b038111156126bb57600080fd5b8201601f810184136126cc57600080fd5b611c67848235602084016123f9565b600080604083850312156126ee57600080fd5b50508035926020909101359150565b60008060006060848603121561271257600080fd5b505081359360208301359350604090920135919050565b6000806000806000806000806000806000806101008d8f03121561274c57600080fd5b8c359b5060208d01359a5060408d0135995060608d013598506001600160401b0360808e0135111561277d57600080fd5b61278d8e60808f01358f0161248a565b90985096506001600160401b0360a08e013511156127aa57600080fd5b6127ba8e60a08f01358f0161248a565b90965094506001600160401b0360c08e013511156127d757600080fd5b6127e78e60c08f01358f0161248a565b90945092506001600160401b0360e08e0135111561280457600080fd5b6128148e60e08f01358f0161248a565b81935080925050509295989b509295989b509295989b565b600081518084526128448160208601602086016129f0565b601f01601f19169290920160200192915050565b60609290921b6bffffffffffffffffffffffff19168252601482015260340190565b6000835161288c8184602088016129f0565b8351908301906128a08183602088016129f0565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128dc9083018461282c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015610e8b57835183529284019291840191600101612902565b602081016003831061294057634e487b7160e01b600052602160045260246000fd5b91905290565b6020815260006110d4602083018461282c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156129a1576129a1612a86565b500190565b6000826129b5576129b5612a9c565b500490565b60008160001904831182151516156129d4576129d4612a86565b500290565b6000828210156129eb576129eb612a86565b500390565b60005b83811015612a0b5781810151838201526020016129f3565b83811115610ff45750506000910152565b600181811c90821680612a3057607f821691505b60208210811415612a5157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a6b57612a6b612a86565b5060010190565b600082612a8157612a81612a9c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b9557600080fdfea2646970667358221220954e8969a7d1f6c643f27a615809cf08b15d519c296dd278cc1c178cad198bd664736f6c63430008070033

Deployed Bytecode Sourcemap

47149:7407:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29343:305;;;;;;;;;;-1:-1:-1;29343:305:0;;;;;:::i;:::-;;:::i;:::-;;;9407:14:1;;9400:22;9382:41;;9370:2;9355:18;29343:305:0;;;;;;;;32456:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33959:204::-;;;;;;;;;;-1:-1:-1;33959:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8068:32:1;;;8050:51;;8038:2;8023:18;33959:204:0;7904:203:1;33522:371:0;;;;;;;;;;-1:-1:-1;33522:371:0;;;;;:::i;:::-;;:::i;:::-;;47568:37;;;;;;;;;;;;;;;;;;;14451:25:1;;;14439:2;14424:18;47568:37:0;14305:177:1;47286:29:0;;;;;;;;;;;;;:::i;47984:44::-;;;;;;;;;;-1:-1:-1;47984:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;47774;;;;;;;;;;-1:-1:-1;47774:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;28592:303;;;;;;;;;;-1:-1:-1;28449:1:0;28846:12;28636:7;28830:13;:28;-1:-1:-1;;28830:46:0;28592:303;;47455:37;;;;;;;;;;;;;;;;47533:28;;;;;;;;;;-1:-1:-1;47533:28:0;;;;;;;;50963:107;;;;;;;;;;-1:-1:-1;50963:107:0;;;;;:::i;:::-;;:::i;34824:170::-;;;;;;;;;;-1:-1:-1;34824:170:0;;;;;:::i;:::-;;:::i;50316:111::-;;;;;;;;;;-1:-1:-1;50316:111:0;;;;;:::i;:::-;;:::i;54444:109::-;;;;;;;;;;;;;:::i;35065:185::-;;;;;;;;;;-1:-1:-1;35065:185:0;;;;;:::i;:::-;;:::i;48873:272::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;51266:190::-;;;;;;;;;;-1:-1:-1;51266:190:0;;;;;:::i;:::-;;:::i;51468:109::-;;;;;;;;;;-1:-1:-1;51468:109:0;;;;;:::i;:::-;;:::i;32264:125::-;;;;;;;;;;-1:-1:-1;32264:125:0;;;;;:::i;:::-;;:::i;29712:206::-;;;;;;;;;;-1:-1:-1;29712:206:0;;;;;:::i;:::-;;:::i;7119:103::-;;;;;;;;;;;;;:::i;51705:79::-;;;;;;;;;;;;;:::i;47825:46::-;;;;;;;;;;-1:-1:-1;47825:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;49293:882;;;;;;;;;;-1:-1:-1;49293:882:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;6468:87::-;;;;;;;;;;-1:-1:-1;6541:6:0;;-1:-1:-1;;;;;6541:6:0;6468:87;;32625:104;;;;;;;;;;;;;:::i;47930:47::-;;;;;;;;;;-1:-1:-1;47930:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;50562:159;;;;;;;;;;-1:-1:-1;50562:159:0;;;;;:::i;:::-;;:::i;34235:287::-;;;;;;;;;;-1:-1:-1;34235:287:0;;;;;:::i;:::-;;:::i;47499:27::-;;;;;;;;;;;;;;;;47648:49;;;;;;;;;;;;;;;;50729:226;;;;;;;;;;-1:-1:-1;50729:226:0;;;;;:::i;:::-;;:::i;47366:36::-;;;;;;;;;;;;;;;;35321:369;;;;;;;;;;-1:-1:-1;35321:369:0;;;;;:::i;:::-;;:::i;51078:180::-;;;;;;;;;;-1:-1:-1;51078:180:0;;;;;:::i;:::-;;:::i;32800:318::-;;;;;;;;;;-1:-1:-1;32800:318:0;;;;;:::i;:::-;;:::i;47878:45::-;;;;;;;;;;-1:-1:-1;47878:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;47322:37;;;;;;;;;;;;47355:4;47322:37;;34593:164;;;;;;;;;;-1:-1:-1;34593:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34714:25:0;;;34690:4;34714:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34593:164;54224:208;;;;;;:::i;:::-;;:::i;49153:132::-;;;;;;;;;;-1:-1:-1;49153:132:0;;;;;:::i;:::-;;:::i;7377:201::-;;;;;;;;;;-1:-1:-1;7377:201:0;;;;;:::i;:::-;;:::i;50435:119::-;;;;;;;;;;-1:-1:-1;50435:119:0;;;;;:::i;:::-;;:::i;47409:39::-;;;;;;;;;;;;;;;;51908:1236;;;;;;:::i;:::-;;:::i;51585:112::-;;;;;;;;;;-1:-1:-1;51585:112:0;;;;;:::i;:::-;;:::i;29343:305::-;29445:4;-1:-1:-1;;;;;;29482:40:0;;-1:-1:-1;;;29482:40:0;;:105;;-1:-1:-1;;;;;;;29539:48:0;;-1:-1:-1;;;29539:48:0;29482:105;:158;;;-1:-1:-1;;;;;;;;;;19361:40:0;;;29604:36;29462:178;29343:305;-1:-1:-1;;29343:305:0:o;32456:100::-;32510:13;32543:5;32536:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32456:100;:::o;33959:204::-;34027:7;34052:16;34060:7;34052;:16::i;:::-;34047:64;;34077:34;;-1:-1:-1;;;34077:34:0;;;;;;;;;;;34047:64;-1:-1:-1;34131:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34131:24:0;;33959:204::o;33522:371::-;33595:13;33611:24;33627:7;33611:15;:24::i;:::-;33595:40;;33656:5;-1:-1:-1;;;;;33650:11:0;:2;-1:-1:-1;;;;;33650:11:0;;33646:48;;;33670:24;;-1:-1:-1;;;33670:24:0;;;;;;;;;;;33646:48;5272:10;-1:-1:-1;;;;;33711:21:0;;;;;;:63;;-1:-1:-1;33737:37:0;33754:5;5272:10;34593:164;:::i;33737:37::-;33736:38;33711:63;33707:138;;;33798:35;;-1:-1:-1;;;33798:35:0;;;;;;;;;;;33707:138;33857:28;33866:2;33870:7;33879:5;33857:8;:28::i;:::-;33584:309;33522:371;;:::o;47286:29::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50963:107::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;;;;;;;;;51036:11:::1;:26:::0;50963:107::o;34824:170::-;34958:28;34968:4;34974:2;34978:7;34958:9;:28::i;50316:111::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;50393:11:::1;:26:::0;50316:111::o;54444:109::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;54494:51:::1;::::0;54502:10:::1;::::0;54523:21:::1;54494:51:::0;::::1;;;::::0;::::1;::::0;;;54523:21;54502:10;54494:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;54444:109::o:0;35065:185::-;35203:39;35220:4;35226:2;35230:7;35203:39;;;;;;;;;;;;:16;:39::i;48873:272::-;48915:6;48956:11;;48937:15;:30;48934:173;;-1:-1:-1;48991:13:0;;48873:272::o;48934:173::-;49045:12;;49026:15;:31;49022:85;;-1:-1:-1;49081:14:0;;48873:272::o;49022:85::-;-1:-1:-1;49124:13:0;;48873:272::o;51266:190::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;51363:24:0;;::::1;;::::0;;;:14:::1;:24;::::0;;;;;;;:42;;;;51416:15:::1;:25:::0;;;:32;;-1:-1:-1;;51416:32:0::1;51444:4;51416:32;::::0;;51266:190::o;51468:109::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;51542:27;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51468:109:::0;:::o;32264:125::-;32328:7;32355:21;32368:7;32355:12;:21::i;:::-;:26;;32264:125;-1:-1:-1;;32264:125:0:o;29712:206::-;29776:7;-1:-1:-1;;;;;29800:19:0;;29796:60;;29828:28;;-1:-1:-1;;;29828:28:0;;;;;;;;;;;29796:60;-1:-1:-1;;;;;;29882:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;29882:27:0;;29712:206::o;7119:103::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;7184:30:::1;7211:1;7184:18;:30::i;:::-;7119:103::o:0;51705:79::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;51768:8:::1;::::0;;-1:-1:-1;;51756:20:0;::::1;51768:8;::::0;;::::1;51767:9;51756:20;::::0;;51705:79::o;49293:882::-;49354:16;49408:19;49442:25;49482:22;49507:16;49517:5;49507:9;:16::i;:::-;49482:41;;49538:25;49580:14;-1:-1:-1;;;;;49566:29:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49566:29:0;;49538:57;;49610:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;49610:31:0;28449:1;49656:471;49705:14;49690:11;:29;49656:471;;49757:14;;;;:11;:14;;;;;;;;;49745:26;;;;;;;;;-1:-1:-1;;;;;49745:26:0;;;;-1:-1:-1;;;49745:26:0;;-1:-1:-1;;;;;49745:26:0;;;;;;;;-1:-1:-1;;;49745:26:0;;;;;;;;;;;;;;;;-1:-1:-1;49790:73:0;;49835:8;;49790:73;49885:14;;-1:-1:-1;;;;;49885:28:0;;49881:111;;49958:14;;;-1:-1:-1;49881:111:0;50035:5;-1:-1:-1;;;;;50014:26:0;:17;-1:-1:-1;;;;;50014:26:0;;50010:102;;;50091:1;50065:8;50074:13;;;;;;50065:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;50010:102;49721:3;;49656:471;;;-1:-1:-1;50148:8:0;;49293:882;-1:-1:-1;;;;;;49293:882:0:o;32625:104::-;32681:13;32714:7;32707:14;;;;;:::i;50562:159::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;50648:12:::1;:28:::0;;;;50687:11:::1;:26:::0;50562:159::o;34235:287::-;-1:-1:-1;;;;;34334:24:0;;5272:10;34334:24;34330:54;;;34367:17;;-1:-1:-1;;;34367:17:0;;;;;;;;;;;34330:54;5272:10;34397:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34397:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34397:53:0;;;;;;;;;;34466:48;;9382:41:1;;;34397:42:0;;5272:10;34466:48;;9355:18:1;34466:48:0;;;;;;;34235:287;;:::o;50729:226::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;50839:11:::1;:26:::0;;;;50876:14:::1;:32:::0;50919:12:::1;:28:::0;50729:226::o;35321:369::-;35488:28;35498:4;35504:2;35508:7;35488:9;:28::i;:::-;-1:-1:-1;;;;;35531:13:0;;9464:19;:23;;35531:76;;;;;35551:56;35582:4;35588:2;35592:7;35601:5;35551:30;:56::i;:::-;35550:57;35531:76;35527:156;;;35631:40;;-1:-1:-1;;;35631:40:0;;;;;;;;;;;35527:156;35321:369;;;;:::o;51078:180::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;51171:22:0;;::::1;;::::0;;;:12:::1;:22;::::0;;;;;;;:38;;;;51220:13:::1;:23:::0;;;:30;;-1:-1:-1;;51220:30:0::1;51246:4;51220:30;::::0;;51078:180::o;32800:318::-;32873:13;32904:16;32912:7;32904;:16::i;:::-;32899:59;;32929:29;;-1:-1:-1;;;32929:29:0;;;;;;;;;;;32899:59;32971:21;32995:10;:8;:10::i;:::-;32971:34;;33029:7;33023:21;33048:1;33023:26;;:87;;;;;;;;;;;;;;;;;33076:7;33085:18;:7;:16;:18::i;:::-;33059:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33023:87;33016:94;32800:318;-1:-1:-1;;;32800:318:0:o;54224:208::-;54285:10;54297:7;48267:17;48287:13;28449:1;28846:12;28636:7;28830:13;-1:-1:-1;;28830:28:0;;;:46;;28592:303;48287:13;48319:8;;48267:33;;-1:-1:-1;48319:8:0;;48311:36;;;;-1:-1:-1;;;48311:36:0;;12070:2:1;48311:36:0;;;12052:21:1;12109:2;12089:18;;;12082:30;-1:-1:-1;;;12128:18:1;;;12121:45;12183:18;;48311:36:0;11868:339:1;48311:36:0;48381:13;48366:11;:9;:11::i;:::-;:28;;;;;;;;:::i;:::-;;48358:61;;;;-1:-1:-1;;;48358:61:0;;11364:2:1;48358:61:0;;;11346:21:1;11403:2;11383:18;;;11376:30;-1:-1:-1;;;11422:18:1;;;11415:50;11482:18;;48358:61:0;11162:344:1;48358:61:0;47355:4;48438:12;:24;48430:45;;;;-1:-1:-1;;;48430:45:0;;13133:2:1;48430:45:0;;;13115:21:1;13172:1;13152:18;;;13145:29;-1:-1:-1;;;13190:18:1;;;13183:38;13238:18;;48430:45:0;12931:331:1;48430:45:0;47355:4;48495:22;48510:7;48495:12;:22;:::i;:::-;48494:37;;48486:85;;;;-1:-1:-1;;;48486:85:0;;10553:2:1;48486:85:0;;;10535:21:1;10592:2;10572:18;;;10565:30;10631:34;10611:18;;;10604:62;-1:-1:-1;;;10682:18:1;;;10675:33;10725:19;;48486:85:0;10351:399:1;48486:85:0;48618:7;48604:11;;:21;;;;:::i;:::-;48590:9;:36;;48582:69;;;;-1:-1:-1;;;48582:69:0;;10204:2:1;48582:69:0;;;10186:21:1;10243:2;10223:18;;;10216:30;-1:-1:-1;;;10262:18:1;;;10255:50;10322:18;;48582:69:0;10002:344:1;48582:69:0;48703:11;;-1:-1:-1;;;;;48671:17:0;;;;;;:12;:17;;;;;;:27;;48691:7;;48671:27;:::i;:::-;48670:44;;48662:69;;;;-1:-1:-1;;;48662:69:0;;14166:2:1;48662:69:0;;;14148:21:1;14205:2;14185:18;;;14178:30;-1:-1:-1;;;14224:18:1;;;14217:42;14276:18;;48662:69:0;13964:336:1;48662:69:0;48799:9:::1;48812:10;48799:23;48791:54;;;::::0;-1:-1:-1;;;48791:54:0;;13819:2:1;48791:54:0::1;::::0;::::1;13801:21:1::0;13858:2;13838:18;;;13831:30;-1:-1:-1;;;13877:18:1;;;13870:48;13935:18;;48791:54:0::1;13617:342:1::0;48791:54:0::1;54341:10:::2;54362:23;54341:10:::0;54377:7;54362:9:::2;:23::i;:::-;-1:-1:-1::0;;;;;54396:17:0;::::2;;::::0;;;:12:::2;:17;::::0;;;;:28;;54417:7;;54396:17;:28:::2;::::0;54417:7;;54396:28:::2;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;54224:208:0:o;49153:132::-;49216:4;49240:22;49253:8;49240:12;:22::i;:::-;:37;;;-1:-1:-1;;;;;49233:44:0;;49153:132;-1:-1:-1;;49153:132:0:o;7377:201::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7466:22:0;::::1;7458:73;;;::::0;-1:-1:-1;;;7458:73:0;;10957:2:1;7458:73:0::1;::::0;::::1;10939:21:1::0;10996:2;10976:18;;;10969:30;11035:34;11015:18;;;11008:62;-1:-1:-1;;;11086:18:1;;;11079:36;11132:19;;7458:73:0::1;10755:402:1::0;7458:73:0::1;7542:28;7561:8;7542:18;:28::i;50435:119::-:0;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;50516:13:::1;:30:::0;50435:119::o;51908:1236::-;48799:9;48812:10;48799:23;48791:54;;;;-1:-1:-1;;;48791:54:0;;13819:2:1;48791:54:0;;;13801:21:1;13858:2;13838:18;;;13831:30;-1:-1:-1;;;13877:18:1;;;13870:48;13935:18;;48791:54:0;13617:342:1;48791:54:0;52209:8:::1;::::0;::::1;;52201:36;;;::::0;-1:-1:-1;;;52201:36:0;;12070:2:1;52201:36:0::1;::::0;::::1;12052:21:1::0;12109:2;12089:18;;;12082:30;-1:-1:-1;;;12128:18:1;;;12121:45;12183:18;;52201:36:0::1;11868:339:1::0;52201:36:0::1;52271:14;52256:11;:9;:11::i;:::-;:29;;;;;;;;:::i;:::-;;52248:63;;;::::0;-1:-1:-1;;;52248:63:0;;13469:2:1;52248:63:0::1;::::0;::::1;13451:21:1::0;13508:2;13488:18;;;13481:30;-1:-1:-1;;;13527:18:1;;;13520:51;13588:18;;52248:63:0::1;13267:345:1::0;52248:63:0::1;52398:14;::::0;52379:33:::1;::::0;:16;:33:::1;:::i;:::-;52362:12;::::0;52345:29:::1;::::0;:14;:29:::1;:::i;:::-;52344:69;;;;:::i;:::-;52330:9;:84;;52322:117;;;::::0;-1:-1:-1;;;52322:117:0;;10204:2:1;52322:117:0::1;::::0;::::1;10186:21:1::0;10243:2;10223:18;;;10216:30;-1:-1:-1;;;10262:18:1;;;10255:50;10322:18;;52322:117:0::1;10002:344:1::0;52322:117:0::1;52466:10;52493:18:::0;;52489:309:::1;;-1:-1:-1::0;;;;;52533:18:0;::::1;;::::0;;;:13:::1;:18;::::0;;;;;::::1;;52532:19;:123:::0;::::1;;;;52555:100;52574:18;;52555:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52594:11;;52634:3;52639:13;52617:36;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52607:47;;;;;;52555:18;:100::i;:::-;52528:197;;;-1:-1:-1::0;;;;;52676:17:0;::::1;;::::0;;;:12:::1;:17;::::0;;;;:33;;;52528:197:::1;52739:47;52751:3;52756:14;52772:13;;52739:11;:47::i;:::-;52812:20:::0;;52808:329:::1;;-1:-1:-1::0;;;;;52854:20:0;::::1;;::::0;;;:15:::1;:20;::::0;;;;;::::1;;52853:21;:131:::0;::::1;;;;52878:106;52897:20;;52878:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;52919:13:0::1;::::0;52944:38:::1;::::0;52919:13;;-1:-1:-1;52944:38:0::1;::::0;-1:-1:-1;52961:3:0;;52966:15;;52944:38:::1;;;:::i;52878:106::-;52849:209;;;-1:-1:-1::0;;;;;53005:19:0;::::1;;::::0;;;:14:::1;:19;::::0;;;;:37;;;52849:209:::1;53072:53;53086:3;53091:16;53109:15;;53072:13;:53::i;:::-;52190:954;51908:1236:::0;;;;;;;;;;;;:::o;51585:112::-;6541:6;;-1:-1:-1;;;;;6541:6:0;5272:10;6688:23;6680:68;;;;-1:-1:-1;;;6680:68:0;;;;;;;:::i;:::-;51665:24;;::::1;::::0;:10:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;9169:326::-:0;-1:-1:-1;;;;;9464:19:0;;:23;;;9169:326::o;35945:174::-;36002:4;36045:7;28449:1;36026:26;;:53;;;;;36066:13;;36056:7;:23;36026:53;:85;;;;-1:-1:-1;;36084:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;36084:27:0;;;;36083:28;;35945:174::o;44102:196::-;44217:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44217:29:0;-1:-1:-1;;;;;44217:29:0;;;;;;;;;44262:28;;44217:24;;44262:28;;;;;;;44102:196;;;:::o;39045:2130::-;39160:35;39198:21;39211:7;39198:12;:21::i;:::-;39160:59;;39258:4;-1:-1:-1;;;;;39236:26:0;:13;:18;;;-1:-1:-1;;;;;39236:26:0;;39232:67;;39271:28;;-1:-1:-1;;;39271:28:0;;;;;;;;;;;39232:67;39312:22;5272:10;-1:-1:-1;;;;;39338:20:0;;;;:73;;-1:-1:-1;39375:36:0;39392:4;5272:10;34593:164;:::i;39375:36::-;39338:126;;;-1:-1:-1;5272:10:0;39428:20;39440:7;39428:11;:20::i;:::-;-1:-1:-1;;;;;39428:36:0;;39338:126;39312:153;;39483:17;39478:66;;39509:35;;-1:-1:-1;;;39509:35:0;;;;;;;;;;;39478:66;-1:-1:-1;;;;;39559:16:0;;39555:52;;39584:23;;-1:-1:-1;;;39584:23:0;;;;;;;;;;;39555:52;39728:35;39745:1;39749:7;39758:4;39728:8;:35::i;:::-;-1:-1:-1;;;;;40059:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40059:31:0;;;-1:-1:-1;;;;;40059:31:0;;;-1:-1:-1;;40059:31:0;;;;;;;40105:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40105:29:0;;;;;;;;;;;40185:20;;;:11;:20;;;;;;40220:18;;-1:-1:-1;;;;;;40253:49:0;;;;-1:-1:-1;;;40286:15:0;40253:49;;;;;;;;;;40576:11;;40636:24;;;;;40679:13;;40185:20;;40636:24;;40679:13;40675:384;;40889:13;;40874:11;:28;40870:174;;40927:20;;40996:28;;;;-1:-1:-1;;;;;40970:54:0;-1:-1:-1;;;40970:54:0;-1:-1:-1;;;;;;40970:54:0;;;-1:-1:-1;;;;;40927:20:0;;40970:54;;;;40870:174;40034:1036;;;41106:7;41102:2;-1:-1:-1;;;;;41087:27:0;41096:4;-1:-1:-1;;;;;41087:27:0;;;;;;;;;;;41125:42;39149:2026;;39045:2130;;;:::o;31093:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;31204:7:0;;28449:1;31253:23;;:47;;;;;31287:13;;31280:4;:20;31253:47;31249:886;;;31321:31;31355:17;;;:11;:17;;;;;;;;;31321:51;;;;;;;;;-1:-1:-1;;;;;31321:51:0;;;;-1:-1:-1;;;31321:51:0;;-1:-1:-1;;;;;31321:51:0;;;;;;;;-1:-1:-1;;;31321:51:0;;;;;;;;;;;;;;31391:729;;31441:14;;-1:-1:-1;;;;;31441:28:0;;31437:101;;31505:9;31093:1109;-1:-1:-1;;;31093:1109:0:o;31437:101::-;-1:-1:-1;;;31880:6:0;31925:17;;;;:11;:17;;;;;;;;;31913:29;;;;;;;;;-1:-1:-1;;;;;31913:29:0;;;;;-1:-1:-1;;;31913:29:0;;-1:-1:-1;;;;;31913:29:0;;;;;;;;-1:-1:-1;;;31913:29:0;;;;;;;;;;;;;31973:28;31969:109;;32041:9;31093:1109;-1:-1:-1;;;31093:1109:0:o;31969:109::-;31840:261;;;31302:833;31249:886;32163:31;;-1:-1:-1;;;32163:31:0;;;;;;;;;;;7738:191;7831:6;;;-1:-1:-1;;;;;7848:17:0;;;-1:-1:-1;;;;;;7848:17:0;;;;;;;7881:40;;7831:6;;;7848:17;7831:6;;7881:40;;7812:16;;7881:40;7801:128;7738:191;:::o;44790:667::-;44974:72;;-1:-1:-1;;;44974:72:0;;44953:4;;-1:-1:-1;;;;;44974:36:0;;;;;:72;;5272:10;;45025:4;;45031:7;;45040:5;;44974:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44974:72:0;;;;;;;;-1:-1:-1;;44974:72:0;;;;;;;;;;;;:::i;:::-;;;44970:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45208:13:0;;45204:235;;45254:40;;-1:-1:-1;;;45254:40:0;;;;;;;;;;;45204:235;45397:6;45391:13;45382:6;45378:2;45374:15;45367:38;44970:480;-1:-1:-1;;;;;;45093:55:0;-1:-1:-1;;;45093:55:0;;-1:-1:-1;44970:480:0;44790:667;;;;;;:::o;50187:117::-;50247:13;50280:16;50273:23;;;;;:::i;2754:723::-;2810:13;3031:10;3027:53;;-1:-1:-1;;3058:10:0;;;;;;;;;;;;-1:-1:-1;;;3058:10:0;;;;;2754:723::o;3027:53::-;3105:5;3090:12;3146:78;3153:9;;3146:78;;3179:8;;;;:::i;:::-;;-1:-1:-1;3202:10:0;;-1:-1:-1;3210:2:0;3202:10;;:::i;:::-;;;3146:78;;;3234:19;3266:6;-1:-1:-1;;;;;3256:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3256:17:0;;3234:39;;3284:154;3291:10;;3284:154;;3318:11;3328:1;3318:11;;:::i;:::-;;-1:-1:-1;3387:10:0;3395:2;3387:5;:10;:::i;:::-;3374:24;;:2;:24;:::i;:::-;3361:39;;3344:6;3351;3344:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3344:56:0;;;;;;;;-1:-1:-1;3415:11:0;3424:2;3415:11;;:::i;:::-;;;3284:154;;36127:104;36196:27;36206:2;36210:8;36196:27;;;;;;;;;;;;:9;:27::i;923:190::-;1048:4;1101;1072:25;1085:5;1092:4;1072:12;:25::i;:::-;:33;;923:190;-1:-1:-1;;;;923:190:0:o;53152:518::-;-1:-1:-1;;;;;53251:18:0;;;;;;:13;:18;;;;;;;;53247:307;;;-1:-1:-1;;;;;53295:17:0;;53327:1;53295:17;;;:12;:17;;;;;;:27;;53315:7;;53295:27;:::i;:::-;53294:34;;53286:75;;;;-1:-1:-1;;;53286:75:0;;11713:2:1;53286:75:0;;;11695:21:1;11752:2;11732:18;;;11725:30;11791;11771:18;;;11764:58;11839:18;;53286:75:0;11511:352:1;53286:75:0;53247:307;;;-1:-1:-1;;;;;53384:18:0;;;;;;:13;:18;;;;;;;;53379:175;;53427:82;53446:6;;53427:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;53454:11:0;;53477:30;;53454:11;;-1:-1:-1;53477:30:0;;-1:-1:-1;53494:3:0;;53499:7;;53477:30;;;:::i;53427:82::-;53419:123;;;;-1:-1:-1;;;53419:123:0;;11713:2:1;53419:123:0;;;11695:21:1;11752:2;11732:18;;;11725:30;11791;11771:18;;;11764:58;11839:18;;53419:123:0;11511:352:1;53419:123:0;53564:23;53574:3;53579:7;53564:9;:23::i;:::-;-1:-1:-1;;;;;53598:17:0;;;;;;:12;:17;;;;;:28;;53619:7;;53598:17;:28;;53619:7;;53598:28;:::i;:::-;;;;-1:-1:-1;;;;;;;;53637:18:0;;;;;;;:13;:18;;;;;:25;;-1:-1:-1;;53637:25:0;53658:4;53637:25;;;-1:-1:-1;;53152:518:0:o;53682:534::-;-1:-1:-1;;;;;53783:20:0;;;;;;:15;:20;;;;;;;;53779:317;;;-1:-1:-1;;;;;53829:19:0;;53863:1;53829:19;;;:14;:19;;;;;;:29;;53851:7;;53829:29;:::i;:::-;53828:36;;53820:78;;;;-1:-1:-1;;;53820:78:0;;12414:2:1;53820:78:0;;;12396:21:1;12453:2;12433:18;;;12426:30;12492:31;12472:18;;;12465:59;12541:18;;53820:78:0;12212:353:1;53820:78:0;53779:317;;;-1:-1:-1;;;;;53921:20:0;;;;;;:15;:20;;;;;;;;53916:180;;53966:84;53985:6;;53966:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;53993:13:0;;54018:30;;53993:13;;-1:-1:-1;54018:30:0;;-1:-1:-1;54035:3:0;;54040:7;;54018:30;;;:::i;53966:84::-;53958:126;;;;-1:-1:-1;;;53958:126:0;;12414:2:1;53958:126:0;;;12396:21:1;12453:2;12433:18;;;12426:30;12492:31;12472:18;;;12465:59;12541:18;;53958:126:0;12212:353:1;53958:126:0;54106:23;54116:3;54121:7;54106:9;:23::i;:::-;-1:-1:-1;;;;;54140:19:0;;;;;;:14;:19;;;;;:30;;54163:7;;54140:19;:30;;54163:7;;54140:30;:::i;:::-;;;;-1:-1:-1;;;;;;;;54181:20:0;;;;;;;:15;:20;;;;;:27;;-1:-1:-1;;54181:27:0;54204:4;54181:27;;;-1:-1:-1;;53682:534:0:o;36594:163::-;36717:32;36723:2;36727:8;36737:5;36744:4;36717:5;:32::i;1475:675::-;1558:7;1601:4;1558:7;1616:497;1640:5;:12;1636:1;:16;1616:497;;;1674:20;1697:5;1703:1;1697:8;;;;;;;;:::i;:::-;;;;;;;1674:31;;1740:12;1724;:28;1720:382;;2226:13;2276:15;;;2312:4;2305:15;;;2359:4;2343:21;;1852:57;;1720:382;;;2226:13;2276:15;;;2312:4;2305:15;;;2359:4;2343:21;;2029:57;;1720:382;-1:-1:-1;1654:3:0;;;;:::i;:::-;;;;1616:497;;;-1:-1:-1;2130:12:0;1475:675;-1:-1:-1;;;1475:675:0:o;37016:1775::-;37155:20;37178:13;-1:-1:-1;;;;;37206:16:0;;37202:48;;37231:19;;-1:-1:-1;;;37231:19:0;;;;;;;;;;;37202:48;37265:13;37261:44;;37287:18;;-1:-1:-1;;;37287:18:0;;;;;;;;;;;37261:44;-1:-1:-1;;;;;37656:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;37715:49:0;;-1:-1:-1;;;;;37656:44:0;;;;;;;37715:49;;;;-1:-1:-1;;37656:44:0;;;;;;37715:49;;;;;;;;;;;;;;;;37781:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;37831:66:0;;;;-1:-1:-1;;;37881:15:0;37831:66;;;;;;;;;;37781:25;37978:23;;;38022:4;:23;;;;-1:-1:-1;;;;;;38030:13:0;;9464:19;:23;;38030:15;38018:641;;;38066:314;38097:38;;38122:12;;-1:-1:-1;;;;;38097:38:0;;;38114:1;;38097:38;;38114:1;;38097:38;38163:69;38202:1;38206:2;38210:14;;;;;;38226:5;38163:30;:69::i;:::-;38158:174;;38268:40;;-1:-1:-1;;;38268:40:0;;;;;;;;;;;38158:174;38375:3;38359:12;:19;;38066:314;;38461:12;38444:13;;:29;38440:43;;38475:8;;;38440:43;38018:641;;;38524:120;38555:40;;38580:14;;;;;-1:-1:-1;;;;;38555:40:0;;;38572:1;;38555:40;;38572:1;;38555:40;38639:3;38623:12;:19;;38524:120;;38018:641;-1:-1:-1;38673:13:0;:28;38723:60;35321:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:367::-;891:8;901:6;955:3;948:4;940:6;936:17;932:27;922:55;;973:1;970;963:12;922:55;-1:-1:-1;996:20:1;;-1:-1:-1;;;;;1028:30:1;;1025:50;;;1071:1;1068;1061:12;1025:50;1108:4;1100:6;1096:17;1084:29;;1168:3;1161:4;1151:6;1148:1;1144:14;1136:6;1132:27;1128:38;1125:47;1122:67;;;1185:1;1182;1175:12;1122:67;828:367;;;;;:::o;1200:186::-;1259:6;1312:2;1300:9;1291:7;1287:23;1283:32;1280:52;;;1328:1;1325;1318:12;1280:52;1351:29;1370:9;1351:29;:::i;1391:260::-;1459:6;1467;1520:2;1508:9;1499:7;1495:23;1491:32;1488:52;;;1536:1;1533;1526:12;1488:52;1559:29;1578:9;1559:29;:::i;:::-;1549:39;;1607:38;1641:2;1630:9;1626:18;1607:38;:::i;:::-;1597:48;;1391:260;;;;;:::o;1656:328::-;1733:6;1741;1749;1802:2;1790:9;1781:7;1777:23;1773:32;1770:52;;;1818:1;1815;1808:12;1770:52;1841:29;1860:9;1841:29;:::i;:::-;1831:39;;1889:38;1923:2;1912:9;1908:18;1889:38;:::i;:::-;1879:48;;1974:2;1963:9;1959:18;1946:32;1936:42;;1656:328;;;;;:::o;1989:666::-;2084:6;2092;2100;2108;2161:3;2149:9;2140:7;2136:23;2132:33;2129:53;;;2178:1;2175;2168:12;2129:53;2201:29;2220:9;2201:29;:::i;:::-;2191:39;;2249:38;2283:2;2272:9;2268:18;2249:38;:::i;:::-;2239:48;;2334:2;2323:9;2319:18;2306:32;2296:42;;2389:2;2378:9;2374:18;2361:32;-1:-1:-1;;;;;2408:6:1;2405:30;2402:50;;;2448:1;2445;2438:12;2402:50;2471:22;;2524:4;2516:13;;2512:27;-1:-1:-1;2502:55:1;;2553:1;2550;2543:12;2502:55;2576:73;2641:7;2636:2;2623:16;2618:2;2614;2610:11;2576:73;:::i;:::-;2566:83;;;1989:666;;;;;;;:::o;2660:347::-;2725:6;2733;2786:2;2774:9;2765:7;2761:23;2757:32;2754:52;;;2802:1;2799;2792:12;2754:52;2825:29;2844:9;2825:29;:::i;:::-;2815:39;;2904:2;2893:9;2889:18;2876:32;2951:5;2944:13;2937:21;2930:5;2927:32;2917:60;;2973:1;2970;2963:12;2917:60;2996:5;2986:15;;;2660:347;;;;;:::o;3012:254::-;3080:6;3088;3141:2;3129:9;3120:7;3116:23;3112:32;3109:52;;;3157:1;3154;3147:12;3109:52;3180:29;3199:9;3180:29;:::i;:::-;3170:39;3256:2;3241:18;;;;3228:32;;-1:-1:-1;;;3012:254:1:o;3271:180::-;3330:6;3383:2;3371:9;3362:7;3358:23;3354:32;3351:52;;;3399:1;3396;3389:12;3351:52;-1:-1:-1;3422:23:1;;3271:180;-1:-1:-1;3271:180:1:o;3456:245::-;3514:6;3567:2;3555:9;3546:7;3542:23;3538:32;3535:52;;;3583:1;3580;3573:12;3535:52;3622:9;3609:23;3641:30;3665:5;3641:30;:::i;3706:249::-;3775:6;3828:2;3816:9;3807:7;3803:23;3799:32;3796:52;;;3844:1;3841;3834:12;3796:52;3876:9;3870:16;3895:30;3919:5;3895:30;:::i;3960:450::-;4029:6;4082:2;4070:9;4061:7;4057:23;4053:32;4050:52;;;4098:1;4095;4088:12;4050:52;4138:9;4125:23;-1:-1:-1;;;;;4163:6:1;4160:30;4157:50;;;4203:1;4200;4193:12;4157:50;4226:22;;4279:4;4271:13;;4267:27;-1:-1:-1;4257:55:1;;4308:1;4305;4298:12;4257:55;4331:73;4396:7;4391:2;4378:16;4373:2;4369;4365:11;4331:73;:::i;4600:248::-;4668:6;4676;4729:2;4717:9;4708:7;4704:23;4700:32;4697:52;;;4745:1;4742;4735:12;4697:52;-1:-1:-1;;4768:23:1;;;4838:2;4823:18;;;4810:32;;-1:-1:-1;4600:248:1:o;4853:316::-;4930:6;4938;4946;4999:2;4987:9;4978:7;4974:23;4970:32;4967:52;;;5015:1;5012;5005:12;4967:52;-1:-1:-1;;5038:23:1;;;5108:2;5093:18;;5080:32;;-1:-1:-1;5159:2:1;5144:18;;;5131:32;;4853:316;-1:-1:-1;4853:316:1:o;5174:1689::-;5404:6;5412;5420;5428;5436;5444;5452;5460;5468;5476;5484:7;5493;5547:3;5535:9;5526:7;5522:23;5518:33;5515:53;;;5564:1;5561;5554:12;5515:53;5600:9;5587:23;5577:33;;5657:2;5646:9;5642:18;5629:32;5619:42;;5708:2;5697:9;5693:18;5680:32;5670:42;;5759:2;5748:9;5744:18;5731:32;5721:42;;-1:-1:-1;;;;;5806:3:1;5795:9;5791:19;5778:33;5775:57;5772:77;;;5845:1;5842;5835:12;5772:77;5884:97;5973:7;5965:3;5954:9;5950:19;5937:33;5926:9;5922:49;5884:97;:::i;:::-;6000:8;;-1:-1:-1;6027:8:1;-1:-1:-1;;;;;;6078:3:1;6063:19;;6050:33;6047:57;6044:77;;;6117:1;6114;6107:12;6044:77;6156:97;6245:7;6237:3;6226:9;6222:19;6209:33;6198:9;6194:49;6156:97;:::i;:::-;6272:8;;-1:-1:-1;6299:8:1;-1:-1:-1;;;;;;6350:3:1;6335:19;;6322:33;6319:57;6316:77;;;6389:1;6386;6379:12;6316:77;6428:97;6517:7;6509:3;6498:9;6494:19;6481:33;6470:9;6466:49;6428:97;:::i;:::-;6544:8;;-1:-1:-1;6571:8:1;-1:-1:-1;;;;;;6622:3:1;6607:19;;6594:33;6591:57;6588:77;;;6661:1;6658;6651:12;6588:77;6702:97;6791:7;6783:3;6772:9;6768:19;6755:33;6744:9;6740:49;6702:97;:::i;:::-;6819:9;6808:20;;6848:9;6837:20;;;;5174:1689;;;;;;;;;;;;;;:::o;6868:257::-;6909:3;6947:5;6941:12;6974:6;6969:3;6962:19;6990:63;7046:6;7039:4;7034:3;7030:14;7023:4;7016:5;7012:16;6990:63;:::i;:::-;7107:2;7086:15;-1:-1:-1;;7082:29:1;7073:39;;;;7114:4;7069:50;;6868:257;-1:-1:-1;;6868:257:1:o;7130:294::-;7307:2;7303:15;;;;-1:-1:-1;;7299:53:1;7287:66;;7378:2;7369:12;;7362:28;7415:2;7406:12;;7130:294::o;7429:470::-;7608:3;7646:6;7640:13;7662:53;7708:6;7703:3;7696:4;7688:6;7684:17;7662:53;:::i;:::-;7778:13;;7737:16;;;;7800:57;7778:13;7737:16;7834:4;7822:17;;7800:57;:::i;:::-;7873:20;;7429:470;-1:-1:-1;;;;7429:470:1:o;8112:488::-;-1:-1:-1;;;;;8381:15:1;;;8363:34;;8433:15;;8428:2;8413:18;;8406:43;8480:2;8465:18;;8458:34;;;8528:3;8523:2;8508:18;;8501:31;;;8306:4;;8549:45;;8574:19;;8566:6;8549:45;:::i;:::-;8541:53;8112:488;-1:-1:-1;;;;;;8112:488:1:o;8605:632::-;8776:2;8828:21;;;8898:13;;8801:18;;;8920:22;;;8747:4;;8776:2;8999:15;;;;8973:2;8958:18;;;8747:4;9042:169;9056:6;9053:1;9050:13;9042:169;;;9117:13;;9105:26;;9186:15;;;;9151:12;;;;9078:1;9071:9;9042:169;;9434:339;9577:2;9562:18;;9610:1;9599:13;;9589:144;;9655:10;9650:3;9646:20;9643:1;9636:31;9690:4;9687:1;9680:15;9718:4;9715:1;9708:15;9589:144;9742:25;;;9434:339;:::o;9778:219::-;9927:2;9916:9;9909:21;9890:4;9947:44;9987:2;9976:9;9972:18;9964:6;9947:44;:::i;12570:356::-;12772:2;12754:21;;;12791:18;;;12784:30;12850:34;12845:2;12830:18;;12823:62;12917:2;12902:18;;12570:356::o;14487:128::-;14527:3;14558:1;14554:6;14551:1;14548:13;14545:39;;;14564:18;;:::i;:::-;-1:-1:-1;14600:9:1;;14487:128::o;14620:120::-;14660:1;14686;14676:35;;14691:18;;:::i;:::-;-1:-1:-1;14725:9:1;;14620:120::o;14745:168::-;14785:7;14851:1;14847;14843:6;14839:14;14836:1;14833:21;14828:1;14821:9;14814:17;14810:45;14807:71;;;14858:18;;:::i;:::-;-1:-1:-1;14898:9:1;;14745:168::o;14918:125::-;14958:4;14986:1;14983;14980:8;14977:34;;;14991:18;;:::i;:::-;-1:-1:-1;15028:9:1;;14918:125::o;15048:258::-;15120:1;15130:113;15144:6;15141:1;15138:13;15130:113;;;15220:11;;;15214:18;15201:11;;;15194:39;15166:2;15159:10;15130:113;;;15261:6;15258:1;15255:13;15252:48;;;-1:-1:-1;;15296:1:1;15278:16;;15271:27;15048:258::o;15311:380::-;15390:1;15386:12;;;;15433;;;15454:61;;15508:4;15500:6;15496:17;15486:27;;15454:61;15561:2;15553:6;15550:14;15530:18;15527:38;15524:161;;;15607:10;15602:3;15598:20;15595:1;15588:31;15642:4;15639:1;15632:15;15670:4;15667:1;15660:15;15524:161;;15311:380;;;:::o;15696:135::-;15735:3;-1:-1:-1;;15756:17:1;;15753:43;;;15776:18;;:::i;:::-;-1:-1:-1;15823:1:1;15812:13;;15696:135::o;15836:112::-;15868:1;15894;15884:35;;15899:18;;:::i;:::-;-1:-1:-1;15933:9:1;;15836:112::o;15953:127::-;16014:10;16009:3;16005:20;16002:1;15995:31;16045:4;16042:1;16035:15;16069:4;16066:1;16059:15;16085:127;16146:10;16141:3;16137:20;16134:1;16127:31;16177:4;16174:1;16167:15;16201:4;16198:1;16191:15;16217:127;16278:10;16273:3;16269:20;16266:1;16259:31;16309:4;16306:1;16299:15;16333:4;16330:1;16323:15;16349:127;16410:10;16405:3;16401:20;16398:1;16391:31;16441:4;16438:1;16431:15;16465:4;16462:1;16455:15;16481:127;16542:10;16537:3;16533:20;16530:1;16523:31;16573:4;16570:1;16563:15;16597:4;16594:1;16587:15;16613:131;-1:-1:-1;;;;;;16687:32:1;;16677:43;;16667:71;;16734:1;16731;16724:12

Swarm Source

ipfs://954e8969a7d1f6c643f27a615809cf08b15d519c296dd278cc1c178cad198bd6
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.