ETH Price: $3,263.18 (+2.93%)
Gas: 2 Gwei

Token

MetaBirdsOfficial (MB)
 

Overview

Max Total Supply

2,448 MB

Holders

550

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 MB
0x7Ba7f899861c6090761fB5d3a1C00a3ce4173C26
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:
MetaBirdsOfficial

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/*

            ───────────▄██████████████▄───────
            ───────▄████░░░░░░░░█▀────█▄──────
            ──────██░░░░░░░░░░░█▀──────█▄─────
            ─────██░░░░░░░░░░░█▀────────█▄────
            ────██░░░░░░░░░░░░█──────────██───
            ───██░░░░░░░░░░░░░█──────██──██───
            ──██░░░░░░░░░░░░░░█▄─────██──██───
            ─████████████░░░░░░██────────██───
            ██░░░░░░░░░░░██░░░░░█████████████─
            ██░░░░░░░░░░░██░░░░█▓▓▓▓▓▓▓▓▓▓▓▓▓█
            ██░░░░░░░░░░░██░░░█▓▓▓▓▓▓▓▓▓▓▓▓▓▓█
            ─▀███████████▒▒▒▒█▓▓▓███████████▀─
            ────██▒▒▒▒▒▒▒▒▒▒▒▒█▓▓▓▓▓▓▓▓▓▓▓▓█──
            ─────██▒▒▒▒▒▒▒▒▒▒▒▒██▓▓▓▓▓▓▓▓▓▓█──
            ──────█████▒▒▒▒▒▒▒▒▒▒██████████───
            ─────────▀███████████▀────────────
  ___ ___       __         _______ __         __       
 |   Y   .-----|  |_.---.-|   _   |__.----.--|  .-----.
 |.      |  -__|   _|  _  |.  1   |  |   _|  _  |__ --|
 |. \_/  |_____|____|___._|.  _   |__|__| |_____|_____|
 |:  |   |                |:  1    \                   
 |::.|:. |                |::.. .  /                   
 `--- ---'                `-------'                    
                                                       
*/

// SPDX-License-Identifier: MIT

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// 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: erc721a/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: erc721a/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: erc721a/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: erc721a/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/metabirds.sol

pragma solidity >=0.8.9 <0.9.0;

contract MetaBirdsOfficial is ERC721AQueryable, Ownable, ReentrancyGuard {

  using Strings for uint256;

  bytes32 public merkleRoot;
  mapping(address => bool) public whitelistClaimed;

  string public uriPrefix = '';
  string public uriSuffix = '.json';
  string public hiddenMetadataUri;
  
  uint256 public cost;
  uint256 public maxSupply;
  uint256 public maxMintAmountPerTx;

  bool public paused = true;
  bool public whitelistMintEnabled = false;
  bool public revealed = false;

  address public devWallet = 0x2aAC035fB193429e18EA5AF33DCa3DA266448afF;
  address public projectWallet = 0x2aAC035fB193429e18EA5AF33DCa3DA266448afF;
  uint256 public addAN = 3;
  uint256 public addBN = 96;

  constructor() ERC721A("MetaBirdsOfficial", "MB") {
    cost = 0.1 ether;
    maxSupply = 10000;
    maxMintAmountPerTx = 50;
    hiddenMetadataUri = "ipfs://QmNtzArJMkkYpkbRBw3aToZ3WpZjbYKCm9aHG8EhDVNpM6";
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _;
  }

  modifier mintPriceCompliance(uint256 _mintAmount) {
    require(msg.value >= cost * _mintAmount, 'Insufficient funds!');
    _;
  }

  modifier airdropMintCompliance(uint256 _mintAmount) {
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _;
  }

  function whitelistMint(uint256 _mintAmount, bytes32[] calldata _merkleProof) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    // Verify whitelist requirements
    require(whitelistMintEnabled, 'The whitelist sale is not enabled!');
    require(!whitelistClaimed[_msgSender()], 'Address already claimed!');
    bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
    require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), 'Invalid proof!');

    whitelistClaimed[_msgSender()] = true;
    _safeMint(_msgSender(), _mintAmount);
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    require(!paused, 'The contract is paused!');

    _safeMint(_msgSender(), _mintAmount);
  }

  function airdropMint(uint256 _mintAmount) public payable airdropMintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) onlyOwner {
      _safeMint(_msgSender(), _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

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

  function setDiscountedMintPrice() public onlyOwner{
      cost = .05 ether;
  }

  function setDefaultMintPrice() public onlyOwner{
      cost = .1 ether;
  }

  function tokenURI(uint256 _tokenId) public view virtual override 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, _tokenId.toString(), uriSuffix))
        : '';
  }

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

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

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

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

  function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
    merkleRoot = _merkleRoot;
  }

  function setWhitelistMintEnabled(bool _state) public onlyOwner {
    whitelistMintEnabled = _state;
  }

  function setProjectWallet(address _address) external onlyOwner {
     projectWallet = _address;
  }

  function setDevWallet(address _devAddress) external onlyOwner {
     devWallet = _devAddress;
  }

  function setDevAmount(uint256 _amtD) external onlyOwner{
      addAN = _amtD;
  }
  function setProjectAmount(uint256 _amtP) external onlyOwner{
      addBN = _amtP;
  }


  function withdraw() public onlyOwner nonReentrant {
    uint256 contractBalance = address(this).balance;
    uint256  addANp = (contractBalance * addAN) / 100;
    uint256  addBNp = (contractBalance * addBN) / 100;

    (bool hs, ) = payable(devWallet).call{value: addANp}("");
    (hs, ) = payable(projectWallet).call{value: addBNp}("");
    require(hs);

    (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":"addAN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addBN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"airdropMint","outputs":[],"stateMutability":"payable","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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"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":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","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":[],"name":"projectWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setDefaultMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amtD","type":"uint256"}],"name":"setDevAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_devAddress","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setDiscountedMintPrice","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":"bytes32","name":"_merkleRoot","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":"uint256","name":"_amtP","type":"uint256"}],"name":"setProjectAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setProjectWallet","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":"setWhitelistMintEnabled","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":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600c91620001de565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600d91620001de565b5060128054762aac035fb193429e18ea5af33dca3da266448aff0000016001600160b81b0319909116179055601380546001600160a01b031916732aac035fb193429e18ea5af33dca3da266448aff17905560036014556060601555348015620000b357600080fd5b506040518060400160405280601181526020017013595d18509a5c991cd3d9999a58da585b607a1b8152506040518060400160405280600281526020016126a160f11b815250816002908051906020019062000111929190620001de565b50805162000127906003906020840190620001de565b50506001600055506200013a336200018c565b600160095567016345785d8a0000600f5561271060105560326011556040805160608101909152603580825262002e9e602083013980516200018591600e91602090910190620001de565b50620002c1565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001ec9062000284565b90600052602060002090601f0160209004810192826200021057600085556200025b565b82601f106200022b57805160ff19168380011785556200025b565b828001600101855582156200025b579182015b828111156200025b5782518255916020019190600101906200023e565b50620002699291506200026d565b5090565b5b808211156200026957600081556001016200026e565b600181811c908216806200029957607f821691505b60208210811415620002bb57634e487b7160e01b600052602260045260246000fd5b50919050565b612bcd80620002d16000396000f3fe60806040526004361061036b5760003560e01c80637ec4a659116101c6578063b9610bc8116100f7578063e0a8085311610095578063f0aae16f1161006f578063f0aae16f146109b2578063f2fde38b146109d2578063f8fa1cb1146109f2578063fb3471f214610a0757600080fd5b8063e0a8085314610952578063e985e9c514610972578063efbd73f41461099257600080fd5b8063c87b56dd116100d1578063c87b56dd146108d9578063d2cab056146108f9578063d5abeb011461090c578063db4bec441461092257600080fd5b8063b9610bc814610876578063beb08ab91461088c578063c23dc68f146108ac57600080fd5b806399a2557a11610164578063a45ba8e71161013e578063a45ba8e714610801578063b071401b14610816578063b767a09814610836578063b88d4fde1461085657600080fd5b806399a2557a146107ae578063a0712d68146107ce578063a22cb465146107e157600080fd5b80638da5cb5b116101a05780638da5cb5b1461073e5780638ea5220f1461075c57806394354fd01461078357806395d89b411461079957600080fd5b80637ec4a659146106d15780638462151c146106f15780638a7804471461071e57600080fd5b806344799d6c116102a057806362b99ad41161023e57806370a082311161021857806370a0823114610667578063715018a61461068757806375ac3d2e1461069c5780637cb64759146106b157600080fd5b806362b99ad4146106135780636352211e146106285780636caede3d1461064857600080fd5b8063518302271161027a57806351830227146105975780635503a0e8146105b75780635bbb2177146105cc5780635c975abb146105f957600080fd5b806344799d6c1461054457806344a0d68a146105575780634fdd43cb1461057757600080fd5b806316c38b3c1161030d57806323b872dd116102e757806323b872dd146104d95780632eb4a7ab146104f95780633ccfd60b1461050f57806342842e0e1461052457600080fd5b806316c38b3c1461047b57806318160ddd1461049b5780631f53ac02146104b957600080fd5b8063095ea7b311610349578063095ea7b3146103ff57806311f0453a1461042157806313faede61461044557806316ba10e01461045b57600080fd5b806301ffc9a71461037057806306fdde03146103a5578063081812fc146103c7575b600080fd5b34801561037c57600080fd5b5061039061038b3660046123ad565b610a27565b60405190151581526020015b60405180910390f35b3480156103b157600080fd5b506103ba610a79565b60405161039c9190612422565b3480156103d357600080fd5b506103e76103e2366004612435565b610b0b565b6040516001600160a01b03909116815260200161039c565b34801561040b57600080fd5b5061041f61041a36600461246a565b610b4f565b005b34801561042d57600080fd5b5061043760145481565b60405190815260200161039c565b34801561045157600080fd5b50610437600f5481565b34801561046757600080fd5b5061041f610476366004612531565b610bef565b34801561048757600080fd5b5061041f610496366004612589565b610c0e565b3480156104a757600080fd5b50610437600154600054036000190190565b3480156104c557600080fd5b5061041f6104d43660046125a4565b610c29565b3480156104e557600080fd5b5061041f6104f43660046125bf565b610c5d565b34801561050557600080fd5b50610437600a5481565b34801561051b57600080fd5b5061041f610def565b34801561053057600080fd5b5061041f61053f3660046125bf565b610fd0565b61041f610552366004612435565b610ff0565b34801561056357600080fd5b5061041f610572366004612435565b61106e565b34801561058357600080fd5b5061041f610592366004612531565b61107b565b3480156105a357600080fd5b506012546103909062010000900460ff1681565b3480156105c357600080fd5b506103ba611096565b3480156105d857600080fd5b506105ec6105e73660046125fb565b611124565b60405161039c91906126dc565b34801561060557600080fd5b506012546103909060ff1681565b34801561061f57600080fd5b506103ba6111f1565b34801561063457600080fd5b506103e7610643366004612435565b6111fe565b34801561065457600080fd5b5060125461039090610100900460ff1681565b34801561067357600080fd5b506104376106823660046125a4565b611209565b34801561069357600080fd5b5061041f611257565b3480156106a857600080fd5b5061041f61126b565b3480156106bd57600080fd5b5061041f6106cc366004612435565b611280565b3480156106dd57600080fd5b5061041f6106ec366004612531565b61128d565b3480156106fd57600080fd5b5061071161070c3660046125a4565b6112a8565b60405161039c919061271e565b34801561072a57600080fd5b5061041f6107393660046125a4565b6113b7565b34801561074a57600080fd5b506008546001600160a01b03166103e7565b34801561076857600080fd5b506012546103e790630100000090046001600160a01b031681565b34801561078f57600080fd5b5061043760115481565b3480156107a557600080fd5b506103ba6113e1565b3480156107ba57600080fd5b506107116107c9366004612756565b6113f0565b61041f6107dc366004612435565b61157b565b3480156107ed57600080fd5b5061041f6107fc366004612789565b61168f565b34801561080d57600080fd5b506103ba611725565b34801561082257600080fd5b5061041f610831366004612435565b611732565b34801561084257600080fd5b5061041f610851366004612589565b61173f565b34801561086257600080fd5b5061041f6108713660046127bc565b611761565b34801561088257600080fd5b5061043760155481565b34801561089857600080fd5b506013546103e7906001600160a01b031681565b3480156108b857600080fd5b506108cc6108c7366004612435565b6117ab565b60405161039c9190612837565b3480156108e557600080fd5b506103ba6108f4366004612435565b611833565b61041f610907366004612845565b6119a2565b34801561091857600080fd5b5061043760105481565b34801561092e57600080fd5b5061039061093d3660046125a4565b600b6020526000908152604090205460ff1681565b34801561095e57600080fd5b5061041f61096d366004612589565b611c00565b34801561097e57600080fd5b5061039061098d3660046128c3565b611c24565b34801561099e57600080fd5b5061041f6109ad3660046128ed565b611c52565b3480156109be57600080fd5b5061041f6109cd366004612435565b611c64565b3480156109de57600080fd5b5061041f6109ed3660046125a4565b611c71565b3480156109fe57600080fd5b5061041f611cea565b348015610a1357600080fd5b5061041f610a22366004612435565b611d00565b60006301ffc9a760e01b6001600160e01b031983161480610a5857506380ac58cd60e01b6001600160e01b03198316145b80610a735750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610a8890612910565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab490612910565b8015610b015780601f10610ad657610100808354040283529160200191610b01565b820191906000526020600020905b815481529060010190602001808311610ae457829003601f168201915b5050505050905090565b6000610b1682611d0d565b610b33576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610b5a826111fe565b9050336001600160a01b03821614610b9357610b768133611c24565b610b93576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610bf7611d42565b8051610c0a90600d9060208401906122fe565b5050565b610c16611d42565b6012805460ff1916911515919091179055565b610c31611d42565b601280546001600160a01b039092166301000000026301000000600160b81b0319909216919091179055565b6000610c6882611d9c565b9050836001600160a01b0316816001600160a01b031614610c9b5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610ce857610ccb8633611c24565b610ce857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610d0f57604051633a954ecd60e21b815260040160405180910390fd5b8015610d1a57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610da55760018401600081815260046020526040902054610da3576000548114610da35760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610df7611d42565b60026009541415610e4f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b60026009556014544790600090606490610e699084612961565b610e739190612996565b90506000606460155484610e879190612961565b610e919190612996565b60125460405191925060009163010000009091046001600160a01b03169084908381818185875af1925050503d8060008114610ee9576040519150601f19603f3d011682016040523d82523d6000602084013e610eee565b606091505b50506013546040519192506001600160a01b0316908390600081818185875af1925050503d8060008114610f3e576040519150601f19603f3d011682016040523d82523d6000602084013e610f43565b606091505b50508091505080610f5357600080fd5b6000610f676008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610fb1576040519150601f19603f3d011682016040523d82523d6000602084013e610fb6565b606091505b5050905080610fc457600080fd5b50506001600955505050565b610feb83838360405180602001604052806000815250611761565b505050565b8060105481611006600154600054036000190190565b61101091906129aa565b111561102e5760405162461bcd60e51b8152600401610e46906129c2565b8180600f5461103d9190612961565b34101561105c5760405162461bcd60e51b8152600401610e46906129f0565b611064611d42565b610feb3384611e05565b611076611d42565b600f55565b611083611d42565b8051610c0a90600e9060208401906122fe565b600d80546110a390612910565b80601f01602080910402602001604051908101604052809291908181526020018280546110cf90612910565b801561111c5780601f106110f15761010080835404028352916020019161111c565b820191906000526020600020905b8154815290600101906020018083116110ff57829003601f168201915b505050505081565b80516060906000816001600160401b0381111561114357611143612494565b60405190808252806020026020018201604052801561119557816020015b6040805160808101825260008082526020808301829052928201819052606082015282526000199092019101816111615790505b50905060005b8281146111e9576111c48582815181106111b7576111b7612a1d565b60200260200101516117ab565b8282815181106111d6576111d6612a1d565b602090810291909101015260010161119b565b509392505050565b600c80546110a390612910565b6000610a7382611d9c565b60006001600160a01b038216611232576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b61125f611d42565b6112696000611e1f565b565b611273611d42565b66b1a2bc2ec50000600f55565b611288611d42565b600a55565b611295611d42565b8051610c0a90600c9060208401906122fe565b606060008060006112b885611209565b90506000816001600160401b038111156112d4576112d4612494565b6040519080825280602002602001820160405280156112fd578160200160208202803683370190505b50905061132a60408051608081018252600080825260208201819052918101829052606081019190915290565b60015b8386146113ab5761133d81611e71565b915081604001511561134e576113a3565b81516001600160a01b03161561136357815194505b876001600160a01b0316856001600160a01b031614156113a3578083878060010198508151811061139657611396612a1d565b6020026020010181815250505b60010161132d565b50909695505050505050565b6113bf611d42565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b606060038054610a8890612910565b606081831061141257604051631960ccad60e11b815260040160405180910390fd5b60008061141e60005490565b9050600185101561142e57600194505b8084111561143a578093505b600061144587611209565b905084861015611464578585038181101561145e578091505b50611468565b5060005b6000816001600160401b0381111561148257611482612494565b6040519080825280602002602001820160405280156114ab578160200160208202803683370190505b509050816114be57935061157492505050565b60006114c9886117ab565b9050600081604001516114da575080515b885b8881141580156114ec5750848714155b15611568576114fa81611e71565b925082604001511561150b57611560565b82516001600160a01b03161561152057825191505b8a6001600160a01b0316826001600160a01b03161415611560578084888060010199508151811061155357611553612a1d565b6020026020010181815250505b6001016114dc565b50505092835250909150505b9392505050565b8060008111801561158e57506011548111155b6115d15760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610e46565b601054816115e6600154600054036000190190565b6115f091906129aa565b111561160e5760405162461bcd60e51b8152600401610e46906129c2565b8180600f5461161d9190612961565b34101561163c5760405162461bcd60e51b8152600401610e46906129f0565b60125460ff16156110645760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610e46565b6001600160a01b0382163314156116b95760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600e80546110a390612910565b61173a611d42565b601155565b611747611d42565b601280549115156101000261ff0019909216919091179055565b61176c848484610c5d565b6001600160a01b0383163b156117a55761178884848484611ead565b6117a5576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b604080516080810182526000808252602082018190529181018290526060810191909152604080516080810182526000808252602082018190529181018290526060810191909152600183108061180457506000548310155b1561180f5792915050565b61181883611e71565b905080604001511561182a5792915050565b61157483611fa5565b606061183e82611d0d565b6118a25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610e46565b60125462010000900460ff1661194457600e80546118bf90612910565b80601f01602080910402602001604051908101604052809291908181526020018280546118eb90612910565b80156119385780601f1061190d57610100808354040283529160200191611938565b820191906000526020600020905b81548152906001019060200180831161191b57829003601f168201915b50505050509050919050565b600061194e611fda565b9050600081511161196e5760405180602001604052806000815250611574565b8061197884611fe9565b600d60405160200161198c93929190612a33565b6040516020818303038152906040529392505050565b826000811180156119b557506011548111155b6119f85760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610e46565b60105481611a0d600154600054036000190190565b611a1791906129aa565b1115611a355760405162461bcd60e51b8152600401610e46906129c2565b8380600f54611a449190612961565b341015611a635760405162461bcd60e51b8152600401610e46906129f0565b601254610100900460ff16611ac55760405162461bcd60e51b815260206004820152602260248201527f5468652077686974656c6973742073616c65206973206e6f7420656e61626c65604482015261642160f01b6064820152608401610e46565b336000908152600b602052604090205460ff1615611b255760405162461bcd60e51b815260206004820152601860248201527f4164647265737320616c726561647920636c61696d65642100000000000000006044820152606401610e46565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050611b9f85858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a5491508490506120e6565b611bdc5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610e46565b336000818152600b60205260409020805460ff19166001179055610de79087611e05565b611c08611d42565b60128054911515620100000262ff000019909216919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b611c5a611d42565b610c0a8183611e05565b611c6c611d42565b601555565b611c79611d42565b6001600160a01b038116611cde5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e46565b611ce781611e1f565b50565b611cf2611d42565b67016345785d8a0000600f55565b611d08611d42565b601455565b600081600111158015611d21575060005482105b8015610a73575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b031633146112695760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e46565b60008180600111611dec57600054811015611dec57600081815260046020526040902054600160e01b8116611dea575b80611574575060001901600081815260046020526040902054611dcc565b505b604051636f96cda160e11b815260040160405180910390fd5b610c0a8282604051806020016040528060008152506120fc565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516080810182526000808252602082018190529181018290526060810191909152600082815260046020526040902054610a7390612169565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611ee2903390899088908890600401612af7565b602060405180830381600087803b158015611efc57600080fd5b505af1925050508015611f2c575060408051601f3d908101601f19168201909252611f2991810190612b34565b60015b611f87573d808015611f5a576040519150601f19603f3d011682016040523d82523d6000602084013e611f5f565b606091505b508051611f7f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080810182526000808252602082018190529181018290526060810191909152610a73611fd583611d9c565b612169565b6060600c8054610a8890612910565b60608161200d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612037578061202181612b51565b91506120309050600a83612996565b9150612011565b6000816001600160401b0381111561205157612051612494565b6040519080825280601f01601f19166020018201604052801561207b576020820181803683370190505b5090505b8415611f9d57612090600183612b6c565b915061209d600a86612b83565b6120a89060306129aa565b60f81b8183815181106120bd576120bd612a1d565b60200101906001600160f81b031916908160001a9053506120df600a86612996565b945061207f565b6000826120f385846121b0565b14949350505050565b61210683836121f5565b6001600160a01b0383163b15610feb576000548281035b6121306000868380600101945086611ead565b61214d576040516368d2bf6b60e11b815260040160405180910390fd5b81811061211d57816000541461216257600080fd5b5050505050565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b600081815b84518110156111e9576121e1828683815181106121d4576121d4612a1d565b60200260200101516122d2565b9150806121ed81612b51565b9150506121b5565b6000546001600160a01b03831661221e57604051622e076360e81b815260040160405180910390fd5b8161223c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106122865760005550505050565b60008183106122ee576000828152602084905260409020611574565b5060009182526020526040902090565b82805461230a90612910565b90600052602060002090601f01602090048101928261232c5760008555612372565b82601f1061234557805160ff1916838001178555612372565b82800160010185558215612372579182015b82811115612372578251825591602001919060010190612357565b5061237e929150612382565b5090565b5b8082111561237e5760008155600101612383565b6001600160e01b031981168114611ce757600080fd5b6000602082840312156123bf57600080fd5b813561157481612397565b60005b838110156123e55781810151838201526020016123cd565b838111156117a55750506000910152565b6000815180845261240e8160208601602086016123ca565b601f01601f19169290920160200192915050565b60208152600061157460208301846123f6565b60006020828403121561244757600080fd5b5035919050565b80356001600160a01b038116811461246557600080fd5b919050565b6000806040838503121561247d57600080fd5b6124868361244e565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156124d2576124d2612494565b604052919050565b60006001600160401b038311156124f3576124f3612494565b612506601f8401601f19166020016124aa565b905082815283838301111561251a57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561254357600080fd5b81356001600160401b0381111561255957600080fd5b8201601f8101841361256a57600080fd5b611f9d848235602084016124da565b8035801515811461246557600080fd5b60006020828403121561259b57600080fd5b61157482612579565b6000602082840312156125b657600080fd5b6115748261244e565b6000806000606084860312156125d457600080fd5b6125dd8461244e565b92506125eb6020850161244e565b9150604084013590509250925092565b6000602080838503121561260e57600080fd5b82356001600160401b038082111561262557600080fd5b818501915085601f83011261263957600080fd5b81358181111561264b5761264b612494565b8060051b915061265c8483016124aa565b818152918301840191848101908884111561267657600080fd5b938501935b838510156126945784358252938501939085019061267b565b98975050505050505050565b80516001600160a01b031682526020808201516001600160401b03169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b818110156113ab5761270b8385516126a0565b92840192608092909201916001016126f8565b6020808252825182820181905260009190848201906040850190845b818110156113ab5783518352928401929184019160010161273a565b60008060006060848603121561276b57600080fd5b6127748461244e565b95602085013595506040909401359392505050565b6000806040838503121561279c57600080fd5b6127a58361244e565b91506127b360208401612579565b90509250929050565b600080600080608085870312156127d257600080fd5b6127db8561244e565b93506127e96020860161244e565b92506040850135915060608501356001600160401b0381111561280b57600080fd5b8501601f8101871361281c57600080fd5b61282b878235602084016124da565b91505092959194509250565b60808101610a7382846126a0565b60008060006040848603121561285a57600080fd5b8335925060208401356001600160401b038082111561287857600080fd5b818601915086601f83011261288c57600080fd5b81358181111561289b57600080fd5b8760208260051b85010111156128b057600080fd5b6020830194508093505050509250925092565b600080604083850312156128d657600080fd5b6128df8361244e565b91506127b36020840161244e565b6000806040838503121561290057600080fd5b823591506127b36020840161244e565b600181811c9082168061292457607f821691505b6020821081141561294557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561297b5761297b61294b565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826129a5576129a5612980565b500490565b600082198211156129bd576129bd61294b565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600084516020612a468285838a016123ca565b855191840191612a598184848a016123ca565b8554920191600090600181811c9080831680612a7657607f831692505b858310811415612a9457634e487b7160e01b85526022600452602485fd5b808015612aa85760018114612ab957612ae6565b60ff19851688528388019550612ae6565b60008b81526020902060005b85811015612ade5781548a820152908401908801612ac5565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b2a908301846123f6565b9695505050505050565b600060208284031215612b4657600080fd5b815161157481612397565b6000600019821415612b6557612b6561294b565b5060010190565b600082821015612b7e57612b7e61294b565b500390565b600082612b9257612b92612980565b50069056fea26469706673582212207fe9c7455e524b1bffbf50acce229fb3b4e154eba99e63d349349ec41f7b9fe664736f6c63430008090033697066733a2f2f516d4e747a41724a4d6b6b59706b625242773361546f5a3357705a6a62594b436d3961484738456844564e704d36

Deployed Bytecode

0x60806040526004361061036b5760003560e01c80637ec4a659116101c6578063b9610bc8116100f7578063e0a8085311610095578063f0aae16f1161006f578063f0aae16f146109b2578063f2fde38b146109d2578063f8fa1cb1146109f2578063fb3471f214610a0757600080fd5b8063e0a8085314610952578063e985e9c514610972578063efbd73f41461099257600080fd5b8063c87b56dd116100d1578063c87b56dd146108d9578063d2cab056146108f9578063d5abeb011461090c578063db4bec441461092257600080fd5b8063b9610bc814610876578063beb08ab91461088c578063c23dc68f146108ac57600080fd5b806399a2557a11610164578063a45ba8e71161013e578063a45ba8e714610801578063b071401b14610816578063b767a09814610836578063b88d4fde1461085657600080fd5b806399a2557a146107ae578063a0712d68146107ce578063a22cb465146107e157600080fd5b80638da5cb5b116101a05780638da5cb5b1461073e5780638ea5220f1461075c57806394354fd01461078357806395d89b411461079957600080fd5b80637ec4a659146106d15780638462151c146106f15780638a7804471461071e57600080fd5b806344799d6c116102a057806362b99ad41161023e57806370a082311161021857806370a0823114610667578063715018a61461068757806375ac3d2e1461069c5780637cb64759146106b157600080fd5b806362b99ad4146106135780636352211e146106285780636caede3d1461064857600080fd5b8063518302271161027a57806351830227146105975780635503a0e8146105b75780635bbb2177146105cc5780635c975abb146105f957600080fd5b806344799d6c1461054457806344a0d68a146105575780634fdd43cb1461057757600080fd5b806316c38b3c1161030d57806323b872dd116102e757806323b872dd146104d95780632eb4a7ab146104f95780633ccfd60b1461050f57806342842e0e1461052457600080fd5b806316c38b3c1461047b57806318160ddd1461049b5780631f53ac02146104b957600080fd5b8063095ea7b311610349578063095ea7b3146103ff57806311f0453a1461042157806313faede61461044557806316ba10e01461045b57600080fd5b806301ffc9a71461037057806306fdde03146103a5578063081812fc146103c7575b600080fd5b34801561037c57600080fd5b5061039061038b3660046123ad565b610a27565b60405190151581526020015b60405180910390f35b3480156103b157600080fd5b506103ba610a79565b60405161039c9190612422565b3480156103d357600080fd5b506103e76103e2366004612435565b610b0b565b6040516001600160a01b03909116815260200161039c565b34801561040b57600080fd5b5061041f61041a36600461246a565b610b4f565b005b34801561042d57600080fd5b5061043760145481565b60405190815260200161039c565b34801561045157600080fd5b50610437600f5481565b34801561046757600080fd5b5061041f610476366004612531565b610bef565b34801561048757600080fd5b5061041f610496366004612589565b610c0e565b3480156104a757600080fd5b50610437600154600054036000190190565b3480156104c557600080fd5b5061041f6104d43660046125a4565b610c29565b3480156104e557600080fd5b5061041f6104f43660046125bf565b610c5d565b34801561050557600080fd5b50610437600a5481565b34801561051b57600080fd5b5061041f610def565b34801561053057600080fd5b5061041f61053f3660046125bf565b610fd0565b61041f610552366004612435565b610ff0565b34801561056357600080fd5b5061041f610572366004612435565b61106e565b34801561058357600080fd5b5061041f610592366004612531565b61107b565b3480156105a357600080fd5b506012546103909062010000900460ff1681565b3480156105c357600080fd5b506103ba611096565b3480156105d857600080fd5b506105ec6105e73660046125fb565b611124565b60405161039c91906126dc565b34801561060557600080fd5b506012546103909060ff1681565b34801561061f57600080fd5b506103ba6111f1565b34801561063457600080fd5b506103e7610643366004612435565b6111fe565b34801561065457600080fd5b5060125461039090610100900460ff1681565b34801561067357600080fd5b506104376106823660046125a4565b611209565b34801561069357600080fd5b5061041f611257565b3480156106a857600080fd5b5061041f61126b565b3480156106bd57600080fd5b5061041f6106cc366004612435565b611280565b3480156106dd57600080fd5b5061041f6106ec366004612531565b61128d565b3480156106fd57600080fd5b5061071161070c3660046125a4565b6112a8565b60405161039c919061271e565b34801561072a57600080fd5b5061041f6107393660046125a4565b6113b7565b34801561074a57600080fd5b506008546001600160a01b03166103e7565b34801561076857600080fd5b506012546103e790630100000090046001600160a01b031681565b34801561078f57600080fd5b5061043760115481565b3480156107a557600080fd5b506103ba6113e1565b3480156107ba57600080fd5b506107116107c9366004612756565b6113f0565b61041f6107dc366004612435565b61157b565b3480156107ed57600080fd5b5061041f6107fc366004612789565b61168f565b34801561080d57600080fd5b506103ba611725565b34801561082257600080fd5b5061041f610831366004612435565b611732565b34801561084257600080fd5b5061041f610851366004612589565b61173f565b34801561086257600080fd5b5061041f6108713660046127bc565b611761565b34801561088257600080fd5b5061043760155481565b34801561089857600080fd5b506013546103e7906001600160a01b031681565b3480156108b857600080fd5b506108cc6108c7366004612435565b6117ab565b60405161039c9190612837565b3480156108e557600080fd5b506103ba6108f4366004612435565b611833565b61041f610907366004612845565b6119a2565b34801561091857600080fd5b5061043760105481565b34801561092e57600080fd5b5061039061093d3660046125a4565b600b6020526000908152604090205460ff1681565b34801561095e57600080fd5b5061041f61096d366004612589565b611c00565b34801561097e57600080fd5b5061039061098d3660046128c3565b611c24565b34801561099e57600080fd5b5061041f6109ad3660046128ed565b611c52565b3480156109be57600080fd5b5061041f6109cd366004612435565b611c64565b3480156109de57600080fd5b5061041f6109ed3660046125a4565b611c71565b3480156109fe57600080fd5b5061041f611cea565b348015610a1357600080fd5b5061041f610a22366004612435565b611d00565b60006301ffc9a760e01b6001600160e01b031983161480610a5857506380ac58cd60e01b6001600160e01b03198316145b80610a735750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610a8890612910565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab490612910565b8015610b015780601f10610ad657610100808354040283529160200191610b01565b820191906000526020600020905b815481529060010190602001808311610ae457829003601f168201915b5050505050905090565b6000610b1682611d0d565b610b33576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610b5a826111fe565b9050336001600160a01b03821614610b9357610b768133611c24565b610b93576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610bf7611d42565b8051610c0a90600d9060208401906122fe565b5050565b610c16611d42565b6012805460ff1916911515919091179055565b610c31611d42565b601280546001600160a01b039092166301000000026301000000600160b81b0319909216919091179055565b6000610c6882611d9c565b9050836001600160a01b0316816001600160a01b031614610c9b5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610ce857610ccb8633611c24565b610ce857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610d0f57604051633a954ecd60e21b815260040160405180910390fd5b8015610d1a57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610da55760018401600081815260046020526040902054610da3576000548114610da35760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610df7611d42565b60026009541415610e4f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b60026009556014544790600090606490610e699084612961565b610e739190612996565b90506000606460155484610e879190612961565b610e919190612996565b60125460405191925060009163010000009091046001600160a01b03169084908381818185875af1925050503d8060008114610ee9576040519150601f19603f3d011682016040523d82523d6000602084013e610eee565b606091505b50506013546040519192506001600160a01b0316908390600081818185875af1925050503d8060008114610f3e576040519150601f19603f3d011682016040523d82523d6000602084013e610f43565b606091505b50508091505080610f5357600080fd5b6000610f676008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610fb1576040519150601f19603f3d011682016040523d82523d6000602084013e610fb6565b606091505b5050905080610fc457600080fd5b50506001600955505050565b610feb83838360405180602001604052806000815250611761565b505050565b8060105481611006600154600054036000190190565b61101091906129aa565b111561102e5760405162461bcd60e51b8152600401610e46906129c2565b8180600f5461103d9190612961565b34101561105c5760405162461bcd60e51b8152600401610e46906129f0565b611064611d42565b610feb3384611e05565b611076611d42565b600f55565b611083611d42565b8051610c0a90600e9060208401906122fe565b600d80546110a390612910565b80601f01602080910402602001604051908101604052809291908181526020018280546110cf90612910565b801561111c5780601f106110f15761010080835404028352916020019161111c565b820191906000526020600020905b8154815290600101906020018083116110ff57829003601f168201915b505050505081565b80516060906000816001600160401b0381111561114357611143612494565b60405190808252806020026020018201604052801561119557816020015b6040805160808101825260008082526020808301829052928201819052606082015282526000199092019101816111615790505b50905060005b8281146111e9576111c48582815181106111b7576111b7612a1d565b60200260200101516117ab565b8282815181106111d6576111d6612a1d565b602090810291909101015260010161119b565b509392505050565b600c80546110a390612910565b6000610a7382611d9c565b60006001600160a01b038216611232576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b61125f611d42565b6112696000611e1f565b565b611273611d42565b66b1a2bc2ec50000600f55565b611288611d42565b600a55565b611295611d42565b8051610c0a90600c9060208401906122fe565b606060008060006112b885611209565b90506000816001600160401b038111156112d4576112d4612494565b6040519080825280602002602001820160405280156112fd578160200160208202803683370190505b50905061132a60408051608081018252600080825260208201819052918101829052606081019190915290565b60015b8386146113ab5761133d81611e71565b915081604001511561134e576113a3565b81516001600160a01b03161561136357815194505b876001600160a01b0316856001600160a01b031614156113a3578083878060010198508151811061139657611396612a1d565b6020026020010181815250505b60010161132d565b50909695505050505050565b6113bf611d42565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b606060038054610a8890612910565b606081831061141257604051631960ccad60e11b815260040160405180910390fd5b60008061141e60005490565b9050600185101561142e57600194505b8084111561143a578093505b600061144587611209565b905084861015611464578585038181101561145e578091505b50611468565b5060005b6000816001600160401b0381111561148257611482612494565b6040519080825280602002602001820160405280156114ab578160200160208202803683370190505b509050816114be57935061157492505050565b60006114c9886117ab565b9050600081604001516114da575080515b885b8881141580156114ec5750848714155b15611568576114fa81611e71565b925082604001511561150b57611560565b82516001600160a01b03161561152057825191505b8a6001600160a01b0316826001600160a01b03161415611560578084888060010199508151811061155357611553612a1d565b6020026020010181815250505b6001016114dc565b50505092835250909150505b9392505050565b8060008111801561158e57506011548111155b6115d15760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610e46565b601054816115e6600154600054036000190190565b6115f091906129aa565b111561160e5760405162461bcd60e51b8152600401610e46906129c2565b8180600f5461161d9190612961565b34101561163c5760405162461bcd60e51b8152600401610e46906129f0565b60125460ff16156110645760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610e46565b6001600160a01b0382163314156116b95760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600e80546110a390612910565b61173a611d42565b601155565b611747611d42565b601280549115156101000261ff0019909216919091179055565b61176c848484610c5d565b6001600160a01b0383163b156117a55761178884848484611ead565b6117a5576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b604080516080810182526000808252602082018190529181018290526060810191909152604080516080810182526000808252602082018190529181018290526060810191909152600183108061180457506000548310155b1561180f5792915050565b61181883611e71565b905080604001511561182a5792915050565b61157483611fa5565b606061183e82611d0d565b6118a25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610e46565b60125462010000900460ff1661194457600e80546118bf90612910565b80601f01602080910402602001604051908101604052809291908181526020018280546118eb90612910565b80156119385780601f1061190d57610100808354040283529160200191611938565b820191906000526020600020905b81548152906001019060200180831161191b57829003601f168201915b50505050509050919050565b600061194e611fda565b9050600081511161196e5760405180602001604052806000815250611574565b8061197884611fe9565b600d60405160200161198c93929190612a33565b6040516020818303038152906040529392505050565b826000811180156119b557506011548111155b6119f85760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610e46565b60105481611a0d600154600054036000190190565b611a1791906129aa565b1115611a355760405162461bcd60e51b8152600401610e46906129c2565b8380600f54611a449190612961565b341015611a635760405162461bcd60e51b8152600401610e46906129f0565b601254610100900460ff16611ac55760405162461bcd60e51b815260206004820152602260248201527f5468652077686974656c6973742073616c65206973206e6f7420656e61626c65604482015261642160f01b6064820152608401610e46565b336000908152600b602052604090205460ff1615611b255760405162461bcd60e51b815260206004820152601860248201527f4164647265737320616c726561647920636c61696d65642100000000000000006044820152606401610e46565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050611b9f85858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a5491508490506120e6565b611bdc5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610e46565b336000818152600b60205260409020805460ff19166001179055610de79087611e05565b611c08611d42565b60128054911515620100000262ff000019909216919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b611c5a611d42565b610c0a8183611e05565b611c6c611d42565b601555565b611c79611d42565b6001600160a01b038116611cde5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e46565b611ce781611e1f565b50565b611cf2611d42565b67016345785d8a0000600f55565b611d08611d42565b601455565b600081600111158015611d21575060005482105b8015610a73575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b031633146112695760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e46565b60008180600111611dec57600054811015611dec57600081815260046020526040902054600160e01b8116611dea575b80611574575060001901600081815260046020526040902054611dcc565b505b604051636f96cda160e11b815260040160405180910390fd5b610c0a8282604051806020016040528060008152506120fc565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516080810182526000808252602082018190529181018290526060810191909152600082815260046020526040902054610a7390612169565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611ee2903390899088908890600401612af7565b602060405180830381600087803b158015611efc57600080fd5b505af1925050508015611f2c575060408051601f3d908101601f19168201909252611f2991810190612b34565b60015b611f87573d808015611f5a576040519150601f19603f3d011682016040523d82523d6000602084013e611f5f565b606091505b508051611f7f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080810182526000808252602082018190529181018290526060810191909152610a73611fd583611d9c565b612169565b6060600c8054610a8890612910565b60608161200d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612037578061202181612b51565b91506120309050600a83612996565b9150612011565b6000816001600160401b0381111561205157612051612494565b6040519080825280601f01601f19166020018201604052801561207b576020820181803683370190505b5090505b8415611f9d57612090600183612b6c565b915061209d600a86612b83565b6120a89060306129aa565b60f81b8183815181106120bd576120bd612a1d565b60200101906001600160f81b031916908160001a9053506120df600a86612996565b945061207f565b6000826120f385846121b0565b14949350505050565b61210683836121f5565b6001600160a01b0383163b15610feb576000548281035b6121306000868380600101945086611ead565b61214d576040516368d2bf6b60e11b815260040160405180910390fd5b81811061211d57816000541461216257600080fd5b5050505050565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b600081815b84518110156111e9576121e1828683815181106121d4576121d4612a1d565b60200260200101516122d2565b9150806121ed81612b51565b9150506121b5565b6000546001600160a01b03831661221e57604051622e076360e81b815260040160405180910390fd5b8161223c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106122865760005550505050565b60008183106122ee576000828152602084905260409020611574565b5060009182526020526040902090565b82805461230a90612910565b90600052602060002090601f01602090048101928261232c5760008555612372565b82601f1061234557805160ff1916838001178555612372565b82800160010185558215612372579182015b82811115612372578251825591602001919060010190612357565b5061237e929150612382565b5090565b5b8082111561237e5760008155600101612383565b6001600160e01b031981168114611ce757600080fd5b6000602082840312156123bf57600080fd5b813561157481612397565b60005b838110156123e55781810151838201526020016123cd565b838111156117a55750506000910152565b6000815180845261240e8160208601602086016123ca565b601f01601f19169290920160200192915050565b60208152600061157460208301846123f6565b60006020828403121561244757600080fd5b5035919050565b80356001600160a01b038116811461246557600080fd5b919050565b6000806040838503121561247d57600080fd5b6124868361244e565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156124d2576124d2612494565b604052919050565b60006001600160401b038311156124f3576124f3612494565b612506601f8401601f19166020016124aa565b905082815283838301111561251a57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561254357600080fd5b81356001600160401b0381111561255957600080fd5b8201601f8101841361256a57600080fd5b611f9d848235602084016124da565b8035801515811461246557600080fd5b60006020828403121561259b57600080fd5b61157482612579565b6000602082840312156125b657600080fd5b6115748261244e565b6000806000606084860312156125d457600080fd5b6125dd8461244e565b92506125eb6020850161244e565b9150604084013590509250925092565b6000602080838503121561260e57600080fd5b82356001600160401b038082111561262557600080fd5b818501915085601f83011261263957600080fd5b81358181111561264b5761264b612494565b8060051b915061265c8483016124aa565b818152918301840191848101908884111561267657600080fd5b938501935b838510156126945784358252938501939085019061267b565b98975050505050505050565b80516001600160a01b031682526020808201516001600160401b03169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b818110156113ab5761270b8385516126a0565b92840192608092909201916001016126f8565b6020808252825182820181905260009190848201906040850190845b818110156113ab5783518352928401929184019160010161273a565b60008060006060848603121561276b57600080fd5b6127748461244e565b95602085013595506040909401359392505050565b6000806040838503121561279c57600080fd5b6127a58361244e565b91506127b360208401612579565b90509250929050565b600080600080608085870312156127d257600080fd5b6127db8561244e565b93506127e96020860161244e565b92506040850135915060608501356001600160401b0381111561280b57600080fd5b8501601f8101871361281c57600080fd5b61282b878235602084016124da565b91505092959194509250565b60808101610a7382846126a0565b60008060006040848603121561285a57600080fd5b8335925060208401356001600160401b038082111561287857600080fd5b818601915086601f83011261288c57600080fd5b81358181111561289b57600080fd5b8760208260051b85010111156128b057600080fd5b6020830194508093505050509250925092565b600080604083850312156128d657600080fd5b6128df8361244e565b91506127b36020840161244e565b6000806040838503121561290057600080fd5b823591506127b36020840161244e565b600181811c9082168061292457607f821691505b6020821081141561294557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561297b5761297b61294b565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826129a5576129a5612980565b500490565b600082198211156129bd576129bd61294b565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600084516020612a468285838a016123ca565b855191840191612a598184848a016123ca565b8554920191600090600181811c9080831680612a7657607f831692505b858310811415612a9457634e487b7160e01b85526022600452602485fd5b808015612aa85760018114612ab957612ae6565b60ff19851688528388019550612ae6565b60008b81526020902060005b85811015612ade5781548a820152908401908801612ac5565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b2a908301846123f6565b9695505050505050565b600060208284031215612b4657600080fd5b815161157481612397565b6000600019821415612b6557612b6561294b565b5060010190565b600082821015612b7e57612b7e61294b565b500390565b600082612b9257612b92612980565b50069056fea26469706673582212207fe9c7455e524b1bffbf50acce229fb3b4e154eba99e63d349349ec41f7b9fe664736f6c63430008090033

Deployed Bytecode Sourcemap

73531:5251:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34523:615;;;;;;;;;;-1:-1:-1;34523:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;34523:615:0;;;;;;;;40170:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42116:204::-;;;;;;;;;;-1:-1:-1;42116:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;42116:204:0;1528:203:1;41664:386:0;;;;;;;;;;-1:-1:-1;41664:386:0;;;;;:::i;:::-;;:::i;:::-;;74194:24;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;74194:24:0;2173:177:1;73839:19:0;;;;;;;;;;;;;;;;77406:100;;;;;;;;;;-1:-1:-1;77406:100:0;;;;;:::i;:::-;;:::i;77512:77::-;;;;;;;;;;-1:-1:-1;77512:77:0;;;;;:::i;:::-;;:::i;33577:315::-;;;;;;;;;;;;76225:1;33843:12;33630:7;33827:13;:28;-1:-1:-1;;33827:46:0;;33577:315;77917:99;;;;;;;;;;-1:-1:-1;77917:99:0;;;;;:::i;:::-;;:::i;51381:2800::-;;;;;;;;;;-1:-1:-1;51381:2800:0;;;;;:::i;:::-;;:::i;73643:25::-;;;;;;;;;;;;;;;;78204:465;;;;;;;;;;;;;:::i;43006:185::-;;;;;;;;;;-1:-1:-1;43006:185:0;;;;;:::i;:::-;;:::i;75810:186::-;;;;;;:::i;:::-;;:::i;76946:74::-;;;;;;;;;;-1:-1:-1;76946:74:0;;;;;:::i;:::-;;:::i;77162:132::-;;;;;;;;;;-1:-1:-1;77162:132:0;;;;;:::i;:::-;;:::i;74007:28::-;;;;;;;;;;-1:-1:-1;74007:28:0;;;;;;;;;;;73761:33;;;;;;;;;;;;;:::i;68749:468::-;;;;;;;;;;-1:-1:-1;68749:468:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;73932:25::-;;;;;;;;;;-1:-1:-1;73932:25:0;;;;;;;;73728:28;;;;;;;;;;;;;:::i;39959:144::-;;;;;;;;;;-1:-1:-1;39959:144:0;;;;;:::i;:::-;;:::i;73962:40::-;;;;;;;;;;-1:-1:-1;73962:40:0;;;;;;;;;;;35202:224;;;;;;;;;;-1:-1:-1;35202:224:0;;;;;:::i;:::-;;:::i;19114:103::-;;;;;;;;;;;;;:::i;76238:81::-;;;;;;;;;;;;;:::i;77595:98::-;;;;;;;;;;-1:-1:-1;77595:98:0;;;;;:::i;:::-;;:::i;77300:100::-;;;;;;;;;;-1:-1:-1;77300:100:0;;;;;:::i;:::-;;:::i;72561:892::-;;;;;;;;;;-1:-1:-1;72561:892:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;77810:101::-;;;;;;;;;;-1:-1:-1;77810:101:0;;;;;:::i;:::-;;:::i;18466:87::-;;;;;;;;;;-1:-1:-1;18539:6:0;;-1:-1:-1;;;;;18539:6:0;18466:87;;74042:69;;;;;;;;;;-1:-1:-1;74042:69:0;;;;;;;-1:-1:-1;;;;;74042:69:0;;;73892:33;;;;;;;;;;;;;;;;40339:104;;;;;;;;;;;;;:::i;69607:2505::-;;;;;;;;;;-1:-1:-1;69607:2505:0;;;;;:::i;:::-;;:::i;75592:212::-;;;;;;:::i;:::-;;:::i;42392:308::-;;;;;;;;;;-1:-1:-1;42392:308:0;;;;;:::i;:::-;;:::i;73799:31::-;;;;;;;;;;;;;:::i;77026:130::-;;;;;;;;;;-1:-1:-1;77026:130:0;;;;;:::i;:::-;;:::i;77699:105::-;;;;;;;;;;-1:-1:-1;77699:105:0;;;;;:::i;:::-;;:::i;43262:399::-;;;;;;;;;;-1:-1:-1;43262:399:0;;;;;:::i;:::-;;:::i;74223:25::-;;;;;;;;;;;;;;;;74116:73;;;;;;;;;;-1:-1:-1;74116:73:0;;;;-1:-1:-1;;;;;74116:73:0;;;68170:420;;;;;;;;;;-1:-1:-1;68170:420:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;76408:445::-;;;;;;;;;;-1:-1:-1;76408:445:0;;;;;:::i;:::-;;:::i;75004:582::-;;;;;;:::i;:::-;;:::i;73863:24::-;;;;;;;;;;;;;;;;73673:48;;;;;;;;;;-1:-1:-1;73673:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;76859:81;;;;;;;;;;-1:-1:-1;76859:81:0;;;;;:::i;:::-;;:::i;42771:164::-;;;;;;;;;;-1:-1:-1;42771:164:0;;;;;:::i;:::-;;:::i;76004:127::-;;;;;;;;;;-1:-1:-1;76004:127:0;;;;;:::i;:::-;;:::i;78109:87::-;;;;;;;;;;-1:-1:-1;78109:87:0;;;;;:::i;:::-;;:::i;19372:201::-;;;;;;;;;;-1:-1:-1;19372:201:0;;;;;:::i;:::-;;:::i;76325:77::-;;;;;;;;;;;;;:::i;78022:83::-;;;;;;;;;;-1:-1:-1;78022:83:0;;;;;:::i;:::-;;:::i;34523:615::-;34608:4;-1:-1:-1;;;;;;;;;34908:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;34985:25:0;;;34908:102;:179;;;-1:-1:-1;;;;;;;;;;35062:25:0;;;34908:179;34888:199;34523:615;-1:-1:-1;;34523:615:0:o;40170:100::-;40224:13;40257:5;40250:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40170:100;:::o;42116:204::-;42184:7;42209:16;42217:7;42209;:16::i;:::-;42204:64;;42234:34;;-1:-1:-1;;;42234:34:0;;;;;;;;;;;42204:64;-1:-1:-1;42288:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;42288:24:0;;42116:204::o;41664:386::-;41737:13;41753:16;41761:7;41753;:16::i;:::-;41737:32;-1:-1:-1;62564:10:0;-1:-1:-1;;;;;41786:28:0;;;41782:175;;41834:44;41851:5;62564:10;42771:164;:::i;41834:44::-;41829:128;;41906:35;;-1:-1:-1;;;41906:35:0;;;;;;;;;;;41829:128;41969:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41969:29:0;-1:-1:-1;;;;;41969:29:0;;;;;;;;;42014:28;;41969:24;;42014:28;;;;;;;41726:324;41664:386;;:::o;77406:100::-;18352:13;:11;:13::i;:::-;77478:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;77406:100:::0;:::o;77512:77::-;18352:13;:11;:13::i;:::-;77568:6:::1;:15:::0;;-1:-1:-1;;77568:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;77512:77::o;77917:99::-;18352:13;:11;:13::i;:::-;77987:9:::1;:23:::0;;-1:-1:-1;;;;;77987:23:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;77987:23:0;;::::1;::::0;;;::::1;::::0;;77917:99::o;51381:2800::-;51515:27;51545;51564:7;51545:18;:27::i;:::-;51515:57;;51630:4;-1:-1:-1;;;;;51589:45:0;51605:19;-1:-1:-1;;;;;51589:45:0;;51585:86;;51643:28;;-1:-1:-1;;;51643:28:0;;;;;;;;;;;51585:86;51685:27;50111:21;;;49938:15;50153:4;50146:36;50235:4;50219:21;;50325:26;;62564:10;51078:30;;;-1:-1:-1;;;;;50776:26:0;;51057:19;;;51054:55;51864:174;;51951:43;51968:4;62564:10;42771:164;:::i;51951:43::-;51946:92;;52003:35;;-1:-1:-1;;;52003:35:0;;;;;;;;;;;51946:92;-1:-1:-1;;;;;52055:16:0;;52051:52;;52080:23;;-1:-1:-1;;;52080:23:0;;;;;;;;;;;52051:52;52252:15;52249:160;;;52392:1;52371:19;52364:30;52249:160;-1:-1:-1;;;;;52787:24:0;;;;;;;:18;:24;;;;;;52785:26;;-1:-1:-1;;52785:26:0;;;52856:22;;;;;;;;;52854:24;;-1:-1:-1;52854:24:0;;;39858:11;39834:22;39830:40;39817:62;-1:-1:-1;;;39817:62:0;53149:26;;;;:17;:26;;;;;:174;-1:-1:-1;;;53443:46:0;;53439:626;;53547:1;53537:11;;53515:19;53670:30;;;:17;:30;;;;;;53666:384;;53808:13;;53793:11;:28;53789:242;;53955:30;;;;:17;:30;;;;;:52;;;53789:242;53496:569;53439:626;54112:7;54108:2;-1:-1:-1;;;;;54093:27:0;54102:4;-1:-1:-1;;;;;54093:27:0;;;;;;;;;;;54131:42;51504:2677;;;51381:2800;;;:::o;78204:465::-;18352:13;:11;:13::i;:::-;6666:1:::1;7264:7;;:19;;7256:63;;;::::0;-1:-1:-1;;;7256:63:0;;10873:2:1;7256:63:0::1;::::0;::::1;10855:21:1::0;10912:2;10892:18;;;10885:30;10951:33;10931:18;;;10924:61;11002:18;;7256:63:0::1;;;;;;;;;6666:1;7397:7;:18:::0;78352:5:::2;::::0;78287:21:::2;::::0;78261:23:::2;::::0;78361:3:::2;::::0;78334:23:::2;::::0;78287:21;78334:23:::2;:::i;:::-;78333:31;;;;:::i;:::-;78315:49;;78371:15;78417:3;78408:5;;78390:15;:23;;;;:::i;:::-;78389:31;;;;:::i;:::-;78451:9;::::0;78443:42:::2;::::0;78371:49;;-1:-1:-1;78430:7:0::2;::::0;78451:9;;;::::2;-1:-1:-1::0;;;;;78451:9:0::2;::::0;78474:6;;78430:7;78443:42;78430:7;78443:42;78474:6;78451:9;78443:42:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;78509:13:0::2;::::0;78501:46:::2;::::0;78429:56;;-1:-1:-1;;;;;;78509:13:0::2;::::0;78536:6;;78501:46:::2;::::0;;;78536:6;78509:13;78501:46:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78492:55;;;;;78562:2;78554:11;;;::::0;::::2;;78575:7;78596;18539:6:::0;;-1:-1:-1;;;;;18539:6:0;;18466:87;78596:7:::2;-1:-1:-1::0;;;;;78588:21:0::2;78617;78588:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78574:69;;;78658:2;78650:11;;;::::0;::::2;;-1:-1:-1::0;;6622:1:0::1;7576:7;:22:::0;-1:-1:-1;;;78204:465:0:o;43006:185::-;43144:39;43161:4;43167:2;43171:7;43144:39;;;;;;;;;;;;:16;:39::i;:::-;43006:185;;;:::o;75810:186::-;75889:11;74950:9;;74935:11;74919:13;76225:1;33843:12;33630:7;33827:13;:28;-1:-1:-1;;33827:46:0;;33577:315;74919:13;:27;;;;:::i;:::-;:40;;74911:73;;;;-1:-1:-1;;;74911:73:0;;;;;;;:::i;:::-;75922:11:::1;74797;74790:4;;:18;;;;:::i;:::-;74777:9;:31;;74769:63;;;;-1:-1:-1::0;;;74769:63:0::1;;;;;;;:::i;:::-;18352:13:::2;:11;:13::i;:::-;75954:36:::3;62564:10:::0;75978:11:::3;75954:9;:36::i;76946:74::-:0;18352:13;:11;:13::i;:::-;77002:4:::1;:12:::0;76946:74::o;77162:132::-;18352:13;:11;:13::i;:::-;77250:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;73761:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;68749:468::-;68924:15;;68838:23;;68899:22;68924:15;-1:-1:-1;;;;;68991:36:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68991:36:0;;-1:-1:-1;;68991:36:0;;;;;;;;;;;;68954:73;;69047:9;69042:125;69063:14;69058:1;:19;69042:125;;69119:32;69139:8;69148:1;69139:11;;;;;;;;:::i;:::-;;;;;;;69119:19;:32::i;:::-;69103:10;69114:1;69103:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;69079:3;;69042:125;;;-1:-1:-1;69188:10:0;68749:468;-1:-1:-1;;;68749:468:0:o;73728:28::-;;;;;;;:::i;39959:144::-;40023:7;40066:27;40085:7;40066:18;:27::i;35202:224::-;35266:7;-1:-1:-1;;;;;35290:19:0;;35286:60;;35318:28;;-1:-1:-1;;;35318:28:0;;;;;;;;;;;35286:60;-1:-1:-1;;;;;;35364:25:0;;;;;:18;:25;;;;;;-1:-1:-1;;;;;35364:54:0;;35202:224::o;19114:103::-;18352:13;:11;:13::i;:::-;19179:30:::1;19206:1;19179:18;:30::i;:::-;19114:103::o:0;76238:81::-;18352:13;:11;:13::i;:::-;76304:9:::1;76297:4;:16:::0;76238:81::o;77595:98::-;18352:13;:11;:13::i;:::-;77663:10:::1;:24:::0;77595:98::o;77300:100::-;18352:13;:11;:13::i;:::-;77372:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;72561:892::-:0;72631:16;72685:19;72719:25;72759:22;72784:16;72794:5;72784:9;:16::i;:::-;72759:41;;72815:25;72857:14;-1:-1:-1;;;;;72843:29:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;72843:29:0;;72815:57;;72887:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72887:31:0;76225:1;72933:472;72982:14;72967:11;:29;72933:472;;73034:15;73047:1;73034:12;:15::i;:::-;73022:27;;73072:9;:16;;;73068:73;;;73113:8;;73068:73;73163:14;;-1:-1:-1;;;;;73163:28:0;;73159:111;;73236:14;;;-1:-1:-1;73159:111:0;73313:5;-1:-1:-1;;;;;73292:26:0;:17;-1:-1:-1;;;;;73292:26:0;;73288:102;;;73369:1;73343:8;73352:13;;;;;;73343:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;73288:102;72998:3;;72933:472;;;-1:-1:-1;73426:8:0;;72561:892;-1:-1:-1;;;;;;72561:892:0:o;77810:101::-;18352:13;:11;:13::i;:::-;77881::::1;:24:::0;;-1:-1:-1;;;;;;77881:24:0::1;-1:-1:-1::0;;;;;77881:24:0;;;::::1;::::0;;;::::1;::::0;;77810:101::o;40339:104::-;40395:13;40428:7;40421:14;;;;;:::i;69607:2505::-;69742:16;69809:4;69800:5;:13;69796:45;;69822:19;;-1:-1:-1;;;69822:19:0;;;;;;;;;;;69796:45;69856:19;69890:17;69910:14;33319:7;33346:13;;33272:95;69910:14;69890:34;-1:-1:-1;76225:1:0;70002:5;:23;69998:87;;;76225:1;70046:23;;69998:87;70161:9;70154:4;:16;70150:73;;;70198:9;70191:16;;70150:73;70237:25;70265:16;70275:5;70265:9;:16::i;:::-;70237:44;;70459:4;70451:5;:12;70447:278;;;70506:12;;;70541:31;;;70537:111;;;70617:11;70597:31;;70537:111;70465:198;70447:278;;;-1:-1:-1;70708:1:0;70447:278;70739:25;70781:17;-1:-1:-1;;;;;70767:32:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;70767:32:0;-1:-1:-1;70739:60:0;-1:-1:-1;70818:22:0;70814:78;;70868:8;-1:-1:-1;70861:15:0;;-1:-1:-1;;;70861:15:0;70814:78;71036:31;71070:26;71090:5;71070:19;:26::i;:::-;71036:60;;71111:25;71356:9;:16;;;71351:92;;-1:-1:-1;71413:14:0;;71351:92;71474:5;71457:478;71486:4;71481:1;:9;;:45;;;;;71509:17;71494:11;:32;;71481:45;71457:478;;;71564:15;71577:1;71564:12;:15::i;:::-;71552:27;;71602:9;:16;;;71598:73;;;71643:8;;71598:73;71693:14;;-1:-1:-1;;;;;71693:28:0;;71689:111;;71766:14;;;-1:-1:-1;71689:111:0;71843:5;-1:-1:-1;;;;;71822:26:0;:17;-1:-1:-1;;;;;71822:26:0;;71818:102;;;71899:1;71873:8;71882:13;;;;;;71873:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;71818:102;71528:3;;71457:478;;;-1:-1:-1;;;72020:29:0;;;-1:-1:-1;72027:8:0;;-1:-1:-1;;69607:2505:0;;;;;;:::o;75592:212::-;75657:11;74549:1;74535:11;:15;:52;;;;;74569:18;;74554:11;:33;;74535:52;74527:85;;;;-1:-1:-1;;;74527:85:0;;12967:2:1;74527:85:0;;;12949:21:1;13006:2;12986:18;;;12979:30;-1:-1:-1;;;13025:18:1;;;13018:50;13085:18;;74527:85:0;12765:344:1;74527:85:0;74658:9;;74643:11;74627:13;76225:1;33843:12;33630:7;33827:13;:28;-1:-1:-1;;33827:46:0;;33577:315;74627:13;:27;;;;:::i;:::-;:40;;74619:73;;;;-1:-1:-1;;;74619:73:0;;;;;;;:::i;:::-;75690:11:::1;74797;74790:4;;:18;;;;:::i;:::-;74777:9;:31;;74769:63;;;;-1:-1:-1::0;;;74769:63:0::1;;;;;;;:::i;:::-;75719:6:::2;::::0;::::2;;75718:7;75710:43;;;::::0;-1:-1:-1;;;75710:43:0;;13316:2:1;75710:43:0::2;::::0;::::2;13298:21:1::0;13355:2;13335:18;;;13328:30;13394:25;13374:18;;;13367:53;13437:18;;75710:43:0::2;13114:347:1::0;42392:308:0;-1:-1:-1;;;;;42491:31:0;;62564:10;42491:31;42487:61;;;42531:17;;-1:-1:-1;;;42531:17:0;;;;;;;;;;;42487:61;62564:10;42561:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;42561:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;42561:60:0;;;;;;;;;;42637:55;;540:41:1;;;42561:49:0;;62564:10;42637:55;;513:18:1;42637:55:0;;;;;;;42392:308;;:::o;73799:31::-;;;;;;;:::i;77026:130::-;18352:13;:11;:13::i;:::-;77110:18:::1;:40:::0;77026:130::o;77699:105::-;18352:13;:11;:13::i;:::-;77769:20:::1;:29:::0;;;::::1;;;;-1:-1:-1::0;;77769:29:0;;::::1;::::0;;;::::1;::::0;;77699:105::o;43262:399::-;43429:31;43442:4;43448:2;43452:7;43429:12;:31::i;:::-;-1:-1:-1;;;;;43475:14:0;;;:19;43471:183;;43514:56;43545:4;43551:2;43555:7;43564:5;43514:30;:56::i;:::-;43509:145;;43598:40;;-1:-1:-1;;;43598:40:0;;;;;;;;;;;43509:145;43262:399;;;;:::o;68170:420::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76225:1:0;68326:7;:25;:54;;;-1:-1:-1;33319:7:0;33346:13;68355:7;:25;;68326:54;68322:103;;;68404:9;68170:420;-1:-1:-1;;68170:420:0:o;68322:103::-;68447:21;68460:7;68447:12;:21::i;:::-;68435:33;;68483:9;:16;;;68479:65;;;68523:9;68170:420;-1:-1:-1;;68170:420:0:o;68479:65::-;68561:21;68574:7;68561:12;:21::i;76408:445::-;76482:13;76512:17;76520:8;76512:7;:17::i;:::-;76504:77;;;;-1:-1:-1;;;76504:77:0;;13668:2:1;76504:77:0;;;13650:21:1;13707:2;13687:18;;;13680:30;13746:34;13726:18;;;13719:62;-1:-1:-1;;;13797:18:1;;;13790:45;13852:19;;76504:77:0;13466:411:1;76504:77:0;76594:8;;;;;;;76590:64;;76629:17;76622:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76408:445;;;:::o;76590:64::-;76662:28;76693:10;:8;:10::i;:::-;76662:41;;76748:1;76723:14;76717:28;:32;:130;;;;;;;;;;;;;;;;;76785:14;76801:19;:8;:17;:19::i;:::-;76822:9;76768:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;76710:137;76408:445;-1:-1:-1;;;76408:445:0:o;75004:582::-;75111:11;74549:1;74535:11;:15;:52;;;;;74569:18;;74554:11;:33;;74535:52;74527:85;;;;-1:-1:-1;;;74527:85:0;;12967:2:1;74527:85:0;;;12949:21:1;13006:2;12986:18;;;12979:30;-1:-1:-1;;;13025:18:1;;;13018:50;13085:18;;74527:85:0;12765:344:1;74527:85:0;74658:9;;74643:11;74627:13;76225:1;33843:12;33630:7;33827:13;:28;-1:-1:-1;;33827:46:0;;33577:315;74627:13;:27;;;;:::i;:::-;:40;;74619:73;;;;-1:-1:-1;;;74619:73:0;;;;;;;:::i;:::-;75144:11:::1;74797;74790:4;;:18;;;;:::i;:::-;74777:9;:31;;74769:63;;;;-1:-1:-1::0;;;74769:63:0::1;;;;;;;:::i;:::-;75210:20:::2;::::0;::::2;::::0;::::2;;;75202:67;;;::::0;-1:-1:-1;;;75202:67:0;;15742:2:1;75202:67:0::2;::::0;::::2;15724:21:1::0;15781:2;15761:18;;;15754:30;15820:34;15800:18;;;15793:62;-1:-1:-1;;;15871:18:1;;;15864:32;15913:19;;75202:67:0::2;15540:398:1::0;75202:67:0::2;62564:10:::0;75285:30:::2;::::0;;;:16:::2;:30;::::0;;;;;::::2;;75284:31;75276:68;;;::::0;-1:-1:-1;;;75276:68:0;;16145:2:1;75276:68:0::2;::::0;::::2;16127:21:1::0;16184:2;16164:18;;;16157:30;16223:26;16203:18;;;16196:54;16267:18;;75276:68:0::2;15943:348:1::0;75276:68:0::2;75376:30;::::0;-1:-1:-1;;62564:10:0;16445:2:1;16441:15;16437:53;75376:30:0::2;::::0;::::2;16425:66:1::0;75351:12:0::2;::::0;16507::1;;75376:30:0::2;;;;;;;;;;;;75366:41;;;;;;75351:56;;75422:50;75441:12;;75422:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;75455:10:0::2;::::0;;-1:-1:-1;75467:4:0;;-1:-1:-1;75422:18:0::2;:50::i;:::-;75414:77;;;::::0;-1:-1:-1;;;75414:77:0;;16732:2:1;75414:77:0::2;::::0;::::2;16714:21:1::0;16771:2;16751:18;;;16744:30;-1:-1:-1;;;16790:18:1;;;16783:44;16844:18;;75414:77:0::2;16530:338:1::0;75414:77:0::2;62564:10:::0;75500:30:::2;::::0;;;:16:::2;:30;::::0;;;;:37;;-1:-1:-1;;75500:37:0::2;75533:4;75500:37;::::0;;75544:36:::2;::::0;75568:11;75544:9:::2;:36::i;76859:81::-:0;18352:13;:11;:13::i;:::-;76917:8:::1;:17:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;76917:17:0;;::::1;::::0;;;::::1;::::0;;76859:81::o;42771:164::-;-1:-1:-1;;;;;42892:25:0;;;42868:4;42892:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;42771:164::o;76004:127::-;18352:13;:11;:13::i;:::-;76092:33:::1;76102:9;76113:11;76092:9;:33::i;78109:87::-:0;18352:13;:11;:13::i;:::-;78177:5:::1;:13:::0;78109:87::o;19372:201::-;18352:13;:11;:13::i;:::-;-1:-1:-1;;;;;19461:22:0;::::1;19453:73;;;::::0;-1:-1:-1;;;19453:73:0;;17075:2:1;19453:73:0::1;::::0;::::1;17057:21:1::0;17114:2;17094:18;;;17087:30;17153:34;17133:18;;;17126:62;-1:-1:-1;;;17204:18:1;;;17197:36;17250:19;;19453:73:0::1;16873:402:1::0;19453:73:0::1;19537:28;19556:8;19537:18;:28::i;:::-;19372:201:::0;:::o;76325:77::-;18352:13;:11;:13::i;:::-;76388:8:::1;76381:4;:15:::0;76325:77::o;78022:83::-;18352:13;:11;:13::i;:::-;78086:5:::1;:13:::0;78022:83::o;43916:273::-;43973:4;44029:7;76225:1;44010:26;;:66;;;;;44063:13;;44053:7;:23;44010:66;:152;;;;-1:-1:-1;;44114:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;44114:43:0;:48;;43916:273::o;18631:132::-;18539:6;;-1:-1:-1;;;;;18539:6:0;62564:10;18695:23;18687:68;;;;-1:-1:-1;;;18687:68:0;;17482:2:1;18687:68:0;;;17464:21:1;;;17501:18;;;17494:30;17560:34;17540:18;;;17533:62;17612:18;;18687:68:0;17280:356:1;36876:1129:0;36943:7;36978;;76225:1;37027:23;37023:915;;37080:13;;37073:4;:20;37069:869;;;37118:14;37135:23;;;:17;:23;;;;;;-1:-1:-1;;;37224:23:0;;37220:699;;37743:113;37750:11;37743:113;;-1:-1:-1;;;37821:6:0;37803:25;;;;:17;:25;;;;;;37743:113;;37220:699;37095:843;37069:869;37966:31;;-1:-1:-1;;;37966:31:0;;;;;;;;;;;44273:104;44342:27;44352:2;44356:8;44342:27;;;;;;;;;;;;:9;:27::i;19733:191::-;19826:6;;;-1:-1:-1;;;;;19843:17:0;;;-1:-1:-1;;;;;;19843:17:0;;;;;;;19876:40;;19826:6;;;19843:17;19826:6;;19876:40;;19807:16;;19876:40;19796:128;19733:191;:::o;38553:153::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38673:24:0;;;;:17;:24;;;;;;38654:44;;:18;:44::i;58132:716::-;58316:88;;-1:-1:-1;;;58316:88:0;;58295:4;;-1:-1:-1;;;;;58316:45:0;;;;;:88;;62564:10;;58383:4;;58389:7;;58398:5;;58316:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58316:88:0;;;;;;;;-1:-1:-1;;58316:88:0;;;;;;;;;;;;:::i;:::-;;;58312:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58599:13:0;;58595:235;;58645:40;;-1:-1:-1;;;58645:40:0;;;;;;;;;;;58595:235;58788:6;58782:13;58773:6;58769:2;58765:15;58758:38;58312:529;-1:-1:-1;;;;;;58475:64:0;-1:-1:-1;;;58475:64:0;;-1:-1:-1;58312:529:0;58132:716;;;;;;:::o;39209:158::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39312:47:0;39331:27;39350:7;39331:18;:27::i;:::-;39312:18;:47::i;78675:104::-;78735:13;78764:9;78757:16;;;;;:::i;2787:723::-;2843:13;3064:10;3060:53;;-1:-1:-1;;3091:10:0;;;;;;;;;;;;-1:-1:-1;;;3091:10:0;;;;;2787:723::o;3060:53::-;3138:5;3123:12;3179:78;3186:9;;3179:78;;3212:8;;;;:::i;:::-;;-1:-1:-1;3235:10:0;;-1:-1:-1;3243:2:0;3235:10;;:::i;:::-;;;3179:78;;;3267:19;3299:6;-1:-1:-1;;;;;3289:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3289:17:0;;3267:39;;3317:154;3324:10;;3317:154;;3351:11;3361:1;3351:11;;:::i;:::-;;-1:-1:-1;3420:10:0;3428:2;3420:5;:10;:::i;:::-;3407:24;;:2;:24;:::i;:::-;3394:39;;3377:6;3384;3377:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3377:56:0;;;;;;;;-1:-1:-1;3448:11:0;3457:2;3448:11;;:::i;:::-;;;3317:154;;8832:190;8957:4;9010;8981:25;8994:5;9001:4;8981:12;:25::i;:::-;:33;;8832:190;-1:-1:-1;;;;8832:190:0:o;44793:681::-;44916:19;44922:2;44926:8;44916:5;:19::i;:::-;-1:-1:-1;;;;;44977:14:0;;;:19;44973:483;;45017:11;45031:13;45079:14;;;45112:233;45143:62;45182:1;45186:2;45190:7;;;;;;45199:5;45143:30;:62::i;:::-;45138:167;;45241:40;;-1:-1:-1;;;45241:40:0;;;;;;;;;;;45138:167;45340:3;45332:5;:11;45112:233;;45427:3;45410:13;;:20;45406:34;;45432:8;;;45406:34;44998:458;;44793:681;;;:::o;38099:363::-;-1:-1:-1;;;;;;;;;;;;;38209:41:0;;;;30411:3;38295:32;;;-1:-1:-1;;;;;38261:67:0;-1:-1:-1;;;38261:67:0;-1:-1:-1;;;38358:23:0;;:28;;-1:-1:-1;;;38339:47:0;;;;30928:3;38426:27;;;;-1:-1:-1;;;38397:57:0;-1:-1:-1;38099:363:0:o;9699:296::-;9782:7;9825:4;9782:7;9840:118;9864:5;:12;9860:1;:16;9840:118;;;9913:33;9923:12;9937:5;9943:1;9937:8;;;;;;;;:::i;:::-;;;;;;;9913:9;:33::i;:::-;9898:48;-1:-1:-1;9878:3:0;;;;:::i;:::-;;;;9840:118;;45747:1529;45812:20;45835:13;-1:-1:-1;;;;;45863:16:0;;45859:48;;45888:19;;-1:-1:-1;;;45888:19:0;;;;;;;;;;;45859:48;45922:13;45918:44;;45944:18;;-1:-1:-1;;;45944:18:0;;;;;;;;;;;45918:44;-1:-1:-1;;;;;46450:22:0;;;;;;:18;:22;;29894:2;46450:22;;:70;;46488:31;46476:44;;46450:70;;;39858:11;39834:22;39830:40;-1:-1:-1;41568:15:0;;41543:23;41539:45;39827:51;39817:62;46763:31;;;;:17;:31;;;;;:173;46781:12;47012:23;;;47050:101;47077:35;;47102:9;;;;;-1:-1:-1;;;;;47077:35:0;;;47094:1;;47077:35;;47094:1;;47077:35;47146:3;47136:7;:13;47050:101;;47167:13;:19;-1:-1:-1;43006:185:0;;;:::o;15906:149::-;15969:7;16000:1;15996;:5;:51;;16131:13;16225:15;;;16261:4;16254:15;;;16308:4;16292:21;;15996:51;;;-1:-1:-1;16131:13:0;16225:15;;;16261:4;16254:15;16308:4;16292:21;;;15906:149::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:127::-;2416:10;2411:3;2407:20;2404:1;2397:31;2447:4;2444:1;2437:15;2471:4;2468:1;2461:15;2487:275;2558:2;2552:9;2623:2;2604:13;;-1:-1:-1;;2600:27:1;2588:40;;-1:-1:-1;;;;;2643:34:1;;2679:22;;;2640:62;2637:88;;;2705:18;;:::i;:::-;2741:2;2734:22;2487:275;;-1:-1:-1;2487:275:1:o;2767:407::-;2832:5;-1:-1:-1;;;;;2858:6:1;2855:30;2852:56;;;2888:18;;:::i;:::-;2926:57;2971:2;2950:15;;-1:-1:-1;;2946:29:1;2977:4;2942:40;2926:57;:::i;:::-;2917:66;;3006:6;2999:5;2992:21;3046:3;3037:6;3032:3;3028:16;3025:25;3022:45;;;3063:1;3060;3053:12;3022:45;3112:6;3107:3;3100:4;3093:5;3089:16;3076:43;3166:1;3159:4;3150:6;3143:5;3139:18;3135:29;3128:40;2767:407;;;;;:::o;3179:451::-;3248:6;3301:2;3289:9;3280:7;3276:23;3272:32;3269:52;;;3317:1;3314;3307:12;3269:52;3357:9;3344:23;-1:-1:-1;;;;;3382:6:1;3379:30;3376:50;;;3422:1;3419;3412:12;3376:50;3445:22;;3498:4;3490:13;;3486:27;-1:-1:-1;3476:55:1;;3527:1;3524;3517:12;3476:55;3550:74;3616:7;3611:2;3598:16;3593:2;3589;3585:11;3550:74;:::i;3635:160::-;3700:20;;3756:13;;3749:21;3739:32;;3729:60;;3785:1;3782;3775:12;3800:180;3856:6;3909:2;3897:9;3888:7;3884:23;3880:32;3877:52;;;3925:1;3922;3915:12;3877:52;3948:26;3964:9;3948:26;:::i;3985:186::-;4044:6;4097:2;4085:9;4076:7;4072:23;4068:32;4065:52;;;4113:1;4110;4103:12;4065:52;4136:29;4155:9;4136:29;:::i;4176:328::-;4253:6;4261;4269;4322:2;4310:9;4301:7;4297:23;4293:32;4290:52;;;4338:1;4335;4328:12;4290:52;4361:29;4380:9;4361:29;:::i;:::-;4351:39;;4409:38;4443:2;4432:9;4428:18;4409:38;:::i;:::-;4399:48;;4494:2;4483:9;4479:18;4466:32;4456:42;;4176:328;;;;;:::o;4691:946::-;4775:6;4806:2;4849;4837:9;4828:7;4824:23;4820:32;4817:52;;;4865:1;4862;4855:12;4817:52;4905:9;4892:23;-1:-1:-1;;;;;4975:2:1;4967:6;4964:14;4961:34;;;4991:1;4988;4981:12;4961:34;5029:6;5018:9;5014:22;5004:32;;5074:7;5067:4;5063:2;5059:13;5055:27;5045:55;;5096:1;5093;5086:12;5045:55;5132:2;5119:16;5154:2;5150;5147:10;5144:36;;;5160:18;;:::i;:::-;5206:2;5203:1;5199:10;5189:20;;5229:28;5253:2;5249;5245:11;5229:28;:::i;:::-;5291:15;;;5361:11;;;5357:20;;;5322:12;;;;5389:19;;;5386:39;;;5421:1;5418;5411:12;5386:39;5445:11;;;;5465:142;5481:6;5476:3;5473:15;5465:142;;;5547:17;;5535:30;;5498:12;;;;5585;;;;5465:142;;;5626:5;4691:946;-1:-1:-1;;;;;;;;4691:946:1:o;5642:349::-;5726:12;;-1:-1:-1;;;;;5722:38:1;5710:51;;5814:4;5803:16;;;5797:23;-1:-1:-1;;;;;5793:48:1;5777:14;;;5770:72;5905:4;5894:16;;;5888:23;5881:31;5874:39;5858:14;;;5851:63;5967:4;5956:16;;;5950:23;5975:8;5946:38;5930:14;;5923:62;5642:349::o;5996:722::-;6229:2;6281:21;;;6351:13;;6254:18;;;6373:22;;;6200:4;;6229:2;6452:15;;;;6426:2;6411:18;;;6200:4;6495:197;6509:6;6506:1;6503:13;6495:197;;;6558:52;6606:3;6597:6;6591:13;6558:52;:::i;:::-;6667:15;;;;6639:4;6630:14;;;;;6531:1;6524:9;6495:197;;6908:632;7079:2;7131:21;;;7201:13;;7104:18;;;7223:22;;;7050:4;;7079:2;7302:15;;;;7276:2;7261:18;;;7050:4;7345:169;7359:6;7356:1;7353:13;7345:169;;;7420:13;;7408:26;;7489:15;;;;7454:12;;;;7381:1;7374:9;7345:169;;7545:322;7622:6;7630;7638;7691:2;7679:9;7670:7;7666:23;7662:32;7659:52;;;7707:1;7704;7697:12;7659:52;7730:29;7749:9;7730:29;:::i;:::-;7720:39;7806:2;7791:18;;7778:32;;-1:-1:-1;7857:2:1;7842:18;;;7829:32;;7545:322;-1:-1:-1;;;7545:322:1:o;7872:254::-;7937:6;7945;7998:2;7986:9;7977:7;7973:23;7969:32;7966:52;;;8014:1;8011;8004:12;7966:52;8037:29;8056:9;8037:29;:::i;:::-;8027:39;;8085:35;8116:2;8105:9;8101:18;8085:35;:::i;:::-;8075:45;;7872:254;;;;;:::o;8131:667::-;8226:6;8234;8242;8250;8303:3;8291:9;8282:7;8278:23;8274:33;8271:53;;;8320:1;8317;8310:12;8271:53;8343:29;8362:9;8343:29;:::i;:::-;8333:39;;8391:38;8425:2;8414:9;8410:18;8391:38;:::i;:::-;8381:48;;8476:2;8465:9;8461:18;8448:32;8438:42;;8531:2;8520:9;8516:18;8503:32;-1:-1:-1;;;;;8550:6:1;8547:30;8544:50;;;8590:1;8587;8580:12;8544:50;8613:22;;8666:4;8658:13;;8654:27;-1:-1:-1;8644:55:1;;8695:1;8692;8685:12;8644:55;8718:74;8784:7;8779:2;8766:16;8761:2;8757;8753:11;8718:74;:::i;:::-;8708:84;;;8131:667;;;;;;;:::o;8803:266::-;8999:3;8984:19;;9012:51;8988:9;9045:6;9012:51;:::i;9074:683::-;9169:6;9177;9185;9238:2;9226:9;9217:7;9213:23;9209:32;9206:52;;;9254:1;9251;9244:12;9206:52;9290:9;9277:23;9267:33;;9351:2;9340:9;9336:18;9323:32;-1:-1:-1;;;;;9415:2:1;9407:6;9404:14;9401:34;;;9431:1;9428;9421:12;9401:34;9469:6;9458:9;9454:22;9444:32;;9514:7;9507:4;9503:2;9499:13;9495:27;9485:55;;9536:1;9533;9526:12;9485:55;9576:2;9563:16;9602:2;9594:6;9591:14;9588:34;;;9618:1;9615;9608:12;9588:34;9671:7;9666:2;9656:6;9653:1;9649:14;9645:2;9641:23;9637:32;9634:45;9631:65;;;9692:1;9689;9682:12;9631:65;9723:2;9719;9715:11;9705:21;;9745:6;9735:16;;;;;9074:683;;;;;:::o;9762:260::-;9830:6;9838;9891:2;9879:9;9870:7;9866:23;9862:32;9859:52;;;9907:1;9904;9897:12;9859:52;9930:29;9949:9;9930:29;:::i;:::-;9920:39;;9978:38;10012:2;10001:9;9997:18;9978:38;:::i;10027:254::-;10095:6;10103;10156:2;10144:9;10135:7;10131:23;10127:32;10124:52;;;10172:1;10169;10162:12;10124:52;10208:9;10195:23;10185:33;;10237:38;10271:2;10260:9;10256:18;10237:38;:::i;10286:380::-;10365:1;10361:12;;;;10408;;;10429:61;;10483:4;10475:6;10471:17;10461:27;;10429:61;10536:2;10528:6;10525:14;10505:18;10502:38;10499:161;;;10582:10;10577:3;10573:20;10570:1;10563:31;10617:4;10614:1;10607:15;10645:4;10642:1;10635:15;10499:161;;10286:380;;;:::o;11031:127::-;11092:10;11087:3;11083:20;11080:1;11073:31;11123:4;11120:1;11113:15;11147:4;11144:1;11137:15;11163:168;11203:7;11269:1;11265;11261:6;11257:14;11254:1;11251:21;11246:1;11239:9;11232:17;11228:45;11225:71;;;11276:18;;:::i;:::-;-1:-1:-1;11316:9:1;;11163:168::o;11336:127::-;11397:10;11392:3;11388:20;11385:1;11378:31;11428:4;11425:1;11418:15;11452:4;11449:1;11442:15;11468:120;11508:1;11534;11524:35;;11539:18;;:::i;:::-;-1:-1:-1;11573:9:1;;11468:120::o;11803:128::-;11843:3;11874:1;11870:6;11867:1;11864:13;11861:39;;;11880:18;;:::i;:::-;-1:-1:-1;11916:9:1;;11803:128::o;11936:344::-;12138:2;12120:21;;;12177:2;12157:18;;;12150:30;-1:-1:-1;;;12211:2:1;12196:18;;12189:50;12271:2;12256:18;;11936:344::o;12285:343::-;12487:2;12469:21;;;12526:2;12506:18;;;12499:30;-1:-1:-1;;;12560:2:1;12545:18;;12538:49;12619:2;12604:18;;12285:343::o;12633:127::-;12694:10;12689:3;12685:20;12682:1;12675:31;12725:4;12722:1;12715:15;12749:4;12746:1;12739:15;14008:1527;14232:3;14270:6;14264:13;14296:4;14309:51;14353:6;14348:3;14343:2;14335:6;14331:15;14309:51;:::i;:::-;14423:13;;14382:16;;;;14445:55;14423:13;14382:16;14467:15;;;14445:55;:::i;:::-;14589:13;;14522:20;;;14562:1;;14649;14671:18;;;;14724;;;;14751:93;;14829:4;14819:8;14815:19;14803:31;;14751:93;14892:2;14882:8;14879:16;14859:18;14856:40;14853:167;;;-1:-1:-1;;;14919:33:1;;14975:4;14972:1;14965:15;15005:4;14926:3;14993:17;14853:167;15036:18;15063:110;;;;15187:1;15182:328;;;;15029:481;;15063:110;-1:-1:-1;;15098:24:1;;15084:39;;15143:20;;;;-1:-1:-1;15063:110:1;;15182:328;13955:1;13948:14;;;13992:4;13979:18;;15277:1;15291:169;15305:8;15302:1;15299:15;15291:169;;;15387:14;;15372:13;;;15365:37;15430:16;;;;15322:10;;15291:169;;;15295:3;;15491:8;15484:5;15480:20;15473:27;;15029:481;-1:-1:-1;15526:3:1;;14008:1527;-1:-1:-1;;;;;;;;;;;14008:1527:1:o;17641:489::-;-1:-1:-1;;;;;17910:15:1;;;17892:34;;17962:15;;17957:2;17942:18;;17935:43;18009:2;17994:18;;17987:34;;;18057:3;18052:2;18037:18;;18030:31;;;17835:4;;18078:46;;18104:19;;18096:6;18078:46;:::i;:::-;18070:54;17641:489;-1:-1:-1;;;;;;17641:489:1:o;18135:249::-;18204:6;18257:2;18245:9;18236:7;18232:23;18228:32;18225:52;;;18273:1;18270;18263:12;18225:52;18305:9;18299:16;18324:30;18348:5;18324:30;:::i;18389:135::-;18428:3;-1:-1:-1;;18449:17:1;;18446:43;;;18469:18;;:::i;:::-;-1:-1:-1;18516:1:1;18505:13;;18389:135::o;18529:125::-;18569:4;18597:1;18594;18591:8;18588:34;;;18602:18;;:::i;:::-;-1:-1:-1;18639:9:1;;18529:125::o;18659:112::-;18691:1;18717;18707:35;;18722:18;;:::i;:::-;-1:-1:-1;18756:9:1;;18659:112::o

Swarm Source

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