ETH Price: $3,381.76 (+3.14%)

Token

COMPOUND (CMPD)
 

Overview

Max Total Supply

81 CMPD

Holders

51

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 CMPD
0xc4a843ddf533540474fddb7a9a03342348f6742b
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:
COMPOUND

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// 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.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
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();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores 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 via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @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() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 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`,
     * 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,
        bytes calldata data
    ) external;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` 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](https://eips.ethereum.org/EIPS/eip-2309) 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.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Reference type for token approval.
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // 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 `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID 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 => TokenApprovalRef) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @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 virtual 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 virtual 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 virtual 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 virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual 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 virtual {
        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;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    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: [ERC165](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.
    }

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

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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 '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

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

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

    /**
     * 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 initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public virtual override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(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 `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns 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))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 virtual {
        uint256 startTokenId = _currentIndex;
        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 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _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 virtual {
        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 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 virtual {
        _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 Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @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) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(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++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        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 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 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;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @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 virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 0x80 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: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

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

// File: erc721a/contracts/extensions/IERC721AQueryable.sol


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

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721AQueryable.
 */
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`
     * - `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) 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 collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

// File: erc721a/contracts/extensions/ERC721AQueryable.sol


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

pragma solidity ^0.8.4;



/**
 * @title ERC721AQueryable.
 *
 * @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 virtual 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[] calldata tokenIds)
        external
        view
        virtual
        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 virtual 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 collections should be fine).
     */
    function tokensOfOwner(address owner) external view virtual 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: CMPD/COMPOUND.sol

pragma solidity >=0.8.9 <0.9.0;

contract COMPOUND is ERC721AQueryable, Ownable, ReentrancyGuard {
    using Strings for uint256;

    bytes32 public merkleRoot;

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

    uint256 public cost = 0.0333 ether;
    uint256 public maxSupply = 3333;
    uint256 public maxWL = 1111;
    uint256 public maxMintAmountPerTx = 2;
    uint256 public maxMintPerWallet = 2;

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

    constructor(
        string memory _tokenName,
        string memory _tokenSymbol,
        string memory _hiddenMetadataUri
    ) ERC721A(_tokenName, _tokenSymbol) {
        setHiddenMetadataUri(_hiddenMetadataUri);
    }

    modifier mintCompliance(uint256 _mintAmount) {
         require(
            _numberMinted(_msgSender()) <= 1,
            "You cannot mint more than 2 tokens"
        );
        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");
        _;
    }

    function whitelistMint(uint256 _mintAmount, bytes32[] calldata _merkleProof)
        public
        payable
        mintCompliance(_mintAmount)
        mintPriceCompliance(_mintAmount)
    {
        // Verify whitelist requirements
        require(whitelistMintEnabled, "The whitelist sale has not started");
        require(totalSupply() + _mintAmount <= maxWL, "WL supply exceeded");
        bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
        require(
            MerkleProof.verify(_merkleProof, merkleRoot, leaf),
            "Invalid proof"
        );

        _safeMint(_msgSender(), _mintAmount);
    }

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

        _safeMint(_msgSender(), _mintAmount);
    }

    function mintForAddress(uint256 _mintAmount, address _receiver)
        public
        mintCompliance(_mintAmount)
        onlyOwner
    {
        _safeMint(_receiver, _mintAmount);
    }

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

    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 setWhitelistSupply(uint256 _supply) public onlyOwner {
        maxWL = _supply;
    }

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

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

    function withdraw() public onlyOwner nonReentrant {
        uint256 core = address(this).balance * 2250 / 10000;

        (bool team1, ) = payable(0x18237F1cB447b19dfD3098Ffff072A0244F67A0e).call{value: core}('');
        require(team1);

        (bool team2, ) = payable(0x7Edd222236a82Adc7cC024e565d23154d2EE66Cb).call{value: core}('');
        require(team2);

        (bool team3, ) = payable(0x7e584246fa824989d0D166b44415Be5A55b5d9c3).call{value: core}('');
        require(team3);

        (bool team4, ) = payable(0x605fA1db729FF5Eec2F9AbBEB01e257F2373F1Ef).call{value: core}('');
        require(team4);

        (bool team5, ) = payable(0xe694d97d5D26Cf9e0889F4Ae8098119C6f9D0eE1).call{value: address(this).balance}('');
        require(team5);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"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":[{"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":[{"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":"maxMintPerWallet","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":"maxWL","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":"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":[{"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":"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":"uint256","name":"_supply","type":"uint256"}],"name":"setWhitelistSupply","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":"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"}]

608060405260405180602001604052806000815250600b90805190602001906200002b9291906200036b565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c9080519060200190620000799291906200036b565b5066764e2c6f054000600e55610d05600f55610457601055600260115560026012556001601360006101000a81548160ff0219169083151502179055506000601360016101000a81548160ff0219169083151502179055506000601360026101000a81548160ff021916908315150217905550348015620000f957600080fd5b506040516200522c3803806200522c83398181016040528101906200011f9190620005b8565b82828160029080519060200190620001399291906200036b565b508060039080519060200190620001529291906200036b565b5062000163620001ad60201b60201c565b60008190555050506200018b6200017f620001b660201b60201c565b620001be60201b60201c565b6001600981905550620001a4816200028460201b60201c565b50505062000759565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000294620002b060201b60201c565b80600d9080519060200190620002ac9291906200036b565b5050565b620002c0620001b660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002e66200034160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200033f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200033690620006d2565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003799062000723565b90600052602060002090601f0160209004810192826200039d5760008555620003e9565b82601f10620003b857805160ff1916838001178555620003e9565b82800160010185558215620003e9579182015b82811115620003e8578251825591602001919060010190620003cb565b5b509050620003f89190620003fc565b5090565b5b8082111562000417576000816000905550600101620003fd565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620004848262000439565b810181811067ffffffffffffffff82111715620004a657620004a56200044a565b5b80604052505050565b6000620004bb6200041b565b9050620004c9828262000479565b919050565b600067ffffffffffffffff821115620004ec57620004eb6200044a565b5b620004f78262000439565b9050602081019050919050565b60005b838110156200052457808201518184015260208101905062000507565b8381111562000534576000848401525b50505050565b6000620005516200054b84620004ce565b620004af565b90508281526020810184848401111562000570576200056f62000434565b5b6200057d84828562000504565b509392505050565b600082601f8301126200059d576200059c6200042f565b5b8151620005af8482602086016200053a565b91505092915050565b600080600060608486031215620005d457620005d362000425565b5b600084015167ffffffffffffffff811115620005f557620005f46200042a565b5b620006038682870162000585565b935050602084015167ffffffffffffffff8111156200062757620006266200042a565b5b620006358682870162000585565b925050604084015167ffffffffffffffff8111156200065957620006586200042a565b5b620006678682870162000585565b9150509250925092565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620006ba60208362000671565b9150620006c78262000682565b602082019050919050565b60006020820190508181036000830152620006ed81620006ab565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200073c57607f821691505b60208210811415620007535762000752620006f4565b5b50919050565b614ac380620007696000396000f3fe6080604052600436106102885760003560e01c8063715018a61161015a578063b228d925116100c1578063d2cab0561161007a578063d2cab056146109bf578063d5abeb01146109db578063e0a8085314610a06578063e985e9c514610a2f578063efbd73f414610a6c578063f2fde38b14610a9557610288565b8063b228d9251461089d578063b767a098146108c8578063b88d4fde146108f1578063c23dc68f1461091a578063c87b56dd14610957578063cc2f10d41461099457610288565b806395d89b411161011357806395d89b411461079c57806399a2557a146107c7578063a0712d6814610804578063a22cb46514610820578063a45ba8e714610849578063b071401b1461087457610288565b8063715018a6146106a05780637cb64759146106b75780637ec4a659146106e05780638462151c146107095780638da5cb5b1461074657806394354fd01461077157610288565b806342842e0e116101fe5780635bbb2177116101b75780635bbb2177146105685780635c975abb146105a557806362b99ad4146105d05780636352211e146105fb5780636caede3d1461063857806370a082311461066357610288565b806342842e0e1461046e57806344a0d68a146104975780634fdd43cb146104c057806351830227146104e95780635503a0e81461051457806355a63bf41461053f57610288565b806316ba10e01161025057806316ba10e01461038657806316c38b3c146103af57806318160ddd146103d857806323b872dd146104035780632eb4a7ab1461042c5780633ccfd60b1461045757610288565b806301ffc9a71461028d57806306fdde03146102ca578063081812fc146102f5578063095ea7b31461033257806313faede61461035b575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613415565b610abe565b6040516102c1919061345d565b60405180910390f35b3480156102d657600080fd5b506102df610b50565b6040516102ec9190613511565b60405180910390f35b34801561030157600080fd5b5061031c60048036038101906103179190613569565b610be2565b60405161032991906135d7565b60405180910390f35b34801561033e57600080fd5b506103596004803603810190610354919061361e565b610c61565b005b34801561036757600080fd5b50610370610da5565b60405161037d919061366d565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a891906137bd565b610dab565b005b3480156103bb57600080fd5b506103d660048036038101906103d19190613832565b610dcd565b005b3480156103e457600080fd5b506103ed610df2565b6040516103fa919061366d565b60405180910390f35b34801561040f57600080fd5b5061042a6004803603810190610425919061385f565b610e09565b005b34801561043857600080fd5b5061044161112e565b60405161044e91906138cb565b60405180910390f35b34801561046357600080fd5b5061046c611134565b005b34801561047a57600080fd5b506104956004803603810190610490919061385f565b61146b565b005b3480156104a357600080fd5b506104be60048036038101906104b99190613569565b61148b565b005b3480156104cc57600080fd5b506104e760048036038101906104e291906137bd565b61149d565b005b3480156104f557600080fd5b506104fe6114bf565b60405161050b919061345d565b60405180910390f35b34801561052057600080fd5b506105296114d2565b6040516105369190613511565b60405180910390f35b34801561054b57600080fd5b5061056660048036038101906105619190613569565b611560565b005b34801561057457600080fd5b5061058f600480360381019061058a9190613946565b611572565b60405161059c9190613af6565b60405180910390f35b3480156105b157600080fd5b506105ba611635565b6040516105c7919061345d565b60405180910390f35b3480156105dc57600080fd5b506105e5611648565b6040516105f29190613511565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d9190613569565b6116d6565b60405161062f91906135d7565b60405180910390f35b34801561064457600080fd5b5061064d6116e8565b60405161065a919061345d565b60405180910390f35b34801561066f57600080fd5b5061068a60048036038101906106859190613b18565b6116fb565b604051610697919061366d565b60405180910390f35b3480156106ac57600080fd5b506106b56117b4565b005b3480156106c357600080fd5b506106de60048036038101906106d99190613b71565b6117c8565b005b3480156106ec57600080fd5b50610707600480360381019061070291906137bd565b6117da565b005b34801561071557600080fd5b50610730600480360381019061072b9190613b18565b6117fc565b60405161073d9190613c5c565b60405180910390f35b34801561075257600080fd5b5061075b611946565b60405161076891906135d7565b60405180910390f35b34801561077d57600080fd5b50610786611970565b604051610793919061366d565b60405180910390f35b3480156107a857600080fd5b506107b1611976565b6040516107be9190613511565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e99190613c7e565b611a08565b6040516107fb9190613c5c565b60405180910390f35b61081e60048036038101906108199190613569565b611c1c565b005b34801561082c57600080fd5b5061084760048036038101906108429190613cd1565b611dcf565b005b34801561085557600080fd5b5061085e611f47565b60405161086b9190613511565b60405180910390f35b34801561088057600080fd5b5061089b60048036038101906108969190613569565b611fd5565b005b3480156108a957600080fd5b506108b2611fe7565b6040516108bf919061366d565b60405180910390f35b3480156108d457600080fd5b506108ef60048036038101906108ea9190613832565b611fed565b005b3480156108fd57600080fd5b5061091860048036038101906109139190613db2565b612012565b005b34801561092657600080fd5b50610941600480360381019061093c9190613569565b612085565b60405161094e9190613e8a565b60405180910390f35b34801561096357600080fd5b5061097e60048036038101906109799190613569565b6120ef565b60405161098b9190613511565b60405180910390f35b3480156109a057600080fd5b506109a9612248565b6040516109b6919061366d565b60405180910390f35b6109d960048036038101906109d49190613efb565b61224e565b005b3480156109e757600080fd5b506109f0612519565b6040516109fd919061366d565b60405180910390f35b348015610a1257600080fd5b50610a2d6004803603810190610a289190613832565b61251f565b005b348015610a3b57600080fd5b50610a566004803603810190610a519190613f5b565b612544565b604051610a63919061345d565b60405180910390f35b348015610a7857600080fd5b50610a936004803603810190610a8e9190613f9b565b6125d8565b005b348015610aa157600080fd5b50610abc6004803603810190610ab79190613b18565b6126eb565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b1957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b495750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610b5f9061400a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8b9061400a565b8015610bd85780601f10610bad57610100808354040283529160200191610bd8565b820191906000526020600020905b815481529060010190602001808311610bbb57829003601f168201915b5050505050905090565b6000610bed8261276f565b610c23576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c6c826116d6565b90508073ffffffffffffffffffffffffffffffffffffffff16610c8d6127ce565b73ffffffffffffffffffffffffffffffffffffffff1614610cf057610cb981610cb46127ce565b612544565b610cef576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600e5481565b610db36127d6565b80600c9080519060200190610dc99291906132b7565b5050565b610dd56127d6565b80601360006101000a81548160ff02191690831515021790555050565b6000610dfc612854565b6001546000540303905090565b6000610e148261285d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e7b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610e878461292b565b91509150610e9d8187610e986127ce565b612952565b610ee957610eb286610ead6127ce565b612544565b610ee8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610f50576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f5d8686866001612996565b8015610f6857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506110368561101288888761299c565b7c0200000000000000000000000000000000000000000000000000000000176129c4565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156110be5760006001850190506000600460008381526020019081526020016000205414156110bc5760005481146110bb578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461112686868660016129ef565b505050505050565b600a5481565b61113c6127d6565b60026009541415611182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117990614088565b60405180910390fd5b600260098190555060006127106108ca4761119d91906140d7565b6111a79190614160565b905060007318237f1cb447b19dfd3098ffff072a0244f67a0e73ffffffffffffffffffffffffffffffffffffffff16826040516111e3906141c2565b60006040518083038185875af1925050503d8060008114611220576040519150601f19603f3d011682016040523d82523d6000602084013e611225565b606091505b505090508061123357600080fd5b6000737edd222236a82adc7cc024e565d23154d2ee66cb73ffffffffffffffffffffffffffffffffffffffff168360405161126d906141c2565b60006040518083038185875af1925050503d80600081146112aa576040519150601f19603f3d011682016040523d82523d6000602084013e6112af565b606091505b50509050806112bd57600080fd5b6000737e584246fa824989d0d166b44415be5a55b5d9c373ffffffffffffffffffffffffffffffffffffffff16846040516112f7906141c2565b60006040518083038185875af1925050503d8060008114611334576040519150601f19603f3d011682016040523d82523d6000602084013e611339565b606091505b505090508061134757600080fd5b600073605fa1db729ff5eec2f9abbeb01e257f2373f1ef73ffffffffffffffffffffffffffffffffffffffff1685604051611381906141c2565b60006040518083038185875af1925050503d80600081146113be576040519150601f19603f3d011682016040523d82523d6000602084013e6113c3565b606091505b50509050806113d157600080fd5b600073e694d97d5d26cf9e0889f4ae8098119c6f9d0ee173ffffffffffffffffffffffffffffffffffffffff164760405161140b906141c2565b60006040518083038185875af1925050503d8060008114611448576040519150601f19603f3d011682016040523d82523d6000602084013e61144d565b606091505b505090508061145b57600080fd5b5050505050506001600981905550565b61148683838360405180602001604052806000815250612012565b505050565b6114936127d6565b80600e8190555050565b6114a56127d6565b80600d90805190602001906114bb9291906132b7565b5050565b601360029054906101000a900460ff1681565b600c80546114df9061400a565b80601f016020809104026020016040519081016040528092919081815260200182805461150b9061400a565b80156115585780601f1061152d57610100808354040283529160200191611558565b820191906000526020600020905b81548152906001019060200180831161153b57829003601f168201915b505050505081565b6115686127d6565b8060108190555050565b6060600083839050905060008167ffffffffffffffff81111561159857611597613692565b5b6040519080825280602002602001820160405280156115d157816020015b6115be61333d565b8152602001906001900390816115b65790505b50905060005b828114611629576116008686838181106115f4576115f36141d7565b5b90506020020135612085565b828281518110611613576116126141d7565b5b60200260200101819052508060010190506115d7565b50809250505092915050565b601360009054906101000a900460ff1681565b600b80546116559061400a565b80601f01602080910402602001604051908101604052809291908181526020018280546116819061400a565b80156116ce5780601f106116a3576101008083540402835291602001916116ce565b820191906000526020600020905b8154815290600101906020018083116116b157829003601f168201915b505050505081565b60006116e18261285d565b9050919050565b601360019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611763576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6117bc6127d6565b6117c660006129f5565b565b6117d06127d6565b80600a8190555050565b6117e26127d6565b80600b90805190602001906117f89291906132b7565b5050565b6060600080600061180c856116fb565b905060008167ffffffffffffffff81111561182a57611829613692565b5b6040519080825280602002602001820160405280156118585781602001602082028036833780820191505090505b50905061186361333d565b600061186d612854565b90505b8386146119385761188081612abb565b91508160400151156118915761192d565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146118d157816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561192c578083878060010198508151811061191f5761191e6141d7565b5b6020026020010181815250505b5b806001019050611870565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b6060600380546119859061400a565b80601f01602080910402602001604051908101604052809291908181526020018280546119b19061400a565b80156119fe5780601f106119d3576101008083540402835291602001916119fe565b820191906000526020600020905b8154815290600101906020018083116119e157829003601f168201915b5050505050905090565b6060818310611a43576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611a4e612ae6565b9050611a58612854565b851015611a6a57611a67612854565b94505b80841115611a76578093505b6000611a81876116fb565b905084861015611aa4576000868603905081811015611a9e578091505b50611aa9565b600090505b60008167ffffffffffffffff811115611ac557611ac4613692565b5b604051908082528060200260200182016040528015611af35781602001602082028036833780820191505090505b5090506000821415611b0b5780945050505050611c15565b6000611b1688612085565b905060008160400151611b2b57816000015190505b60008990505b888114158015611b415750848714155b15611c0757611b4f81612abb565b9250826040015115611b6057611bfc565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff1614611ba057826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bfb5780848880600101995081518110611bee57611bed6141d7565b5b6020026020010181815250505b5b806001019050611b31565b508583528296505050505050505b9392505050565b806001611c2f611c2a612aef565b612af7565b1115611c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6790614278565b60405180910390fd5b600081118015611c8257506011548111155b611cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb8906142e4565b60405180910390fd5b600f5481611ccd610df2565b611cd79190614304565b1115611d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0f906143a6565b60405180910390fd5b8180600e54611d2791906140d7565b341015611d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6090614412565b60405180910390fd5b601360009054906101000a900460ff1615611db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db09061447e565b60405180910390fd5b611dca611dc4612aef565b84612b4e565b505050565b611dd76127ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e3c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611e496127ce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ef66127ce565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f3b919061345d565b60405180910390a35050565b600d8054611f549061400a565b80601f0160208091040260200160405190810160405280929190818152602001828054611f809061400a565b8015611fcd5780601f10611fa257610100808354040283529160200191611fcd565b820191906000526020600020905b815481529060010190602001808311611fb057829003601f168201915b505050505081565b611fdd6127d6565b8060118190555050565b60125481565b611ff56127d6565b80601360016101000a81548160ff02191690831515021790555050565b61201d848484610e09565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461207f5761204884848484612b6c565b61207e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61208d61333d565b61209561333d565b61209d612854565b8310806120b157506120ad612ae6565b8310155b156120bf57809150506120ea565b6120c883612abb565b90508060400151156120dd57809150506120ea565b6120e683612ccc565b9150505b919050565b60606120fa8261276f565b612139576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213090614510565b60405180910390fd5b60001515601360029054906101000a900460ff16151514156121e757600d80546121629061400a565b80601f016020809104026020016040519081016040528092919081815260200182805461218e9061400a565b80156121db5780601f106121b0576101008083540402835291602001916121db565b820191906000526020600020905b8154815290600101906020018083116121be57829003601f168201915b50505050509050612243565b60006121f1612cec565b90506000815111612211576040518060200160405280600081525061223f565b8061221b84612d7e565b600c60405160200161222f93929190614600565b6040516020818303038152906040525b9150505b919050565b60105481565b82600161226161225c612aef565b612af7565b11156122a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229990614278565b60405180910390fd5b6000811180156122b457506011548111155b6122f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ea906142e4565b60405180910390fd5b600f54816122ff610df2565b6123099190614304565b111561234a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612341906143a6565b60405180910390fd5b8380600e5461235991906140d7565b34101561239b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239290614412565b60405180910390fd5b601360019054906101000a900460ff166123ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e1906146a3565b60405180910390fd5b601054856123f6610df2565b6124009190614304565b1115612441576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124389061470f565b60405180910390fd5b600061244b612aef565b60405160200161245b9190614777565b6040516020818303038152906040528051906020012090506124c1858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5483612edf565b612500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f7906147de565b60405180910390fd5b61251161250b612aef565b87612b4e565b505050505050565b600f5481565b6125276127d6565b80601360026101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8160016125eb6125e6612aef565b612af7565b111561262c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262390614278565b60405180910390fd5b60008111801561263e57506011548111155b61267d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612674906142e4565b60405180910390fd5b600f5481612689610df2565b6126939190614304565b11156126d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126cb906143a6565b60405180910390fd5b6126dc6127d6565b6126e68284612b4e565b505050565b6126f36127d6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275a90614870565b60405180910390fd5b61276c816129f5565b50565b60008161277a612854565b11158015612789575060005482105b80156127c7575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6127de612aef565b73ffffffffffffffffffffffffffffffffffffffff166127fc611946565b73ffffffffffffffffffffffffffffffffffffffff1614612852576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612849906148dc565b60405180910390fd5b565b60006001905090565b6000808290508061286c612854565b116128f4576000548110156128f35760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156128f1575b60008114156128e75760046000836001900393508381526020019081526020016000205490506128bc565b8092505050612926565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86129b3868684612ef6565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ac361333d565b612adf6004600084815260200190815260200160002054612eff565b9050919050565b60008054905090565b600033905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b612b68828260405180602001604052806000815250612fb5565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b926127ce565b8786866040518563ffffffff1660e01b8152600401612bb49493929190614951565b602060405180830381600087803b158015612bce57600080fd5b505af1925050508015612bff57506040513d601f19601f82011682018060405250810190612bfc91906149b2565b60015b612c79573d8060008114612c2f576040519150601f19603f3d011682016040523d82523d6000602084013e612c34565b606091505b50600081511415612c71576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b612cd461333d565b612ce5612ce08361285d565b612eff565b9050919050565b6060600b8054612cfb9061400a565b80601f0160208091040260200160405190810160405280929190818152602001828054612d279061400a565b8015612d745780601f10612d4957610100808354040283529160200191612d74565b820191906000526020600020905b815481529060010190602001808311612d5757829003601f168201915b5050505050905090565b60606000821415612dc6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612eda565b600082905060005b60008214612df8578080612de1906149df565b915050600a82612df19190614160565b9150612dce565b60008167ffffffffffffffff811115612e1457612e13613692565b5b6040519080825280601f01601f191660200182016040528015612e465781602001600182028036833780820191505090505b5090505b60008514612ed357600182612e5f9190614a28565b9150600a85612e6e9190614a5c565b6030612e7a9190614304565b60f81b818381518110612e9057612e8f6141d7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ecc9190614160565b9450612e4a565b8093505050505b919050565b600082612eec8584613052565b1490509392505050565b60009392505050565b612f0761333d565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b612fbf83836130a8565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461304d57600080549050600083820390505b612fff6000868380600101945086612b6c565b613035576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612fec57816000541461304a57600080fd5b50505b505050565b60008082905060005b845181101561309d576130888286838151811061307b5761307a6141d7565b5b6020026020010151613265565b91508080613095906149df565b91505061305b565b508091505092915050565b60008054905060008214156130e9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130f66000848385612996565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061316d8361315e600086600061299c565b61316785613290565b176129c4565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461320e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506131d3565b50600082141561324a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061326060008483856129ef565b505050565b600081831061327d5761327882846132a0565b613288565b61328783836132a0565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b8280546132c39061400a565b90600052602060002090601f0160209004810192826132e5576000855561332c565b82601f106132fe57805160ff191683800117855561332c565b8280016001018555821561332c579182015b8281111561332b578251825591602001919060010190613310565b5b509050613339919061338c565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b808211156133a557600081600090555060010161338d565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6133f2816133bd565b81146133fd57600080fd5b50565b60008135905061340f816133e9565b92915050565b60006020828403121561342b5761342a6133b3565b5b600061343984828501613400565b91505092915050565b60008115159050919050565b61345781613442565b82525050565b6000602082019050613472600083018461344e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156134b2578082015181840152602081019050613497565b838111156134c1576000848401525b50505050565b6000601f19601f8301169050919050565b60006134e382613478565b6134ed8185613483565b93506134fd818560208601613494565b613506816134c7565b840191505092915050565b6000602082019050818103600083015261352b81846134d8565b905092915050565b6000819050919050565b61354681613533565b811461355157600080fd5b50565b6000813590506135638161353d565b92915050565b60006020828403121561357f5761357e6133b3565b5b600061358d84828501613554565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006135c182613596565b9050919050565b6135d1816135b6565b82525050565b60006020820190506135ec60008301846135c8565b92915050565b6135fb816135b6565b811461360657600080fd5b50565b600081359050613618816135f2565b92915050565b60008060408385031215613635576136346133b3565b5b600061364385828601613609565b925050602061365485828601613554565b9150509250929050565b61366781613533565b82525050565b6000602082019050613682600083018461365e565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6136ca826134c7565b810181811067ffffffffffffffff821117156136e9576136e8613692565b5b80604052505050565b60006136fc6133a9565b905061370882826136c1565b919050565b600067ffffffffffffffff82111561372857613727613692565b5b613731826134c7565b9050602081019050919050565b82818337600083830152505050565b600061376061375b8461370d565b6136f2565b90508281526020810184848401111561377c5761377b61368d565b5b61378784828561373e565b509392505050565b600082601f8301126137a4576137a3613688565b5b81356137b484826020860161374d565b91505092915050565b6000602082840312156137d3576137d26133b3565b5b600082013567ffffffffffffffff8111156137f1576137f06133b8565b5b6137fd8482850161378f565b91505092915050565b61380f81613442565b811461381a57600080fd5b50565b60008135905061382c81613806565b92915050565b600060208284031215613848576138476133b3565b5b60006138568482850161381d565b91505092915050565b600080600060608486031215613878576138776133b3565b5b600061388686828701613609565b935050602061389786828701613609565b92505060406138a886828701613554565b9150509250925092565b6000819050919050565b6138c5816138b2565b82525050565b60006020820190506138e060008301846138bc565b92915050565b600080fd5b600080fd5b60008083601f84011261390657613905613688565b5b8235905067ffffffffffffffff811115613923576139226138e6565b5b60208301915083602082028301111561393f5761393e6138eb565b5b9250929050565b6000806020838503121561395d5761395c6133b3565b5b600083013567ffffffffffffffff81111561397b5761397a6133b8565b5b613987858286016138f0565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6139c8816135b6565b82525050565b600067ffffffffffffffff82169050919050565b6139eb816139ce565b82525050565b6139fa81613442565b82525050565b600062ffffff82169050919050565b613a1881613a00565b82525050565b608082016000820151613a3460008501826139bf565b506020820151613a4760208501826139e2565b506040820151613a5a60408501826139f1565b506060820151613a6d6060850182613a0f565b50505050565b6000613a7f8383613a1e565b60808301905092915050565b6000602082019050919050565b6000613aa382613993565b613aad818561399e565b9350613ab8836139af565b8060005b83811015613ae9578151613ad08882613a73565b9750613adb83613a8b565b925050600181019050613abc565b5085935050505092915050565b60006020820190508181036000830152613b108184613a98565b905092915050565b600060208284031215613b2e57613b2d6133b3565b5b6000613b3c84828501613609565b91505092915050565b613b4e816138b2565b8114613b5957600080fd5b50565b600081359050613b6b81613b45565b92915050565b600060208284031215613b8757613b866133b3565b5b6000613b9584828501613b5c565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613bd381613533565b82525050565b6000613be58383613bca565b60208301905092915050565b6000602082019050919050565b6000613c0982613b9e565b613c138185613ba9565b9350613c1e83613bba565b8060005b83811015613c4f578151613c368882613bd9565b9750613c4183613bf1565b925050600181019050613c22565b5085935050505092915050565b60006020820190508181036000830152613c768184613bfe565b905092915050565b600080600060608486031215613c9757613c966133b3565b5b6000613ca586828701613609565b9350506020613cb686828701613554565b9250506040613cc786828701613554565b9150509250925092565b60008060408385031215613ce857613ce76133b3565b5b6000613cf685828601613609565b9250506020613d078582860161381d565b9150509250929050565b600067ffffffffffffffff821115613d2c57613d2b613692565b5b613d35826134c7565b9050602081019050919050565b6000613d55613d5084613d11565b6136f2565b905082815260208101848484011115613d7157613d7061368d565b5b613d7c84828561373e565b509392505050565b600082601f830112613d9957613d98613688565b5b8135613da9848260208601613d42565b91505092915050565b60008060008060808587031215613dcc57613dcb6133b3565b5b6000613dda87828801613609565b9450506020613deb87828801613609565b9350506040613dfc87828801613554565b925050606085013567ffffffffffffffff811115613e1d57613e1c6133b8565b5b613e2987828801613d84565b91505092959194509250565b608082016000820151613e4b60008501826139bf565b506020820151613e5e60208501826139e2565b506040820151613e7160408501826139f1565b506060820151613e846060850182613a0f565b50505050565b6000608082019050613e9f6000830184613e35565b92915050565b60008083601f840112613ebb57613eba613688565b5b8235905067ffffffffffffffff811115613ed857613ed76138e6565b5b602083019150836020820283011115613ef457613ef36138eb565b5b9250929050565b600080600060408486031215613f1457613f136133b3565b5b6000613f2286828701613554565b935050602084013567ffffffffffffffff811115613f4357613f426133b8565b5b613f4f86828701613ea5565b92509250509250925092565b60008060408385031215613f7257613f716133b3565b5b6000613f8085828601613609565b9250506020613f9185828601613609565b9150509250929050565b60008060408385031215613fb257613fb16133b3565b5b6000613fc085828601613554565b9250506020613fd185828601613609565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061402257607f821691505b6020821081141561403657614035613fdb565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614072601f83613483565b915061407d8261403c565b602082019050919050565b600060208201905081810360008301526140a181614065565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006140e282613533565b91506140ed83613533565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614126576141256140a8565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061416b82613533565b915061417683613533565b92508261418657614185614131565b5b828204905092915050565b600081905092915050565b50565b60006141ac600083614191565b91506141b78261419c565b600082019050919050565b60006141cd8261419f565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f596f752063616e6e6f74206d696e74206d6f7265207468616e203220746f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b6000614262602283613483565b915061426d82614206565b604082019050919050565b6000602082019050818103600083015261429181614255565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b60006142ce601383613483565b91506142d982614298565b602082019050919050565b600060208201905081810360008301526142fd816142c1565b9050919050565b600061430f82613533565b915061431a83613533565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561434f5761434e6140a8565b5b828201905092915050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b6000614390601383613483565b915061439b8261435a565b602082019050919050565b600060208201905081810360008301526143bf81614383565b9050919050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006143fc601283613483565b9150614407826143c6565b602082019050919050565b6000602082019050818103600083015261442b816143ef565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000614468601783613483565b915061447382614432565b602082019050919050565b600060208201905081810360008301526144978161445b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006144fa602f83613483565b91506145058261449e565b604082019050919050565b60006020820190508181036000830152614529816144ed565b9050919050565b600081905092915050565b600061454682613478565b6145508185614530565b9350614560818560208601613494565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461458e8161400a565b6145988186614530565b945060018216600081146145b357600181146145c4576145f7565b60ff198316865281860193506145f7565b6145cd8561456c565b60005b838110156145ef578154818901526001820191506020810190506145d0565b838801955050505b50505092915050565b600061460c828661453b565b9150614618828561453b565b91506146248284614581565b9150819050949350505050565b7f5468652077686974656c6973742073616c6520686173206e6f7420737461727460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b600061468d602283613483565b915061469882614631565b604082019050919050565b600060208201905081810360008301526146bc81614680565b9050919050565b7f574c20737570706c792065786365656465640000000000000000000000000000600082015250565b60006146f9601283613483565b9150614704826146c3565b602082019050919050565b60006020820190508181036000830152614728816146ec565b9050919050565b60008160601b9050919050565b60006147478261472f565b9050919050565b60006147598261473c565b9050919050565b61477161476c826135b6565b61474e565b82525050565b60006147838284614760565b60148201915081905092915050565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b60006147c8600d83613483565b91506147d382614792565b602082019050919050565b600060208201905081810360008301526147f7816147bb565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061485a602683613483565b9150614865826147fe565b604082019050919050565b600060208201905081810360008301526148898161484d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006148c6602083613483565b91506148d182614890565b602082019050919050565b600060208201905081810360008301526148f5816148b9565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614923826148fc565b61492d8185614907565b935061493d818560208601613494565b614946816134c7565b840191505092915050565b600060808201905061496660008301876135c8565b61497360208301866135c8565b614980604083018561365e565b81810360608301526149928184614918565b905095945050505050565b6000815190506149ac816133e9565b92915050565b6000602082840312156149c8576149c76133b3565b5b60006149d68482850161499d565b91505092915050565b60006149ea82613533565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614a1d57614a1c6140a8565b5b600182019050919050565b6000614a3382613533565b9150614a3e83613533565b925082821015614a5157614a506140a8565b5b828203905092915050565b6000614a6782613533565b9150614a7283613533565b925082614a8257614a81614131565b5b82820690509291505056fea264697066735822122002d7ac96e80784d793fcef703fd5c7616798bef692c81531b5fd7dc4575d646064736f6c63430008090033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000008434f4d504f554e440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004434d5044000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261666b7265696771793378707535356672676675733462736561656b6762657065776d657072327a7678766c766176366333646967676a6977612f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102885760003560e01c8063715018a61161015a578063b228d925116100c1578063d2cab0561161007a578063d2cab056146109bf578063d5abeb01146109db578063e0a8085314610a06578063e985e9c514610a2f578063efbd73f414610a6c578063f2fde38b14610a9557610288565b8063b228d9251461089d578063b767a098146108c8578063b88d4fde146108f1578063c23dc68f1461091a578063c87b56dd14610957578063cc2f10d41461099457610288565b806395d89b411161011357806395d89b411461079c57806399a2557a146107c7578063a0712d6814610804578063a22cb46514610820578063a45ba8e714610849578063b071401b1461087457610288565b8063715018a6146106a05780637cb64759146106b75780637ec4a659146106e05780638462151c146107095780638da5cb5b1461074657806394354fd01461077157610288565b806342842e0e116101fe5780635bbb2177116101b75780635bbb2177146105685780635c975abb146105a557806362b99ad4146105d05780636352211e146105fb5780636caede3d1461063857806370a082311461066357610288565b806342842e0e1461046e57806344a0d68a146104975780634fdd43cb146104c057806351830227146104e95780635503a0e81461051457806355a63bf41461053f57610288565b806316ba10e01161025057806316ba10e01461038657806316c38b3c146103af57806318160ddd146103d857806323b872dd146104035780632eb4a7ab1461042c5780633ccfd60b1461045757610288565b806301ffc9a71461028d57806306fdde03146102ca578063081812fc146102f5578063095ea7b31461033257806313faede61461035b575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613415565b610abe565b6040516102c1919061345d565b60405180910390f35b3480156102d657600080fd5b506102df610b50565b6040516102ec9190613511565b60405180910390f35b34801561030157600080fd5b5061031c60048036038101906103179190613569565b610be2565b60405161032991906135d7565b60405180910390f35b34801561033e57600080fd5b506103596004803603810190610354919061361e565b610c61565b005b34801561036757600080fd5b50610370610da5565b60405161037d919061366d565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a891906137bd565b610dab565b005b3480156103bb57600080fd5b506103d660048036038101906103d19190613832565b610dcd565b005b3480156103e457600080fd5b506103ed610df2565b6040516103fa919061366d565b60405180910390f35b34801561040f57600080fd5b5061042a6004803603810190610425919061385f565b610e09565b005b34801561043857600080fd5b5061044161112e565b60405161044e91906138cb565b60405180910390f35b34801561046357600080fd5b5061046c611134565b005b34801561047a57600080fd5b506104956004803603810190610490919061385f565b61146b565b005b3480156104a357600080fd5b506104be60048036038101906104b99190613569565b61148b565b005b3480156104cc57600080fd5b506104e760048036038101906104e291906137bd565b61149d565b005b3480156104f557600080fd5b506104fe6114bf565b60405161050b919061345d565b60405180910390f35b34801561052057600080fd5b506105296114d2565b6040516105369190613511565b60405180910390f35b34801561054b57600080fd5b5061056660048036038101906105619190613569565b611560565b005b34801561057457600080fd5b5061058f600480360381019061058a9190613946565b611572565b60405161059c9190613af6565b60405180910390f35b3480156105b157600080fd5b506105ba611635565b6040516105c7919061345d565b60405180910390f35b3480156105dc57600080fd5b506105e5611648565b6040516105f29190613511565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d9190613569565b6116d6565b60405161062f91906135d7565b60405180910390f35b34801561064457600080fd5b5061064d6116e8565b60405161065a919061345d565b60405180910390f35b34801561066f57600080fd5b5061068a60048036038101906106859190613b18565b6116fb565b604051610697919061366d565b60405180910390f35b3480156106ac57600080fd5b506106b56117b4565b005b3480156106c357600080fd5b506106de60048036038101906106d99190613b71565b6117c8565b005b3480156106ec57600080fd5b50610707600480360381019061070291906137bd565b6117da565b005b34801561071557600080fd5b50610730600480360381019061072b9190613b18565b6117fc565b60405161073d9190613c5c565b60405180910390f35b34801561075257600080fd5b5061075b611946565b60405161076891906135d7565b60405180910390f35b34801561077d57600080fd5b50610786611970565b604051610793919061366d565b60405180910390f35b3480156107a857600080fd5b506107b1611976565b6040516107be9190613511565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e99190613c7e565b611a08565b6040516107fb9190613c5c565b60405180910390f35b61081e60048036038101906108199190613569565b611c1c565b005b34801561082c57600080fd5b5061084760048036038101906108429190613cd1565b611dcf565b005b34801561085557600080fd5b5061085e611f47565b60405161086b9190613511565b60405180910390f35b34801561088057600080fd5b5061089b60048036038101906108969190613569565b611fd5565b005b3480156108a957600080fd5b506108b2611fe7565b6040516108bf919061366d565b60405180910390f35b3480156108d457600080fd5b506108ef60048036038101906108ea9190613832565b611fed565b005b3480156108fd57600080fd5b5061091860048036038101906109139190613db2565b612012565b005b34801561092657600080fd5b50610941600480360381019061093c9190613569565b612085565b60405161094e9190613e8a565b60405180910390f35b34801561096357600080fd5b5061097e60048036038101906109799190613569565b6120ef565b60405161098b9190613511565b60405180910390f35b3480156109a057600080fd5b506109a9612248565b6040516109b6919061366d565b60405180910390f35b6109d960048036038101906109d49190613efb565b61224e565b005b3480156109e757600080fd5b506109f0612519565b6040516109fd919061366d565b60405180910390f35b348015610a1257600080fd5b50610a2d6004803603810190610a289190613832565b61251f565b005b348015610a3b57600080fd5b50610a566004803603810190610a519190613f5b565b612544565b604051610a63919061345d565b60405180910390f35b348015610a7857600080fd5b50610a936004803603810190610a8e9190613f9b565b6125d8565b005b348015610aa157600080fd5b50610abc6004803603810190610ab79190613b18565b6126eb565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b1957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b495750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610b5f9061400a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8b9061400a565b8015610bd85780601f10610bad57610100808354040283529160200191610bd8565b820191906000526020600020905b815481529060010190602001808311610bbb57829003601f168201915b5050505050905090565b6000610bed8261276f565b610c23576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c6c826116d6565b90508073ffffffffffffffffffffffffffffffffffffffff16610c8d6127ce565b73ffffffffffffffffffffffffffffffffffffffff1614610cf057610cb981610cb46127ce565b612544565b610cef576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600e5481565b610db36127d6565b80600c9080519060200190610dc99291906132b7565b5050565b610dd56127d6565b80601360006101000a81548160ff02191690831515021790555050565b6000610dfc612854565b6001546000540303905090565b6000610e148261285d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e7b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610e878461292b565b91509150610e9d8187610e986127ce565b612952565b610ee957610eb286610ead6127ce565b612544565b610ee8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610f50576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f5d8686866001612996565b8015610f6857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506110368561101288888761299c565b7c0200000000000000000000000000000000000000000000000000000000176129c4565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156110be5760006001850190506000600460008381526020019081526020016000205414156110bc5760005481146110bb578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461112686868660016129ef565b505050505050565b600a5481565b61113c6127d6565b60026009541415611182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117990614088565b60405180910390fd5b600260098190555060006127106108ca4761119d91906140d7565b6111a79190614160565b905060007318237f1cb447b19dfd3098ffff072a0244f67a0e73ffffffffffffffffffffffffffffffffffffffff16826040516111e3906141c2565b60006040518083038185875af1925050503d8060008114611220576040519150601f19603f3d011682016040523d82523d6000602084013e611225565b606091505b505090508061123357600080fd5b6000737edd222236a82adc7cc024e565d23154d2ee66cb73ffffffffffffffffffffffffffffffffffffffff168360405161126d906141c2565b60006040518083038185875af1925050503d80600081146112aa576040519150601f19603f3d011682016040523d82523d6000602084013e6112af565b606091505b50509050806112bd57600080fd5b6000737e584246fa824989d0d166b44415be5a55b5d9c373ffffffffffffffffffffffffffffffffffffffff16846040516112f7906141c2565b60006040518083038185875af1925050503d8060008114611334576040519150601f19603f3d011682016040523d82523d6000602084013e611339565b606091505b505090508061134757600080fd5b600073605fa1db729ff5eec2f9abbeb01e257f2373f1ef73ffffffffffffffffffffffffffffffffffffffff1685604051611381906141c2565b60006040518083038185875af1925050503d80600081146113be576040519150601f19603f3d011682016040523d82523d6000602084013e6113c3565b606091505b50509050806113d157600080fd5b600073e694d97d5d26cf9e0889f4ae8098119c6f9d0ee173ffffffffffffffffffffffffffffffffffffffff164760405161140b906141c2565b60006040518083038185875af1925050503d8060008114611448576040519150601f19603f3d011682016040523d82523d6000602084013e61144d565b606091505b505090508061145b57600080fd5b5050505050506001600981905550565b61148683838360405180602001604052806000815250612012565b505050565b6114936127d6565b80600e8190555050565b6114a56127d6565b80600d90805190602001906114bb9291906132b7565b5050565b601360029054906101000a900460ff1681565b600c80546114df9061400a565b80601f016020809104026020016040519081016040528092919081815260200182805461150b9061400a565b80156115585780601f1061152d57610100808354040283529160200191611558565b820191906000526020600020905b81548152906001019060200180831161153b57829003601f168201915b505050505081565b6115686127d6565b8060108190555050565b6060600083839050905060008167ffffffffffffffff81111561159857611597613692565b5b6040519080825280602002602001820160405280156115d157816020015b6115be61333d565b8152602001906001900390816115b65790505b50905060005b828114611629576116008686838181106115f4576115f36141d7565b5b90506020020135612085565b828281518110611613576116126141d7565b5b60200260200101819052508060010190506115d7565b50809250505092915050565b601360009054906101000a900460ff1681565b600b80546116559061400a565b80601f01602080910402602001604051908101604052809291908181526020018280546116819061400a565b80156116ce5780601f106116a3576101008083540402835291602001916116ce565b820191906000526020600020905b8154815290600101906020018083116116b157829003601f168201915b505050505081565b60006116e18261285d565b9050919050565b601360019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611763576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6117bc6127d6565b6117c660006129f5565b565b6117d06127d6565b80600a8190555050565b6117e26127d6565b80600b90805190602001906117f89291906132b7565b5050565b6060600080600061180c856116fb565b905060008167ffffffffffffffff81111561182a57611829613692565b5b6040519080825280602002602001820160405280156118585781602001602082028036833780820191505090505b50905061186361333d565b600061186d612854565b90505b8386146119385761188081612abb565b91508160400151156118915761192d565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146118d157816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561192c578083878060010198508151811061191f5761191e6141d7565b5b6020026020010181815250505b5b806001019050611870565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b6060600380546119859061400a565b80601f01602080910402602001604051908101604052809291908181526020018280546119b19061400a565b80156119fe5780601f106119d3576101008083540402835291602001916119fe565b820191906000526020600020905b8154815290600101906020018083116119e157829003601f168201915b5050505050905090565b6060818310611a43576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611a4e612ae6565b9050611a58612854565b851015611a6a57611a67612854565b94505b80841115611a76578093505b6000611a81876116fb565b905084861015611aa4576000868603905081811015611a9e578091505b50611aa9565b600090505b60008167ffffffffffffffff811115611ac557611ac4613692565b5b604051908082528060200260200182016040528015611af35781602001602082028036833780820191505090505b5090506000821415611b0b5780945050505050611c15565b6000611b1688612085565b905060008160400151611b2b57816000015190505b60008990505b888114158015611b415750848714155b15611c0757611b4f81612abb565b9250826040015115611b6057611bfc565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff1614611ba057826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bfb5780848880600101995081518110611bee57611bed6141d7565b5b6020026020010181815250505b5b806001019050611b31565b508583528296505050505050505b9392505050565b806001611c2f611c2a612aef565b612af7565b1115611c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6790614278565b60405180910390fd5b600081118015611c8257506011548111155b611cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb8906142e4565b60405180910390fd5b600f5481611ccd610df2565b611cd79190614304565b1115611d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0f906143a6565b60405180910390fd5b8180600e54611d2791906140d7565b341015611d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6090614412565b60405180910390fd5b601360009054906101000a900460ff1615611db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db09061447e565b60405180910390fd5b611dca611dc4612aef565b84612b4e565b505050565b611dd76127ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e3c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611e496127ce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ef66127ce565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f3b919061345d565b60405180910390a35050565b600d8054611f549061400a565b80601f0160208091040260200160405190810160405280929190818152602001828054611f809061400a565b8015611fcd5780601f10611fa257610100808354040283529160200191611fcd565b820191906000526020600020905b815481529060010190602001808311611fb057829003601f168201915b505050505081565b611fdd6127d6565b8060118190555050565b60125481565b611ff56127d6565b80601360016101000a81548160ff02191690831515021790555050565b61201d848484610e09565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461207f5761204884848484612b6c565b61207e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61208d61333d565b61209561333d565b61209d612854565b8310806120b157506120ad612ae6565b8310155b156120bf57809150506120ea565b6120c883612abb565b90508060400151156120dd57809150506120ea565b6120e683612ccc565b9150505b919050565b60606120fa8261276f565b612139576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213090614510565b60405180910390fd5b60001515601360029054906101000a900460ff16151514156121e757600d80546121629061400a565b80601f016020809104026020016040519081016040528092919081815260200182805461218e9061400a565b80156121db5780601f106121b0576101008083540402835291602001916121db565b820191906000526020600020905b8154815290600101906020018083116121be57829003601f168201915b50505050509050612243565b60006121f1612cec565b90506000815111612211576040518060200160405280600081525061223f565b8061221b84612d7e565b600c60405160200161222f93929190614600565b6040516020818303038152906040525b9150505b919050565b60105481565b82600161226161225c612aef565b612af7565b11156122a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229990614278565b60405180910390fd5b6000811180156122b457506011548111155b6122f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ea906142e4565b60405180910390fd5b600f54816122ff610df2565b6123099190614304565b111561234a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612341906143a6565b60405180910390fd5b8380600e5461235991906140d7565b34101561239b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239290614412565b60405180910390fd5b601360019054906101000a900460ff166123ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e1906146a3565b60405180910390fd5b601054856123f6610df2565b6124009190614304565b1115612441576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124389061470f565b60405180910390fd5b600061244b612aef565b60405160200161245b9190614777565b6040516020818303038152906040528051906020012090506124c1858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5483612edf565b612500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f7906147de565b60405180910390fd5b61251161250b612aef565b87612b4e565b505050505050565b600f5481565b6125276127d6565b80601360026101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8160016125eb6125e6612aef565b612af7565b111561262c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262390614278565b60405180910390fd5b60008111801561263e57506011548111155b61267d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612674906142e4565b60405180910390fd5b600f5481612689610df2565b6126939190614304565b11156126d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126cb906143a6565b60405180910390fd5b6126dc6127d6565b6126e68284612b4e565b505050565b6126f36127d6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275a90614870565b60405180910390fd5b61276c816129f5565b50565b60008161277a612854565b11158015612789575060005482105b80156127c7575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6127de612aef565b73ffffffffffffffffffffffffffffffffffffffff166127fc611946565b73ffffffffffffffffffffffffffffffffffffffff1614612852576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612849906148dc565b60405180910390fd5b565b60006001905090565b6000808290508061286c612854565b116128f4576000548110156128f35760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156128f1575b60008114156128e75760046000836001900393508381526020019081526020016000205490506128bc565b8092505050612926565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86129b3868684612ef6565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ac361333d565b612adf6004600084815260200190815260200160002054612eff565b9050919050565b60008054905090565b600033905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b612b68828260405180602001604052806000815250612fb5565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b926127ce565b8786866040518563ffffffff1660e01b8152600401612bb49493929190614951565b602060405180830381600087803b158015612bce57600080fd5b505af1925050508015612bff57506040513d601f19601f82011682018060405250810190612bfc91906149b2565b60015b612c79573d8060008114612c2f576040519150601f19603f3d011682016040523d82523d6000602084013e612c34565b606091505b50600081511415612c71576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b612cd461333d565b612ce5612ce08361285d565b612eff565b9050919050565b6060600b8054612cfb9061400a565b80601f0160208091040260200160405190810160405280929190818152602001828054612d279061400a565b8015612d745780601f10612d4957610100808354040283529160200191612d74565b820191906000526020600020905b815481529060010190602001808311612d5757829003601f168201915b5050505050905090565b60606000821415612dc6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612eda565b600082905060005b60008214612df8578080612de1906149df565b915050600a82612df19190614160565b9150612dce565b60008167ffffffffffffffff811115612e1457612e13613692565b5b6040519080825280601f01601f191660200182016040528015612e465781602001600182028036833780820191505090505b5090505b60008514612ed357600182612e5f9190614a28565b9150600a85612e6e9190614a5c565b6030612e7a9190614304565b60f81b818381518110612e9057612e8f6141d7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ecc9190614160565b9450612e4a565b8093505050505b919050565b600082612eec8584613052565b1490509392505050565b60009392505050565b612f0761333d565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b612fbf83836130a8565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461304d57600080549050600083820390505b612fff6000868380600101945086612b6c565b613035576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612fec57816000541461304a57600080fd5b50505b505050565b60008082905060005b845181101561309d576130888286838151811061307b5761307a6141d7565b5b6020026020010151613265565b91508080613095906149df565b91505061305b565b508091505092915050565b60008054905060008214156130e9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130f66000848385612996565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061316d8361315e600086600061299c565b61316785613290565b176129c4565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461320e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506131d3565b50600082141561324a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061326060008483856129ef565b505050565b600081831061327d5761327882846132a0565b613288565b61328783836132a0565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b8280546132c39061400a565b90600052602060002090601f0160209004810192826132e5576000855561332c565b82601f106132fe57805160ff191683800117855561332c565b8280016001018555821561332c579182015b8281111561332b578251825591602001919060010190613310565b5b509050613339919061338c565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b808211156133a557600081600090555060010161338d565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6133f2816133bd565b81146133fd57600080fd5b50565b60008135905061340f816133e9565b92915050565b60006020828403121561342b5761342a6133b3565b5b600061343984828501613400565b91505092915050565b60008115159050919050565b61345781613442565b82525050565b6000602082019050613472600083018461344e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156134b2578082015181840152602081019050613497565b838111156134c1576000848401525b50505050565b6000601f19601f8301169050919050565b60006134e382613478565b6134ed8185613483565b93506134fd818560208601613494565b613506816134c7565b840191505092915050565b6000602082019050818103600083015261352b81846134d8565b905092915050565b6000819050919050565b61354681613533565b811461355157600080fd5b50565b6000813590506135638161353d565b92915050565b60006020828403121561357f5761357e6133b3565b5b600061358d84828501613554565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006135c182613596565b9050919050565b6135d1816135b6565b82525050565b60006020820190506135ec60008301846135c8565b92915050565b6135fb816135b6565b811461360657600080fd5b50565b600081359050613618816135f2565b92915050565b60008060408385031215613635576136346133b3565b5b600061364385828601613609565b925050602061365485828601613554565b9150509250929050565b61366781613533565b82525050565b6000602082019050613682600083018461365e565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6136ca826134c7565b810181811067ffffffffffffffff821117156136e9576136e8613692565b5b80604052505050565b60006136fc6133a9565b905061370882826136c1565b919050565b600067ffffffffffffffff82111561372857613727613692565b5b613731826134c7565b9050602081019050919050565b82818337600083830152505050565b600061376061375b8461370d565b6136f2565b90508281526020810184848401111561377c5761377b61368d565b5b61378784828561373e565b509392505050565b600082601f8301126137a4576137a3613688565b5b81356137b484826020860161374d565b91505092915050565b6000602082840312156137d3576137d26133b3565b5b600082013567ffffffffffffffff8111156137f1576137f06133b8565b5b6137fd8482850161378f565b91505092915050565b61380f81613442565b811461381a57600080fd5b50565b60008135905061382c81613806565b92915050565b600060208284031215613848576138476133b3565b5b60006138568482850161381d565b91505092915050565b600080600060608486031215613878576138776133b3565b5b600061388686828701613609565b935050602061389786828701613609565b92505060406138a886828701613554565b9150509250925092565b6000819050919050565b6138c5816138b2565b82525050565b60006020820190506138e060008301846138bc565b92915050565b600080fd5b600080fd5b60008083601f84011261390657613905613688565b5b8235905067ffffffffffffffff811115613923576139226138e6565b5b60208301915083602082028301111561393f5761393e6138eb565b5b9250929050565b6000806020838503121561395d5761395c6133b3565b5b600083013567ffffffffffffffff81111561397b5761397a6133b8565b5b613987858286016138f0565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6139c8816135b6565b82525050565b600067ffffffffffffffff82169050919050565b6139eb816139ce565b82525050565b6139fa81613442565b82525050565b600062ffffff82169050919050565b613a1881613a00565b82525050565b608082016000820151613a3460008501826139bf565b506020820151613a4760208501826139e2565b506040820151613a5a60408501826139f1565b506060820151613a6d6060850182613a0f565b50505050565b6000613a7f8383613a1e565b60808301905092915050565b6000602082019050919050565b6000613aa382613993565b613aad818561399e565b9350613ab8836139af565b8060005b83811015613ae9578151613ad08882613a73565b9750613adb83613a8b565b925050600181019050613abc565b5085935050505092915050565b60006020820190508181036000830152613b108184613a98565b905092915050565b600060208284031215613b2e57613b2d6133b3565b5b6000613b3c84828501613609565b91505092915050565b613b4e816138b2565b8114613b5957600080fd5b50565b600081359050613b6b81613b45565b92915050565b600060208284031215613b8757613b866133b3565b5b6000613b9584828501613b5c565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613bd381613533565b82525050565b6000613be58383613bca565b60208301905092915050565b6000602082019050919050565b6000613c0982613b9e565b613c138185613ba9565b9350613c1e83613bba565b8060005b83811015613c4f578151613c368882613bd9565b9750613c4183613bf1565b925050600181019050613c22565b5085935050505092915050565b60006020820190508181036000830152613c768184613bfe565b905092915050565b600080600060608486031215613c9757613c966133b3565b5b6000613ca586828701613609565b9350506020613cb686828701613554565b9250506040613cc786828701613554565b9150509250925092565b60008060408385031215613ce857613ce76133b3565b5b6000613cf685828601613609565b9250506020613d078582860161381d565b9150509250929050565b600067ffffffffffffffff821115613d2c57613d2b613692565b5b613d35826134c7565b9050602081019050919050565b6000613d55613d5084613d11565b6136f2565b905082815260208101848484011115613d7157613d7061368d565b5b613d7c84828561373e565b509392505050565b600082601f830112613d9957613d98613688565b5b8135613da9848260208601613d42565b91505092915050565b60008060008060808587031215613dcc57613dcb6133b3565b5b6000613dda87828801613609565b9450506020613deb87828801613609565b9350506040613dfc87828801613554565b925050606085013567ffffffffffffffff811115613e1d57613e1c6133b8565b5b613e2987828801613d84565b91505092959194509250565b608082016000820151613e4b60008501826139bf565b506020820151613e5e60208501826139e2565b506040820151613e7160408501826139f1565b506060820151613e846060850182613a0f565b50505050565b6000608082019050613e9f6000830184613e35565b92915050565b60008083601f840112613ebb57613eba613688565b5b8235905067ffffffffffffffff811115613ed857613ed76138e6565b5b602083019150836020820283011115613ef457613ef36138eb565b5b9250929050565b600080600060408486031215613f1457613f136133b3565b5b6000613f2286828701613554565b935050602084013567ffffffffffffffff811115613f4357613f426133b8565b5b613f4f86828701613ea5565b92509250509250925092565b60008060408385031215613f7257613f716133b3565b5b6000613f8085828601613609565b9250506020613f9185828601613609565b9150509250929050565b60008060408385031215613fb257613fb16133b3565b5b6000613fc085828601613554565b9250506020613fd185828601613609565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061402257607f821691505b6020821081141561403657614035613fdb565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614072601f83613483565b915061407d8261403c565b602082019050919050565b600060208201905081810360008301526140a181614065565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006140e282613533565b91506140ed83613533565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614126576141256140a8565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061416b82613533565b915061417683613533565b92508261418657614185614131565b5b828204905092915050565b600081905092915050565b50565b60006141ac600083614191565b91506141b78261419c565b600082019050919050565b60006141cd8261419f565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f596f752063616e6e6f74206d696e74206d6f7265207468616e203220746f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b6000614262602283613483565b915061426d82614206565b604082019050919050565b6000602082019050818103600083015261429181614255565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b60006142ce601383613483565b91506142d982614298565b602082019050919050565b600060208201905081810360008301526142fd816142c1565b9050919050565b600061430f82613533565b915061431a83613533565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561434f5761434e6140a8565b5b828201905092915050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b6000614390601383613483565b915061439b8261435a565b602082019050919050565b600060208201905081810360008301526143bf81614383565b9050919050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006143fc601283613483565b9150614407826143c6565b602082019050919050565b6000602082019050818103600083015261442b816143ef565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000614468601783613483565b915061447382614432565b602082019050919050565b600060208201905081810360008301526144978161445b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006144fa602f83613483565b91506145058261449e565b604082019050919050565b60006020820190508181036000830152614529816144ed565b9050919050565b600081905092915050565b600061454682613478565b6145508185614530565b9350614560818560208601613494565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461458e8161400a565b6145988186614530565b945060018216600081146145b357600181146145c4576145f7565b60ff198316865281860193506145f7565b6145cd8561456c565b60005b838110156145ef578154818901526001820191506020810190506145d0565b838801955050505b50505092915050565b600061460c828661453b565b9150614618828561453b565b91506146248284614581565b9150819050949350505050565b7f5468652077686974656c6973742073616c6520686173206e6f7420737461727460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b600061468d602283613483565b915061469882614631565b604082019050919050565b600060208201905081810360008301526146bc81614680565b9050919050565b7f574c20737570706c792065786365656465640000000000000000000000000000600082015250565b60006146f9601283613483565b9150614704826146c3565b602082019050919050565b60006020820190508181036000830152614728816146ec565b9050919050565b60008160601b9050919050565b60006147478261472f565b9050919050565b60006147598261473c565b9050919050565b61477161476c826135b6565b61474e565b82525050565b60006147838284614760565b60148201915081905092915050565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b60006147c8600d83613483565b91506147d382614792565b602082019050919050565b600060208201905081810360008301526147f7816147bb565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061485a602683613483565b9150614865826147fe565b604082019050919050565b600060208201905081810360008301526148898161484d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006148c6602083613483565b91506148d182614890565b602082019050919050565b600060208201905081810360008301526148f5816148b9565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614923826148fc565b61492d8185614907565b935061493d818560208601613494565b614946816134c7565b840191505092915050565b600060808201905061496660008301876135c8565b61497360208301866135c8565b614980604083018561365e565b81810360608301526149928184614918565b905095945050505050565b6000815190506149ac816133e9565b92915050565b6000602082840312156149c8576149c76133b3565b5b60006149d68482850161499d565b91505092915050565b60006149ea82613533565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614a1d57614a1c6140a8565b5b600182019050919050565b6000614a3382613533565b9150614a3e83613533565b925082821015614a5157614a506140a8565b5b828203905092915050565b6000614a6782613533565b9150614a7283613533565b925082614a8257614a81614131565b5b82820690509291505056fea264697066735822122002d7ac96e80784d793fcef703fd5c7616798bef692c81531b5fd7dc4575d646064736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000008434f4d504f554e440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004434d5044000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261666b7265696771793378707535356672676675733462736561656b6762657065776d657072327a7678766c766176366333646967676a6977612f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): COMPOUND
Arg [1] : _tokenSymbol (string): CMPD
Arg [2] : _hiddenMetadataUri (string): ipfs://bafkreigqy3xpu55frgfus4bseaekgbepewmepr2zvxvlvav6c3diggjiwa/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 434f4d504f554e44000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 434d504400000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [8] : 697066733a2f2f6261666b726569677179337870753535667267667573346273
Arg [9] : 6561656b6762657065776d657072327a7678766c766176366333646967676a69
Arg [10] : 77612f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

77440:5445:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36009:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36911:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43394:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42835:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77694:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81447:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81561:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32662:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47101:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77545:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81987:777;;;;;;;;;;;;;:::i;:::-;;50014:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80909:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81164:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77974:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77614:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81652:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72592:528;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77895:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77579:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38304:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77927:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33846:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16757:103;;;;;;;;;;;;;:::i;:::-;;81756:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81333:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76468:900;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16109:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77807:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37087:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73508:2513;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79498:263;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43952:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77654:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80997:159;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77851:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81868:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50797:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72005:428;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80079:727;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77773:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78850:640;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77735:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80814:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44417:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79769:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17015:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36009:639;36094:4;36433:10;36418:25;;:11;:25;;;;:102;;;;36510:10;36495:25;;:11;:25;;;;36418:102;:179;;;;36587:10;36572:25;;:11;:25;;;;36418:179;36398:199;;36009:639;;;:::o;36911:100::-;36965:13;36998:5;36991:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36911:100;:::o;43394:218::-;43470:7;43495:16;43503:7;43495;:16::i;:::-;43490:64;;43520:34;;;;;;;;;;;;;;43490:64;43574:15;:24;43590:7;43574:24;;;;;;;;;;;:30;;;;;;;;;;;;43567:37;;43394:218;;;:::o;42835:400::-;42916:13;42932:16;42940:7;42932;:16::i;:::-;42916:32;;42988:5;42965:28;;:19;:17;:19::i;:::-;:28;;;42961:175;;43013:44;43030:5;43037:19;:17;:19::i;:::-;43013:16;:44::i;:::-;43008:128;;43085:35;;;;;;;;;;;;;;43008:128;42961:175;43181:2;43148:15;:24;43164:7;43148:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;43219:7;43215:2;43199:28;;43208:5;43199:28;;;;;;;;;;;;42905:330;42835:400;;:::o;77694:34::-;;;;:::o;81447:106::-;15995:13;:11;:13::i;:::-;81535:10:::1;81523:9;:22;;;;;;;;;;;;:::i;:::-;;81447:106:::0;:::o;81561:83::-;15995:13;:11;:13::i;:::-;81630:6:::1;81621;;:15;;;;;;;;;;;;;;;;;;81561:83:::0;:::o;32662:323::-;32723:7;32951:15;:13;:15::i;:::-;32936:12;;32920:13;;:28;:46;32913:53;;32662:323;:::o;47101:2817::-;47235:27;47265;47284:7;47265:18;:27::i;:::-;47235:57;;47350:4;47309:45;;47325:19;47309:45;;;47305:86;;47363:28;;;;;;;;;;;;;;47305:86;47405:27;47434:23;47461:35;47488:7;47461:26;:35::i;:::-;47404:92;;;;47596:68;47621:15;47638:4;47644:19;:17;:19::i;:::-;47596:24;:68::i;:::-;47591:180;;47684:43;47701:4;47707:19;:17;:19::i;:::-;47684:16;:43::i;:::-;47679:92;;47736:35;;;;;;;;;;;;;;47679:92;47591:180;47802:1;47788:16;;:2;:16;;;47784:52;;;47813:23;;;;;;;;;;;;;;47784:52;47849:43;47871:4;47877:2;47881:7;47890:1;47849:21;:43::i;:::-;47985:15;47982:160;;;48125:1;48104:19;48097:30;47982:160;48522:18;:24;48541:4;48522:24;;;;;;;;;;;;;;;;48520:26;;;;;;;;;;;;48591:18;:22;48610:2;48591:22;;;;;;;;;;;;;;;;48589:24;;;;;;;;;;;48913:146;48950:2;48999:45;49014:4;49020:2;49024:19;48999:14;:45::i;:::-;29061:8;48971:73;48913:18;:146::i;:::-;48884:17;:26;48902:7;48884:26;;;;;;;;;;;:175;;;;49230:1;29061:8;49179:19;:47;:52;49175:627;;;49252:19;49284:1;49274:7;:11;49252:33;;49441:1;49407:17;:30;49425:11;49407:30;;;;;;;;;;;;:35;49403:384;;;49545:13;;49530:11;:28;49526:242;;49725:19;49692:17;:30;49710:11;49692:30;;;;;;;;;;;:52;;;;49526:242;49403:384;49233:569;49175:627;49849:7;49845:2;49830:27;;49839:4;49830:27;;;;;;;;;;;;49868:42;49889:4;49895:2;49899:7;49908:1;49868:20;:42::i;:::-;47224:2694;;;47101:2817;;;:::o;77545:25::-;;;;:::o;81987:777::-;15995:13;:11;:13::i;:::-;4309:1:::1;4907:7;;:19;;4899:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4309:1;5040:7;:18;;;;82048:12:::2;82094:5;82087:4;82063:21;:28;;;;:::i;:::-;:36;;;;:::i;:::-;82048:51;;82113:10;82137:42;82129:56;;82193:4;82129:73;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82112:90;;;82221:5;82213:14;;;::::0;::::2;;82241:10;82265:42;82257:56;;82321:4;82257:73;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82240:90;;;82349:5;82341:14;;;::::0;::::2;;82369:10;82393:42;82385:56;;82449:4;82385:73;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82368:90;;;82477:5;82469:14;;;::::0;::::2;;82497:10;82521:42;82513:56;;82577:4;82513:73;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82496:90;;;82605:5;82597:14;;;::::0;::::2;;82625:10;82649:42;82641:56;;82705:21;82641:90;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82624:107;;;82750:5;82742:14;;;::::0;::::2;;82037:727;;;;;;4265:1:::1;5219:7;:22;;;;81987:777::o:0;50014:185::-;50152:39;50169:4;50175:2;50179:7;50152:39;;;;;;;;;;;;:16;:39::i;:::-;50014:185;;;:::o;80909:80::-;15995:13;:11;:13::i;:::-;80976:5:::1;80969:4;:12;;;;80909:80:::0;:::o;81164:161::-;15995:13;:11;:13::i;:::-;81299:18:::1;81279:17;:38;;;;;;;;;;;;:::i;:::-;;81164:161:::0;:::o;77974:28::-;;;;;;;;;;;;;:::o;77614:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;81652:96::-;15995:13;:11;:13::i;:::-;81733:7:::1;81725:5;:15;;;;81652:96:::0;:::o;72592:528::-;72736:23;72802:22;72827:8;;:15;;72802:40;;72857:34;72915:14;72894:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;72857:73;;72950:9;72945:125;72966:14;72961:1;:19;72945:125;;73022:32;73042:8;;73051:1;73042:11;;;;;;;:::i;:::-;;;;;;;;73022:19;:32::i;:::-;73006:10;73017:1;73006:13;;;;;;;;:::i;:::-;;;;;;;:48;;;;72982:3;;;;;72945:125;;;;73091:10;73084:17;;;;72592:528;;;;:::o;77895:25::-;;;;;;;;;;;;;:::o;77579:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38304:152::-;38376:7;38419:27;38438:7;38419:18;:27::i;:::-;38396:52;;38304:152;;;:::o;77927:40::-;;;;;;;;;;;;;:::o;33846:233::-;33918:7;33959:1;33942:19;;:5;:19;;;33938:60;;;33970:28;;;;;;;;;;;;;;33938:60;28005:13;34016:18;:25;34035:5;34016:25;;;;;;;;;;;;;;;;:55;34009:62;;33846:233;;;:::o;16757:103::-;15995:13;:11;:13::i;:::-;16822:30:::1;16849:1;16822:18;:30::i;:::-;16757:103::o:0;81756:104::-;15995:13;:11;:13::i;:::-;81841:11:::1;81828:10;:24;;;;81756:104:::0;:::o;81333:106::-;15995:13;:11;:13::i;:::-;81421:10:::1;81409:9;:22;;;;;;;;;;;;:::i;:::-;;81333:106:::0;:::o;76468:900::-;76546:16;76600:19;76634:25;76674:22;76699:16;76709:5;76699:9;:16::i;:::-;76674:41;;76730:25;76772:14;76758:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76730:57;;76802:31;;:::i;:::-;76853:9;76865:15;:13;:15::i;:::-;76853:27;;76848:472;76897:14;76882:11;:29;76848:472;;76949:15;76962:1;76949:12;:15::i;:::-;76937:27;;76987:9;:16;;;76983:73;;;77028:8;;76983:73;77104:1;77078:28;;:9;:14;;;:28;;;77074:111;;77151:9;:14;;;77131:34;;77074:111;77228:5;77207:26;;:17;:26;;;77203:102;;;77284:1;77258:8;77267:13;;;;;;77258:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;77203:102;76848:472;76913:3;;;;;76848:472;;;;77341:8;77334:15;;;;;;;76468:900;;;:::o;16109:87::-;16155:7;16182:6;;;;;;;;;;;16175:13;;16109:87;:::o;77807:37::-;;;;:::o;37087:104::-;37143:13;37176:7;37169:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37087:104;:::o;73508:2513::-;73651:16;73718:4;73709:5;:13;73705:45;;73731:19;;;;;;;;;;;;;;73705:45;73765:19;73799:17;73819:14;:12;:14::i;:::-;73799:34;;73919:15;:13;:15::i;:::-;73911:5;:23;73907:87;;;73963:15;:13;:15::i;:::-;73955:23;;73907:87;74070:9;74063:4;:16;74059:73;;;74107:9;74100:16;;74059:73;74146:25;74174:16;74184:5;74174:9;:16::i;:::-;74146:44;;74368:4;74360:5;:12;74356:278;;;74393:19;74422:5;74415:4;:12;74393:34;;74464:17;74450:11;:31;74446:111;;;74526:11;74506:31;;74446:111;74374:198;74356:278;;;74617:1;74597:21;;74356:278;74648:25;74690:17;74676:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74648:60;;74748:1;74727:17;:22;74723:78;;;74777:8;74770:15;;;;;;;;74723:78;74945:31;74979:26;74999:5;74979:19;:26::i;:::-;74945:60;;75020:25;75265:9;:16;;;75260:92;;75322:9;:14;;;75302:34;;75260:92;75371:9;75383:5;75371:17;;75366:478;75395:4;75390:1;:9;;:45;;;;;75418:17;75403:11;:32;;75390:45;75366:478;;;75473:15;75486:1;75473:12;:15::i;:::-;75461:27;;75511:9;:16;;;75507:73;;;75552:8;;75507:73;75628:1;75602:28;;:9;:14;;;:28;;;75598:111;;75675:9;:14;;;75655:34;;75598:111;75752:5;75731:26;;:17;:26;;;75727:102;;;75808:1;75782:8;75791:13;;;;;;75782:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;75727:102;75366:478;75437:3;;;;;75366:478;;;;75946:11;75936:8;75929:29;75994:8;75987:15;;;;;;;;73508:2513;;;;;;:::o;79498:263::-;79590:11;78356:1;78325:27;78339:12;:10;:12::i;:::-;78325:13;:27::i;:::-;:32;;78303:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;78466:1;78452:11;:15;:52;;;;;78486:18;;78471:11;:33;;78452:52;78430:121;;;;;;;;;;;;:::i;:::-;;;;;;;;;78615:9;;78600:11;78584:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;78562:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;79632:11:::1;78788;78781:4;;:18;;;;:::i;:::-;78768:9;:31;;78760:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;79670:6:::2;;;;;;;;;;;79669:7;79661:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;79717:36;79727:12;:10;:12::i;:::-;79741:11;79717:9;:36::i;:::-;78682:1:::1;79498:263:::0;;:::o;43952:308::-;44063:19;:17;:19::i;:::-;44051:31;;:8;:31;;;44047:61;;;44091:17;;;;;;;;;;;;;;44047:61;44173:8;44121:18;:39;44140:19;:17;:19::i;:::-;44121:39;;;;;;;;;;;;;;;:49;44161:8;44121:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;44233:8;44197:55;;44212:19;:17;:19::i;:::-;44197:55;;;44243:8;44197:55;;;;;;:::i;:::-;;;;;;;;43952:308;;:::o;77654:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;80997:159::-;15995:13;:11;:13::i;:::-;81129:19:::1;81108:18;:40;;;;80997:159:::0;:::o;77851:35::-;;;;:::o;81868:111::-;15995:13;:11;:13::i;:::-;81965:6:::1;81942:20;;:29;;;;;;;;;;;;;;;;;;81868:111:::0;:::o;50797:399::-;50964:31;50977:4;50983:2;50987:7;50964:12;:31::i;:::-;51028:1;51010:2;:14;;;:19;51006:183;;51049:56;51080:4;51086:2;51090:7;51099:5;51049:30;:56::i;:::-;51044:145;;51133:40;;;;;;;;;;;;;;51044:145;51006:183;50797:399;;;;:::o;72005:428::-;72089:21;;:::i;:::-;72123:31;;:::i;:::-;72179:15;:13;:15::i;:::-;72169:7;:25;:54;;;;72209:14;:12;:14::i;:::-;72198:7;:25;;72169:54;72165:103;;;72247:9;72240:16;;;;;72165:103;72290:21;72303:7;72290:12;:21::i;:::-;72278:33;;72326:9;:16;;;72322:65;;;72366:9;72359:16;;;;;72322:65;72404:21;72417:7;72404:12;:21::i;:::-;72397:28;;;72005:428;;;;:::o;80079:727::-;80198:13;80251:17;80259:8;80251:7;:17::i;:::-;80229:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;80372:5;80360:17;;:8;;;;;;;;;;;:17;;;80356:74;;;80401:17;80394:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80356:74;80442:28;80473:10;:8;:10::i;:::-;80442:41;;80545:1;80520:14;80514:28;:32;:284;;;;;;;;;;;;;;;;;80638:14;80679:19;:8;:17;:19::i;:::-;80725:9;80595:162;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;80514:284;80494:304;;;80079:727;;;;:::o;77773:27::-;;;;:::o;78850:640::-;78984:11;78356:1;78325:27;78339:12;:10;:12::i;:::-;78325:13;:27::i;:::-;:32;;78303:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;78466:1;78452:11;:15;:52;;;;;78486:18;;78471:11;:33;;78452:52;78430:121;;;;;;;;;;;;:::i;:::-;;;;;;;;;78615:9;;78600:11;78584:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;78562:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;79026:11:::1;78788;78781:4;;:18;;;;:::i;:::-;78768:9;:31;;78760:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;79105:20:::2;;;;;;;;;;;79097:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;79214:5;;79199:11;79183:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:36;;79175:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;79253:12;79295;:10;:12::i;:::-;79278:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;79268:41;;;;;;79253:56;;79342:50;79361:12;;79342:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79375:10;;79387:4;79342:18;:50::i;:::-;79320:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;79446:36;79456:12;:10;:12::i;:::-;79470:11;79446:9;:36::i;:::-;79044:446;78682:1:::1;78850:640:::0;;;;:::o;77735:31::-;;;;:::o;80814:87::-;15995:13;:11;:13::i;:::-;80887:6:::1;80876:8;;:17;;;;;;;;;;;;;;;;;;80814:87:::0;:::o;44417:164::-;44514:4;44538:18;:25;44557:5;44538:25;;;;;;;;;;;;;;;:35;44564:8;44538:35;;;;;;;;;;;;;;;;;;;;;;;;;44531:42;;44417:164;;;;:::o;79769:193::-;79873:11;78356:1;78325:27;78339:12;:10;:12::i;:::-;78325:13;:27::i;:::-;:32;;78303:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;78466:1;78452:11;:15;:52;;;;;78486:18;;78471:11;:33;;78452:52;78430:121;;;;;;;;;;;;:::i;:::-;;;;;;;;;78615:9;;78600:11;78584:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;78562:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;15995:13:::1;:11;:13::i;:::-;79921:33:::2;79931:9;79942:11;79921:9;:33::i;:::-;79769:193:::0;;;:::o;17015:201::-;15995:13;:11;:13::i;:::-;17124:1:::1;17104:22;;:8;:22;;;;17096:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;17180:28;17199:8;17180:18;:28::i;:::-;17015:201:::0;:::o;44839:282::-;44904:4;44960:7;44941:15;:13;:15::i;:::-;:26;;:66;;;;;44994:13;;44984:7;:23;44941:66;:153;;;;;45093:1;28781:8;45045:17;:26;45063:7;45045:26;;;;;;;;;;;;:44;:49;44941:153;44921:173;;44839:282;;;:::o;66605:105::-;66665:7;66692:10;66685:17;;66605:105;:::o;16274:132::-;16349:12;:10;:12::i;:::-;16338:23;;:7;:5;:7::i;:::-;:23;;;16330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16274:132::o;79970:101::-;80035:7;80062:1;80055:8;;79970:101;:::o;39459:1275::-;39526:7;39546:12;39561:7;39546:22;;39629:4;39610:15;:13;:15::i;:::-;:23;39606:1061;;39663:13;;39656:4;:20;39652:1015;;;39701:14;39718:17;:23;39736:4;39718:23;;;;;;;;;;;;39701:40;;39835:1;28781:8;39807:6;:24;:29;39803:845;;;40472:113;40489:1;40479:6;:11;40472:113;;;40532:17;:25;40550:6;;;;;;;40532:25;;;;;;;;;;;;40523:34;;40472:113;;;40618:6;40611:13;;;;;;39803:845;39678:989;39652:1015;39606:1061;40695:31;;;;;;;;;;;;;;39459:1275;;;;:::o;46002:479::-;46104:27;46133:23;46174:38;46215:15;:24;46231:7;46215:24;;;;;;;;;;;46174:65;;46386:18;46363:41;;46443:19;46437:26;46418:45;;46348:126;46002:479;;;:::o;45230:659::-;45379:11;45544:16;45537:5;45533:28;45524:37;;45704:16;45693:9;45689:32;45676:45;;45854:15;45843:9;45840:30;45832:5;45821:9;45818:20;45815:56;45805:66;;45230:659;;;;;:::o;51858:159::-;;;;;:::o;65914:311::-;66049:7;66069:16;29185:3;66095:19;:41;;66069:68;;29185:3;66163:31;66174:4;66180:2;66184:9;66163:10;:31::i;:::-;66155:40;;:62;;66148:69;;;65914:311;;;;;:::o;41282:450::-;41362:14;41530:16;41523:5;41519:28;41510:37;;41707:5;41693:11;41668:23;41664:41;41661:52;41654:5;41651:63;41641:73;;41282:450;;;;:::o;52682:158::-;;;;;:::o;17376:191::-;17450:16;17469:6;;;;;;;;;;;17450:25;;17495:8;17486:6;;:17;;;;;;;;;;;;;;;;;;17550:8;17519:40;;17540:8;17519:40;;;;;;;;;;;;17439:128;17376:191;:::o;38907:161::-;38975:21;;:::i;:::-;39016:44;39035:17;:24;39053:5;39035:24;;;;;;;;;;;;39016:18;:44::i;:::-;39009:51;;38907:161;;;:::o;32349:103::-;32404:7;32431:13;;32424:20;;32349:103;:::o;14660:98::-;14713:7;14740:10;14733:17;;14660:98;:::o;34161:178::-;34222:7;28005:13;28143:2;34250:18;:25;34269:5;34250:25;;;;;;;;;;;;;;;;:50;;34249:82;34242:89;;34161:178;;;:::o;60437:112::-;60514:27;60524:2;60528:8;60514:27;;;;;;;;;;;;:9;:27::i;:::-;60437:112;;:::o;53280:716::-;53443:4;53489:2;53464:45;;;53510:19;:17;:19::i;:::-;53531:4;53537:7;53546:5;53464:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53460:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53764:1;53747:6;:13;:18;53743:235;;;53793:40;;;;;;;;;;;;;;53743:235;53936:6;53930:13;53921:6;53917:2;53913:15;53906:38;53460:529;53633:54;;;53623:64;;;:6;:64;;;;53616:71;;;53280:716;;;;;;:::o;38645:166::-;38715:21;;:::i;:::-;38756:47;38775:27;38794:7;38775:18;:27::i;:::-;38756:18;:47::i;:::-;38749:54;;38645:166;;;:::o;82772:110::-;82832:13;82865:9;82858:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82772:110;:::o;430:723::-;486:13;716:1;707:5;:10;703:53;;;734:10;;;;;;;;;;;;;;;;;;;;;703:53;766:12;781:5;766:20;;797:14;822:78;837:1;829:4;:9;822:78;;855:8;;;;;:::i;:::-;;;;886:2;878:10;;;;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:39;;960:154;976:1;967:5;:10;960:154;;1004:1;994:11;;;;;:::i;:::-;;;1071:2;1063:5;:10;;;;:::i;:::-;1050:2;:24;;;;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1100:2;1091:11;;;;;:::i;:::-;;;960:154;;;1138:6;1124:21;;;;;430:723;;;;:::o;6475:190::-;6600:4;6653;6624:25;6637:5;6644:4;6624:12;:25::i;:::-;:33;6617:40;;6475:190;;;;;:::o;65615:147::-;65752:6;65615:147;;;;;:::o;40833:366::-;40899:31;;:::i;:::-;40976:6;40943:9;:14;;:41;;;;;;;;;;;28664:3;41029:6;:33;;40995:9;:24;;:68;;;;;;;;;;;41121:1;28781:8;41093:6;:24;:29;;41074:9;:16;;:48;;;;;;;;;;;29185:3;41162:6;:28;;41133:9;:19;;:58;;;;;;;;;;;40833:366;;;:::o;59664:689::-;59795:19;59801:2;59805:8;59795:5;:19::i;:::-;59874:1;59856:2;:14;;;:19;59852:483;;59896:11;59910:13;;59896:27;;59942:13;59964:8;59958:3;:14;59942:30;;59991:233;60022:62;60061:1;60065:2;60069:7;;;;;;60078:5;60022:30;:62::i;:::-;60017:167;;60120:40;;;;;;;;;;;;;;60017:167;60219:3;60211:5;:11;59991:233;;60306:3;60289:13;;:20;60285:34;;60311:8;;;60285:34;59877:458;;59852:483;59664:689;;;:::o;7342:296::-;7425:7;7445:20;7468:4;7445:27;;7488:9;7483:118;7507:5;:12;7503:1;:16;7483:118;;;7556:33;7566:12;7580:5;7586:1;7580:8;;;;;;;;:::i;:::-;;;;;;;;7556:9;:33::i;:::-;7541:48;;7521:3;;;;;:::i;:::-;;;;7483:118;;;;7618:12;7611:19;;;7342:296;;;;:::o;54458:2454::-;54531:20;54554:13;;54531:36;;54594:1;54582:8;:13;54578:44;;;54604:18;;;;;;;;;;;;;;54578:44;54635:61;54665:1;54669:2;54673:12;54687:8;54635:21;:61::i;:::-;55179:1;28143:2;55149:1;:26;;55148:32;55136:8;:45;55110:18;:22;55129:2;55110:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;55458:139;55495:2;55549:33;55572:1;55576:2;55580:1;55549:14;:33::i;:::-;55516:30;55537:8;55516:20;:30::i;:::-;:66;55458:18;:139::i;:::-;55424:17;:31;55442:12;55424:31;;;;;;;;;;;:173;;;;55614:16;55645:11;55674:8;55659:12;:23;55645:37;;55929:16;55925:2;55921:25;55909:37;;56301:12;56261:8;56220:1;56158:25;56099:1;56038;56011:335;56426:1;56412:12;56408:20;56366:346;56467:3;56458:7;56455:16;56366:346;;56685:7;56675:8;56672:1;56645:25;56642:1;56639;56634:59;56520:1;56511:7;56507:15;56496:26;;56366:346;;;56370:77;56757:1;56745:8;:13;56741:45;;;56767:19;;;;;;;;;;;;;;56741:45;56819:3;56803:13;:19;;;;54884:1950;;56844:60;56873:1;56877:2;56881:12;56895:8;56844:20;:60::i;:::-;54520:2392;54458:2454;;:::o;13549:149::-;13612:7;13643:1;13639;:5;:51;;13670:20;13685:1;13688;13670:14;:20::i;:::-;13639:51;;;13647:20;13662:1;13665;13647:14;:20::i;:::-;13639:51;13632:58;;13549:149;;;;:::o;41834:324::-;41904:14;42137:1;42127:8;42124:15;42098:24;42094:46;42084:56;;41834:324;;;:::o;13706:268::-;13774:13;13881:1;13875:4;13868:15;13910:1;13904:4;13897:15;13951:4;13945;13935:21;13926:30;;13706:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:116::-;7981:21;7996:5;7981:21;:::i;:::-;7974:5;7971:32;7961:60;;8017:1;8014;8007:12;7961:60;7911:116;:::o;8033:133::-;8076:5;8114:6;8101:20;8092:29;;8130:30;8154:5;8130:30;:::i;:::-;8033:133;;;;:::o;8172:323::-;8228:6;8277:2;8265:9;8256:7;8252:23;8248:32;8245:119;;;8283:79;;:::i;:::-;8245:119;8403:1;8428:50;8470:7;8461:6;8450:9;8446:22;8428:50;:::i;:::-;8418:60;;8374:114;8172:323;;;;:::o;8501:619::-;8578:6;8586;8594;8643:2;8631:9;8622:7;8618:23;8614:32;8611:119;;;8649:79;;:::i;:::-;8611:119;8769:1;8794:53;8839:7;8830:6;8819:9;8815:22;8794:53;:::i;:::-;8784:63;;8740:117;8896:2;8922:53;8967:7;8958:6;8947:9;8943:22;8922:53;:::i;:::-;8912:63;;8867:118;9024:2;9050:53;9095:7;9086:6;9075:9;9071:22;9050:53;:::i;:::-;9040:63;;8995:118;8501:619;;;;;:::o;9126:77::-;9163:7;9192:5;9181:16;;9126:77;;;:::o;9209:118::-;9296:24;9314:5;9296:24;:::i;:::-;9291:3;9284:37;9209:118;;:::o;9333:222::-;9426:4;9464:2;9453:9;9449:18;9441:26;;9477:71;9545:1;9534:9;9530:17;9521:6;9477:71;:::i;:::-;9333:222;;;;:::o;9561:117::-;9670:1;9667;9660:12;9684:117;9793:1;9790;9783:12;9824:568;9897:8;9907:6;9957:3;9950:4;9942:6;9938:17;9934:27;9924:122;;9965:79;;:::i;:::-;9924:122;10078:6;10065:20;10055:30;;10108:18;10100:6;10097:30;10094:117;;;10130:79;;:::i;:::-;10094:117;10244:4;10236:6;10232:17;10220:29;;10298:3;10290:4;10282:6;10278:17;10268:8;10264:32;10261:41;10258:128;;;10305:79;;:::i;:::-;10258:128;9824:568;;;;;:::o;10398:559::-;10484:6;10492;10541:2;10529:9;10520:7;10516:23;10512:32;10509:119;;;10547:79;;:::i;:::-;10509:119;10695:1;10684:9;10680:17;10667:31;10725:18;10717:6;10714:30;10711:117;;;10747:79;;:::i;:::-;10711:117;10860:80;10932:7;10923:6;10912:9;10908:22;10860:80;:::i;:::-;10842:98;;;;10638:312;10398:559;;;;;:::o;10963:145::-;11061:6;11095:5;11089:12;11079:22;;10963:145;;;:::o;11114:215::-;11244:11;11278:6;11273:3;11266:19;11318:4;11313:3;11309:14;11294:29;;11114:215;;;;:::o;11335:163::-;11433:4;11456:3;11448:11;;11486:4;11481:3;11477:14;11469:22;;11335:163;;;:::o;11504:108::-;11581:24;11599:5;11581:24;:::i;:::-;11576:3;11569:37;11504:108;;:::o;11618:101::-;11654:7;11694:18;11687:5;11683:30;11672:41;;11618:101;;;:::o;11725:105::-;11800:23;11817:5;11800:23;:::i;:::-;11795:3;11788:36;11725:105;;:::o;11836:99::-;11907:21;11922:5;11907:21;:::i;:::-;11902:3;11895:34;11836:99;;:::o;11941:91::-;11977:7;12017:8;12010:5;12006:20;11995:31;;11941:91;;;:::o;12038:105::-;12113:23;12130:5;12113:23;:::i;:::-;12108:3;12101:36;12038:105;;:::o;12221:864::-;12370:4;12365:3;12361:14;12457:4;12450:5;12446:16;12440:23;12476:63;12533:4;12528:3;12524:14;12510:12;12476:63;:::i;:::-;12385:164;12641:4;12634:5;12630:16;12624:23;12660:61;12715:4;12710:3;12706:14;12692:12;12660:61;:::i;:::-;12559:172;12815:4;12808:5;12804:16;12798:23;12834:57;12885:4;12880:3;12876:14;12862:12;12834:57;:::i;:::-;12741:160;12988:4;12981:5;12977:16;12971:23;13007:61;13062:4;13057:3;13053:14;13039:12;13007:61;:::i;:::-;12911:167;12339:746;12221:864;;:::o;13091:303::-;13222:10;13243:108;13347:3;13339:6;13243:108;:::i;:::-;13383:4;13378:3;13374:14;13360:28;;13091:303;;;;:::o;13400:144::-;13501:4;13533;13528:3;13524:14;13516:22;;13400:144;;;:::o;13626:980::-;13807:3;13836:85;13915:5;13836:85;:::i;:::-;13937:117;14047:6;14042:3;13937:117;:::i;:::-;13930:124;;14078:87;14159:5;14078:87;:::i;:::-;14188:7;14219:1;14204:377;14229:6;14226:1;14223:13;14204:377;;;14305:6;14299:13;14332:125;14453:3;14438:13;14332:125;:::i;:::-;14325:132;;14480:91;14564:6;14480:91;:::i;:::-;14470:101;;14264:317;14251:1;14248;14244:9;14239:14;;14204:377;;;14208:14;14597:3;14590:10;;13812:794;;;13626:980;;;;:::o;14612:497::-;14817:4;14855:2;14844:9;14840:18;14832:26;;14904:9;14898:4;14894:20;14890:1;14879:9;14875:17;14868:47;14932:170;15097:4;15088:6;14932:170;:::i;:::-;14924:178;;14612:497;;;;:::o;15115:329::-;15174:6;15223:2;15211:9;15202:7;15198:23;15194:32;15191:119;;;15229:79;;:::i;:::-;15191:119;15349:1;15374:53;15419:7;15410:6;15399:9;15395:22;15374:53;:::i;:::-;15364:63;;15320:117;15115:329;;;;:::o;15450:122::-;15523:24;15541:5;15523:24;:::i;:::-;15516:5;15513:35;15503:63;;15562:1;15559;15552:12;15503:63;15450:122;:::o;15578:139::-;15624:5;15662:6;15649:20;15640:29;;15678:33;15705:5;15678:33;:::i;:::-;15578:139;;;;:::o;15723:329::-;15782:6;15831:2;15819:9;15810:7;15806:23;15802:32;15799:119;;;15837:79;;:::i;:::-;15799:119;15957:1;15982:53;16027:7;16018:6;16007:9;16003:22;15982:53;:::i;:::-;15972:63;;15928:117;15723:329;;;;:::o;16058:114::-;16125:6;16159:5;16153:12;16143:22;;16058:114;;;:::o;16178:184::-;16277:11;16311:6;16306:3;16299:19;16351:4;16346:3;16342:14;16327:29;;16178:184;;;;:::o;16368:132::-;16435:4;16458:3;16450:11;;16488:4;16483:3;16479:14;16471:22;;16368:132;;;:::o;16506:108::-;16583:24;16601:5;16583:24;:::i;:::-;16578:3;16571:37;16506:108;;:::o;16620:179::-;16689:10;16710:46;16752:3;16744:6;16710:46;:::i;:::-;16788:4;16783:3;16779:14;16765:28;;16620:179;;;;:::o;16805:113::-;16875:4;16907;16902:3;16898:14;16890:22;;16805:113;;;:::o;16954:732::-;17073:3;17102:54;17150:5;17102:54;:::i;:::-;17172:86;17251:6;17246:3;17172:86;:::i;:::-;17165:93;;17282:56;17332:5;17282:56;:::i;:::-;17361:7;17392:1;17377:284;17402:6;17399:1;17396:13;17377:284;;;17478:6;17472:13;17505:63;17564:3;17549:13;17505:63;:::i;:::-;17498:70;;17591:60;17644:6;17591:60;:::i;:::-;17581:70;;17437:224;17424:1;17421;17417:9;17412:14;;17377:284;;;17381:14;17677:3;17670:10;;17078:608;;;16954:732;;;;:::o;17692:373::-;17835:4;17873:2;17862:9;17858:18;17850:26;;17922:9;17916:4;17912:20;17908:1;17897:9;17893:17;17886:47;17950:108;18053:4;18044:6;17950:108;:::i;:::-;17942:116;;17692:373;;;;:::o;18071:619::-;18148:6;18156;18164;18213:2;18201:9;18192:7;18188:23;18184:32;18181:119;;;18219:79;;:::i;:::-;18181:119;18339:1;18364:53;18409:7;18400:6;18389:9;18385:22;18364:53;:::i;:::-;18354:63;;18310:117;18466:2;18492:53;18537:7;18528:6;18517:9;18513:22;18492:53;:::i;:::-;18482:63;;18437:118;18594:2;18620:53;18665:7;18656:6;18645:9;18641:22;18620:53;:::i;:::-;18610:63;;18565:118;18071:619;;;;;:::o;18696:468::-;18761:6;18769;18818:2;18806:9;18797:7;18793:23;18789:32;18786:119;;;18824:79;;:::i;:::-;18786:119;18944:1;18969:53;19014:7;19005:6;18994:9;18990:22;18969:53;:::i;:::-;18959:63;;18915:117;19071:2;19097:50;19139:7;19130:6;19119:9;19115:22;19097:50;:::i;:::-;19087:60;;19042:115;18696:468;;;;;:::o;19170:307::-;19231:4;19321:18;19313:6;19310:30;19307:56;;;19343:18;;:::i;:::-;19307:56;19381:29;19403:6;19381:29;:::i;:::-;19373:37;;19465:4;19459;19455:15;19447:23;;19170:307;;;:::o;19483:410::-;19560:5;19585:65;19601:48;19642:6;19601:48;:::i;:::-;19585:65;:::i;:::-;19576:74;;19673:6;19666:5;19659:21;19711:4;19704:5;19700:16;19749:3;19740:6;19735:3;19731:16;19728:25;19725:112;;;19756:79;;:::i;:::-;19725:112;19846:41;19880:6;19875:3;19870;19846:41;:::i;:::-;19566:327;19483:410;;;;;:::o;19912:338::-;19967:5;20016:3;20009:4;20001:6;19997:17;19993:27;19983:122;;20024:79;;:::i;:::-;19983:122;20141:6;20128:20;20166:78;20240:3;20232:6;20225:4;20217:6;20213:17;20166:78;:::i;:::-;20157:87;;19973:277;19912:338;;;;:::o;20256:943::-;20351:6;20359;20367;20375;20424:3;20412:9;20403:7;20399:23;20395:33;20392:120;;;20431:79;;:::i;:::-;20392:120;20551:1;20576:53;20621:7;20612:6;20601:9;20597:22;20576:53;:::i;:::-;20566:63;;20522:117;20678:2;20704:53;20749:7;20740:6;20729:9;20725:22;20704:53;:::i;:::-;20694:63;;20649:118;20806:2;20832:53;20877:7;20868:6;20857:9;20853:22;20832:53;:::i;:::-;20822:63;;20777:118;20962:2;20951:9;20947:18;20934:32;20993:18;20985:6;20982:30;20979:117;;;21015:79;;:::i;:::-;20979:117;21120:62;21174:7;21165:6;21154:9;21150:22;21120:62;:::i;:::-;21110:72;;20905:287;20256:943;;;;;;;:::o;21277:874::-;21436:4;21431:3;21427:14;21523:4;21516:5;21512:16;21506:23;21542:63;21599:4;21594:3;21590:14;21576:12;21542:63;:::i;:::-;21451:164;21707:4;21700:5;21696:16;21690:23;21726:61;21781:4;21776:3;21772:14;21758:12;21726:61;:::i;:::-;21625:172;21881:4;21874:5;21870:16;21864:23;21900:57;21951:4;21946:3;21942:14;21928:12;21900:57;:::i;:::-;21807:160;22054:4;22047:5;22043:16;22037:23;22073:61;22128:4;22123:3;22119:14;22105:12;22073:61;:::i;:::-;21977:167;21405:746;21277:874;;:::o;22157:347::-;22312:4;22350:3;22339:9;22335:19;22327:27;;22364:133;22494:1;22483:9;22479:17;22470:6;22364:133;:::i;:::-;22157:347;;;;:::o;22527:568::-;22600:8;22610:6;22660:3;22653:4;22645:6;22641:17;22637:27;22627:122;;22668:79;;:::i;:::-;22627:122;22781:6;22768:20;22758:30;;22811:18;22803:6;22800:30;22797:117;;;22833:79;;:::i;:::-;22797:117;22947:4;22939:6;22935:17;22923:29;;23001:3;22993:4;22985:6;22981:17;22971:8;22967:32;22964:41;22961:128;;;23008:79;;:::i;:::-;22961:128;22527:568;;;;;:::o;23101:704::-;23196:6;23204;23212;23261:2;23249:9;23240:7;23236:23;23232:32;23229:119;;;23267:79;;:::i;:::-;23229:119;23387:1;23412:53;23457:7;23448:6;23437:9;23433:22;23412:53;:::i;:::-;23402:63;;23358:117;23542:2;23531:9;23527:18;23514:32;23573:18;23565:6;23562:30;23559:117;;;23595:79;;:::i;:::-;23559:117;23708:80;23780:7;23771:6;23760:9;23756:22;23708:80;:::i;:::-;23690:98;;;;23485:313;23101:704;;;;;:::o;23811:474::-;23879:6;23887;23936:2;23924:9;23915:7;23911:23;23907:32;23904:119;;;23942:79;;:::i;:::-;23904:119;24062:1;24087:53;24132:7;24123:6;24112:9;24108:22;24087:53;:::i;:::-;24077:63;;24033:117;24189:2;24215:53;24260:7;24251:6;24240:9;24236:22;24215:53;:::i;:::-;24205:63;;24160:118;23811:474;;;;;:::o;24291:::-;24359:6;24367;24416:2;24404:9;24395:7;24391:23;24387:32;24384:119;;;24422:79;;:::i;:::-;24384:119;24542:1;24567:53;24612:7;24603:6;24592:9;24588:22;24567:53;:::i;:::-;24557:63;;24513:117;24669:2;24695:53;24740:7;24731:6;24720:9;24716:22;24695:53;:::i;:::-;24685:63;;24640:118;24291:474;;;;;:::o;24771:180::-;24819:77;24816:1;24809:88;24916:4;24913:1;24906:15;24940:4;24937:1;24930:15;24957:320;25001:6;25038:1;25032:4;25028:12;25018:22;;25085:1;25079:4;25075:12;25106:18;25096:81;;25162:4;25154:6;25150:17;25140:27;;25096:81;25224:2;25216:6;25213:14;25193:18;25190:38;25187:84;;;25243:18;;:::i;:::-;25187:84;25008:269;24957:320;;;:::o;25283:181::-;25423:33;25419:1;25411:6;25407:14;25400:57;25283:181;:::o;25470:366::-;25612:3;25633:67;25697:2;25692:3;25633:67;:::i;:::-;25626:74;;25709:93;25798:3;25709:93;:::i;:::-;25827:2;25822:3;25818:12;25811:19;;25470:366;;;:::o;25842:419::-;26008:4;26046:2;26035:9;26031:18;26023:26;;26095:9;26089:4;26085:20;26081:1;26070:9;26066:17;26059:47;26123:131;26249:4;26123:131;:::i;:::-;26115:139;;25842:419;;;:::o;26267:180::-;26315:77;26312:1;26305:88;26412:4;26409:1;26402:15;26436:4;26433:1;26426:15;26453:348;26493:7;26516:20;26534:1;26516:20;:::i;:::-;26511:25;;26550:20;26568:1;26550:20;:::i;:::-;26545:25;;26738:1;26670:66;26666:74;26663:1;26660:81;26655:1;26648:9;26641:17;26637:105;26634:131;;;26745:18;;:::i;:::-;26634:131;26793:1;26790;26786:9;26775:20;;26453:348;;;;:::o;26807:180::-;26855:77;26852:1;26845:88;26952:4;26949:1;26942:15;26976:4;26973:1;26966:15;26993:185;27033:1;27050:20;27068:1;27050:20;:::i;:::-;27045:25;;27084:20;27102:1;27084:20;:::i;:::-;27079:25;;27123:1;27113:35;;27128:18;;:::i;:::-;27113:35;27170:1;27167;27163:9;27158:14;;26993:185;;;;:::o;27184:147::-;27285:11;27322:3;27307:18;;27184:147;;;;:::o;27337:114::-;;:::o;27457:398::-;27616:3;27637:83;27718:1;27713:3;27637:83;:::i;:::-;27630:90;;27729:93;27818:3;27729:93;:::i;:::-;27847:1;27842:3;27838:11;27831:18;;27457:398;;;:::o;27861:379::-;28045:3;28067:147;28210:3;28067:147;:::i;:::-;28060:154;;28231:3;28224:10;;27861:379;;;:::o;28246:180::-;28294:77;28291:1;28284:88;28391:4;28388:1;28381:15;28415:4;28412:1;28405:15;28432:221;28572:34;28568:1;28560:6;28556:14;28549:58;28641:4;28636:2;28628:6;28624:15;28617:29;28432:221;:::o;28659:366::-;28801:3;28822:67;28886:2;28881:3;28822:67;:::i;:::-;28815:74;;28898:93;28987:3;28898:93;:::i;:::-;29016:2;29011:3;29007:12;29000:19;;28659:366;;;:::o;29031:419::-;29197:4;29235:2;29224:9;29220:18;29212:26;;29284:9;29278:4;29274:20;29270:1;29259:9;29255:17;29248:47;29312:131;29438:4;29312:131;:::i;:::-;29304:139;;29031:419;;;:::o;29456:169::-;29596:21;29592:1;29584:6;29580:14;29573:45;29456:169;:::o;29631:366::-;29773:3;29794:67;29858:2;29853:3;29794:67;:::i;:::-;29787:74;;29870:93;29959:3;29870:93;:::i;:::-;29988:2;29983:3;29979:12;29972:19;;29631:366;;;:::o;30003:419::-;30169:4;30207:2;30196:9;30192:18;30184:26;;30256:9;30250:4;30246:20;30242:1;30231:9;30227:17;30220:47;30284:131;30410:4;30284:131;:::i;:::-;30276:139;;30003:419;;;:::o;30428:305::-;30468:3;30487:20;30505:1;30487:20;:::i;:::-;30482:25;;30521:20;30539:1;30521:20;:::i;:::-;30516:25;;30675:1;30607:66;30603:74;30600:1;30597:81;30594:107;;;30681:18;;:::i;:::-;30594:107;30725:1;30722;30718:9;30711:16;;30428:305;;;;:::o;30739:169::-;30879:21;30875:1;30867:6;30863:14;30856:45;30739:169;:::o;30914:366::-;31056:3;31077:67;31141:2;31136:3;31077:67;:::i;:::-;31070:74;;31153:93;31242:3;31153:93;:::i;:::-;31271:2;31266:3;31262:12;31255:19;;30914:366;;;:::o;31286:419::-;31452:4;31490:2;31479:9;31475:18;31467:26;;31539:9;31533:4;31529:20;31525:1;31514:9;31510:17;31503:47;31567:131;31693:4;31567:131;:::i;:::-;31559:139;;31286:419;;;:::o;31711:168::-;31851:20;31847:1;31839:6;31835:14;31828:44;31711:168;:::o;31885:366::-;32027:3;32048:67;32112:2;32107:3;32048:67;:::i;:::-;32041:74;;32124:93;32213:3;32124:93;:::i;:::-;32242:2;32237:3;32233:12;32226:19;;31885:366;;;:::o;32257:419::-;32423:4;32461:2;32450:9;32446:18;32438:26;;32510:9;32504:4;32500:20;32496:1;32485:9;32481:17;32474:47;32538:131;32664:4;32538:131;:::i;:::-;32530:139;;32257:419;;;:::o;32682:173::-;32822:25;32818:1;32810:6;32806:14;32799:49;32682:173;:::o;32861:366::-;33003:3;33024:67;33088:2;33083:3;33024:67;:::i;:::-;33017:74;;33100:93;33189:3;33100:93;:::i;:::-;33218:2;33213:3;33209:12;33202:19;;32861:366;;;:::o;33233:419::-;33399:4;33437:2;33426:9;33422:18;33414:26;;33486:9;33480:4;33476:20;33472:1;33461:9;33457:17;33450:47;33514:131;33640:4;33514:131;:::i;:::-;33506:139;;33233:419;;;:::o;33658:234::-;33798:34;33794:1;33786:6;33782:14;33775:58;33867:17;33862:2;33854:6;33850:15;33843:42;33658:234;:::o;33898:366::-;34040:3;34061:67;34125:2;34120:3;34061:67;:::i;:::-;34054:74;;34137:93;34226:3;34137:93;:::i;:::-;34255:2;34250:3;34246:12;34239:19;;33898:366;;;:::o;34270:419::-;34436:4;34474:2;34463:9;34459:18;34451:26;;34523:9;34517:4;34513:20;34509:1;34498:9;34494:17;34487:47;34551:131;34677:4;34551:131;:::i;:::-;34543:139;;34270:419;;;:::o;34695:148::-;34797:11;34834:3;34819:18;;34695:148;;;;:::o;34849:377::-;34955:3;34983:39;35016:5;34983:39;:::i;:::-;35038:89;35120:6;35115:3;35038:89;:::i;:::-;35031:96;;35136:52;35181:6;35176:3;35169:4;35162:5;35158:16;35136:52;:::i;:::-;35213:6;35208:3;35204:16;35197:23;;34959:267;34849:377;;;;:::o;35232:141::-;35281:4;35304:3;35296:11;;35327:3;35324:1;35317:14;35361:4;35358:1;35348:18;35340:26;;35232:141;;;:::o;35403:845::-;35506:3;35543:5;35537:12;35572:36;35598:9;35572:36;:::i;:::-;35624:89;35706:6;35701:3;35624:89;:::i;:::-;35617:96;;35744:1;35733:9;35729:17;35760:1;35755:137;;;;35906:1;35901:341;;;;35722:520;;35755:137;35839:4;35835:9;35824;35820:25;35815:3;35808:38;35875:6;35870:3;35866:16;35859:23;;35755:137;;35901:341;35968:38;36000:5;35968:38;:::i;:::-;36028:1;36042:154;36056:6;36053:1;36050:13;36042:154;;;36130:7;36124:14;36120:1;36115:3;36111:11;36104:35;36180:1;36171:7;36167:15;36156:26;;36078:4;36075:1;36071:12;36066:17;;36042:154;;;36225:6;36220:3;36216:16;36209:23;;35908:334;;35722:520;;35510:738;;35403:845;;;;:::o;36254:589::-;36479:3;36501:95;36592:3;36583:6;36501:95;:::i;:::-;36494:102;;36613:95;36704:3;36695:6;36613:95;:::i;:::-;36606:102;;36725:92;36813:3;36804:6;36725:92;:::i;:::-;36718:99;;36834:3;36827:10;;36254:589;;;;;;:::o;36849:221::-;36989:34;36985:1;36977:6;36973:14;36966:58;37058:4;37053:2;37045:6;37041:15;37034:29;36849:221;:::o;37076:366::-;37218:3;37239:67;37303:2;37298:3;37239:67;:::i;:::-;37232:74;;37315:93;37404:3;37315:93;:::i;:::-;37433:2;37428:3;37424:12;37417:19;;37076:366;;;:::o;37448:419::-;37614:4;37652:2;37641:9;37637:18;37629:26;;37701:9;37695:4;37691:20;37687:1;37676:9;37672:17;37665:47;37729:131;37855:4;37729:131;:::i;:::-;37721:139;;37448:419;;;:::o;37873:168::-;38013:20;38009:1;38001:6;37997:14;37990:44;37873:168;:::o;38047:366::-;38189:3;38210:67;38274:2;38269:3;38210:67;:::i;:::-;38203:74;;38286:93;38375:3;38286:93;:::i;:::-;38404:2;38399:3;38395:12;38388:19;;38047:366;;;:::o;38419:419::-;38585:4;38623:2;38612:9;38608:18;38600:26;;38672:9;38666:4;38662:20;38658:1;38647:9;38643:17;38636:47;38700:131;38826:4;38700:131;:::i;:::-;38692:139;;38419:419;;;:::o;38844:94::-;38877:8;38925:5;38921:2;38917:14;38896:35;;38844:94;;;:::o;38944:::-;38983:7;39012:20;39026:5;39012:20;:::i;:::-;39001:31;;38944:94;;;:::o;39044:100::-;39083:7;39112:26;39132:5;39112:26;:::i;:::-;39101:37;;39044:100;;;:::o;39150:157::-;39255:45;39275:24;39293:5;39275:24;:::i;:::-;39255:45;:::i;:::-;39250:3;39243:58;39150:157;;:::o;39313:256::-;39425:3;39440:75;39511:3;39502:6;39440:75;:::i;:::-;39540:2;39535:3;39531:12;39524:19;;39560:3;39553:10;;39313:256;;;;:::o;39575:163::-;39715:15;39711:1;39703:6;39699:14;39692:39;39575:163;:::o;39744:366::-;39886:3;39907:67;39971:2;39966:3;39907:67;:::i;:::-;39900:74;;39983:93;40072:3;39983:93;:::i;:::-;40101:2;40096:3;40092:12;40085:19;;39744:366;;;:::o;40116:419::-;40282:4;40320:2;40309:9;40305:18;40297:26;;40369:9;40363:4;40359:20;40355:1;40344:9;40340:17;40333:47;40397:131;40523:4;40397:131;:::i;:::-;40389:139;;40116:419;;;:::o;40541:225::-;40681:34;40677:1;40669:6;40665:14;40658:58;40750:8;40745:2;40737:6;40733:15;40726:33;40541:225;:::o;40772:366::-;40914:3;40935:67;40999:2;40994:3;40935:67;:::i;:::-;40928:74;;41011:93;41100:3;41011:93;:::i;:::-;41129:2;41124:3;41120:12;41113:19;;40772:366;;;:::o;41144:419::-;41310:4;41348:2;41337:9;41333:18;41325:26;;41397:9;41391:4;41387:20;41383:1;41372:9;41368:17;41361:47;41425:131;41551:4;41425:131;:::i;:::-;41417:139;;41144:419;;;:::o;41569:182::-;41709:34;41705:1;41697:6;41693:14;41686:58;41569:182;:::o;41757:366::-;41899:3;41920:67;41984:2;41979:3;41920:67;:::i;:::-;41913:74;;41996:93;42085:3;41996:93;:::i;:::-;42114:2;42109:3;42105:12;42098:19;;41757:366;;;:::o;42129:419::-;42295:4;42333:2;42322:9;42318:18;42310:26;;42382:9;42376:4;42372:20;42368:1;42357:9;42353:17;42346:47;42410:131;42536:4;42410:131;:::i;:::-;42402:139;;42129:419;;;:::o;42554:98::-;42605:6;42639:5;42633:12;42623:22;;42554:98;;;:::o;42658:168::-;42741:11;42775:6;42770:3;42763:19;42815:4;42810:3;42806:14;42791:29;;42658:168;;;;:::o;42832:360::-;42918:3;42946:38;42978:5;42946:38;:::i;:::-;43000:70;43063:6;43058:3;43000:70;:::i;:::-;42993:77;;43079:52;43124:6;43119:3;43112:4;43105:5;43101:16;43079:52;:::i;:::-;43156:29;43178:6;43156:29;:::i;:::-;43151:3;43147:39;43140:46;;42922:270;42832:360;;;;:::o;43198:640::-;43393:4;43431:3;43420:9;43416:19;43408:27;;43445:71;43513:1;43502:9;43498:17;43489:6;43445:71;:::i;:::-;43526:72;43594:2;43583:9;43579:18;43570:6;43526:72;:::i;:::-;43608;43676:2;43665:9;43661:18;43652:6;43608:72;:::i;:::-;43727:9;43721:4;43717:20;43712:2;43701:9;43697:18;43690:48;43755:76;43826:4;43817:6;43755:76;:::i;:::-;43747:84;;43198:640;;;;;;;:::o;43844:141::-;43900:5;43931:6;43925:13;43916:22;;43947:32;43973:5;43947:32;:::i;:::-;43844:141;;;;:::o;43991:349::-;44060:6;44109:2;44097:9;44088:7;44084:23;44080:32;44077:119;;;44115:79;;:::i;:::-;44077:119;44235:1;44260:63;44315:7;44306:6;44295:9;44291:22;44260:63;:::i;:::-;44250:73;;44206:127;43991:349;;;;:::o;44346:233::-;44385:3;44408:24;44426:5;44408:24;:::i;:::-;44399:33;;44454:66;44447:5;44444:77;44441:103;;;44524:18;;:::i;:::-;44441:103;44571:1;44564:5;44560:13;44553:20;;44346:233;;;:::o;44585:191::-;44625:4;44645:20;44663:1;44645:20;:::i;:::-;44640:25;;44679:20;44697:1;44679:20;:::i;:::-;44674:25;;44718:1;44715;44712:8;44709:34;;;44723:18;;:::i;:::-;44709:34;44768:1;44765;44761:9;44753:17;;44585:191;;;;:::o;44782:176::-;44814:1;44831:20;44849:1;44831:20;:::i;:::-;44826:25;;44865:20;44883:1;44865:20;:::i;:::-;44860:25;;44904:1;44894:35;;44909:18;;:::i;:::-;44894:35;44950:1;44947;44943:9;44938:14;;44782:176;;;;:::o

Swarm Source

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