ETH Price: $2,972.64 (-0.59%)
Gas: 7 Gwei

Token

Starlite (SLT)
 

Overview

Max Total Supply

3,237 SLT

Holders

679

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
sking.eth
Balance
1 SLT
0xECf36F8a7D3738632CA3DC6aD4B9F307D0E62a28
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Starlite

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-02
*/

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree 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.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
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 Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle 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++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/IERC721A.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    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;
        // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`.
        uint24 extraData;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

    // ==============================
    //        IERC721Metadata
    // ==============================

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

    // ==============================
    //            IERC2309
    // ==============================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @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 IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with `_mintERC2309`.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309`
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

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

    // The number of tokens burned.
    uint256 private _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 `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev 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 Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Sets the auxiliary 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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // 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.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA);
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * 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) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, BITMASK_ADDRESS)
            // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

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

    /**
     * @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, _toString(tokenId))) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`.
            result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

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

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

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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 == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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-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 {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_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 && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) 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` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    /**
     * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`.
     */
    function _isOwnerOrApproved(
        address approvedAddress,
        address from,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
            from := and(from, BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, BITMASK_ADDRESS)
            // `msgSender == from || msgSender == approvedAddress`.
            result := or(eq(msgSender, from), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @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 transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev 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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        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 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 ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/extensions/IERC721AQueryable.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of an ERC721AQueryable compliant contract.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/extensions/ERC721AQueryable.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;



/**
 * @title ERC721A Queryable
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *   - `extraData` = `0`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *   - `extraData` = `<Extra data when token was burned>`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     *   - `extraData` = `<Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) public view override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view override returns (TokenOwnership[] memory) {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view override 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 = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

// File: contracts/Starlite.sol


pragma solidity 0.8.14;






contract Starlite is ERC721AQueryable, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public uriPrefix = "METADATA";
  string public uriSuffix = ".json";
  string public _contractURI = "";
  string public hiddenMetadataUri;

  uint256 public baseCost = 8800000000000000;
  uint256 public cost = baseCost;

  uint256 public maxSupply = 8539;
  uint256 public maxMintAmountPerTx = 50; //50

  bool public paused = true;
  bool public revealed = false;
  bool public whitelistPhase = true;
  
  uint256 public walletLimit = 0;

  uint256 public maxWalletLimitWL = 6; //5
  uint256 public maxWalletLimitPL = 8889; //unlimited
  uint256 public maxClaimLimit = 2;

  uint256 public freeMintLimit = 1000; // When do we switch from Free to Paid

  address public maxSupplyController = 0xCFe2dcb0D5444398cf33B741c64A12A7Fb0d83ae;

  mapping (address => uint256) public alreadyMinted;
  mapping (address => uint256) public alreadyClaimed;

// MERKEL TREE STUFF
  bytes32 public merkleRoot = 0xd4cc55fe690d8da4b2c1935e5dee444de78395ebcfdf42504ba93147d4afc9a4;
  
  constructor() ERC721A("Starlite", "SLT") {
    _startTokenId();
    setHiddenMetadataUri("https://www.starlite.gg/hiddenMeta.json");
    setContractURI("https://starlite.gg/sltcontract.json");
  }

  function _startTokenId()
        internal
        pure
        override
        returns(uint256)
    {
        return 1;
    }

  modifier mintCompliance (uint256 _mintAmount) {

    require(!paused, "Minting is PAUSED!");
    require(_mintAmount > 0 && _mintAmount < maxMintAmountPerTx, "Invalid mint amount!");
    require(msg.sender == tx.origin, "No Bots!");
    require(totalSupply() + _mintAmount < maxSupply, "Max supply exceeded!");
    
    if (whitelistPhase)
    {
      walletLimit = maxWalletLimitWL;
      cost = 0;
    }
    else if (!whitelistPhase)
    {
      walletLimit = maxWalletLimitPL;
      cost = baseCost;
    }

    if (totalSupply() < freeMintLimit && totalSupply() + _mintAmount > freeMintLimit)
    {
      uint256 overflow = totalSupply() + _mintAmount - freeMintLimit;
      cost = baseCost * overflow;
    }

    if (totalSupply() > freeMintLimit)
    {
      cost = baseCost;
    }

    require(msg.value >= cost, "Insufficient funds!");
    require(alreadyMinted[msg.sender] + _mintAmount < walletLimit, "Max Mints Per Wallet Reached!");

    _;
  }

  function setMerkleRoot(bytes32 newMerkleRoot) external onlyOwner
  {
    merkleRoot = newMerkleRoot;
  }

  function getAlreadyMinted(address a) public view returns (uint256)
  {
    return alreadyMinted[a];
  }

  function getWhitelistState() public view returns (bool)
  {
    return whitelistPhase;
  }

  function getFreeMint() public view returns (uint256)
  {
    return freeMintLimit;
  }

  function getMaxWalletLimitWL() public view returns (uint256)
  {
    return maxWalletLimitWL;
  }

  function getMaxWalletLimitPL() public view returns (uint256)
  {
    return maxWalletLimitPL;
  }

  function getPausedState() public view returns (bool)
  {
    return paused;
  }

  function getTotalSupply() public view returns (uint256)
  {
    return totalSupply();
  }

  function whitelistMint(bytes32[] calldata _merkleProof, uint256 _mintAmount) external mintCompliance(_mintAmount) payable
  {
    if (whitelistPhase)
    {
      bytes32 leaf = keccak256(abi.encodePacked(msg.sender));

      require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "Not on the Whitelist");

      alreadyMinted[msg.sender] += _mintAmount;
      _safeMint(msg.sender, _mintAmount);
    }
    else if (!whitelistPhase)
    {
      alreadyMinted[msg.sender] += _mintAmount;
      _safeMint(msg.sender, _mintAmount);
    }
  }

  function claimMint(bytes32[] calldata _merkleProof, uint256 _mintAmount) external payable
  {
    require(!paused, "Minting is PAUSED!");
    require(_mintAmount == 1, "Invalid mint amount!");
    require(msg.sender == tx.origin, "No Bots!");
    require(totalSupply() + _mintAmount < maxSupply, "Max supply exceeded!");
    require(alreadyClaimed[msg.sender] + _mintAmount < maxClaimLimit, "Max Claims Per Wallet Reached!");

    bytes32 leaf = keccak256(abi.encodePacked(msg.sender));

    require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "Not on the Claimlist");

    alreadyMinted[msg.sender] += _mintAmount;
    _safeMint(msg.sender, _mintAmount);
  }

  function publicMint(uint256 _mintAmount) external mintCompliance(_mintAmount) payable
  {
    require(!whitelistPhase, "Still in Whitelist Sale!");

    alreadyMinted[msg.sender] += _mintAmount;
    _safeMint(msg.sender, _mintAmount);
  }

  function mintForAddress(uint256 _mintAmount, address _receiver) public payable onlyOwner {
    require(totalSupply() + _mintAmount < maxSupply, "Max supply exceeded!");
    _safeMint(_receiver, _mintAmount);
  }

  function mintForAddressMultiple(address[] calldata addresses, uint256[] calldata amount) public onlyOwner
  {
    for (uint256 i; i < addresses.length; i++)
    {
      require(totalSupply() + amount[i] < maxSupply, "Max supply exceeded!");
      _safeMint(addresses[i], amount[i]);
    }
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

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

    if (revealed == false) {
      return hiddenMetadataUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _toString(_tokenId), uriSuffix))
        : "";
  }

  function contractURI() 
  public 
  view 
  returns (string memory) 
  {
        return bytes(_contractURI).length > 0
          ? string(abi.encodePacked(_contractURI))
          : "";
  }

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setBaseCost(uint256 _baseCost) public onlyOwner {
    baseCost = _baseCost;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setFreeMintLimit(uint256 _freeMintLimit) public onlyOwner {
    freeMintLimit = _freeMintLimit;
  }

  function setMaxWalletLimitWL(uint256 _maxWalletLimitWL) public onlyOwner {
    maxWalletLimitWL = _maxWalletLimitWL;
  }

  function setMaxWalletLimitPL(uint256 _maxWalletLimitPL) public onlyOwner {
    maxWalletLimitPL = _maxWalletLimitPL;
  }

  function setMaxSupplyController(address _address) public onlyOwner
  {
    require(msg.sender == maxSupplyController, "Not Authorised");
    maxSupplyController = _address;
  }

  function setMaxSupply(uint256 _maxSupply) public onlyOwner
  {
    require(msg.sender == maxSupplyController, "Not Authorised");
    maxSupply = _maxSupply;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setContractURI(string memory newContractURI) public onlyOwner {
    _contractURI = newContractURI;
  }

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

  function setWhitelistPhase(bool _state) public onlyOwner {
    whitelistPhase = _state;
  }

  function withdraw() public onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"alreadyClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"alreadyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"claimMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"getAlreadyMinted","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":[],"name":"getFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxWalletLimitPL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxWalletLimitWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPausedState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWhitelistState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxClaimLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyController","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletLimitPL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletLimitWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"amount","type":"uint256[]"}],"name":"mintForAddressMultiple","outputs":[],"stateMutability":"nonpayable","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_baseCost","type":"uint256"}],"name":"setBaseCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newContractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeMintLimit","type":"uint256"}],"name":"setFreeMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setMaxSupplyController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletLimitPL","type":"uint256"}],"name":"setMaxWalletLimitPL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletLimitWL","type":"uint256"}],"name":"setMaxWalletLimitWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistPhase","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","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":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"walletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistPhase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c060405260086080819052674d4554414441544160c01b60a09081526200002b91600a9190620002d4565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200005a91600b91620002d4565b506040805160208101918290526000908190526200007b91600c91620002d4565b50661f438daa060000600e819055600f5561215b6010556032601155601280546201000162ffffff19909116179055600060135560066014556122b960155560026016556103e8601755601880546001600160a01b03191673cfe2dcb0d5444398cf33b741c64a12a7fb0d83ae1790557fd4cc55fe690d8da4b2c1935e5dee444de78395ebcfdf42504ba93147d4afc9a4601b553480156200011c57600080fd5b506040805180820182526008815267537461726c69746560c01b60208083019182528351808501909452600384526214d31560ea1b9084015281519192916200016891600291620002d4565b5080516200017e906003906020840190620002d4565b50506001600055506200019133620001df565b620001b560405180606001604052806027815260200162003bcf6027913962000231565b620001d960405180606001604052806024815260200162003bab6024913962000254565b620003b6565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200023b62000273565b80516200025090600d906020840190620002d4565b5050565b6200025e62000273565b80516200025090600c906020840190620002d4565b6008546001600160a01b03163314620002d25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b828054620002e2906200037a565b90600052602060002090601f01602090048101928262000306576000855562000351565b82601f106200032157805160ff191683800117855562000351565b8280016001018555821562000351579182015b828111156200035157825182559160200191906001019062000334565b506200035f92915062000363565b5090565b5b808211156200035f576000815560010162000364565b600181811c908216806200038f57607f821691505b602082108103620003b057634e487b7160e01b600052602260045260246000fd5b50919050565b6137e580620003c66000396000f3fe6080604052600436106104805760003560e01c80637cb647591161025e578063b071401b11610143578063d6c9ea91116100bb578063e8a3d4851161008a578063efbd73f41161006f578063efbd73f414610c8e578063f2fde38b14610ca1578063f54b893b14610cc157600080fd5b8063e8a3d48514610c30578063e985e9c514610c4557600080fd5b8063d6c9ea9114610bc8578063de6c6d3614610bdb578063e0a8085314610bfb578063e887312914610c1b57600080fd5b8063c23dc68f11610112578063c71fbb71116100f7578063c71fbb7114610b5c578063c87b56dd14610b92578063d5abeb0114610bb257600080fd5b8063c23dc68f14610b1a578063c4e41b2214610b4757600080fd5b8063b071401b14610aa5578063b88d4fde14610ac5578063bd2f6eb814610ae5578063c0e7274014610b0557600080fd5b8063938e3d7b116101d65780639dddc292116101a5578063a45ba8e71161018a578063a45ba8e714610a5a578063a708e01a14610a6f578063a7749b0d14610a8557600080fd5b80639dddc29214610a1c578063a22cb46514610a3a57600080fd5b8063938e3d7b146109b157806394354fd0146109d157806395d89b41146109e757806399a2557a146109fc57600080fd5b80638462151c1161022d5780638da5cb5b116102125780638da5cb5b1461095d5780638ea3b9b41461097b578063938225571461099b57600080fd5b80638462151c14610928578063861ec1f41461094857600080fd5b80637cb64759146108a85780637ec4a659146108c8578063815d544c146108e8578063816927221461090857600080fd5b80632db11544116103845780635bbb2177116102fc57806365a85d48116102cb5780636fd02e4b116102b05780636fd02e4b1461085d57806370a0823114610873578063715018a61461089357600080fd5b806365a85d481461081d5780636f8b44b01461083d57600080fd5b80635bbb2177146107a15780635c975abb146107ce57806362b99ad4146107e85780636352211e146107fd57600080fd5b806342842e0e116103535780634fdd43cb116103385780634fdd43cb1461074d578063518302271461076d5780635503a0e81461078c57600080fd5b806342842e0e14610700578063438b63001461072057600080fd5b80632db11544146106ac5780632eb4a7ab146106bf5780633c8463a1146106d55780633ccfd60b146106eb57600080fd5b806313faede6116104175780631c0de051116103e65780632904e6d9116103cb5780632904e6d9146106635780632b2bda4f146106765780632b5dc91f1461068c57600080fd5b80631c0de0511461062b57806323b872dd1461064357600080fd5b806313faede6146105b857806316ba10e0146105ce57806316c38b3c146105ee57806318160ddd1461060e57600080fd5b8063081812fc11610453578063081812fc1461051d57806308346d8514610555578063095ea7b31461056b5780630a398b881461058b57600080fd5b806301ffc9a71461048557806302bdd755146104ba578063065721bf146104dc57806306fdde03146104fb575b600080fd5b34801561049157600080fd5b506104a56104a0366004612f83565b610cee565b60405190151581526020015b60405180910390f35b3480156104c657600080fd5b506104da6104d5366004612fb5565b610d8b565b005b3480156104e857600080fd5b506015545b6040519081526020016104b1565b34801561050757600080fd5b50610510610daf565b6040516104b19190613028565b34801561052957600080fd5b5061053d61053836600461303b565b610e41565b6040516001600160a01b0390911681526020016104b1565b34801561056157600080fd5b506104ed60175481565b34801561057757600080fd5b506104da61058636600461306b565b610e9e565b34801561059757600080fd5b506104ed6105a6366004613095565b60196020526000908152604090205481565b3480156105c457600080fd5b506104ed600f5481565b3480156105da57600080fd5b506104da6105e936600461314f565b610f81565b3480156105fa57600080fd5b506104da610609366004612fb5565b610fa0565b34801561061a57600080fd5b5060015460005403600019016104ed565b34801561063757600080fd5b5060125460ff166104a5565b34801561064f57600080fd5b506104da61065e366004613198565b610fbb565b6104da610671366004613220565b6111bc565b34801561068257600080fd5b506104ed60155481565b34801561069857600080fd5b506104da6106a736600461303b565b6115e2565b6104da6106ba36600461303b565b6115ef565b3480156106cb57600080fd5b506104ed601b5481565b3480156106e157600080fd5b506104ed60135481565b3480156106f757600080fd5b506104da611947565b34801561070c57600080fd5b506104da61071b366004613198565b6119c3565b34801561072c57600080fd5b5061074061073b366004613095565b6119e3565b6040516104b1919061326c565b34801561075957600080fd5b506104da61076836600461314f565b611ac3565b34801561077957600080fd5b506012546104a590610100900460ff1681565b34801561079857600080fd5b50610510611ade565b3480156107ad57600080fd5b506107c16107bc3660046132a4565b611b6c565b6040516104b1919061334a565b3480156107da57600080fd5b506012546104a59060ff1681565b3480156107f457600080fd5b50610510611c3a565b34801561080957600080fd5b5061053d61081836600461303b565b611c47565b34801561082957600080fd5b506104da61083836600461303b565b611c52565b34801561084957600080fd5b506104da61085836600461303b565b611c5f565b34801561086957600080fd5b506104ed60145481565b34801561087f57600080fd5b506104ed61088e366004613095565b611cc6565b34801561089f57600080fd5b506104da611d2e565b3480156108b457600080fd5b506104da6108c336600461303b565b611d42565b3480156108d457600080fd5b506104da6108e336600461314f565b611d4f565b3480156108f457600080fd5b506012546104a59062010000900460ff1681565b34801561091457600080fd5b506104da61092336600461303b565b611d6a565b34801561093457600080fd5b50610740610943366004613095565b611d77565b34801561095457600080fd5b506017546104ed565b34801561096957600080fd5b506008546001600160a01b031661053d565b34801561098757600080fd5b5060185461053d906001600160a01b031681565b3480156109a757600080fd5b506104ed600e5481565b3480156109bd57600080fd5b506104da6109cc36600461314f565b611e7b565b3480156109dd57600080fd5b506104ed60115481565b3480156109f357600080fd5b50610510611e96565b348015610a0857600080fd5b50610740610a173660046133c7565b611ea5565b348015610a2857600080fd5b5060125462010000900460ff166104a5565b348015610a4657600080fd5b506104da610a553660046133fa565b612046565b348015610a6657600080fd5b506105106120f4565b348015610a7b57600080fd5b506104ed60165481565b348015610a9157600080fd5b506104da610aa0366004613095565b612101565b348015610ab157600080fd5b506104da610ac036600461303b565b612192565b348015610ad157600080fd5b506104da610ae036600461342d565b61219f565b348015610af157600080fd5b506104da610b0036600461303b565b6121e3565b348015610b1157600080fd5b506105106121f0565b348015610b2657600080fd5b50610b3a610b3536600461303b565b6121fd565b6040516104b191906134a9565b348015610b5357600080fd5b506104ed612285565b348015610b6857600080fd5b506104ed610b77366004613095565b6001600160a01b031660009081526019602052604090205490565b348015610b9e57600080fd5b50610510610bad36600461303b565b61229f565b348015610bbe57600080fd5b506104ed60105481565b6104da610bd6366004613220565b612420565b348015610be757600080fd5b506104da610bf63660046134ee565b6126a1565b348015610c0757600080fd5b506104da610c16366004612fb5565b612792565b348015610c2757600080fd5b506014546104ed565b348015610c3c57600080fd5b506105106127b4565b348015610c5157600080fd5b506104a5610c6036600461355a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6104da610c9c366004613584565b612805565b348015610cad57600080fd5b506104da610cbc366004613095565b612876565b348015610ccd57600080fd5b506104ed610cdc366004613095565b601a6020526000908152604090205481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b031983161480610d5157507f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b80610d8557507f5b5e139f000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b610d93612903565b60128054911515620100000262ff000019909216919091179055565b606060028054610dbe906135a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610dea906135a7565b8015610e375780601f10610e0c57610100808354040283529160200191610e37565b820191906000526020600020905b815481529060010190602001808311610e1a57829003601f168201915b5050505050905090565b6000610e4c8261295d565b610e82576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610ea982611c47565b9050336001600160a01b03821614610f18576001600160a01b038116600090815260076020908152604080832033845290915290205460ff16610f18576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610f89612903565b8051610f9c90600b906020840190612ed4565b5050565b610fa8612903565b6012805460ff1916911515919091179055565b6000610fc682612992565b9050836001600160a01b0316816001600160a01b031614611013576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417611096576001600160a01b038616600090815260076020908152604080832033845290915290205460ff16611096576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0385166110d6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80156110e157600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003611173576001840160008181526004602052604081205490036111715760005481146111715760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b601254819060ff161561120b5760405162461bcd60e51b81526020600482015260126024820152714d696e74696e67206973205041555345442160701b60448201526064015b60405180910390fd5b60008111801561121c575060115481105b6112685760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e74210000000000000000000000006044820152606401611202565b3332146112a25760405162461bcd60e51b81526020600482015260086024820152674e6f20426f74732160c01b6044820152606401611202565b60105460015460005483919003600019016112bd91906135f7565b106113015760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401611202565b60125462010000900460ff1615611322576014546013556000600f5561133f565b60125462010000900460ff1661133f57601554601355600e54600f555b60175460015460005403600019011080156113725750601754600154600054839190036000190161137091906135f7565b115b156113b9576000601754826113906001546000546000199190030190565b61139a91906135f7565b6113a4919061360f565b905080600e546113b49190613626565b600f55505b601754600154600054036000190111156113d457600e54600f555b600f543410156114265760405162461bcd60e51b815260206004820152601360248201527f496e73756666696369656e742066756e647321000000000000000000000000006044820152606401611202565b601354336000908152601960205260409020546114449083906135f7565b106114915760405162461bcd60e51b815260206004820152601d60248201527f4d6178204d696e7473205065722057616c6c65742052656163686564210000006044820152606401611202565b60125462010000900460ff161561159d576040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061151c85858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601b549150849050612a1a565b6115685760405162461bcd60e51b815260206004820152601460248201527f4e6f74206f6e207468652057686974656c6973740000000000000000000000006044820152606401611202565b33600090815260196020526040812080548592906115879084906135f7565b9091555061159790503384612a30565b506115dc565b60125462010000900460ff166115dc5733600090815260196020526040812080548492906115cc9084906135f7565b909155506115dc90503383612a30565b50505050565b6115ea612903565b600e55565b601254819060ff16156116395760405162461bcd60e51b81526020600482015260126024820152714d696e74696e67206973205041555345442160701b6044820152606401611202565b60008111801561164a575060115481105b6116965760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e74210000000000000000000000006044820152606401611202565b3332146116d05760405162461bcd60e51b81526020600482015260086024820152674e6f20426f74732160c01b6044820152606401611202565b60105460015460005483919003600019016116eb91906135f7565b1061172f5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401611202565b60125462010000900460ff1615611750576014546013556000600f5561176d565b60125462010000900460ff1661176d57601554601355600e54600f555b60175460015460005403600019011080156117a05750601754600154600054839190036000190161179e91906135f7565b115b156117e7576000601754826117be6001546000546000199190030190565b6117c891906135f7565b6117d2919061360f565b905080600e546117e29190613626565b600f55505b6017546001546000540360001901111561180257600e54600f555b600f543410156118545760405162461bcd60e51b815260206004820152601360248201527f496e73756666696369656e742066756e647321000000000000000000000000006044820152606401611202565b601354336000908152601960205260409020546118729083906135f7565b106118bf5760405162461bcd60e51b815260206004820152601d60248201527f4d6178204d696e7473205065722057616c6c65742052656163686564210000006044820152606401611202565b60125462010000900460ff16156119185760405162461bcd60e51b815260206004820152601860248201527f5374696c6c20696e2057686974656c6973742053616c652100000000000000006044820152606401611202565b33600090815260196020526040812080548492906119379084906135f7565b90915550610f9c90503383612a30565b61194f612903565b60006119636008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146119ad576040519150601f19603f3d011682016040523d82523d6000602084013e6119b2565b606091505b50509050806119c057600080fd5b50565b6119de8383836040518060200160405280600081525061219f565b505050565b606060006119f083611cc6565b905060008167ffffffffffffffff811115611a0d57611a0d6130b0565b604051908082528060200260200182016040528015611a36578160200160208202803683370190505b509050600160005b8381108015611a4f57506010548211155b15611ab9576000611a5f83611c47565b9050866001600160a01b0316816001600160a01b031603611aa65782848381518110611a8d57611a8d613645565b602090810291909101015281611aa28161365b565b9250505b82611ab08161365b565b93505050611a3e565b5090949350505050565b611acb612903565b8051610f9c90600d906020840190612ed4565b600b8054611aeb906135a7565b80601f0160208091040260200160405190810160405280929190818152602001828054611b17906135a7565b8015611b645780601f10611b3957610100808354040283529160200191611b64565b820191906000526020600020905b815481529060010190602001808311611b4757829003601f168201915b505050505081565b805160609060008167ffffffffffffffff811115611b8c57611b8c6130b0565b604051908082528060200260200182016040528015611bde57816020015b604080516080810182526000808252602080830182905292820181905260608201528252600019909201910181611baa5790505b50905060005b828114611c3257611c0d858281518110611c0057611c00613645565b60200260200101516121fd565b828281518110611c1f57611c1f613645565b6020908102919091010152600101611be4565b509392505050565b600a8054611aeb906135a7565b6000610d8582612992565b611c5a612903565b601555565b611c67612903565b6018546001600160a01b03163314611cc15760405162461bcd60e51b815260206004820152600e60248201527f4e6f7420417574686f72697365640000000000000000000000000000000000006044820152606401611202565b601055565b60006001600160a01b038216611d08576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b611d36612903565b611d406000612a4a565b565b611d4a612903565b601b55565b611d57612903565b8051610f9c90600a906020840190612ed4565b611d72612903565b601455565b60606000806000611d8785611cc6565b905060008167ffffffffffffffff811115611da457611da46130b0565b604051908082528060200260200182016040528015611dcd578160200160208202803683370190505b5060408051608081018252600080825260208201819052918101829052606081019190915290915060015b838614611e6f57611e0881612aa9565b91508160400151611e675781516001600160a01b031615611e2857815194505b876001600160a01b0316856001600160a01b031603611e675780838780600101985081518110611e5a57611e5a613645565b6020026020010181815250505b600101611df8565b50909695505050505050565b611e83612903565b8051610f9c90600c906020840190612ed4565b606060038054610dbe906135a7565b6060818310611ee0576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611eec60005490565b90506001851015611efc57600194505b80841115611f08578093505b6000611f1387611cc6565b905084861015611f325785850381811015611f2c578091505b50611f36565b5060005b60008167ffffffffffffffff811115611f5157611f516130b0565b604051908082528060200260200182016040528015611f7a578160200160208202803683370190505b50905081600003611f9057935061203f92505050565b6000611f9b886121fd565b905060008160400151611fac575080515b885b888114158015611fbe5750848714155b1561203357611fcc81612aa9565b9250826040015161202b5782516001600160a01b031615611fec57825191505b8a6001600160a01b0316826001600160a01b03160361202b578084888060010199508151811061201e5761201e613645565b6020026020010181815250505b600101611fae565b50505092835250909150505b9392505050565b336001600160a01b03831603612088576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600d8054611aeb906135a7565b612109612903565b6018546001600160a01b031633146121635760405162461bcd60e51b815260206004820152600e60248201527f4e6f7420417574686f72697365640000000000000000000000000000000000006044820152606401611202565b6018805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b61219a612903565b601155565b6121aa848484610fbb565b6001600160a01b0383163b156115dc576121c684848484612b28565b6115dc576040516368d2bf6b60e11b815260040160405180910390fd5b6121eb612903565b601755565b600c8054611aeb906135a7565b604080516080810182526000808252602082018190529181018290526060810191909152604080516080810182526000808252602082018190529181018290526060810191909152600183108061225657506000548310155b156122615792915050565b61226a83612aa9565b905080604001511561227c5792915050565b61203f83612c14565b600061229a6001546000546000199190030190565b905090565b60606122aa8261295d565b61231c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401611202565b601254610100900460ff1615156000036123c257600d805461233d906135a7565b80601f0160208091040260200160405190810160405280929190818152602001828054612369906135a7565b80156123b65780601f1061238b576101008083540402835291602001916123b6565b820191906000526020600020905b81548152906001019060200180831161239957829003601f168201915b50505050509050919050565b60006123cc612c8c565b905060008151116123ec576040518060200160405280600081525061203f565b806123f684612c9b565b600b60405160200161240a9392919061370d565b6040516020818303038152906040529392505050565b60125460ff16156124685760405162461bcd60e51b81526020600482015260126024820152714d696e74696e67206973205041555345442160701b6044820152606401611202565b806001146124b85760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e74210000000000000000000000006044820152606401611202565b3332146124f25760405162461bcd60e51b81526020600482015260086024820152674e6f20426f74732160c01b6044820152606401611202565b601054600154600054839190036000190161250d91906135f7565b106125515760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401611202565b601654336000908152601a602052604090205461256f9083906135f7565b106125bc5760405162461bcd60e51b815260206004820152601e60248201527f4d617820436c61696d73205065722057616c6c657420526561636865642100006044820152606401611202565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061263684848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601b549150849050612a1a565b6126825760405162461bcd60e51b815260206004820152601460248201527f4e6f74206f6e2074686520436c61696d6c6973740000000000000000000000006044820152606401611202565b33600090815260196020526040812080548492906115cc9084906135f7565b6126a9612903565b60005b8381101561278b576010548383838181106126c9576126c9613645565b905060200201356126e36001546000546000199190030190565b6126ed91906135f7565b106127315760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401611202565b61277985858381811061274657612746613645565b905060200201602081019061275b9190613095565b84848481811061276d5761276d613645565b90506020020135612a30565b806127838161365b565b9150506126ac565b5050505050565b61279a612903565b601280549115156101000261ff0019909216919091179055565b60606000600c80546127c5906135a7565b9050116127df575060408051602081019091526000815290565b600c6040516020016127f1919061374a565b604051602081830303815290604052905090565b61280d612903565b601054600154600054849190036000190161282891906135f7565b1061286c5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401611202565b610f9c8183612a30565b61287e612903565b6001600160a01b0381166128fa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401611202565b6119c081612a4a565b6008546001600160a01b03163314611d405760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401611202565b600081600111158015612971575060005482105b8015610d85575050600090815260046020526040902054600160e01b161590565b600081806001116129e8576000548110156129e85760008181526004602052604081205490600160e01b821690036129e6575b8060000361203f5750600019016000818152600460205260409020546129c5565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082612a278584612cea565b14949350505050565b610f9c828260405180602001604052806000815250612d2f565b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516080810182526000808252602082018190529181018290526060810191909152600082815260046020526040902054610d8590604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612b5d903390899088908890600401613756565b6020604051808303816000875af1925050508015612b98575060408051601f3d908101601f19168201909252612b9591810190613792565b60015b612bf6573d808015612bc6576040519150601f19603f3d011682016040523d82523d6000602084013e612bcb565b606091505b508051600003612bee576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080810182526000808252602082018190529181018290526060810191909152610d85612c4483612992565b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b6060600a8054610dbe906135a7565b604080516080810191829052607f0190826030600a8206018353600a90045b8015612cd857600183039250600a81066030018353600a9004612cba565b50819003601f19909101908152919050565b600081815b8451811015611c3257612d1b82868381518110612d0e57612d0e613645565b6020026020010151612d95565b915080612d278161365b565b915050612cef565b612d398383612dc1565b6001600160a01b0383163b156119de576000548281035b612d636000868380600101945086612b28565b612d80576040516368d2bf6b60e11b815260040160405180910390fd5b818110612d5057816000541461278b57600080fd5b6000818310612db157600082815260208490526040902061203f565b5060009182526020526040902090565b6000546001600160a01b038316612e04576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600003612e3e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210612e885760005550505050565b828054612ee0906135a7565b90600052602060002090601f016020900481019282612f025760008555612f48565b82601f10612f1b57805160ff1916838001178555612f48565b82800160010185558215612f48579182015b82811115612f48578251825591602001919060010190612f2d565b50612f54929150612f58565b5090565b5b80821115612f545760008155600101612f59565b6001600160e01b0319811681146119c057600080fd5b600060208284031215612f9557600080fd5b813561203f81612f6d565b80358015158114612fb057600080fd5b919050565b600060208284031215612fc757600080fd5b61203f82612fa0565b60005b83811015612feb578181015183820152602001612fd3565b838111156115dc5750506000910152565b60008151808452613014816020860160208601612fd0565b601f01601f19169290920160200192915050565b60208152600061203f6020830184612ffc565b60006020828403121561304d57600080fd5b5035919050565b80356001600160a01b0381168114612fb057600080fd5b6000806040838503121561307e57600080fd5b61308783613054565b946020939093013593505050565b6000602082840312156130a757600080fd5b61203f82613054565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156130ef576130ef6130b0565b604052919050565b600067ffffffffffffffff831115613111576131116130b0565b613124601f8401601f19166020016130c6565b905082815283838301111561313857600080fd5b828260208301376000602084830101529392505050565b60006020828403121561316157600080fd5b813567ffffffffffffffff81111561317857600080fd5b8201601f8101841361318957600080fd5b612c0c848235602084016130f7565b6000806000606084860312156131ad57600080fd5b6131b684613054565b92506131c460208501613054565b9150604084013590509250925092565b60008083601f8401126131e657600080fd5b50813567ffffffffffffffff8111156131fe57600080fd5b6020830191508360208260051b850101111561321957600080fd5b9250929050565b60008060006040848603121561323557600080fd5b833567ffffffffffffffff81111561324c57600080fd5b613258868287016131d4565b909790965060209590950135949350505050565b6020808252825182820181905260009190848201906040850190845b81811015611e6f57835183529284019291840191600101613288565b600060208083850312156132b757600080fd5b823567ffffffffffffffff808211156132cf57600080fd5b818501915085601f8301126132e357600080fd5b8135818111156132f5576132f56130b0565b8060051b91506133068483016130c6565b818152918301840191848101908884111561332057600080fd5b938501935b8385101561333e57843582529385019390850190613325565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611e6f576133b48385516001600160a01b03815116825267ffffffffffffffff602082015116602083015260408101511515604083015262ffffff60608201511660608301525050565b9284019260809290920191600101613366565b6000806000606084860312156133dc57600080fd5b6133e584613054565b95602085013595506040909401359392505050565b6000806040838503121561340d57600080fd5b61341683613054565b915061342460208401612fa0565b90509250929050565b6000806000806080858703121561344357600080fd5b61344c85613054565b935061345a60208601613054565b925060408501359150606085013567ffffffffffffffff81111561347d57600080fd5b8501601f8101871361348e57600080fd5b61349d878235602084016130f7565b91505092959194509250565b81516001600160a01b0316815260208083015167ffffffffffffffff169082015260408083015115159082015260608083015162ffffff169082015260808101610d85565b6000806000806040858703121561350457600080fd5b843567ffffffffffffffff8082111561351c57600080fd5b613528888389016131d4565b9096509450602087013591508082111561354157600080fd5b5061354e878288016131d4565b95989497509550505050565b6000806040838503121561356d57600080fd5b61357683613054565b915061342460208401613054565b6000806040838503121561359757600080fd5b8235915061342460208401613054565b600181811c908216806135bb57607f821691505b6020821081036135db57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561360a5761360a6135e1565b500190565b600082821015613621576136216135e1565b500390565b6000816000190483118215151615613640576136406135e1565b500290565b634e487b7160e01b600052603260045260246000fd5b60006001820161366d5761366d6135e1565b5060010190565b8054600090600181811c908083168061368e57607f831692505b602080841082036136af57634e487b7160e01b600052602260045260246000fd5b8180156136c357600181146136d457613701565b60ff19861689528489019650613701565b60008881526020902060005b868110156136f95781548b8201529085019083016136e0565b505084890196505b50505050505092915050565b6000845161371f818460208901612fd0565b845190830190613733818360208901612fd0565b61373f81830186613674565b979650505050505050565b600061203f8284613674565b60006001600160a01b038087168352808616602084015250836040830152608060608301526137886080830184612ffc565b9695505050505050565b6000602082840312156137a457600080fd5b815161203f81612f6d56fea26469706673582212206c0a5637e3440f15d8fe3efbe3713595e316dd676631da7f342ffada723111cc64736f6c634300080e003368747470733a2f2f737461726c6974652e67672f736c74636f6e74726163742e6a736f6e68747470733a2f2f7777772e737461726c6974652e67672f68696464656e4d6574612e6a736f6e

Deployed Bytecode

0x6080604052600436106104805760003560e01c80637cb647591161025e578063b071401b11610143578063d6c9ea91116100bb578063e8a3d4851161008a578063efbd73f41161006f578063efbd73f414610c8e578063f2fde38b14610ca1578063f54b893b14610cc157600080fd5b8063e8a3d48514610c30578063e985e9c514610c4557600080fd5b8063d6c9ea9114610bc8578063de6c6d3614610bdb578063e0a8085314610bfb578063e887312914610c1b57600080fd5b8063c23dc68f11610112578063c71fbb71116100f7578063c71fbb7114610b5c578063c87b56dd14610b92578063d5abeb0114610bb257600080fd5b8063c23dc68f14610b1a578063c4e41b2214610b4757600080fd5b8063b071401b14610aa5578063b88d4fde14610ac5578063bd2f6eb814610ae5578063c0e7274014610b0557600080fd5b8063938e3d7b116101d65780639dddc292116101a5578063a45ba8e71161018a578063a45ba8e714610a5a578063a708e01a14610a6f578063a7749b0d14610a8557600080fd5b80639dddc29214610a1c578063a22cb46514610a3a57600080fd5b8063938e3d7b146109b157806394354fd0146109d157806395d89b41146109e757806399a2557a146109fc57600080fd5b80638462151c1161022d5780638da5cb5b116102125780638da5cb5b1461095d5780638ea3b9b41461097b578063938225571461099b57600080fd5b80638462151c14610928578063861ec1f41461094857600080fd5b80637cb64759146108a85780637ec4a659146108c8578063815d544c146108e8578063816927221461090857600080fd5b80632db11544116103845780635bbb2177116102fc57806365a85d48116102cb5780636fd02e4b116102b05780636fd02e4b1461085d57806370a0823114610873578063715018a61461089357600080fd5b806365a85d481461081d5780636f8b44b01461083d57600080fd5b80635bbb2177146107a15780635c975abb146107ce57806362b99ad4146107e85780636352211e146107fd57600080fd5b806342842e0e116103535780634fdd43cb116103385780634fdd43cb1461074d578063518302271461076d5780635503a0e81461078c57600080fd5b806342842e0e14610700578063438b63001461072057600080fd5b80632db11544146106ac5780632eb4a7ab146106bf5780633c8463a1146106d55780633ccfd60b146106eb57600080fd5b806313faede6116104175780631c0de051116103e65780632904e6d9116103cb5780632904e6d9146106635780632b2bda4f146106765780632b5dc91f1461068c57600080fd5b80631c0de0511461062b57806323b872dd1461064357600080fd5b806313faede6146105b857806316ba10e0146105ce57806316c38b3c146105ee57806318160ddd1461060e57600080fd5b8063081812fc11610453578063081812fc1461051d57806308346d8514610555578063095ea7b31461056b5780630a398b881461058b57600080fd5b806301ffc9a71461048557806302bdd755146104ba578063065721bf146104dc57806306fdde03146104fb575b600080fd5b34801561049157600080fd5b506104a56104a0366004612f83565b610cee565b60405190151581526020015b60405180910390f35b3480156104c657600080fd5b506104da6104d5366004612fb5565b610d8b565b005b3480156104e857600080fd5b506015545b6040519081526020016104b1565b34801561050757600080fd5b50610510610daf565b6040516104b19190613028565b34801561052957600080fd5b5061053d61053836600461303b565b610e41565b6040516001600160a01b0390911681526020016104b1565b34801561056157600080fd5b506104ed60175481565b34801561057757600080fd5b506104da61058636600461306b565b610e9e565b34801561059757600080fd5b506104ed6105a6366004613095565b60196020526000908152604090205481565b3480156105c457600080fd5b506104ed600f5481565b3480156105da57600080fd5b506104da6105e936600461314f565b610f81565b3480156105fa57600080fd5b506104da610609366004612fb5565b610fa0565b34801561061a57600080fd5b5060015460005403600019016104ed565b34801561063757600080fd5b5060125460ff166104a5565b34801561064f57600080fd5b506104da61065e366004613198565b610fbb565b6104da610671366004613220565b6111bc565b34801561068257600080fd5b506104ed60155481565b34801561069857600080fd5b506104da6106a736600461303b565b6115e2565b6104da6106ba36600461303b565b6115ef565b3480156106cb57600080fd5b506104ed601b5481565b3480156106e157600080fd5b506104ed60135481565b3480156106f757600080fd5b506104da611947565b34801561070c57600080fd5b506104da61071b366004613198565b6119c3565b34801561072c57600080fd5b5061074061073b366004613095565b6119e3565b6040516104b1919061326c565b34801561075957600080fd5b506104da61076836600461314f565b611ac3565b34801561077957600080fd5b506012546104a590610100900460ff1681565b34801561079857600080fd5b50610510611ade565b3480156107ad57600080fd5b506107c16107bc3660046132a4565b611b6c565b6040516104b1919061334a565b3480156107da57600080fd5b506012546104a59060ff1681565b3480156107f457600080fd5b50610510611c3a565b34801561080957600080fd5b5061053d61081836600461303b565b611c47565b34801561082957600080fd5b506104da61083836600461303b565b611c52565b34801561084957600080fd5b506104da61085836600461303b565b611c5f565b34801561086957600080fd5b506104ed60145481565b34801561087f57600080fd5b506104ed61088e366004613095565b611cc6565b34801561089f57600080fd5b506104da611d2e565b3480156108b457600080fd5b506104da6108c336600461303b565b611d42565b3480156108d457600080fd5b506104da6108e336600461314f565b611d4f565b3480156108f457600080fd5b506012546104a59062010000900460ff1681565b34801561091457600080fd5b506104da61092336600461303b565b611d6a565b34801561093457600080fd5b50610740610943366004613095565b611d77565b34801561095457600080fd5b506017546104ed565b34801561096957600080fd5b506008546001600160a01b031661053d565b34801561098757600080fd5b5060185461053d906001600160a01b031681565b3480156109a757600080fd5b506104ed600e5481565b3480156109bd57600080fd5b506104da6109cc36600461314f565b611e7b565b3480156109dd57600080fd5b506104ed60115481565b3480156109f357600080fd5b50610510611e96565b348015610a0857600080fd5b50610740610a173660046133c7565b611ea5565b348015610a2857600080fd5b5060125462010000900460ff166104a5565b348015610a4657600080fd5b506104da610a553660046133fa565b612046565b348015610a6657600080fd5b506105106120f4565b348015610a7b57600080fd5b506104ed60165481565b348015610a9157600080fd5b506104da610aa0366004613095565b612101565b348015610ab157600080fd5b506104da610ac036600461303b565b612192565b348015610ad157600080fd5b506104da610ae036600461342d565b61219f565b348015610af157600080fd5b506104da610b0036600461303b565b6121e3565b348015610b1157600080fd5b506105106121f0565b348015610b2657600080fd5b50610b3a610b3536600461303b565b6121fd565b6040516104b191906134a9565b348015610b5357600080fd5b506104ed612285565b348015610b6857600080fd5b506104ed610b77366004613095565b6001600160a01b031660009081526019602052604090205490565b348015610b9e57600080fd5b50610510610bad36600461303b565b61229f565b348015610bbe57600080fd5b506104ed60105481565b6104da610bd6366004613220565b612420565b348015610be757600080fd5b506104da610bf63660046134ee565b6126a1565b348015610c0757600080fd5b506104da610c16366004612fb5565b612792565b348015610c2757600080fd5b506014546104ed565b348015610c3c57600080fd5b506105106127b4565b348015610c5157600080fd5b506104a5610c6036600461355a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6104da610c9c366004613584565b612805565b348015610cad57600080fd5b506104da610cbc366004613095565b612876565b348015610ccd57600080fd5b506104ed610cdc366004613095565b601a6020526000908152604090205481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b031983161480610d5157507f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b80610d8557507f5b5e139f000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b610d93612903565b60128054911515620100000262ff000019909216919091179055565b606060028054610dbe906135a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610dea906135a7565b8015610e375780601f10610e0c57610100808354040283529160200191610e37565b820191906000526020600020905b815481529060010190602001808311610e1a57829003601f168201915b5050505050905090565b6000610e4c8261295d565b610e82576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610ea982611c47565b9050336001600160a01b03821614610f18576001600160a01b038116600090815260076020908152604080832033845290915290205460ff16610f18576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610f89612903565b8051610f9c90600b906020840190612ed4565b5050565b610fa8612903565b6012805460ff1916911515919091179055565b6000610fc682612992565b9050836001600160a01b0316816001600160a01b031614611013576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417611096576001600160a01b038616600090815260076020908152604080832033845290915290205460ff16611096576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0385166110d6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80156110e157600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003611173576001840160008181526004602052604081205490036111715760005481146111715760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b601254819060ff161561120b5760405162461bcd60e51b81526020600482015260126024820152714d696e74696e67206973205041555345442160701b60448201526064015b60405180910390fd5b60008111801561121c575060115481105b6112685760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e74210000000000000000000000006044820152606401611202565b3332146112a25760405162461bcd60e51b81526020600482015260086024820152674e6f20426f74732160c01b6044820152606401611202565b60105460015460005483919003600019016112bd91906135f7565b106113015760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401611202565b60125462010000900460ff1615611322576014546013556000600f5561133f565b60125462010000900460ff1661133f57601554601355600e54600f555b60175460015460005403600019011080156113725750601754600154600054839190036000190161137091906135f7565b115b156113b9576000601754826113906001546000546000199190030190565b61139a91906135f7565b6113a4919061360f565b905080600e546113b49190613626565b600f55505b601754600154600054036000190111156113d457600e54600f555b600f543410156114265760405162461bcd60e51b815260206004820152601360248201527f496e73756666696369656e742066756e647321000000000000000000000000006044820152606401611202565b601354336000908152601960205260409020546114449083906135f7565b106114915760405162461bcd60e51b815260206004820152601d60248201527f4d6178204d696e7473205065722057616c6c65742052656163686564210000006044820152606401611202565b60125462010000900460ff161561159d576040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061151c85858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601b549150849050612a1a565b6115685760405162461bcd60e51b815260206004820152601460248201527f4e6f74206f6e207468652057686974656c6973740000000000000000000000006044820152606401611202565b33600090815260196020526040812080548592906115879084906135f7565b9091555061159790503384612a30565b506115dc565b60125462010000900460ff166115dc5733600090815260196020526040812080548492906115cc9084906135f7565b909155506115dc90503383612a30565b50505050565b6115ea612903565b600e55565b601254819060ff16156116395760405162461bcd60e51b81526020600482015260126024820152714d696e74696e67206973205041555345442160701b6044820152606401611202565b60008111801561164a575060115481105b6116965760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e74210000000000000000000000006044820152606401611202565b3332146116d05760405162461bcd60e51b81526020600482015260086024820152674e6f20426f74732160c01b6044820152606401611202565b60105460015460005483919003600019016116eb91906135f7565b1061172f5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401611202565b60125462010000900460ff1615611750576014546013556000600f5561176d565b60125462010000900460ff1661176d57601554601355600e54600f555b60175460015460005403600019011080156117a05750601754600154600054839190036000190161179e91906135f7565b115b156117e7576000601754826117be6001546000546000199190030190565b6117c891906135f7565b6117d2919061360f565b905080600e546117e29190613626565b600f55505b6017546001546000540360001901111561180257600e54600f555b600f543410156118545760405162461bcd60e51b815260206004820152601360248201527f496e73756666696369656e742066756e647321000000000000000000000000006044820152606401611202565b601354336000908152601960205260409020546118729083906135f7565b106118bf5760405162461bcd60e51b815260206004820152601d60248201527f4d6178204d696e7473205065722057616c6c65742052656163686564210000006044820152606401611202565b60125462010000900460ff16156119185760405162461bcd60e51b815260206004820152601860248201527f5374696c6c20696e2057686974656c6973742053616c652100000000000000006044820152606401611202565b33600090815260196020526040812080548492906119379084906135f7565b90915550610f9c90503383612a30565b61194f612903565b60006119636008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146119ad576040519150601f19603f3d011682016040523d82523d6000602084013e6119b2565b606091505b50509050806119c057600080fd5b50565b6119de8383836040518060200160405280600081525061219f565b505050565b606060006119f083611cc6565b905060008167ffffffffffffffff811115611a0d57611a0d6130b0565b604051908082528060200260200182016040528015611a36578160200160208202803683370190505b509050600160005b8381108015611a4f57506010548211155b15611ab9576000611a5f83611c47565b9050866001600160a01b0316816001600160a01b031603611aa65782848381518110611a8d57611a8d613645565b602090810291909101015281611aa28161365b565b9250505b82611ab08161365b565b93505050611a3e565b5090949350505050565b611acb612903565b8051610f9c90600d906020840190612ed4565b600b8054611aeb906135a7565b80601f0160208091040260200160405190810160405280929190818152602001828054611b17906135a7565b8015611b645780601f10611b3957610100808354040283529160200191611b64565b820191906000526020600020905b815481529060010190602001808311611b4757829003601f168201915b505050505081565b805160609060008167ffffffffffffffff811115611b8c57611b8c6130b0565b604051908082528060200260200182016040528015611bde57816020015b604080516080810182526000808252602080830182905292820181905260608201528252600019909201910181611baa5790505b50905060005b828114611c3257611c0d858281518110611c0057611c00613645565b60200260200101516121fd565b828281518110611c1f57611c1f613645565b6020908102919091010152600101611be4565b509392505050565b600a8054611aeb906135a7565b6000610d8582612992565b611c5a612903565b601555565b611c67612903565b6018546001600160a01b03163314611cc15760405162461bcd60e51b815260206004820152600e60248201527f4e6f7420417574686f72697365640000000000000000000000000000000000006044820152606401611202565b601055565b60006001600160a01b038216611d08576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b611d36612903565b611d406000612a4a565b565b611d4a612903565b601b55565b611d57612903565b8051610f9c90600a906020840190612ed4565b611d72612903565b601455565b60606000806000611d8785611cc6565b905060008167ffffffffffffffff811115611da457611da46130b0565b604051908082528060200260200182016040528015611dcd578160200160208202803683370190505b5060408051608081018252600080825260208201819052918101829052606081019190915290915060015b838614611e6f57611e0881612aa9565b91508160400151611e675781516001600160a01b031615611e2857815194505b876001600160a01b0316856001600160a01b031603611e675780838780600101985081518110611e5a57611e5a613645565b6020026020010181815250505b600101611df8565b50909695505050505050565b611e83612903565b8051610f9c90600c906020840190612ed4565b606060038054610dbe906135a7565b6060818310611ee0576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611eec60005490565b90506001851015611efc57600194505b80841115611f08578093505b6000611f1387611cc6565b905084861015611f325785850381811015611f2c578091505b50611f36565b5060005b60008167ffffffffffffffff811115611f5157611f516130b0565b604051908082528060200260200182016040528015611f7a578160200160208202803683370190505b50905081600003611f9057935061203f92505050565b6000611f9b886121fd565b905060008160400151611fac575080515b885b888114158015611fbe5750848714155b1561203357611fcc81612aa9565b9250826040015161202b5782516001600160a01b031615611fec57825191505b8a6001600160a01b0316826001600160a01b03160361202b578084888060010199508151811061201e5761201e613645565b6020026020010181815250505b600101611fae565b50505092835250909150505b9392505050565b336001600160a01b03831603612088576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600d8054611aeb906135a7565b612109612903565b6018546001600160a01b031633146121635760405162461bcd60e51b815260206004820152600e60248201527f4e6f7420417574686f72697365640000000000000000000000000000000000006044820152606401611202565b6018805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b61219a612903565b601155565b6121aa848484610fbb565b6001600160a01b0383163b156115dc576121c684848484612b28565b6115dc576040516368d2bf6b60e11b815260040160405180910390fd5b6121eb612903565b601755565b600c8054611aeb906135a7565b604080516080810182526000808252602082018190529181018290526060810191909152604080516080810182526000808252602082018190529181018290526060810191909152600183108061225657506000548310155b156122615792915050565b61226a83612aa9565b905080604001511561227c5792915050565b61203f83612c14565b600061229a6001546000546000199190030190565b905090565b60606122aa8261295d565b61231c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401611202565b601254610100900460ff1615156000036123c257600d805461233d906135a7565b80601f0160208091040260200160405190810160405280929190818152602001828054612369906135a7565b80156123b65780601f1061238b576101008083540402835291602001916123b6565b820191906000526020600020905b81548152906001019060200180831161239957829003601f168201915b50505050509050919050565b60006123cc612c8c565b905060008151116123ec576040518060200160405280600081525061203f565b806123f684612c9b565b600b60405160200161240a9392919061370d565b6040516020818303038152906040529392505050565b60125460ff16156124685760405162461bcd60e51b81526020600482015260126024820152714d696e74696e67206973205041555345442160701b6044820152606401611202565b806001146124b85760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e74210000000000000000000000006044820152606401611202565b3332146124f25760405162461bcd60e51b81526020600482015260086024820152674e6f20426f74732160c01b6044820152606401611202565b601054600154600054839190036000190161250d91906135f7565b106125515760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401611202565b601654336000908152601a602052604090205461256f9083906135f7565b106125bc5760405162461bcd60e51b815260206004820152601e60248201527f4d617820436c61696d73205065722057616c6c657420526561636865642100006044820152606401611202565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061263684848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601b549150849050612a1a565b6126825760405162461bcd60e51b815260206004820152601460248201527f4e6f74206f6e2074686520436c61696d6c6973740000000000000000000000006044820152606401611202565b33600090815260196020526040812080548492906115cc9084906135f7565b6126a9612903565b60005b8381101561278b576010548383838181106126c9576126c9613645565b905060200201356126e36001546000546000199190030190565b6126ed91906135f7565b106127315760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401611202565b61277985858381811061274657612746613645565b905060200201602081019061275b9190613095565b84848481811061276d5761276d613645565b90506020020135612a30565b806127838161365b565b9150506126ac565b5050505050565b61279a612903565b601280549115156101000261ff0019909216919091179055565b60606000600c80546127c5906135a7565b9050116127df575060408051602081019091526000815290565b600c6040516020016127f1919061374a565b604051602081830303815290604052905090565b61280d612903565b601054600154600054849190036000190161282891906135f7565b1061286c5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401611202565b610f9c8183612a30565b61287e612903565b6001600160a01b0381166128fa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401611202565b6119c081612a4a565b6008546001600160a01b03163314611d405760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401611202565b600081600111158015612971575060005482105b8015610d85575050600090815260046020526040902054600160e01b161590565b600081806001116129e8576000548110156129e85760008181526004602052604081205490600160e01b821690036129e6575b8060000361203f5750600019016000818152600460205260409020546129c5565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082612a278584612cea565b14949350505050565b610f9c828260405180602001604052806000815250612d2f565b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516080810182526000808252602082018190529181018290526060810191909152600082815260046020526040902054610d8590604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612b5d903390899088908890600401613756565b6020604051808303816000875af1925050508015612b98575060408051601f3d908101601f19168201909252612b9591810190613792565b60015b612bf6573d808015612bc6576040519150601f19603f3d011682016040523d82523d6000602084013e612bcb565b606091505b508051600003612bee576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080810182526000808252602082018190529181018290526060810191909152610d85612c4483612992565b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b6060600a8054610dbe906135a7565b604080516080810191829052607f0190826030600a8206018353600a90045b8015612cd857600183039250600a81066030018353600a9004612cba565b50819003601f19909101908152919050565b600081815b8451811015611c3257612d1b82868381518110612d0e57612d0e613645565b6020026020010151612d95565b915080612d278161365b565b915050612cef565b612d398383612dc1565b6001600160a01b0383163b156119de576000548281035b612d636000868380600101945086612b28565b612d80576040516368d2bf6b60e11b815260040160405180910390fd5b818110612d5057816000541461278b57600080fd5b6000818310612db157600082815260208490526040902061203f565b5060009182526020526040902090565b6000546001600160a01b038316612e04576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600003612e3e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210612e885760005550505050565b828054612ee0906135a7565b90600052602060002090601f016020900481019282612f025760008555612f48565b82601f10612f1b57805160ff1916838001178555612f48565b82800160010185558215612f48579182015b82811115612f48578251825591602001919060010190612f2d565b50612f54929150612f58565b5090565b5b80821115612f545760008155600101612f59565b6001600160e01b0319811681146119c057600080fd5b600060208284031215612f9557600080fd5b813561203f81612f6d565b80358015158114612fb057600080fd5b919050565b600060208284031215612fc757600080fd5b61203f82612fa0565b60005b83811015612feb578181015183820152602001612fd3565b838111156115dc5750506000910152565b60008151808452613014816020860160208601612fd0565b601f01601f19169290920160200192915050565b60208152600061203f6020830184612ffc565b60006020828403121561304d57600080fd5b5035919050565b80356001600160a01b0381168114612fb057600080fd5b6000806040838503121561307e57600080fd5b61308783613054565b946020939093013593505050565b6000602082840312156130a757600080fd5b61203f82613054565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156130ef576130ef6130b0565b604052919050565b600067ffffffffffffffff831115613111576131116130b0565b613124601f8401601f19166020016130c6565b905082815283838301111561313857600080fd5b828260208301376000602084830101529392505050565b60006020828403121561316157600080fd5b813567ffffffffffffffff81111561317857600080fd5b8201601f8101841361318957600080fd5b612c0c848235602084016130f7565b6000806000606084860312156131ad57600080fd5b6131b684613054565b92506131c460208501613054565b9150604084013590509250925092565b60008083601f8401126131e657600080fd5b50813567ffffffffffffffff8111156131fe57600080fd5b6020830191508360208260051b850101111561321957600080fd5b9250929050565b60008060006040848603121561323557600080fd5b833567ffffffffffffffff81111561324c57600080fd5b613258868287016131d4565b909790965060209590950135949350505050565b6020808252825182820181905260009190848201906040850190845b81811015611e6f57835183529284019291840191600101613288565b600060208083850312156132b757600080fd5b823567ffffffffffffffff808211156132cf57600080fd5b818501915085601f8301126132e357600080fd5b8135818111156132f5576132f56130b0565b8060051b91506133068483016130c6565b818152918301840191848101908884111561332057600080fd5b938501935b8385101561333e57843582529385019390850190613325565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611e6f576133b48385516001600160a01b03815116825267ffffffffffffffff602082015116602083015260408101511515604083015262ffffff60608201511660608301525050565b9284019260809290920191600101613366565b6000806000606084860312156133dc57600080fd5b6133e584613054565b95602085013595506040909401359392505050565b6000806040838503121561340d57600080fd5b61341683613054565b915061342460208401612fa0565b90509250929050565b6000806000806080858703121561344357600080fd5b61344c85613054565b935061345a60208601613054565b925060408501359150606085013567ffffffffffffffff81111561347d57600080fd5b8501601f8101871361348e57600080fd5b61349d878235602084016130f7565b91505092959194509250565b81516001600160a01b0316815260208083015167ffffffffffffffff169082015260408083015115159082015260608083015162ffffff169082015260808101610d85565b6000806000806040858703121561350457600080fd5b843567ffffffffffffffff8082111561351c57600080fd5b613528888389016131d4565b9096509450602087013591508082111561354157600080fd5b5061354e878288016131d4565b95989497509550505050565b6000806040838503121561356d57600080fd5b61357683613054565b915061342460208401613054565b6000806040838503121561359757600080fd5b8235915061342460208401613054565b600181811c908216806135bb57607f821691505b6020821081036135db57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561360a5761360a6135e1565b500190565b600082821015613621576136216135e1565b500390565b6000816000190483118215151615613640576136406135e1565b500290565b634e487b7160e01b600052603260045260246000fd5b60006001820161366d5761366d6135e1565b5060010190565b8054600090600181811c908083168061368e57607f831692505b602080841082036136af57634e487b7160e01b600052602260045260246000fd5b8180156136c357600181146136d457613701565b60ff19861689528489019650613701565b60008881526020902060005b868110156136f95781548b8201529085019083016136e0565b505084890196505b50505050505092915050565b6000845161371f818460208901612fd0565b845190830190613733818360208901612fd0565b61373f81830186613674565b979650505050505050565b600061203f8284613674565b60006001600160a01b038087168352808616602084015250836040830152608060608301526137886080830184612ffc565b9695505050505050565b6000602082840312156137a457600080fd5b815161203f81612f6d56fea26469706673582212206c0a5637e3440f15d8fe3efbe3713595e316dd676631da7f342ffada723111cc64736f6c634300080e0033

Deployed Bytecode Sourcemap

70043:8664:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30952:615;;;;;;;;;;-1:-1:-1;30952:615:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;30952:615:0;;;;;;;;78356:93;;;;;;;;;;-1:-1:-1;78356:93:0;;;;;:::i;:::-;;:::i;:::-;;73075:100;;;;;;;;;;-1:-1:-1;73153:16:0;;73075:100;;;1134:25:1;;;1122:2;1107:18;73075:100:0;988:177:1;36599:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;38545:204::-;;;;;;;;;;-1:-1:-1;38545:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2270:55:1;;;2252:74;;2240:2;2225:18;38545:204:0;2106:226:1;70808:35:0;;;;;;;;;;;;;;;;38093:386;;;;;;;;;;-1:-1:-1;38093:386:0;;;;;:::i;:::-;;:::i;70975:49::-;;;;;;;;;;-1:-1:-1;70975:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;70405:30;;;;;;;;;;;;;;;;78048:100;;;;;;;;;;-1:-1:-1;78048:100:0;;;;;:::i;:::-;;:::i;78273:77::-;;;;;;;;;;-1:-1:-1;78273:77:0;;;;;:::i;:::-;;:::i;30006:315::-;;;;;;;;;;-1:-1:-1;71541:1:0;30272:12;30059:7;30256:13;:28;-1:-1:-1;;30256:46:0;30006:315;;73181:82;;;;;;;;;;-1:-1:-1;73251:6:0;;;;73181:82;;47810:2800;;;;;;;;;;-1:-1:-1;47810:2800:0;;;;;:::i;:::-;;:::i;73367:558::-;;;;;;:::i;:::-;;:::i;70714:38::-;;;;;;;;;;;;;;;;76844:90;;;;;;;;;;-1:-1:-1;76844:90:0;;;;;:::i;:::-;;:::i;74618:244::-;;;;;;:::i;:::-;;:::i;71108:94::-;;;;;;;;;;;;;;;;70633:30;;;;;;;;;;;;;;;;78455:137;;;;;;;;;;;;;:::i;39435:185::-;;;;;;;;;;-1:-1:-1;39435:185:0;;;;;:::i;:::-;;:::i;75393:635::-;;;;;;;;;;-1:-1:-1;75393:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;77804:132::-;;;;;;;;;;-1:-1:-1;77804:132:0;;;;;:::i;:::-;;:::i;70558:28::-;;;;;;;;;;-1:-1:-1;70558:28:0;;;;;;;;;;;70246:33;;;;;;;;;;;;;:::i;65258:468::-;;;;;;;;;;-1:-1:-1;65258:468:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;70528:25::-;;;;;;;;;;-1:-1:-1;70528:25:0;;;;;;;;70205:36;;;;;;;;;;;;;:::i;36388:144::-;;;;;;;;;;-1:-1:-1;36388:144:0;;;;;:::i;:::-;;:::i;77320:122::-;;;;;;;;;;-1:-1:-1;77320:122:0;;;;;:::i;:::-;;:::i;77634:164::-;;;;;;;;;;-1:-1:-1;77634:164:0;;;;;:::i;:::-;;:::i;70670:35::-;;;;;;;;;;;;;;;;31631:224;;;;;;;;;;-1:-1:-1;31631:224:0;;;;;:::i;:::-;;:::i;11501:103::-;;;;;;;;;;;;;:::i;72550:107::-;;;;;;;;;;-1:-1:-1;72550:107:0;;;;;:::i;:::-;;:::i;77942:100::-;;;;;;;;;;-1:-1:-1;77942:100:0;;;;;:::i;:::-;;:::i;70591:33::-;;;;;;;;;;-1:-1:-1;70591:33:0;;;;;;;;;;;77192:122;;;;;;;;;;-1:-1:-1;77192:122:0;;;;;:::i;:::-;;:::i;69070:892::-;;;;;;;;;;-1:-1:-1;69070:892:0;;;;;:::i;:::-;;:::i;72874:89::-;;;;;;;;;;-1:-1:-1;72944:13:0;;72874:89;;10853:87;;;;;;;;;;-1:-1:-1;10926:6:0;;-1:-1:-1;;;;;10926:6:0;10853:87;;70889:79;;;;;;;;;;-1:-1:-1;70889:79:0;;;;-1:-1:-1;;;;;70889:79:0;;;70358:42;;;;;;;;;;;;;;;;78154:113;;;;;;;;;;-1:-1:-1;78154:113:0;;;;;:::i;:::-;;:::i;70478:38::-;;;;;;;;;;;;;;;;36768:104;;;;;;;;;;;;;:::i;66116:2505::-;;;;;;;;;;-1:-1:-1;66116:2505:0;;;;;:::i;:::-;;:::i;72775:93::-;;;;;;;;;;-1:-1:-1;72848:14:0;;;;;;;72775:93;;38821:308;;;;;;;;;;-1:-1:-1;38821:308:0;;;;;:::i;:::-;;:::i;70320:31::-;;;;;;;;;;;;;:::i;70769:32::-;;;;;;;;;;;;;;;;77448:180;;;;;;;;;;-1:-1:-1;77448:180:0;;;;;:::i;:::-;;:::i;76940:130::-;;;;;;;;;;-1:-1:-1;76940:130:0;;;;;:::i;:::-;;:::i;39691:399::-;;;;;;;;;;-1:-1:-1;39691:399:0;;;;;:::i;:::-;;:::i;77076:110::-;;;;;;;;;;-1:-1:-1;77076:110:0;;;;;:::i;:::-;;:::i;70284:31::-;;;;;;;;;;;;;:::i;64679:420::-;;;;;;;;;;-1:-1:-1;64679:420:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;73269:92::-;;;;;;;;;;;;;:::i;72663:106::-;;;;;;;;;;-1:-1:-1;72663:106:0;;;;;:::i;:::-;-1:-1:-1;;;;;72747:16:0;72721:7;72747:16;;;:13;:16;;;;;;;72663:106;76034:514;;;;;;;;;;-1:-1:-1;76034:514:0;;;;;:::i;:::-;;:::i;70442:31::-;;;;;;;;;;;;;;;;73931:681;;;;;;:::i;:::-;;:::i;75088:299::-;;;;;;;;;;-1:-1:-1;75088:299:0;;;;;:::i;:::-;;:::i;76757:81::-;;;;;;;;;;-1:-1:-1;76757:81:0;;;;;:::i;:::-;;:::i;72969:100::-;;;;;;;;;;-1:-1:-1;73047:16:0;;72969:100;;76554:197;;;;;;;;;;;;;:::i;39200:164::-;;;;;;;;;;-1:-1:-1;39200:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;39321:25:0;;;39297:4;39321:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;39200:164;74868:214;;;;;;:::i;:::-;;:::i;11759:201::-;;;;;;;;;;-1:-1:-1;11759:201:0;;;;;:::i;:::-;;:::i;71029:50::-;;;;;;;;;;-1:-1:-1;71029:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;30952:615;31037:4;31337:25;-1:-1:-1;;;;;;31337:25:0;;;;:102;;-1:-1:-1;31414:25:0;-1:-1:-1;;;;;;31414:25:0;;;31337:102;:179;;;-1:-1:-1;31491:25:0;-1:-1:-1;;;;;;31491:25:0;;;31337:179;31317:199;30952:615;-1:-1:-1;;30952:615:0:o;78356:93::-;10739:13;:11;:13::i;:::-;78420:14:::1;:23:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;78420:23:0;;::::1;::::0;;;::::1;::::0;;78356:93::o;36599:100::-;36653:13;36686:5;36679:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36599:100;:::o;38545:204::-;38613:7;38638:16;38646:7;38638;:16::i;:::-;38633:64;;38663:34;;;;;;;;;;;;;;38633:64;-1:-1:-1;38717:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;38717:24:0;;38545:204::o;38093:386::-;38166:13;38182:16;38190:7;38182;:16::i;:::-;38166:32;-1:-1:-1;58993:10:0;-1:-1:-1;;;;;38215:28:0;;;38211:175;;-1:-1:-1;;;;;39321:25:0;;39297:4;39321:25;;;:18;:25;;;;;;;;58993:10;39321:35;;;;;;;;;;38258:128;;38335:35;;;;;;;;;;;;;;38258:128;38398:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;38398:29:0;-1:-1:-1;;;;;38398:29:0;;;;;;;;;38443:28;;38398:24;;38443:28;;;;;;;38155:324;38093:386;;:::o;78048:100::-;10739:13;:11;:13::i;:::-;78120:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;78048:100:::0;:::o;78273:77::-;10739:13;:11;:13::i;:::-;78329:6:::1;:15:::0;;-1:-1:-1;;78329:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;78273:77::o;47810:2800::-;47944:27;47974;47993:7;47974:18;:27::i;:::-;47944:57;;48059:4;-1:-1:-1;;;;;48018:45:0;48034:19;-1:-1:-1;;;;;48018:45:0;;48014:86;;48072:28;;;;;;;;;;;;;;48014:86;48114:27;46540:21;;;46367:15;46582:4;46575:36;46664:4;46648:21;;46754:26;;58993:10;47507:30;;;-1:-1:-1;;;;;47205:26:0;;47486:19;;;47483:55;48293:174;;-1:-1:-1;;;;;39321:25:0;;39297:4;39321:25;;;:18;:25;;;;;;;;58993:10;39321:35;;;;;;;;;;48375:92;;48432:35;;;;;;;;;;;;;;48375:92;-1:-1:-1;;;;;48484:16:0;;48480:52;;48509:23;;;;;;;;;;;;;;48480:52;48681:15;48678:160;;;48821:1;48800:19;48793:30;48678:160;-1:-1:-1;;;;;49216:24:0;;;;;;;:18;:24;;;;;;49214:26;;-1:-1:-1;;49214:26:0;;;49285:22;;;;;;;;;49283:24;;-1:-1:-1;49283:24:0;;;36287:11;36263:22;36259:40;36246:62;-1:-1:-1;;;36246:62:0;49578:26;;;;:17;:26;;;;;:174;;;;-1:-1:-1;;;49872:46:0;;:51;;49868:626;;49976:1;49966:11;;49944:19;50099:30;;;:17;:30;;;;;;:35;;50095:384;;50237:13;;50222:11;:28;50218:242;;50384:30;;;;:17;:30;;;;;:52;;;50218:242;49925:569;49868:626;50541:7;50537:2;-1:-1:-1;;;;;50522:27:0;50531:4;-1:-1:-1;;;;;50522:27:0;;;;;;;;;;;47933:2677;;;47810:2800;;;:::o;73367:558::-;71620:6;;73468:11;;71620:6;;71619:7;71611:38;;;;-1:-1:-1;;;71611:38:0;;12074:2:1;71611:38:0;;;12056:21:1;12113:2;12093:18;;;12086:30;-1:-1:-1;;;12132:18:1;;;12125:48;12190:18;;71611:38:0;;;;;;;;;71678:1;71664:11;:15;:51;;;;;71697:18;;71683:11;:32;71664:51;71656:84;;;;-1:-1:-1;;;71656:84:0;;12421:2:1;71656:84:0;;;12403:21:1;12460:2;12440:18;;;12433:30;12499:22;12479:18;;;12472:50;12539:18;;71656:84:0;12219:344:1;71656:84:0;71755:10;71769:9;71755:23;71747:44;;;;-1:-1:-1;;;71747:44:0;;12770:2:1;71747:44:0;;;12752:21:1;12809:1;12789:18;;;12782:29;-1:-1:-1;;;12827:18:1;;;12820:38;12875:18;;71747:44:0;12568:331:1;71747:44:0;71836:9;;71541:1;30272:12;30059:7;30256:13;71822:11;;30256:28;;-1:-1:-1;;30256:46:0;71806:27;;;;:::i;:::-;:39;71798:72;;;;-1:-1:-1;;;71798:72:0;;13428:2:1;71798:72:0;;;13410:21:1;13467:2;13447:18;;;13440:30;-1:-1:-1;;;13486:18:1;;;13479:50;13546:18;;71798:72:0;13226:344:1;71798:72:0;71887:14;;;;;;;71883:197;;;71931:16;;71917:11;:30;-1:-1:-1;71956:4:0;:8;71883:197;;;71988:14;;;;;;;71983:97;;72032:16;;72018:11;:30;72064:8;;72057:4;:15;71983:97;72108:13;;71541:1;30272:12;30059:7;30256:13;:28;-1:-1:-1;;30256:46:0;72092:29;:76;;;;-1:-1:-1;72155:13:0;;71541:1;30272:12;30059:7;30256:13;72141:11;;30256:28;;-1:-1:-1;;30256:46:0;72125:27;;;;:::i;:::-;:43;72092:76;72088:201;;;72184:16;72233:13;;72219:11;72203:13;71541:1;30272:12;30059:7;30256:13;-1:-1:-1;;30256:28:0;;;:46;;30006:315;72203:13;:27;;;;:::i;:::-;:43;;;;:::i;:::-;72184:62;;72273:8;72262;;:19;;;;:::i;:::-;72255:4;:26;-1:-1:-1;72088:201:0;72317:13;;71541:1;30272:12;30059:7;30256:13;:28;-1:-1:-1;;30256:46:0;72301:29;72297:72;;;72353:8;;72346:4;:15;72297:72;72398:4;;72385:9;:17;;72377:49;;;;-1:-1:-1;;;72377:49:0;;14080:2:1;72377:49:0;;;14062:21:1;14119:2;14099:18;;;14092:30;14158:21;14138:18;;;14131:49;14197:18;;72377:49:0;13878:343:1;72377:49:0;72483:11;;72455:10;72441:25;;;;:13;:25;;;;;;:39;;72469:11;;72441:39;:::i;:::-;:53;72433:95;;;;-1:-1:-1;;;72433:95:0;;14428:2:1;72433:95:0;;;14410:21:1;14467:2;14447:18;;;14440:30;14506:31;14486:18;;;14479:59;14555:18;;72433:95:0;14226:353:1;72433:95:0;73503:14:::1;::::0;;;::::1;;;73499:421;;;73558:28;::::0;-1:-1:-1;;73575:10:0::1;14733:2:1::0;14729:15;14725:53;73558:28:0::1;::::0;::::1;14713:66:1::0;73533:12:0::1;::::0;14795::1;;73558:28:0::1;;;;;;;;;;;;73548:39;;;;;;73533:54;;73606:50;73625:12;;73606:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;73639:10:0::1;::::0;;-1:-1:-1;73651:4:0;;-1:-1:-1;73606:18:0::1;:50::i;:::-;73598:83;;;::::0;-1:-1:-1;;;73598:83:0;;15020:2:1;73598:83:0::1;::::0;::::1;15002:21:1::0;15059:2;15039:18;;;15032:30;15098:22;15078:18;;;15071:50;15138:18;;73598:83:0::1;14818:344:1::0;73598:83:0::1;73706:10;73692:25;::::0;;;:13:::1;:25;::::0;;;;:40;;73721:11;;73692:25;:40:::1;::::0;73721:11;;73692:40:::1;:::i;:::-;::::0;;;-1:-1:-1;73741:34:0::1;::::0;-1:-1:-1;73751:10:0::1;73763:11:::0;73741:9:::1;:34::i;:::-;73524:259;73499:421;;;73799:14;::::0;;;::::1;;;73794:126;;73843:10;73829:25;::::0;;;:13:::1;:25;::::0;;;;:40;;73858:11;;73829:25;:40:::1;::::0;73858:11;;73829:40:::1;:::i;:::-;::::0;;;-1:-1:-1;73878:34:0::1;::::0;-1:-1:-1;73888:10:0::1;73900:11:::0;73878:9:::1;:34::i;:::-;73367:558:::0;;;;:::o;76844:90::-;10739:13;:11;:13::i;:::-;76908:8:::1;:20:::0;76844:90::o;74618:244::-;71620:6;;74683:11;;71620:6;;71619:7;71611:38;;;;-1:-1:-1;;;71611:38:0;;12074:2:1;71611:38:0;;;12056:21:1;12113:2;12093:18;;;12086:30;-1:-1:-1;;;12132:18:1;;;12125:48;12190:18;;71611:38:0;11872:342:1;71611:38:0;71678:1;71664:11;:15;:51;;;;;71697:18;;71683:11;:32;71664:51;71656:84;;;;-1:-1:-1;;;71656:84:0;;12421:2:1;71656:84:0;;;12403:21:1;12460:2;12440:18;;;12433:30;12499:22;12479:18;;;12472:50;12539:18;;71656:84:0;12219:344:1;71656:84:0;71755:10;71769:9;71755:23;71747:44;;;;-1:-1:-1;;;71747:44:0;;12770:2:1;71747:44:0;;;12752:21:1;12809:1;12789:18;;;12782:29;-1:-1:-1;;;12827:18:1;;;12820:38;12875:18;;71747:44:0;12568:331:1;71747:44:0;71836:9;;71541:1;30272:12;30059:7;30256:13;71822:11;;30256:28;;-1:-1:-1;;30256:46:0;71806:27;;;;:::i;:::-;:39;71798:72;;;;-1:-1:-1;;;71798:72:0;;13428:2:1;71798:72:0;;;13410:21:1;13467:2;13447:18;;;13440:30;-1:-1:-1;;;13486:18:1;;;13479:50;13546:18;;71798:72:0;13226:344:1;71798:72:0;71887:14;;;;;;;71883:197;;;71931:16;;71917:11;:30;-1:-1:-1;71956:4:0;:8;71883:197;;;71988:14;;;;;;;71983:97;;72032:16;;72018:11;:30;72064:8;;72057:4;:15;71983:97;72108:13;;71541:1;30272:12;30059:7;30256:13;:28;-1:-1:-1;;30256:46:0;72092:29;:76;;;;-1:-1:-1;72155:13:0;;71541:1;30272:12;30059:7;30256:13;72141:11;;30256:28;;-1:-1:-1;;30256:46:0;72125:27;;;;:::i;:::-;:43;72092:76;72088:201;;;72184:16;72233:13;;72219:11;72203:13;71541:1;30272:12;30059:7;30256:13;-1:-1:-1;;30256:28:0;;;:46;;30006:315;72203:13;:27;;;;:::i;:::-;:43;;;;:::i;:::-;72184:62;;72273:8;72262;;:19;;;;:::i;:::-;72255:4;:26;-1:-1:-1;72088:201:0;72317:13;;71541:1;30272:12;30059:7;30256:13;:28;-1:-1:-1;;30256:46:0;72301:29;72297:72;;;72353:8;;72346:4;:15;72297:72;72398:4;;72385:9;:17;;72377:49;;;;-1:-1:-1;;;72377:49:0;;14080:2:1;72377:49:0;;;14062:21:1;14119:2;14099:18;;;14092:30;14158:21;14138:18;;;14131:49;14197:18;;72377:49:0;13878:343:1;72377:49:0;72483:11;;72455:10;72441:25;;;;:13;:25;;;;;;:39;;72469:11;;72441:39;:::i;:::-;:53;72433:95;;;;-1:-1:-1;;;72433:95:0;;14428:2:1;72433:95:0;;;14410:21:1;14467:2;14447:18;;;14440:30;14506:31;14486:18;;;14479:59;14555:18;;72433:95:0;14226:353:1;72433:95:0;74723:14:::1;::::0;;;::::1;;;74722:15;74714:52;;;::::0;-1:-1:-1;;;74714:52:0;;15369:2:1;74714:52:0::1;::::0;::::1;15351:21:1::0;15408:2;15388:18;;;15381:30;15447:26;15427:18;;;15420:54;15491:18;;74714:52:0::1;15167:348:1::0;74714:52:0::1;74789:10;74775:25;::::0;;;:13:::1;:25;::::0;;;;:40;;74804:11;;74775:25;:40:::1;::::0;74804:11;;74775:40:::1;:::i;:::-;::::0;;;-1:-1:-1;74822:34:0::1;::::0;-1:-1:-1;74832:10:0::1;74844:11:::0;74822:9:::1;:34::i;78455:137::-:0;10739:13;:11;:13::i;:::-;78500:7:::1;78521;10926:6:::0;;-1:-1:-1;;;;;10926:6:0;;10853:87;78521:7:::1;-1:-1:-1::0;;;;;78513:21:0::1;78542;78513:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78499:69;;;78583:2;78575:11;;;::::0;::::1;;78492:100;78455:137::o:0;39435:185::-;39573:39;39590:4;39596:2;39600:7;39573:39;;;;;;;;;;;;:16;:39::i;:::-;39435:185;;;:::o;75393:635::-;75468:16;75496:23;75522:17;75532:6;75522:9;:17::i;:::-;75496:43;;75546:30;75593:15;75579:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;75579:30:0;-1:-1:-1;75546:63:0;-1:-1:-1;75641:1:0;75616:22;75685:309;75710:15;75692;:33;:64;;;;;75747:9;;75729:14;:27;;75692:64;75685:309;;;75767:25;75795:23;75803:14;75795:7;:23::i;:::-;75767:51;;75854:6;-1:-1:-1;;;;;75833:27:0;:17;-1:-1:-1;;;;;75833:27:0;;75829:131;;75906:14;75873:13;75887:15;75873:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;75933:17;;;;:::i;:::-;;;;75829:131;75970:16;;;;:::i;:::-;;;;75758:236;75685:309;;;-1:-1:-1;76009:13:0;;75393:635;-1:-1:-1;;;;75393:635:0:o;77804:132::-;10739:13;:11;:13::i;:::-;77892:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;70246:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;65258:468::-;65433:15;;65347:23;;65408:22;65433:15;65500:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65500:36:0;;-1:-1:-1;;65500:36:0;;;;;;;;;;;;65463:73;;65556:9;65551:125;65572:14;65567:1;:19;65551:125;;65628:32;65648:8;65657:1;65648:11;;;;;;;;:::i;:::-;;;;;;;65628:19;:32::i;:::-;65612:10;65623:1;65612:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;65588:3;;65551:125;;;-1:-1:-1;65697:10:0;65258:468;-1:-1:-1;;;65258:468:0:o;70205:36::-;;;;;;;:::i;36388:144::-;36452:7;36495:27;36514:7;36495:18;:27::i;77320:122::-;10739:13;:11;:13::i;:::-;77400:16:::1;:36:::0;77320:122::o;77634:164::-;10739:13;:11;:13::i;:::-;77725:19:::1;::::0;-1:-1:-1;;;;;77725:19:0::1;77711:10;:33;77703:60;;;::::0;-1:-1:-1;;;77703:60:0;;16261:2:1;77703:60:0::1;::::0;::::1;16243:21:1::0;16300:2;16280:18;;;16273:30;16339:16;16319:18;;;16312:44;16373:18;;77703:60:0::1;16059:338:1::0;77703:60:0::1;77770:9;:22:::0;77634:164::o;31631:224::-;31695:7;-1:-1:-1;;;;;31719:19:0;;31715:60;;31747:28;;;;;;;;;;;;;;31715:60;-1:-1:-1;;;;;;31793:25:0;;;;;:18;:25;;;;;;26186:13;31793:54;;31631:224::o;11501:103::-;10739:13;:11;:13::i;:::-;11566:30:::1;11593:1;11566:18;:30::i;:::-;11501:103::o:0;72550:107::-;10739:13;:11;:13::i;:::-;72625:10:::1;:26:::0;72550:107::o;77942:100::-;10739:13;:11;:13::i;:::-;78014:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;77192:122::-:0;10739:13;:11;:13::i;:::-;77272:16:::1;:36:::0;77192:122::o;69070:892::-;69140:16;69194:19;69228:25;69268:22;69293:16;69303:5;69293:9;:16::i;:::-;69268:41;;69324:25;69366:14;69352:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;69352:29:0;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69324:57:0;;-1:-1:-1;71541:1:0;69442:472;69491:14;69476:11;:29;69442:472;;69543:15;69556:1;69543:12;:15::i;:::-;69531:27;;69581:9;:16;;;69622:8;69577:73;69672:14;;-1:-1:-1;;;;;69672:28:0;;69668:111;;69745:14;;;-1:-1:-1;69668:111:0;69822:5;-1:-1:-1;;;;;69801:26:0;:17;-1:-1:-1;;;;;69801:26:0;;69797:102;;69878:1;69852:8;69861:13;;;;;;69852:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;69797:102;69507:3;;69442:472;;;-1:-1:-1;69935:8:0;;69070:892;-1:-1:-1;;;;;;69070:892:0:o;78154:113::-;10739:13;:11;:13::i;:::-;78232:29;;::::1;::::0;:12:::1;::::0;:29:::1;::::0;::::1;::::0;::::1;:::i;36768:104::-:0;36824:13;36857:7;36850:14;;;;;:::i;66116:2505::-;66251:16;66318:4;66309:5;:13;66305:45;;66331:19;;;;;;;;;;;;;;66305:45;66365:19;66399:17;66419:14;29748:7;29775:13;;29701:95;66419:14;66399:34;-1:-1:-1;71541:1:0;66511:5;:23;66507:87;;;71541:1;66555:23;;66507:87;66670:9;66663:4;:16;66659:73;;;66707:9;66700:16;;66659:73;66746:25;66774:16;66784:5;66774:9;:16::i;:::-;66746:44;;66968:4;66960:5;:12;66956:278;;;67015:12;;;67050:31;;;67046:111;;;67126:11;67106:31;;67046:111;66974:198;66956:278;;;-1:-1:-1;67217:1:0;66956:278;67248:25;67290:17;67276:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;67276:32:0;;67248:60;;67327:17;67348:1;67327:22;67323:78;;67377:8;-1:-1:-1;67370:15:0;;-1:-1:-1;;;67370:15:0;67323:78;67545:31;67579:26;67599:5;67579:19;:26::i;:::-;67545:60;;67620:25;67865:9;:16;;;67860:92;;-1:-1:-1;67922:14:0;;67860:92;67983:5;67966:478;67995:4;67990:1;:9;;:45;;;;;68018:17;68003:11;:32;;67990:45;67966:478;;;68073:15;68086:1;68073:12;:15::i;:::-;68061:27;;68111:9;:16;;;68152:8;68107:73;68202:14;;-1:-1:-1;;;;;68202:28:0;;68198:111;;68275:14;;;-1:-1:-1;68198:111:0;68352:5;-1:-1:-1;;;;;68331:26:0;:17;-1:-1:-1;;;;;68331:26:0;;68327:102;;68408:1;68382:8;68391:13;;;;;;68382:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;68327:102;68037:3;;67966:478;;;-1:-1:-1;;;68529:29:0;;;-1:-1:-1;68536:8:0;;-1:-1:-1;;66116:2505:0;;;;;;:::o;38821:308::-;58993:10;-1:-1:-1;;;;;38920:31:0;;;38916:61;;38960:17;;;;;;;;;;;;;;38916:61;58993:10;38990:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;38990:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;38990:60:0;;;;;;;;;;39066:55;;586:41:1;;;38990:49:0;;58993:10;39066:55;;559:18:1;39066:55:0;;;;;;;38821:308;;:::o;70320:31::-;;;;;;;:::i;77448:180::-;10739:13;:11;:13::i;:::-;77547:19:::1;::::0;-1:-1:-1;;;;;77547:19:0::1;77533:10;:33;77525:60;;;::::0;-1:-1:-1;;;77525:60:0;;16261:2:1;77525:60:0::1;::::0;::::1;16243:21:1::0;16300:2;16280:18;;;16273:30;16339:16;16319:18;;;16312:44;16373:18;;77525:60:0::1;16059:338:1::0;77525:60:0::1;77592:19;:30:::0;;-1:-1:-1;;77592:30:0::1;-1:-1:-1::0;;;;;77592:30:0;;;::::1;::::0;;;::::1;::::0;;77448:180::o;76940:130::-;10739:13;:11;:13::i;:::-;77024:18:::1;:40:::0;76940:130::o;39691:399::-;39858:31;39871:4;39877:2;39881:7;39858:12;:31::i;:::-;-1:-1:-1;;;;;39904:14:0;;;:19;39900:183;;39943:56;39974:4;39980:2;39984:7;39993:5;39943:30;:56::i;:::-;39938:145;;40027:40;;-1:-1:-1;;;40027:40:0;;;;;;;;;;;77076:110;10739:13;:11;:13::i;:::-;77150::::1;:30:::0;77076:110::o;70284:31::-;;;;;;;:::i;64679:420::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71541:1:0;64835:7;:25;:54;;;-1:-1:-1;29748:7:0;29775:13;64864:7;:25;;64835:54;64831:103;;;64913:9;64679:420;-1:-1:-1;;64679:420:0:o;64831:103::-;64956:21;64969:7;64956:12;:21::i;:::-;64944:33;;64992:9;:16;;;64988:65;;;65032:9;64679:420;-1:-1:-1;;64679:420:0:o;64988:65::-;65070:21;65083:7;65070:12;:21::i;73269:92::-;73316:7;73342:13;71541:1;30272:12;30059:7;30256:13;-1:-1:-1;;30256:28:0;;;:46;;30006:315;73342:13;73335:20;;73269:92;:::o;76034:514::-;76153:13;76194:17;76202:8;76194:7;:17::i;:::-;76178:98;;;;-1:-1:-1;;;76178:98:0;;16604:2:1;76178:98:0;;;16586:21:1;16643:2;16623:18;;;16616:30;16682:34;16662:18;;;16655:62;16753:17;16733:18;;;16726:45;16788:19;;76178:98:0;16402:411:1;76178:98:0;76289:8;;;;;;;:17;;76301:5;76289:17;76285:64;;76324:17;76317:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76034:514;;;:::o;76285:64::-;76357:28;76388:10;:8;:10::i;:::-;76357:41;;76443:1;76418:14;76412:28;:32;:130;;;;;;;;;;;;;;;;;76480:14;76496:19;76506:8;76496:9;:19::i;:::-;76517:9;76463:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;76405:137;76034:514;-1:-1:-1;;;76034:514:0:o;73931:681::-;74040:6;;;;74039:7;74031:38;;;;-1:-1:-1;;;74031:38:0;;12074:2:1;74031:38:0;;;12056:21:1;12113:2;12093:18;;;12086:30;-1:-1:-1;;;12132:18:1;;;12125:48;12190:18;;74031:38:0;11872:342:1;74031:38:0;74084:11;74099:1;74084:16;74076:49;;;;-1:-1:-1;;;74076:49:0;;12421:2:1;74076:49:0;;;12403:21:1;12460:2;12440:18;;;12433:30;12499:22;12479:18;;;12472:50;12539:18;;74076:49:0;12219:344:1;74076:49:0;74140:10;74154:9;74140:23;74132:44;;;;-1:-1:-1;;;74132:44:0;;12770:2:1;74132:44:0;;;12752:21:1;12809:1;12789:18;;;12782:29;-1:-1:-1;;;12827:18:1;;;12820:38;12875:18;;74132:44:0;12568:331:1;74132:44:0;74221:9;;71541:1;30272:12;30059:7;30256:13;74207:11;;30256:28;;-1:-1:-1;;30256:46:0;74191:27;;;;:::i;:::-;:39;74183:72;;;;-1:-1:-1;;;74183:72:0;;13428:2:1;74183:72:0;;;13410:21:1;13467:2;13447:18;;;13440:30;-1:-1:-1;;;13486:18:1;;;13479:50;13546:18;;74183:72:0;13226:344:1;74183:72:0;74313:13;;74285:10;74270:26;;;;:14;:26;;;;;;:40;;74299:11;;74270:40;:::i;:::-;:56;74262:99;;;;-1:-1:-1;;;74262:99:0;;18736:2:1;74262:99:0;;;18718:21:1;18775:2;18755:18;;;18748:30;18814:32;18794:18;;;18787:60;18864:18;;74262:99:0;18534:354:1;74262:99:0;74395:28;;-1:-1:-1;;74412:10:0;14733:2:1;14729:15;14725:53;74395:28:0;;;14713:66:1;74370:12:0;;14795::1;;74395:28:0;;;;;;;;;;;;74385:39;;;;;;74370:54;;74441:50;74460:12;;74441:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;74474:10:0;;;-1:-1:-1;74486:4:0;;-1:-1:-1;74441:18:0;:50::i;:::-;74433:83;;;;-1:-1:-1;;;74433:83:0;;19095:2:1;74433:83:0;;;19077:21:1;19134:2;19114:18;;;19107:30;19173:22;19153:18;;;19146:50;19213:18;;74433:83:0;18893:344:1;74433:83:0;74539:10;74525:25;;;;:13;:25;;;;;:40;;74554:11;;74525:25;:40;;74554:11;;74525:40;:::i;75088:299::-;10739:13;:11;:13::i;:::-;75209:9:::1;75204:178;75220:20:::0;;::::1;75204:178;;;75297:9;;75285:6;;75292:1;75285:9;;;;;;;:::i;:::-;;;;;;;75269:13;71541:1:::0;30272:12;30059:7;30256:13;-1:-1:-1;;30256:28:0;;;:46;;30006:315;75269:13:::1;:25;;;;:::i;:::-;:37;75261:70;;;::::0;-1:-1:-1;;;75261:70:0;;13428:2:1;75261:70:0::1;::::0;::::1;13410:21:1::0;13467:2;13447:18;;;13440:30;-1:-1:-1;;;13486:18:1;;;13479:50;13546:18;;75261:70:0::1;13226:344:1::0;75261:70:0::1;75340:34;75350:9;;75360:1;75350:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;75364:6;;75371:1;75364:9;;;;;;;:::i;:::-;;;;;;;75340;:34::i;:::-;75242:3:::0;::::1;::::0;::::1;:::i;:::-;;;;75204:178;;;;75088:299:::0;;;;:::o;76757:81::-;10739:13;:11;:13::i;:::-;76815:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;76815:17:0;;::::1;::::0;;;::::1;::::0;;76757:81::o;76554:197::-;76610:13;76676:1;76653:12;76647:26;;;;;:::i;:::-;;;:30;:98;;-1:-1:-1;76647:98:0;;;;;;;;;-1:-1:-1;76647:98:0;;;73269:92::o;76647:98::-;76715:12;76698:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;76640:105;;76554:197;:::o;74868:214::-;10739:13;:11;:13::i;:::-;75002:9:::1;::::0;71541:1;30272:12;30059:7;30256:13;74988:11;;30256:28;;-1:-1:-1;;30256:46:0;74972:27:::1;;;;:::i;:::-;:39;74964:72;;;::::0;-1:-1:-1;;;74964:72:0;;13428:2:1;74964:72:0::1;::::0;::::1;13410:21:1::0;13467:2;13447:18;;;13440:30;-1:-1:-1;;;13486:18:1;;;13479:50;13546:18;;74964:72:0::1;13226:344:1::0;74964:72:0::1;75043:33;75053:9;75064:11;75043:9;:33::i;11759:201::-:0;10739:13;:11;:13::i;:::-;-1:-1:-1;;;;;11848:22:0;::::1;11840:73;;;::::0;-1:-1:-1;;;11840:73:0;;19646:2:1;11840:73:0::1;::::0;::::1;19628:21:1::0;19685:2;19665:18;;;19658:30;19724:34;19704:18;;;19697:62;19795:8;19775:18;;;19768:36;19821:19;;11840:73:0::1;19444:402:1::0;11840:73:0::1;11924:28;11943:8;11924:18;:28::i;11018:132::-:0;10926:6;;-1:-1:-1;;;;;10926:6:0;58993:10;11082:23;11074:68;;;;-1:-1:-1;;;11074:68:0;;20053:2:1;11074:68:0;;;20035:21:1;;;20072:18;;;20065:30;20131:34;20111:18;;;20104:62;20183:18;;11074:68:0;19851:356:1;40345:273:0;40402:4;40458:7;71541:1;40439:26;;:66;;;;;40492:13;;40482:7;:23;40439:66;:152;;;;-1:-1:-1;;40543:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;40543:43:0;:48;;40345:273::o;33305:1129::-;33372:7;33407;;71541:1;33456:23;33452:915;;33509:13;;33502:4;:20;33498:869;;;33547:14;33564:23;;;:17;:23;;;;;;;-1:-1:-1;;;33653:23:0;;:28;;33649:699;;34172:113;34179:6;34189:1;34179:11;34172:113;;-1:-1:-1;;;34250:6:0;34232:25;;;;:17;:25;;;;;;34172:113;;33649:699;33524:843;33498:869;34395:31;;;;;;;;;;;;;;1219:190;1344:4;1397;1368:25;1381:5;1388:4;1368:12;:25::i;:::-;:33;;1219:190;-1:-1:-1;;;;1219:190:0:o;40702:104::-;40771:27;40781:2;40785:8;40771:27;;;;;;;;;;;;:9;:27::i;12120:191::-;12213:6;;;-1:-1:-1;;;;;12230:17:0;;;-1:-1:-1;;12230:17:0;;;;;;;12263:40;;12213:6;;;12230:17;12213:6;;12263:40;;12194:16;;12263:40;12183:128;12120:191;:::o;34982:153::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35102:24:0;;;;:17;:24;;;;;;35083:44;;-1:-1:-1;;;;;;;;;;;;;34638:41:0;;;;26840:3;34724:32;;;34690:67;;-1:-1:-1;;;34690:67:0;-1:-1:-1;;;34787:23:0;;:28;;-1:-1:-1;;;34768:47:0;;;;27357:3;34855:27;;;;-1:-1:-1;;;34826:57:0;-1:-1:-1;34528:363:0;54561:716;54745:88;;-1:-1:-1;;;54745:88:0;;54724:4;;-1:-1:-1;;;;;54745:45:0;;;;;:88;;58993:10;;54812:4;;54818:7;;54827:5;;54745:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54745:88:0;;;;;;;;-1:-1:-1;;54745:88:0;;;;;;;;;;;;:::i;:::-;;;54741:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55028:6;:13;55045:1;55028:18;55024:235;;55074:40;;-1:-1:-1;;;55074:40:0;;;;;;;;;;;55024:235;55217:6;55211:13;55202:6;55198:2;55194:15;55187:38;54741:529;-1:-1:-1;;;;;;54904:64:0;-1:-1:-1;;;54904:64:0;;-1:-1:-1;54741:529:0;54561:716;;;;;;:::o;35638:158::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35741:47:0;35760:27;35779:7;35760:18;:27::i;:::-;-1:-1:-1;;;;;;;;;;;;;34638:41:0;;;;26840:3;34724:32;;;34690:67;;-1:-1:-1;;;34690:67:0;-1:-1:-1;;;34787:23:0;;:28;;-1:-1:-1;;;34768:47:0;;;;27357:3;34855:27;;;;-1:-1:-1;;;34826:57:0;-1:-1:-1;34528:363:0;78598:104;78658:13;78687:9;78680:16;;;;;:::i;59117:1960::-;59586:4;59580:11;;59593:3;59576:21;;59671:17;;;;60367:11;;;60246:5;60499:2;60513;60503:13;;60495:22;60367:11;60482:36;60554:2;60544:13;;60138:697;60573:4;60138:697;;;60764:1;60759:3;60755:11;60748:18;;60815:2;60809:4;60805:13;60801:2;60797:22;60792:3;60784:36;60668:2;60658:13;;60138:697;;;-1:-1:-1;60865:13:0;;;-1:-1:-1;;60980:12:0;;;61040:19;;;60980:12;59117:1960;-1:-1:-1;59117:1960:0:o;2086:296::-;2169:7;2212:4;2169:7;2227:118;2251:5;:12;2247:1;:16;2227:118;;;2300:33;2310:12;2324:5;2330:1;2324:8;;;;;;;;:::i;:::-;;;;;;;2300:9;:33::i;:::-;2285:48;-1:-1:-1;2265:3:0;;;;:::i;:::-;;;;2227:118;;41222:681;41345:19;41351:2;41355:8;41345:5;:19::i;:::-;-1:-1:-1;;;;;41406:14:0;;;:19;41402:483;;41446:11;41460:13;41508:14;;;41541:233;41572:62;41611:1;41615:2;41619:7;;;;;;41628:5;41572:30;:62::i;:::-;41567:167;;41670:40;;-1:-1:-1;;;41670:40:0;;;;;;;;;;;41567:167;41769:3;41761:5;:11;41541:233;;41856:3;41839:13;;:20;41835:34;;41861:8;;;8293:149;8356:7;8387:1;8383;:5;:51;;8518:13;8612:15;;;8648:4;8641:15;;;8695:4;8679:21;;8383:51;;;-1:-1:-1;8518:13:0;8612:15;;;8648:4;8641:15;8695:4;8679:21;;;8293:149::o;42176:1529::-;42241:20;42264:13;-1:-1:-1;;;;;42292:16:0;;42288:48;;42317:19;;;;;;;;;;;;;;42288:48;42351:8;42363:1;42351:13;42347:44;;42373:18;;;;;;;;;;;;;;42347:44;-1:-1:-1;;;;;42879:22:0;;;;;;:18;:22;;26323:2;42879:22;;:70;;42917:31;42905:44;;42879:70;;;36287:11;36263:22;36259:40;-1:-1:-1;37997:15:0;;37972:23;37968:45;36256:51;36246:62;43192:31;;;;:17;:31;;;;;:173;43210:12;43441:23;;;43479:101;43506:35;;43531:9;;;;;-1:-1:-1;;;;;43506:35:0;;;43523:1;;43506:35;;43523:1;;43506:35;43575:3;43565:7;:13;43479:101;;43596:13;:19;-1:-1:-1;39435:185:0;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:177:1;-1:-1:-1;;;;;;92:5:1;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:160::-;703:20;;759:13;;752:21;742:32;;732:60;;788:1;785;778:12;732:60;638:160;;;:::o;803:180::-;859:6;912:2;900:9;891:7;887:23;883:32;880:52;;;928:1;925;918:12;880:52;951:26;967:9;951:26;:::i;1170:258::-;1242:1;1252:113;1266:6;1263:1;1260:13;1252:113;;;1342:11;;;1336:18;1323:11;;;1316:39;1288:2;1281:10;1252:113;;;1383:6;1380:1;1377:13;1374:48;;;-1:-1:-1;;1418:1:1;1400:16;;1393:27;1170:258::o;1433:::-;1475:3;1513:5;1507:12;1540:6;1535:3;1528:19;1556:63;1612:6;1605:4;1600:3;1596:14;1589:4;1582:5;1578:16;1556:63;:::i;:::-;1673:2;1652:15;-1:-1:-1;;1648:29:1;1639:39;;;;1680:4;1635:50;;1433:258;-1:-1:-1;;1433:258:1:o;1696:220::-;1845:2;1834:9;1827:21;1808:4;1865:45;1906:2;1895:9;1891:18;1883:6;1865:45;:::i;1921:180::-;1980:6;2033:2;2021:9;2012:7;2008:23;2004:32;2001:52;;;2049:1;2046;2039:12;2001:52;-1:-1:-1;2072:23:1;;1921:180;-1:-1:-1;1921:180:1:o;2337:196::-;2405:20;;-1:-1:-1;;;;;2454:54:1;;2444:65;;2434:93;;2523:1;2520;2513:12;2538:254;2606:6;2614;2667:2;2655:9;2646:7;2642:23;2638:32;2635:52;;;2683:1;2680;2673:12;2635:52;2706:29;2725:9;2706:29;:::i;:::-;2696:39;2782:2;2767:18;;;;2754:32;;-1:-1:-1;;;2538:254:1:o;2797:186::-;2856:6;2909:2;2897:9;2888:7;2884:23;2880:32;2877:52;;;2925:1;2922;2915:12;2877:52;2948:29;2967:9;2948:29;:::i;2988:184::-;-1:-1:-1;;;3037:1:1;3030:88;3137:4;3134:1;3127:15;3161:4;3158:1;3151:15;3177:275;3248:2;3242:9;3313:2;3294:13;;-1:-1:-1;;3290:27:1;3278:40;;3348:18;3333:34;;3369:22;;;3330:62;3327:88;;;3395:18;;:::i;:::-;3431:2;3424:22;3177:275;;-1:-1:-1;3177:275:1:o;3457:407::-;3522:5;3556:18;3548:6;3545:30;3542:56;;;3578:18;;:::i;:::-;3616:57;3661:2;3640:15;;-1:-1:-1;;3636:29:1;3667:4;3632:40;3616:57;:::i;:::-;3607:66;;3696:6;3689:5;3682:21;3736:3;3727:6;3722:3;3718:16;3715:25;3712:45;;;3753:1;3750;3743:12;3712:45;3802:6;3797:3;3790:4;3783:5;3779:16;3766:43;3856:1;3849:4;3840:6;3833:5;3829:18;3825:29;3818:40;3457:407;;;;;:::o;3869:451::-;3938:6;3991:2;3979:9;3970:7;3966:23;3962:32;3959:52;;;4007:1;4004;3997:12;3959:52;4047:9;4034:23;4080:18;4072:6;4069:30;4066:50;;;4112:1;4109;4102:12;4066:50;4135:22;;4188:4;4180:13;;4176:27;-1:-1:-1;4166:55:1;;4217:1;4214;4207:12;4166:55;4240:74;4306:7;4301:2;4288:16;4283:2;4279;4275:11;4240:74;:::i;4325:328::-;4402:6;4410;4418;4471:2;4459:9;4450:7;4446:23;4442:32;4439:52;;;4487:1;4484;4477:12;4439:52;4510:29;4529:9;4510:29;:::i;:::-;4500:39;;4558:38;4592:2;4581:9;4577:18;4558:38;:::i;:::-;4548:48;;4643:2;4632:9;4628:18;4615:32;4605:42;;4325:328;;;;;:::o;4658:367::-;4721:8;4731:6;4785:3;4778:4;4770:6;4766:17;4762:27;4752:55;;4803:1;4800;4793:12;4752:55;-1:-1:-1;4826:20:1;;4869:18;4858:30;;4855:50;;;4901:1;4898;4891:12;4855:50;4938:4;4930:6;4926:17;4914:29;;4998:3;4991:4;4981:6;4978:1;4974:14;4966:6;4962:27;4958:38;4955:47;4952:67;;;5015:1;5012;5005:12;4952:67;4658:367;;;;;:::o;5030:505::-;5125:6;5133;5141;5194:2;5182:9;5173:7;5169:23;5165:32;5162:52;;;5210:1;5207;5200:12;5162:52;5250:9;5237:23;5283:18;5275:6;5272:30;5269:50;;;5315:1;5312;5305:12;5269:50;5354:70;5416:7;5407:6;5396:9;5392:22;5354:70;:::i;:::-;5443:8;;5328:96;;-1:-1:-1;5525:2:1;5510:18;;;;5497:32;;5030:505;-1:-1:-1;;;;5030:505:1:o;5722:632::-;5893:2;5945:21;;;6015:13;;5918:18;;;6037:22;;;5864:4;;5893:2;6116:15;;;;6090:2;6075:18;;;5864:4;6159:169;6173:6;6170:1;6167:13;6159:169;;;6234:13;;6222:26;;6303:15;;;;6268:12;;;;6195:1;6188:9;6159:169;;6359:946;6443:6;6474:2;6517;6505:9;6496:7;6492:23;6488:32;6485:52;;;6533:1;6530;6523:12;6485:52;6573:9;6560:23;6602:18;6643:2;6635:6;6632:14;6629:34;;;6659:1;6656;6649:12;6629:34;6697:6;6686:9;6682:22;6672:32;;6742:7;6735:4;6731:2;6727:13;6723:27;6713:55;;6764:1;6761;6754:12;6713:55;6800:2;6787:16;6822:2;6818;6815:10;6812:36;;;6828:18;;:::i;:::-;6874:2;6871:1;6867:10;6857:20;;6897:28;6921:2;6917;6913:11;6897:28;:::i;:::-;6959:15;;;7029:11;;;7025:20;;;6990:12;;;;7057:19;;;7054:39;;;7089:1;7086;7079:12;7054:39;7113:11;;;;7133:142;7149:6;7144:3;7141:15;7133:142;;;7215:17;;7203:30;;7166:12;;;;7253;;;;7133:142;;;7294:5;6359:946;-1:-1:-1;;;;;;;;6359:946:1:o;7687:722::-;7920:2;7972:21;;;8042:13;;7945:18;;;8064:22;;;7891:4;;7920:2;8143:15;;;;8117:2;8102:18;;;7891:4;8186:197;8200:6;8197:1;8194:13;8186:197;;;8249:52;8297:3;8288:6;8282:13;-1:-1:-1;;;;;7400:5:1;7394:12;7390:61;7385:3;7378:74;7513:18;7505:4;7498:5;7494:16;7488:23;7484:48;7477:4;7472:3;7468:14;7461:72;7596:4;7589:5;7585:16;7579:23;7572:31;7565:39;7558:4;7553:3;7549:14;7542:63;7666:8;7658:4;7651:5;7647:16;7641:23;7637:38;7630:4;7625:3;7621:14;7614:62;;;7310:372;8249:52;8358:15;;;;8330:4;8321:14;;;;;8222:1;8215:9;8186:197;;8599:322;8676:6;8684;8692;8745:2;8733:9;8724:7;8720:23;8716:32;8713:52;;;8761:1;8758;8751:12;8713:52;8784:29;8803:9;8784:29;:::i;:::-;8774:39;8860:2;8845:18;;8832:32;;-1:-1:-1;8911:2:1;8896:18;;;8883:32;;8599:322;-1:-1:-1;;;8599:322:1:o;8926:254::-;8991:6;8999;9052:2;9040:9;9031:7;9027:23;9023:32;9020:52;;;9068:1;9065;9058:12;9020:52;9091:29;9110:9;9091:29;:::i;:::-;9081:39;;9139:35;9170:2;9159:9;9155:18;9139:35;:::i;:::-;9129:45;;8926:254;;;;;:::o;9185:667::-;9280:6;9288;9296;9304;9357:3;9345:9;9336:7;9332:23;9328:33;9325:53;;;9374:1;9371;9364:12;9325:53;9397:29;9416:9;9397:29;:::i;:::-;9387:39;;9445:38;9479:2;9468:9;9464:18;9445:38;:::i;:::-;9435:48;;9530:2;9519:9;9515:18;9502:32;9492:42;;9585:2;9574:9;9570:18;9557:32;9612:18;9604:6;9601:30;9598:50;;;9644:1;9641;9634:12;9598:50;9667:22;;9720:4;9712:13;;9708:27;-1:-1:-1;9698:55:1;;9749:1;9746;9739:12;9698:55;9772:74;9838:7;9833:2;9820:16;9815:2;9811;9807:11;9772:74;:::i;:::-;9762:84;;;9185:667;;;;;;;:::o;9857:266::-;7394:12;;-1:-1:-1;;;;;7390:61:1;7378:74;;7505:4;7494:16;;;7488:23;7513:18;7484:48;7468:14;;;7461:72;7596:4;7585:16;;;7579:23;7572:31;7565:39;7549:14;;;7542:63;7658:4;7647:16;;;7641:23;7666:8;7637:38;7621:14;;;7614:62;10053:3;10038:19;;10066:51;7310:372;10128:773;10250:6;10258;10266;10274;10327:2;10315:9;10306:7;10302:23;10298:32;10295:52;;;10343:1;10340;10333:12;10295:52;10383:9;10370:23;10412:18;10453:2;10445:6;10442:14;10439:34;;;10469:1;10466;10459:12;10439:34;10508:70;10570:7;10561:6;10550:9;10546:22;10508:70;:::i;:::-;10597:8;;-1:-1:-1;10482:96:1;-1:-1:-1;10685:2:1;10670:18;;10657:32;;-1:-1:-1;10701:16:1;;;10698:36;;;10730:1;10727;10720:12;10698:36;;10769:72;10833:7;10822:8;10811:9;10807:24;10769:72;:::i;:::-;10128:773;;;;-1:-1:-1;10860:8:1;-1:-1:-1;;;;10128:773:1:o;10906:260::-;10974:6;10982;11035:2;11023:9;11014:7;11010:23;11006:32;11003:52;;;11051:1;11048;11041:12;11003:52;11074:29;11093:9;11074:29;:::i;:::-;11064:39;;11122:38;11156:2;11145:9;11141:18;11122:38;:::i;11171:254::-;11239:6;11247;11300:2;11288:9;11279:7;11275:23;11271:32;11268:52;;;11316:1;11313;11306:12;11268:52;11352:9;11339:23;11329:33;;11381:38;11415:2;11404:9;11400:18;11381:38;:::i;11430:437::-;11509:1;11505:12;;;;11552;;;11573:61;;11627:4;11619:6;11615:17;11605:27;;11573:61;11680:2;11672:6;11669:14;11649:18;11646:38;11643:218;;-1:-1:-1;;;11714:1:1;11707:88;11818:4;11815:1;11808:15;11846:4;11843:1;11836:15;11643:218;;11430:437;;;:::o;12904:184::-;-1:-1:-1;;;12953:1:1;12946:88;13053:4;13050:1;13043:15;13077:4;13074:1;13067:15;13093:128;13133:3;13164:1;13160:6;13157:1;13154:13;13151:39;;;13170:18;;:::i;:::-;-1:-1:-1;13206:9:1;;13093:128::o;13575:125::-;13615:4;13643:1;13640;13637:8;13634:34;;;13648:18;;:::i;:::-;-1:-1:-1;13685:9:1;;13575:125::o;13705:168::-;13745:7;13811:1;13807;13803:6;13799:14;13796:1;13793:21;13788:1;13781:9;13774:17;13770:45;13767:71;;;13818:18;;:::i;:::-;-1:-1:-1;13858:9:1;;13705:168::o;15730:184::-;-1:-1:-1;;;15779:1:1;15772:88;15879:4;15876:1;15869:15;15903:4;15900:1;15893:15;15919:135;15958:3;15979:17;;;15976:43;;15999:18;;:::i;:::-;-1:-1:-1;16046:1:1;16035:13;;15919:135::o;16944:1030::-;17029:12;;16994:3;;17084:1;17104:18;;;;17157;;;;17184:61;;17238:4;17230:6;17226:17;17216:27;;17184:61;17264:2;17312;17304:6;17301:14;17281:18;17278:38;17275:218;;-1:-1:-1;;;17346:1:1;17339:88;17450:4;17447:1;17440:15;17478:4;17475:1;17468:15;17275:218;17509:18;17536:104;;;;17654:1;17649:319;;;;17502:466;;17536:104;-1:-1:-1;;17569:24:1;;17557:37;;17614:16;;;;-1:-1:-1;17536:104:1;;17649:319;16891:1;16884:14;;;16928:4;16915:18;;17743:1;17757:165;17771:6;17768:1;17765:13;17757:165;;;17849:14;;17836:11;;;17829:35;17892:16;;;;17786:10;;17757:165;;;17761:3;;17951:6;17946:3;17942:16;17935:23;;17502:466;;;;;;;16944:1030;;;;:::o;17979:550::-;18203:3;18241:6;18235:13;18257:53;18303:6;18298:3;18291:4;18283:6;18279:17;18257:53;:::i;:::-;18373:13;;18332:16;;;;18395:57;18373:13;18332:16;18429:4;18417:17;;18395:57;:::i;:::-;18468:55;18513:8;18506:5;18502:20;18494:6;18468:55;:::i;:::-;18461:62;17979:550;-1:-1:-1;;;;;;;17979:550:1:o;19242:197::-;19370:3;19395:38;19429:3;19421:6;19395:38;:::i;20212:512::-;20406:4;-1:-1:-1;;;;;20516:2:1;20508:6;20504:15;20493:9;20486:34;20568:2;20560:6;20556:15;20551:2;20540:9;20536:18;20529:43;;20608:6;20603:2;20592:9;20588:18;20581:34;20651:3;20646:2;20635:9;20631:18;20624:31;20672:46;20713:3;20702:9;20698:19;20690:6;20672:46;:::i;:::-;20664:54;20212:512;-1:-1:-1;;;;;;20212:512:1:o;20729:249::-;20798:6;20851:2;20839:9;20830:7;20826:23;20822:32;20819:52;;;20867:1;20864;20857:12;20819:52;20899:9;20893:16;20918:30;20942:5;20918:30;:::i

Swarm Source

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