ETH Price: $2,999.67 (+4.05%)
Gas: 2 Gwei

PEPELAND (PL)
 

Overview

TokenID

103

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
PepeLand

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-15
*/

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * 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.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
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 simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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 sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _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}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.8.0) (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() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

    function _nonReentrantAfter() private {
        // 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/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.3
// 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();

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

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

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

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

    /**
     * @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.3
// 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 {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    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 payable 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 {
        _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].value`.
        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 payable 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 payable 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 payable 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.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            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`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                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 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // 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: contracts/Pepeland.sol



pragma solidity ^0.8.7;






//                                                        ██████╗░███████╗██████╗░███████╗██╗░░░░░░█████╗░███╗░░██╗██████╗░
//                                                        ██╔══██╗██╔════╝██╔══██╗██╔════╝██║░░░░░██╔══██╗████╗░██║██╔══██╗
//                                                        ██████╔╝█████╗░░██████╔╝█████╗░░██║░░░░░███████║██╔██╗██║██║░░██║
//                                                        ██╔═══╝░██╔══╝░░██╔═══╝░██╔══╝░░██║░░░░░██╔══██║██║╚████║██║░░██║
//                                                        ██║░░░░░███████╗██║░░░░░███████╗███████╗██║░░██║██║░╚███║██████╔╝
//                                                        ╚═╝░░░░░╚══════╝╚═╝░░░░░╚══════╝╚══════╝╚═╝░░╚═╝╚═╝░░╚══╝╚═════╝░
//
//
//                                                                             ⣿⠿⠋⠀⣂⣒⠚⠛⠿⣿
//                                                                          ⠿⢋⣡⣶⣾⣿⣿⣿⣿⣶⣶⣤⣉⠛⠿⣿⣿⡿⠛⣋⣡⣤⣶⣶⣶⣤⣉⠙
//                                                                        ⣿⡿⢁⣶⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣶⣌⠰⣶⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⡄
//                                                                       ⣿⠏⣰⣿⣿⣿⣿⣿⣿⡿⠟⣛⣛⣛⣛⡛⠻⢿⣿⣿⣆⢹⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡆⢻
//                                                                      ⡿⢁⣾⣿⣿⣿⣿⣿⣯⣷⣾⣿⣿⣿⣿⣿⣿⣿⣶⣤⣉⡛⠂⢙⣯⣭⣭⣽⣿⣿⣿⣿⣯⣭⣿⡀⠙
//                                                                     ⡿⢡⣾⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠿⠟⢛⣛⣛⣛⣛⣟⣳⡄⠹⢿⣿⣿⣿⠿⠿⠿⢿⣛⣛⣻⣟⡶⠦⢀
//                                                                  ⣿⠿⠋⢠⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠿⠛⡉⠤⠖⠉⠉⢁⡐⣀⣈⠩⠙⠛⠲⠀⠋⣩⠴⣒⠈⠉⠉⢉⣭⣭⠉⠭⠟⠿⠦⠀⠹
//                                                                 ⡿⣡⣴⣿⢸⣿⣿⣿⣿⣿⣿⡿⠟⢉⠄⢐⠍⢀⣠⡴⠊⠤⠁⠀⠈⢻⣿⣷⣶⣦⣤⡄⠐⣛⣥⣴⡶⠋⠄⠀⠀⠈⠃⣾⣶⣤⣅⠀
//                                                                ⠟⣱⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡀⠠⠔⠀⣠⣶⣿⣿⠁⠀⠄⠀⠛⠀⠀⣿⣿⣿⣿⣿⣿⠀⣿⣿⣿⠀⠀⠄⠀⠃⠀⠀⣸⣿⣿⣿⡦
//                                                                ⣰⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⣤⢉⠻⣿⣿⡄⠀⠀⠀⠀⠀⢰⣿⣿⣿⠿⠛⠁⠾⣿⣿⣿⣇⡀⠀⠀⠀⢀⣴⣿⠿⠟⠉⠀
//                                                              ⣠⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣦⣅⡀⠉⠉⠑⠒⠒⠒⠒⢋⡉⠉⠁⣀⣠⣴⣶⣶⣦⣭⣭⣵⣶⣷⣶⣥⣶⣶⡶⠈⢁
//                                                              ⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣶⣶⣶⣿⣿⣿⡷⠂⣠⣾⣿⣿⣿⣿⠻⢿⣿⣿⣿⣿⣿⣿⡿⠋⢁⣠
//                                                              ⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠿⠛⢋⣡⣴⣾⣿⣿⣿⣿⣿⣿⣷⣦⡈⢿⣶⣶⣶⣿⣦⡀⠊⢻
//                                                              ⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣦⡈
//                                                              ⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠿⠿⠿⠿⠿⠿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⠘
//                                                              ⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠿⠋⣠⣴⣶⣿⣿⣶⣤⣤⣤⣤⣈⣉⣉⣉⣉⣛⡛⠛⠛⠿⠿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠿⠟⢛⡀⠹
//                                                              ⣿⣿⣿⣿⣿⣿⣿⣿⣿⡿⢉⣴⣿⣿⣿⣇⣀⣤⣤⣤⣬⣭⣍⣉⡛⠛⠻⠿⣿⣿⣿⣷⣦⣤⣤⣤⣤⣭⣉⣉⣉⠉⣩⣤⣤⣾⡟⠇⢠
//                                                              ⣿⣿⣿⣿⣿⣿⡏⠹⣿⡇⠘⠛⠛⠛⠛⠛⠛⠛⠛⠛⠿⣿⣿⣿⣿⣿⣶⣶⣤⣤⣬⣭⣍⣙⠛⠛⠛⠛⠛⠛⠛⠛⠛⠛⠛⠛⠁
//                                                              ⢿⣿⣿⣿⣿⣿⣿⣦⡈⢻⣿⣿⣿⣿⣿⣿⣿⣿⣿⣶⣶⣶⣤⣍⣉⠉⠛⠻⠿⢿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠿
//                                                              ⠀⠛⢿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⣶⣶⣶⣶⣶⣶⣶⣶⣶⣶⣤⣤⠌⠉
//                                                              ⣤⡈⠀⠈⣛⢿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠟⠋
//                                                                ⣷⣦⣄⡈⠓⠨⠭⠽⢿⣟⣿⣿⠿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡿⠿⠿⠿⠛⢋⣁
//                                                                   ⣿⣿⣶⣶⣤⣤⣀⣉⣉⣉⣉⠛⠛⠒⠒⠲⠶⠶⠿⠿⠿⠿⠃⠐⢂⣈⣀⣤⣦⣀


contract PepeLand is ERC721A, Ownable, ReentrancyGuard, Pausable{

    // uint256 mint variables
    uint256 public maxSupply = 5555;
    uint256 public mintPrice = 0.0169 ether; // @dev 10 finney = 0.01 ether
    uint256 public wlMaxMint = 10;
    uint256 public wlMintPrice = 0.0142 ether;
    uint256 public freeMax = 1;

    //base uri, base extension
    string public baseExtension = ".json";
    string public baseURI;

    // booleans for if mint is enabled
    bool public publicMintEnabled = false;
    bool public wlMintEnabled = false;

    // mappings to keep track of # of minted tokens per user
    mapping(address => uint256) public totalWlMint;
    mapping(address => uint256) public totalFreeMints;

    // merkle root
    bytes32 public root;

    constructor (
        string memory _initBaseURI,
        bytes32 _root
        ) ERC721A("PEPELAND", "PL") {
            setBaseURI(_initBaseURI);
            setRoot(_root); 
    }

    function airdrop(address[] calldata _address, uint256 _amount) external onlyOwner nonReentrant {

        require(totalSupply() + _amount <= maxSupply, "Error: max supply reached");

        for (uint i = 0; i < _address.length; i++) {
            _safeMint(_address[i], _amount);
        }
    }

    // Whitelist mint that requires merkle proof; user receives 1 free 
    function whitelistMint(uint256 _quantity, bytes32[] memory proof) external payable whenNotPaused nonReentrant {
        
        if (totalFreeMints[msg.sender] == 0 && freeMax <= 1000) {
            require(freeMax <= 1000, "No more free Peperinos left!");
            require(isValid(proof, keccak256(abi.encodePacked(msg.sender))), "Not a part of whitelist");
            require(wlMintEnabled, "Whitelist mint is currently paused");
            require(totalSupply() + _quantity <= 5545, "Error: max supply reached");
            require((totalWlMint[msg.sender] + _quantity) <= wlMaxMint, "Error: Cannot mint more than 10");
            require(msg.value >= ((_quantity * wlMintPrice) - wlMintPrice), "Not enough ether sent");

            totalFreeMints[msg.sender] += 1;
            freeMax += 1;
            totalWlMint[msg.sender] += _quantity;
            _safeMint(msg.sender, _quantity);

        } else {
            require(isValid(proof, keccak256(abi.encodePacked(msg.sender))), "Not a part of whitelist");
            require(wlMintEnabled, "Whitelist mint is currently paused");
            require(totalSupply() + _quantity <= 5545, "Error: max supply reached");
            require((totalWlMint[msg.sender] + _quantity) <= wlMaxMint, "Error: Cannot mint more than 10");
            require(msg.value >= (_quantity * wlMintPrice), "Not enough ether sent");

            totalWlMint[msg.sender] += _quantity;
            _safeMint(msg.sender, _quantity);

        }
    }

    // verify merkle proof with a buf2hex(keccak256(address)) or keccak256(abi.encodePacked(address))
    function isValid(bytes32[] memory proof, bytes32 leaf) public view returns(bool) {
        return MerkleProof.verify(proof, root, leaf);
    }

    // Public mint with 20 per tx limit

    function publicMint(uint256 _quantity) external payable whenNotPaused nonReentrant {
        require(_quantity <= 20, "Cannot mint more than 20 per tx");
        require(publicMintEnabled, "Public mint is currently paused");
        require(msg.value >= (_quantity * mintPrice), "Not enough ether sent");
        require(totalSupply() + _quantity <= 5545, "Error: max supply reached");

        _safeMint(msg.sender, _quantity);
    }

    

    // returns the baseuri of collection, private
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    // override _statTokenId() from erc721a to start tokenId at 1
    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    // return tokenUri given the tokenId

    function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
    {
    require(_exists(tokenId),"ERC721Metadata: URI query for nonexistent token");
    
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _toString(tokenId), baseExtension))
        : "";
        
    }

    // owner updates and functions

    function togglePublicMint() external onlyOwner nonReentrant{
        publicMintEnabled = !publicMintEnabled;
    }

    function toggleWlMint() external onlyOwner nonReentrant{
        wlMintEnabled = !wlMintEnabled;
    }

    function enableBothMints() external onlyOwner nonReentrant{
        wlMintEnabled = true;
        publicMintEnabled = true;
    }

    function setPrice(uint256 _mintPrice) external onlyOwner nonReentrant{
    mintPrice = _mintPrice;
    }

    function setWlPrice(uint256 _wlMintPrice) external onlyOwner nonReentrant{
    wlMintPrice = _wlMintPrice;
    }

    function setmaxWl(uint256 _wlMaxMint) external onlyOwner nonReentrant{
    wlMaxMint = _wlMaxMint;
    }
  
    function pause() public onlyOwner nonReentrant{ 
        _pause();
    }

    function unpause() public onlyOwner nonReentrant{
        _unpause();
    }

    function setBaseURI(string memory _newURI) public onlyOwner nonReentrant{
        baseURI = _newURI;
    }

    function setRoot(bytes32 _root) public onlyOwner nonReentrant {
        root = _root;
    }

    function setMaxSupply(uint256 _maxSupply) external onlyOwner nonReentrant {
        maxSupply = _maxSupply;
    }

    // withdraw to owner(), i.e only if msg.sender is owner
    function withdraw() external onlyOwner nonReentrant {

        payable(0x0837d97d5F619c11420F3035D22F55fF96b8171E).transfer(address(this).balance * 20 / 100);

        payable(owner()).transfer(address(this).balance);
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"bytes32","name":"_root","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableBothMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"isValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wlMintPrice","type":"uint256"}],"name":"setWlPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wlMaxMint","type":"uint256"}],"name":"setmaxWl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWlMint","outputs":[],"stateMutability":"nonpayable","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":"","type":"address"}],"name":"totalFreeMints","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":"","type":"address"}],"name":"totalWlMint","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040526115b3600b55663c0a75e0b44000600c55600a600d55663272d323cf8000600e556001600f556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250601090805190602001906200007792919062000479565b506000601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff021916908315150217905550348015620000bb57600080fd5b5060405162004a4d38038062004a4d8339818101604052810190620000e19190620005be565b6040518060400160405280600881526020017f504550454c414e440000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f504c00000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200016592919062000479565b5080600390805190602001906200017e92919062000479565b506200018f6200020460201b60201c565b6000819055505050620001b7620001ab6200020d60201b60201c565b6200021560201b60201c565b60016009819055506000600a60006101000a81548160ff021916908315150217905550620001eb82620002db60201b60201c565b620001fc816200032760201b60201c565b5050620008c1565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002eb6200036160201b60201c565b620002fb620003f260201b60201c565b80601190805190602001906200031392919062000479565b50620003246200044560201b60201c565b50565b620003376200036160201b60201c565b62000347620003f260201b60201c565b806015819055506200035e6200044560201b60201c565b50565b620003716200020d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003976200044f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003f0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e79062000672565b60405180910390fd5b565b600260095414156200043b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004329062000694565b60405180910390fd5b6002600981905550565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620004879062000766565b90600052602060002090601f016020900481019282620004ab5760008555620004f7565b82601f10620004c657805160ff1916838001178555620004f7565b82800160010185558215620004f7579182015b82811115620004f6578251825591602001919060010190620004d9565b5b5090506200050691906200050a565b5090565b5b80821115620005255760008160009055506001016200050b565b5090565b6000620005406200053a84620006df565b620006b6565b9050828152602081018484840111156200055f576200055e62000835565b5b6200056c84828562000730565b509392505050565b6000815190506200058581620008a7565b92915050565b600082601f830112620005a357620005a262000830565b5b8151620005b584826020860162000529565b91505092915050565b60008060408385031215620005d857620005d76200083f565b5b600083015167ffffffffffffffff811115620005f957620005f86200083a565b5b62000607858286016200058b565b92505060206200061a8582860162000574565b9150509250929050565b60006200063360208362000715565b9150620006408262000855565b602082019050919050565b60006200065a601f8362000715565b915062000667826200087e565b602082019050919050565b600060208201905081810360008301526200068d8162000624565b9050919050565b60006020820190508181036000830152620006af816200064b565b9050919050565b6000620006c2620006d5565b9050620006d082826200079c565b919050565b6000604051905090565b600067ffffffffffffffff821115620006fd57620006fc62000801565b5b620007088262000844565b9050602081019050919050565b600082825260208201905092915050565b6000819050919050565b60005b838110156200075057808201518184015260208101905062000733565b8381111562000760576000848401525b50505050565b600060028204905060018216806200077f57607f821691505b60208210811415620007965762000795620007d2565b5b50919050565b620007a78262000844565b810181811067ffffffffffffffff82111715620007c957620007c862000801565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b620008b28162000726565b8114620008be57600080fd5b50565b61417c80620008d16000396000f3fe60806040526004361061027d5760003560e01c806370a082311161014f578063b8a20ed0116100c1578063dab5f3401161007a578063dab5f340146108c4578063e4b35683146108ed578063e985e9c514610918578063ebf0c71714610955578063f2e8340314610980578063f2fde38b146109bd5761027d565b8063b8a20ed0146107af578063c204642c146107ec578063c668286214610815578063c87b56dd14610840578063d2cab0561461087d578063d5abeb01146108995761027d565b806391b7f5ed1161011357806391b7f5ed146106d457806395d89b41146106fd5780639c08feb214610728578063a22cb4651461073f578063b858618714610768578063b88d4fde146107935761027d565b806370a0823114610615578063715018a6146106525780638456cb59146106695780638da5cb5b146106805780638dd07d0f146106ab5761027d565b806337321ec8116101f357806355f804b3116101ac57806355f804b3146105055780635c975abb1461052e5780636352211e146105595780636817c76c146105965780636c0360eb146105c15780636f8b44b0146105ec5761027d565b806337321ec8146104505780633ccfd60b1461048d5780633f4ba83a146104a45780634047638d146104bb57806342842e0e146104d2578063450f6b86146104ee5761027d565b806311f95ac31161024557806311f95ac31461036e57806318160ddd1461039957806323b872dd146103c4578063258e835b146103e05780632c4e9fc6146104095780632db11544146104345761027d565b806301ffc9a71461028257806306fdde03146102bf578063081812fc146102ea578063095ea7b3146103275780630f4161aa14610343575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a491906131db565b6109e6565b6040516102b69190613719565b60405180910390f35b3480156102cb57600080fd5b506102d4610a78565b6040516102e1919061374f565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c919061327e565b610b0a565b60405161031e91906136b2565b60405180910390f35b610341600480360381019061033c91906130b2565b610b89565b005b34801561034f57600080fd5b50610358610ccd565b6040516103659190613719565b60405180910390f35b34801561037a57600080fd5b50610383610ce0565b6040516103909190613719565b60405180910390f35b3480156103a557600080fd5b506103ae610cf3565b6040516103bb9190613931565b60405180910390f35b6103de60048036038101906103d99190612f9c565b610d0a565b005b3480156103ec57600080fd5b506104076004803603810190610402919061327e565b61102f565b005b34801561041557600080fd5b5061041e611051565b60405161042b9190613931565b60405180910390f35b61044e6004803603810190610449919061327e565b611057565b005b34801561045c57600080fd5b5061047760048036038101906104729190612f2f565b6111b6565b6040516104849190613931565b60405180910390f35b34801561049957600080fd5b506104a26111ce565b005b3480156104b057600080fd5b506104b96112a9565b005b3480156104c757600080fd5b506104d06112cb565b005b6104ec60048036038101906104e79190612f9c565b61130f565b005b3480156104fa57600080fd5b5061050361132f565b005b34801561051157600080fd5b5061052c60048036038101906105279190613235565b61137f565b005b34801561053a57600080fd5b506105436113b1565b6040516105509190613719565b60405180910390f35b34801561056557600080fd5b50610580600480360381019061057b919061327e565b6113c8565b60405161058d91906136b2565b60405180910390f35b3480156105a257600080fd5b506105ab6113da565b6040516105b89190613931565b60405180910390f35b3480156105cd57600080fd5b506105d66113e0565b6040516105e3919061374f565b60405180910390f35b3480156105f857600080fd5b50610613600480360381019061060e919061327e565b61146e565b005b34801561062157600080fd5b5061063c60048036038101906106379190612f2f565b611490565b6040516106499190613931565b60405180910390f35b34801561065e57600080fd5b50610667611549565b005b34801561067557600080fd5b5061067e61155d565b005b34801561068c57600080fd5b5061069561157f565b6040516106a291906136b2565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd919061327e565b6115a9565b005b3480156106e057600080fd5b506106fb60048036038101906106f6919061327e565b6115cb565b005b34801561070957600080fd5b506107126115ed565b60405161071f919061374f565b60405180910390f35b34801561073457600080fd5b5061073d61167f565b005b34801561074b57600080fd5b5061076660048036038101906107619190613072565b6116c3565b005b34801561077457600080fd5b5061077d6117ce565b60405161078a9190613931565b60405180910390f35b6107ad60048036038101906107a89190612fef565b6117d4565b005b3480156107bb57600080fd5b506107d660048036038101906107d19190613152565b611847565b6040516107e39190613719565b60405180910390f35b3480156107f857600080fd5b50610813600480360381019061080e91906130f2565b61185e565b005b34801561082157600080fd5b5061082a611925565b604051610837919061374f565b60405180910390f35b34801561084c57600080fd5b506108676004803603810190610862919061327e565b6119b3565b604051610874919061374f565b60405180910390f35b610897600480360381019061089291906132ab565b611a5d565b005b3480156108a557600080fd5b506108ae612044565b6040516108bb9190613931565b60405180910390f35b3480156108d057600080fd5b506108eb60048036038101906108e691906131ae565b61204a565b005b3480156108f957600080fd5b5061090261206c565b60405161090f9190613931565b60405180910390f35b34801561092457600080fd5b5061093f600480360381019061093a9190612f5c565b612072565b60405161094c9190613719565b60405180910390f35b34801561096157600080fd5b5061096a612106565b6040516109779190613734565b60405180910390f35b34801561098c57600080fd5b506109a760048036038101906109a29190612f2f565b61210c565b6040516109b49190613931565b60405180910390f35b3480156109c957600080fd5b506109e460048036038101906109df9190612f2f565b612124565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a715750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610a8790613c2c565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab390613c2c565b8015610b005780601f10610ad557610100808354040283529160200191610b00565b820191906000526020600020905b815481529060010190602001808311610ae357829003601f168201915b5050505050905090565b6000610b15826121a8565b610b4b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b94826113c8565b90508073ffffffffffffffffffffffffffffffffffffffff16610bb5612207565b73ffffffffffffffffffffffffffffffffffffffff1614610c1857610be181610bdc612207565b612072565b610c17576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601260009054906101000a900460ff1681565b601260019054906101000a900460ff1681565b6000610cfd61220f565b6001546000540303905090565b6000610d1582612218565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d7c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d88846122e6565b91509150610d9e8187610d99612207565b61230d565b610dea57610db386610dae612207565b612072565b610de9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e51576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e5e8686866001612351565b8015610e6957600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f3785610f13888887612357565b7c02000000000000000000000000000000000000000000000000000000001761237f565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610fbf576000600185019050600060046000838152602001908152602001600020541415610fbd576000548114610fbc578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461102786868660016123aa565b505050505050565b6110376123b0565b61103f61242e565b80600d8190555061104e61247e565b50565b600e5481565b61105f612488565b61106761242e565b60148111156110ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a2906138b1565b60405180910390fd5b601260009054906101000a900460ff166110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f1906138f1565b60405180910390fd5b600c54816111089190613ade565b34101561114a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611141906138d1565b60405180910390fd5b6115a981611156610cf3565b6111609190613a57565b11156111a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119890613891565b60405180910390fd5b6111ab33826124d2565b6111b361247e565b50565b60146020528060005260406000206000915090505481565b6111d66123b0565b6111de61242e565b730837d97d5f619c11420f3035d22f55ff96b8171e73ffffffffffffffffffffffffffffffffffffffff166108fc606460144761121b9190613ade565b6112259190613aad565b9081150290604051600060405180830381858888f19350505050158015611250573d6000803e3d6000fd5b5061125961157f565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561129e573d6000803e3d6000fd5b506112a761247e565b565b6112b16123b0565b6112b961242e565b6112c16124f0565b6112c961247e565b565b6112d36123b0565b6112db61242e565b601260009054906101000a900460ff1615601260006101000a81548160ff02191690831515021790555061130d61247e565b565b61132a838383604051806020016040528060008152506117d4565b505050565b6113376123b0565b61133f61242e565b6001601260016101000a81548160ff0219169083151502179055506001601260006101000a81548160ff02191690831515021790555061137d61247e565b565b6113876123b0565b61138f61242e565b80601190805190602001906113a5929190612c3a565b506113ae61247e565b50565b6000600a60009054906101000a900460ff16905090565b60006113d382612218565b9050919050565b600c5481565b601180546113ed90613c2c565b80601f016020809104026020016040519081016040528092919081815260200182805461141990613c2c565b80156114665780601f1061143b57610100808354040283529160200191611466565b820191906000526020600020905b81548152906001019060200180831161144957829003601f168201915b505050505081565b6114766123b0565b61147e61242e565b80600b8190555061148d61247e565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114f8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6115516123b0565b61155b6000612553565b565b6115656123b0565b61156d61242e565b611575612619565b61157d61247e565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115b16123b0565b6115b961242e565b80600e819055506115c861247e565b50565b6115d36123b0565b6115db61242e565b80600c819055506115ea61247e565b50565b6060600380546115fc90613c2c565b80601f016020809104026020016040519081016040528092919081815260200182805461162890613c2c565b80156116755780601f1061164a57610100808354040283529160200191611675565b820191906000526020600020905b81548152906001019060200180831161165857829003601f168201915b5050505050905090565b6116876123b0565b61168f61242e565b601260019054906101000a900460ff1615601260016101000a81548160ff0219169083151502179055506116c161247e565b565b80600760006116d0612207565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661177d612207565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117c29190613719565b60405180910390a35050565b600f5481565b6117df848484610d0a565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118415761180a8484848461267c565b611840576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600061185683601554846127dc565b905092915050565b6118666123b0565b61186e61242e565b600b548161187a610cf3565b6118849190613a57565b11156118c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bc90613891565b60405180910390fd5b60005b83839050811015611917576119048484838181106118e9576118e8613d89565b5b90506020020160208101906118fe9190612f2f565b836124d2565b808061190f90613c8f565b9150506118c8565b5061192061247e565b505050565b6010805461193290613c2c565b80601f016020809104026020016040519081016040528092919081815260200182805461195e90613c2c565b80156119ab5780601f10611980576101008083540402835291602001916119ab565b820191906000526020600020905b81548152906001019060200180831161198e57829003601f168201915b505050505081565b60606119be826121a8565b6119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f490613831565b60405180910390fd5b6000611a076127f3565b90506000815111611a275760405180602001604052806000815250611a55565b80611a3184612885565b6010604051602001611a4593929190613681565b6040516020818303038152906040525b915050919050565b611a65612488565b611a6d61242e565b6000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054148015611ac057506103e8600f5411155b15611de3576103e8600f541115611b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0390613851565b60405180910390fd5b611b3c8133604051602001611b219190613666565b60405160208183030381529060405280519060200120611847565b611b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b72906137f1565b60405180910390fd5b601260019054906101000a900460ff16611bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc190613871565b60405180910390fd5b6115a982611bd6610cf3565b611be09190613a57565b1115611c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1890613891565b60405180910390fd5b600d5482601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c6f9190613a57565b1115611cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca7906137b1565b60405180910390fd5b600e54600e5483611cc19190613ade565b611ccb9190613b38565b341015611d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d04906138d1565b60405180910390fd5b6001601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d5d9190613a57565b925050819055506001600f6000828254611d779190613a57565b9250508190555081601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dcd9190613a57565b92505081905550611dde33836124d2565b612038565b611e138133604051602001611df89190613666565b60405160208183030381529060405280519060200120611847565b611e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e49906137f1565b60405180910390fd5b601260019054906101000a900460ff16611ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9890613871565b60405180910390fd5b6115a982611ead610cf3565b611eb79190613a57565b1115611ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eef90613891565b60405180910390fd5b600d5482601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f469190613a57565b1115611f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7e906137b1565b60405180910390fd5b600e5482611f959190613ade565b341015611fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fce906138d1565b60405180910390fd5b81601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120269190613a57565b9250508190555061203733836124d2565b5b61204061247e565b5050565b600b5481565b6120526123b0565b61205a61242e565b8060158190555061206961247e565b50565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60155481565b60136020528060005260406000206000915090505481565b61212c6123b0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561219c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219390613791565b60405180910390fd5b6121a581612553565b50565b6000816121b361220f565b111580156121c2575060005482105b8015612200575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061222761220f565b116122af576000548110156122ae5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156122ac575b60008114156122a2576004600083600190039350838152602001908152602001600020549050612277565b80925050506122e1565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861236e8686846128de565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6123b86128e7565b73ffffffffffffffffffffffffffffffffffffffff166123d661157f565b73ffffffffffffffffffffffffffffffffffffffff161461242c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242390613811565b60405180910390fd5b565b60026009541415612474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246b90613911565b60405180910390fd5b6002600981905550565b6001600981905550565b6124906113b1565b156124d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c7906137d1565b60405180910390fd5b565b6124ec8282604051806020016040528060008152506128ef565b5050565b6124f861298c565b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61253c6128e7565b60405161254991906136b2565b60405180910390a1565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612621612488565b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586126656128e7565b60405161267291906136b2565b60405180910390a1565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126a2612207565b8786866040518563ffffffff1660e01b81526004016126c494939291906136cd565b602060405180830381600087803b1580156126de57600080fd5b505af192505050801561270f57506040513d601f19601f8201168201806040525081019061270c9190613208565b60015b612789573d806000811461273f576040519150601f19603f3d011682016040523d82523d6000602084013e612744565b606091505b50600081511415612781576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000826127e985846129d5565b1490509392505050565b60606011805461280290613c2c565b80601f016020809104026020016040519081016040528092919081815260200182805461282e90613c2c565b801561287b5780601f106128505761010080835404028352916020019161287b565b820191906000526020600020905b81548152906001019060200180831161285e57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b6001156128c957600184039350600a81066030018453600a81049050806128c4576128c9565b61289e565b50828103602084039350808452505050919050565b60009392505050565b600033905090565b6128f98383612a2b565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461298757600080549050600083820390505b612939600086838060010194508661267c565b61296f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061292657816000541461298457600080fd5b50505b505050565b6129946113b1565b6129d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ca90613771565b60405180910390fd5b565b60008082905060005b8451811015612a2057612a0b828683815181106129fe576129fd613d89565b5b6020026020010151612be8565b91508080612a1890613c8f565b9150506129de565b508091505092915050565b6000805490506000821415612a6c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a796000848385612351565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612af083612ae16000866000612357565b612aea85612c13565b1761237f565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612b9157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612b56565b506000821415612bcd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612be360008483856123aa565b505050565b6000818310612c0057612bfb8284612c23565b612c0b565b612c0a8383612c23565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b828054612c4690613c2c565b90600052602060002090601f016020900481019282612c685760008555612caf565b82601f10612c8157805160ff1916838001178555612caf565b82800160010185558215612caf579182015b82811115612cae578251825591602001919060010190612c93565b5b509050612cbc9190612cc0565b5090565b5b80821115612cd9576000816000905550600101612cc1565b5090565b6000612cf0612ceb84613971565b61394c565b90508083825260208201905082856020860282011115612d1357612d12613df1565b5b60005b85811015612d435781612d298882612e7f565b845260208401935060208301925050600181019050612d16565b5050509392505050565b6000612d60612d5b8461399d565b61394c565b905082815260208101848484011115612d7c57612d7b613df6565b5b612d87848285613bea565b509392505050565b6000612da2612d9d846139ce565b61394c565b905082815260208101848484011115612dbe57612dbd613df6565b5b612dc9848285613bea565b509392505050565b600081359050612de0816140d3565b92915050565b60008083601f840112612dfc57612dfb613dec565b5b8235905067ffffffffffffffff811115612e1957612e18613de7565b5b602083019150836020820283011115612e3557612e34613df1565b5b9250929050565b600082601f830112612e5157612e50613dec565b5b8135612e61848260208601612cdd565b91505092915050565b600081359050612e79816140ea565b92915050565b600081359050612e8e81614101565b92915050565b600081359050612ea381614118565b92915050565b600081519050612eb881614118565b92915050565b600082601f830112612ed357612ed2613dec565b5b8135612ee3848260208601612d4d565b91505092915050565b600082601f830112612f0157612f00613dec565b5b8135612f11848260208601612d8f565b91505092915050565b600081359050612f298161412f565b92915050565b600060208284031215612f4557612f44613e00565b5b6000612f5384828501612dd1565b91505092915050565b60008060408385031215612f7357612f72613e00565b5b6000612f8185828601612dd1565b9250506020612f9285828601612dd1565b9150509250929050565b600080600060608486031215612fb557612fb4613e00565b5b6000612fc386828701612dd1565b9350506020612fd486828701612dd1565b9250506040612fe586828701612f1a565b9150509250925092565b6000806000806080858703121561300957613008613e00565b5b600061301787828801612dd1565b945050602061302887828801612dd1565b935050604061303987828801612f1a565b925050606085013567ffffffffffffffff81111561305a57613059613dfb565b5b61306687828801612ebe565b91505092959194509250565b6000806040838503121561308957613088613e00565b5b600061309785828601612dd1565b92505060206130a885828601612e6a565b9150509250929050565b600080604083850312156130c9576130c8613e00565b5b60006130d785828601612dd1565b92505060206130e885828601612f1a565b9150509250929050565b60008060006040848603121561310b5761310a613e00565b5b600084013567ffffffffffffffff81111561312957613128613dfb565b5b61313586828701612de6565b9350935050602061314886828701612f1a565b9150509250925092565b6000806040838503121561316957613168613e00565b5b600083013567ffffffffffffffff81111561318757613186613dfb565b5b61319385828601612e3c565b92505060206131a485828601612e7f565b9150509250929050565b6000602082840312156131c4576131c3613e00565b5b60006131d284828501612e7f565b91505092915050565b6000602082840312156131f1576131f0613e00565b5b60006131ff84828501612e94565b91505092915050565b60006020828403121561321e5761321d613e00565b5b600061322c84828501612ea9565b91505092915050565b60006020828403121561324b5761324a613e00565b5b600082013567ffffffffffffffff81111561326957613268613dfb565b5b61327584828501612eec565b91505092915050565b60006020828403121561329457613293613e00565b5b60006132a284828501612f1a565b91505092915050565b600080604083850312156132c2576132c1613e00565b5b60006132d085828601612f1a565b925050602083013567ffffffffffffffff8111156132f1576132f0613dfb565b5b6132fd85828601612e3c565b9150509250929050565b61331081613b6c565b82525050565b61332761332282613b6c565b613cd8565b82525050565b61333681613b7e565b82525050565b61334581613b8a565b82525050565b600061335682613a14565b6133608185613a2a565b9350613370818560208601613bf9565b61337981613e05565b840191505092915050565b600061338f82613a1f565b6133998185613a3b565b93506133a9818560208601613bf9565b6133b281613e05565b840191505092915050565b60006133c882613a1f565b6133d28185613a4c565b93506133e2818560208601613bf9565b80840191505092915050565b600081546133fb81613c2c565b6134058186613a4c565b94506001821660008114613420576001811461343157613464565b60ff19831686528186019350613464565b61343a856139ff565b60005b8381101561345c5781548189015260018201915060208101905061343d565b838801955050505b50505092915050565b600061347a601483613a3b565b915061348582613e23565b602082019050919050565b600061349d602683613a3b565b91506134a882613e4c565b604082019050919050565b60006134c0601f83613a3b565b91506134cb82613e9b565b602082019050919050565b60006134e3601083613a3b565b91506134ee82613ec4565b602082019050919050565b6000613506601783613a3b565b915061351182613eed565b602082019050919050565b6000613529602083613a3b565b915061353482613f16565b602082019050919050565b600061354c602f83613a3b565b915061355782613f3f565b604082019050919050565b600061356f601c83613a3b565b915061357a82613f8e565b602082019050919050565b6000613592602283613a3b565b915061359d82613fb7565b604082019050919050565b60006135b5601983613a3b565b91506135c082614006565b602082019050919050565b60006135d8601f83613a3b565b91506135e38261402f565b602082019050919050565b60006135fb601583613a3b565b915061360682614058565b602082019050919050565b600061361e601f83613a3b565b915061362982614081565b602082019050919050565b6000613641601f83613a3b565b915061364c826140aa565b602082019050919050565b61366081613be0565b82525050565b60006136728284613316565b60148201915081905092915050565b600061368d82866133bd565b915061369982856133bd565b91506136a582846133ee565b9150819050949350505050565b60006020820190506136c76000830184613307565b92915050565b60006080820190506136e26000830187613307565b6136ef6020830186613307565b6136fc6040830185613657565b818103606083015261370e818461334b565b905095945050505050565b600060208201905061372e600083018461332d565b92915050565b6000602082019050613749600083018461333c565b92915050565b600060208201905081810360008301526137698184613384565b905092915050565b6000602082019050818103600083015261378a8161346d565b9050919050565b600060208201905081810360008301526137aa81613490565b9050919050565b600060208201905081810360008301526137ca816134b3565b9050919050565b600060208201905081810360008301526137ea816134d6565b9050919050565b6000602082019050818103600083015261380a816134f9565b9050919050565b6000602082019050818103600083015261382a8161351c565b9050919050565b6000602082019050818103600083015261384a8161353f565b9050919050565b6000602082019050818103600083015261386a81613562565b9050919050565b6000602082019050818103600083015261388a81613585565b9050919050565b600060208201905081810360008301526138aa816135a8565b9050919050565b600060208201905081810360008301526138ca816135cb565b9050919050565b600060208201905081810360008301526138ea816135ee565b9050919050565b6000602082019050818103600083015261390a81613611565b9050919050565b6000602082019050818103600083015261392a81613634565b9050919050565b60006020820190506139466000830184613657565b92915050565b6000613956613967565b90506139628282613c5e565b919050565b6000604051905090565b600067ffffffffffffffff82111561398c5761398b613db8565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156139b8576139b7613db8565b5b6139c182613e05565b9050602081019050919050565b600067ffffffffffffffff8211156139e9576139e8613db8565b5b6139f282613e05565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a6282613be0565b9150613a6d83613be0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613aa257613aa1613cfc565b5b828201905092915050565b6000613ab882613be0565b9150613ac383613be0565b925082613ad357613ad2613d2b565b5b828204905092915050565b6000613ae982613be0565b9150613af483613be0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b2d57613b2c613cfc565b5b828202905092915050565b6000613b4382613be0565b9150613b4e83613be0565b925082821015613b6157613b60613cfc565b5b828203905092915050565b6000613b7782613bc0565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c17578082015181840152602081019050613bfc565b83811115613c26576000848401525b50505050565b60006002820490506001821680613c4457607f821691505b60208210811415613c5857613c57613d5a565b5b50919050565b613c6782613e05565b810181811067ffffffffffffffff82111715613c8657613c85613db8565b5b80604052505050565b6000613c9a82613be0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ccd57613ccc613cfc565b5b600182019050919050565b6000613ce382613cea565b9050919050565b6000613cf582613e16565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4572726f723a2043616e6e6f74206d696e74206d6f7265207468616e20313000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4e6f7420612070617274206f662077686974656c697374000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f206d6f72652066726565205065706572696e6f73206c6566742100000000600082015250565b7f57686974656c697374206d696e742069732063757272656e746c79207061757360008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4572726f723a206d617820737570706c79207265616368656400000000000000600082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e2032302070657220747800600082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f5075626c6963206d696e742069732063757272656e746c792070617573656400600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6140dc81613b6c565b81146140e757600080fd5b50565b6140f381613b7e565b81146140fe57600080fd5b50565b61410a81613b8a565b811461411557600080fd5b50565b61412181613b94565b811461412c57600080fd5b50565b61413881613be0565b811461414357600080fd5b5056fea26469706673582212203e066a4a7c16f14441feb15d204aaefafc5ca7b1b9cd095d826a53bfc3a7bdb164736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000d536a5f76c24876717b54bfc70465c72d19171580f901cf1806fca14a8191a000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d635638725044346a6a594358477145666566633161314c45526f3245373375653243414d556474326f7367392f000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061027d5760003560e01c806370a082311161014f578063b8a20ed0116100c1578063dab5f3401161007a578063dab5f340146108c4578063e4b35683146108ed578063e985e9c514610918578063ebf0c71714610955578063f2e8340314610980578063f2fde38b146109bd5761027d565b8063b8a20ed0146107af578063c204642c146107ec578063c668286214610815578063c87b56dd14610840578063d2cab0561461087d578063d5abeb01146108995761027d565b806391b7f5ed1161011357806391b7f5ed146106d457806395d89b41146106fd5780639c08feb214610728578063a22cb4651461073f578063b858618714610768578063b88d4fde146107935761027d565b806370a0823114610615578063715018a6146106525780638456cb59146106695780638da5cb5b146106805780638dd07d0f146106ab5761027d565b806337321ec8116101f357806355f804b3116101ac57806355f804b3146105055780635c975abb1461052e5780636352211e146105595780636817c76c146105965780636c0360eb146105c15780636f8b44b0146105ec5761027d565b806337321ec8146104505780633ccfd60b1461048d5780633f4ba83a146104a45780634047638d146104bb57806342842e0e146104d2578063450f6b86146104ee5761027d565b806311f95ac31161024557806311f95ac31461036e57806318160ddd1461039957806323b872dd146103c4578063258e835b146103e05780632c4e9fc6146104095780632db11544146104345761027d565b806301ffc9a71461028257806306fdde03146102bf578063081812fc146102ea578063095ea7b3146103275780630f4161aa14610343575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a491906131db565b6109e6565b6040516102b69190613719565b60405180910390f35b3480156102cb57600080fd5b506102d4610a78565b6040516102e1919061374f565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c919061327e565b610b0a565b60405161031e91906136b2565b60405180910390f35b610341600480360381019061033c91906130b2565b610b89565b005b34801561034f57600080fd5b50610358610ccd565b6040516103659190613719565b60405180910390f35b34801561037a57600080fd5b50610383610ce0565b6040516103909190613719565b60405180910390f35b3480156103a557600080fd5b506103ae610cf3565b6040516103bb9190613931565b60405180910390f35b6103de60048036038101906103d99190612f9c565b610d0a565b005b3480156103ec57600080fd5b506104076004803603810190610402919061327e565b61102f565b005b34801561041557600080fd5b5061041e611051565b60405161042b9190613931565b60405180910390f35b61044e6004803603810190610449919061327e565b611057565b005b34801561045c57600080fd5b5061047760048036038101906104729190612f2f565b6111b6565b6040516104849190613931565b60405180910390f35b34801561049957600080fd5b506104a26111ce565b005b3480156104b057600080fd5b506104b96112a9565b005b3480156104c757600080fd5b506104d06112cb565b005b6104ec60048036038101906104e79190612f9c565b61130f565b005b3480156104fa57600080fd5b5061050361132f565b005b34801561051157600080fd5b5061052c60048036038101906105279190613235565b61137f565b005b34801561053a57600080fd5b506105436113b1565b6040516105509190613719565b60405180910390f35b34801561056557600080fd5b50610580600480360381019061057b919061327e565b6113c8565b60405161058d91906136b2565b60405180910390f35b3480156105a257600080fd5b506105ab6113da565b6040516105b89190613931565b60405180910390f35b3480156105cd57600080fd5b506105d66113e0565b6040516105e3919061374f565b60405180910390f35b3480156105f857600080fd5b50610613600480360381019061060e919061327e565b61146e565b005b34801561062157600080fd5b5061063c60048036038101906106379190612f2f565b611490565b6040516106499190613931565b60405180910390f35b34801561065e57600080fd5b50610667611549565b005b34801561067557600080fd5b5061067e61155d565b005b34801561068c57600080fd5b5061069561157f565b6040516106a291906136b2565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd919061327e565b6115a9565b005b3480156106e057600080fd5b506106fb60048036038101906106f6919061327e565b6115cb565b005b34801561070957600080fd5b506107126115ed565b60405161071f919061374f565b60405180910390f35b34801561073457600080fd5b5061073d61167f565b005b34801561074b57600080fd5b5061076660048036038101906107619190613072565b6116c3565b005b34801561077457600080fd5b5061077d6117ce565b60405161078a9190613931565b60405180910390f35b6107ad60048036038101906107a89190612fef565b6117d4565b005b3480156107bb57600080fd5b506107d660048036038101906107d19190613152565b611847565b6040516107e39190613719565b60405180910390f35b3480156107f857600080fd5b50610813600480360381019061080e91906130f2565b61185e565b005b34801561082157600080fd5b5061082a611925565b604051610837919061374f565b60405180910390f35b34801561084c57600080fd5b506108676004803603810190610862919061327e565b6119b3565b604051610874919061374f565b60405180910390f35b610897600480360381019061089291906132ab565b611a5d565b005b3480156108a557600080fd5b506108ae612044565b6040516108bb9190613931565b60405180910390f35b3480156108d057600080fd5b506108eb60048036038101906108e691906131ae565b61204a565b005b3480156108f957600080fd5b5061090261206c565b60405161090f9190613931565b60405180910390f35b34801561092457600080fd5b5061093f600480360381019061093a9190612f5c565b612072565b60405161094c9190613719565b60405180910390f35b34801561096157600080fd5b5061096a612106565b6040516109779190613734565b60405180910390f35b34801561098c57600080fd5b506109a760048036038101906109a29190612f2f565b61210c565b6040516109b49190613931565b60405180910390f35b3480156109c957600080fd5b506109e460048036038101906109df9190612f2f565b612124565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a715750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610a8790613c2c565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab390613c2c565b8015610b005780601f10610ad557610100808354040283529160200191610b00565b820191906000526020600020905b815481529060010190602001808311610ae357829003601f168201915b5050505050905090565b6000610b15826121a8565b610b4b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b94826113c8565b90508073ffffffffffffffffffffffffffffffffffffffff16610bb5612207565b73ffffffffffffffffffffffffffffffffffffffff1614610c1857610be181610bdc612207565b612072565b610c17576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601260009054906101000a900460ff1681565b601260019054906101000a900460ff1681565b6000610cfd61220f565b6001546000540303905090565b6000610d1582612218565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d7c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d88846122e6565b91509150610d9e8187610d99612207565b61230d565b610dea57610db386610dae612207565b612072565b610de9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e51576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e5e8686866001612351565b8015610e6957600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f3785610f13888887612357565b7c02000000000000000000000000000000000000000000000000000000001761237f565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610fbf576000600185019050600060046000838152602001908152602001600020541415610fbd576000548114610fbc578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461102786868660016123aa565b505050505050565b6110376123b0565b61103f61242e565b80600d8190555061104e61247e565b50565b600e5481565b61105f612488565b61106761242e565b60148111156110ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a2906138b1565b60405180910390fd5b601260009054906101000a900460ff166110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f1906138f1565b60405180910390fd5b600c54816111089190613ade565b34101561114a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611141906138d1565b60405180910390fd5b6115a981611156610cf3565b6111609190613a57565b11156111a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119890613891565b60405180910390fd5b6111ab33826124d2565b6111b361247e565b50565b60146020528060005260406000206000915090505481565b6111d66123b0565b6111de61242e565b730837d97d5f619c11420f3035d22f55ff96b8171e73ffffffffffffffffffffffffffffffffffffffff166108fc606460144761121b9190613ade565b6112259190613aad565b9081150290604051600060405180830381858888f19350505050158015611250573d6000803e3d6000fd5b5061125961157f565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561129e573d6000803e3d6000fd5b506112a761247e565b565b6112b16123b0565b6112b961242e565b6112c16124f0565b6112c961247e565b565b6112d36123b0565b6112db61242e565b601260009054906101000a900460ff1615601260006101000a81548160ff02191690831515021790555061130d61247e565b565b61132a838383604051806020016040528060008152506117d4565b505050565b6113376123b0565b61133f61242e565b6001601260016101000a81548160ff0219169083151502179055506001601260006101000a81548160ff02191690831515021790555061137d61247e565b565b6113876123b0565b61138f61242e565b80601190805190602001906113a5929190612c3a565b506113ae61247e565b50565b6000600a60009054906101000a900460ff16905090565b60006113d382612218565b9050919050565b600c5481565b601180546113ed90613c2c565b80601f016020809104026020016040519081016040528092919081815260200182805461141990613c2c565b80156114665780601f1061143b57610100808354040283529160200191611466565b820191906000526020600020905b81548152906001019060200180831161144957829003601f168201915b505050505081565b6114766123b0565b61147e61242e565b80600b8190555061148d61247e565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114f8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6115516123b0565b61155b6000612553565b565b6115656123b0565b61156d61242e565b611575612619565b61157d61247e565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115b16123b0565b6115b961242e565b80600e819055506115c861247e565b50565b6115d36123b0565b6115db61242e565b80600c819055506115ea61247e565b50565b6060600380546115fc90613c2c565b80601f016020809104026020016040519081016040528092919081815260200182805461162890613c2c565b80156116755780601f1061164a57610100808354040283529160200191611675565b820191906000526020600020905b81548152906001019060200180831161165857829003601f168201915b5050505050905090565b6116876123b0565b61168f61242e565b601260019054906101000a900460ff1615601260016101000a81548160ff0219169083151502179055506116c161247e565b565b80600760006116d0612207565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661177d612207565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117c29190613719565b60405180910390a35050565b600f5481565b6117df848484610d0a565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118415761180a8484848461267c565b611840576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600061185683601554846127dc565b905092915050565b6118666123b0565b61186e61242e565b600b548161187a610cf3565b6118849190613a57565b11156118c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bc90613891565b60405180910390fd5b60005b83839050811015611917576119048484838181106118e9576118e8613d89565b5b90506020020160208101906118fe9190612f2f565b836124d2565b808061190f90613c8f565b9150506118c8565b5061192061247e565b505050565b6010805461193290613c2c565b80601f016020809104026020016040519081016040528092919081815260200182805461195e90613c2c565b80156119ab5780601f10611980576101008083540402835291602001916119ab565b820191906000526020600020905b81548152906001019060200180831161198e57829003601f168201915b505050505081565b60606119be826121a8565b6119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f490613831565b60405180910390fd5b6000611a076127f3565b90506000815111611a275760405180602001604052806000815250611a55565b80611a3184612885565b6010604051602001611a4593929190613681565b6040516020818303038152906040525b915050919050565b611a65612488565b611a6d61242e565b6000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054148015611ac057506103e8600f5411155b15611de3576103e8600f541115611b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0390613851565b60405180910390fd5b611b3c8133604051602001611b219190613666565b60405160208183030381529060405280519060200120611847565b611b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b72906137f1565b60405180910390fd5b601260019054906101000a900460ff16611bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc190613871565b60405180910390fd5b6115a982611bd6610cf3565b611be09190613a57565b1115611c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1890613891565b60405180910390fd5b600d5482601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c6f9190613a57565b1115611cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca7906137b1565b60405180910390fd5b600e54600e5483611cc19190613ade565b611ccb9190613b38565b341015611d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d04906138d1565b60405180910390fd5b6001601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d5d9190613a57565b925050819055506001600f6000828254611d779190613a57565b9250508190555081601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dcd9190613a57565b92505081905550611dde33836124d2565b612038565b611e138133604051602001611df89190613666565b60405160208183030381529060405280519060200120611847565b611e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e49906137f1565b60405180910390fd5b601260019054906101000a900460ff16611ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9890613871565b60405180910390fd5b6115a982611ead610cf3565b611eb79190613a57565b1115611ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eef90613891565b60405180910390fd5b600d5482601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f469190613a57565b1115611f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7e906137b1565b60405180910390fd5b600e5482611f959190613ade565b341015611fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fce906138d1565b60405180910390fd5b81601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120269190613a57565b9250508190555061203733836124d2565b5b61204061247e565b5050565b600b5481565b6120526123b0565b61205a61242e565b8060158190555061206961247e565b50565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60155481565b60136020528060005260406000206000915090505481565b61212c6123b0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561219c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219390613791565b60405180910390fd5b6121a581612553565b50565b6000816121b361220f565b111580156121c2575060005482105b8015612200575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061222761220f565b116122af576000548110156122ae5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156122ac575b60008114156122a2576004600083600190039350838152602001908152602001600020549050612277565b80925050506122e1565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861236e8686846128de565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6123b86128e7565b73ffffffffffffffffffffffffffffffffffffffff166123d661157f565b73ffffffffffffffffffffffffffffffffffffffff161461242c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242390613811565b60405180910390fd5b565b60026009541415612474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246b90613911565b60405180910390fd5b6002600981905550565b6001600981905550565b6124906113b1565b156124d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c7906137d1565b60405180910390fd5b565b6124ec8282604051806020016040528060008152506128ef565b5050565b6124f861298c565b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61253c6128e7565b60405161254991906136b2565b60405180910390a1565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612621612488565b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586126656128e7565b60405161267291906136b2565b60405180910390a1565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126a2612207565b8786866040518563ffffffff1660e01b81526004016126c494939291906136cd565b602060405180830381600087803b1580156126de57600080fd5b505af192505050801561270f57506040513d601f19601f8201168201806040525081019061270c9190613208565b60015b612789573d806000811461273f576040519150601f19603f3d011682016040523d82523d6000602084013e612744565b606091505b50600081511415612781576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000826127e985846129d5565b1490509392505050565b60606011805461280290613c2c565b80601f016020809104026020016040519081016040528092919081815260200182805461282e90613c2c565b801561287b5780601f106128505761010080835404028352916020019161287b565b820191906000526020600020905b81548152906001019060200180831161285e57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b6001156128c957600184039350600a81066030018453600a81049050806128c4576128c9565b61289e565b50828103602084039350808452505050919050565b60009392505050565b600033905090565b6128f98383612a2b565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461298757600080549050600083820390505b612939600086838060010194508661267c565b61296f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061292657816000541461298457600080fd5b50505b505050565b6129946113b1565b6129d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ca90613771565b60405180910390fd5b565b60008082905060005b8451811015612a2057612a0b828683815181106129fe576129fd613d89565b5b6020026020010151612be8565b91508080612a1890613c8f565b9150506129de565b508091505092915050565b6000805490506000821415612a6c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a796000848385612351565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612af083612ae16000866000612357565b612aea85612c13565b1761237f565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612b9157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612b56565b506000821415612bcd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612be360008483856123aa565b505050565b6000818310612c0057612bfb8284612c23565b612c0b565b612c0a8383612c23565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b828054612c4690613c2c565b90600052602060002090601f016020900481019282612c685760008555612caf565b82601f10612c8157805160ff1916838001178555612caf565b82800160010185558215612caf579182015b82811115612cae578251825591602001919060010190612c93565b5b509050612cbc9190612cc0565b5090565b5b80821115612cd9576000816000905550600101612cc1565b5090565b6000612cf0612ceb84613971565b61394c565b90508083825260208201905082856020860282011115612d1357612d12613df1565b5b60005b85811015612d435781612d298882612e7f565b845260208401935060208301925050600181019050612d16565b5050509392505050565b6000612d60612d5b8461399d565b61394c565b905082815260208101848484011115612d7c57612d7b613df6565b5b612d87848285613bea565b509392505050565b6000612da2612d9d846139ce565b61394c565b905082815260208101848484011115612dbe57612dbd613df6565b5b612dc9848285613bea565b509392505050565b600081359050612de0816140d3565b92915050565b60008083601f840112612dfc57612dfb613dec565b5b8235905067ffffffffffffffff811115612e1957612e18613de7565b5b602083019150836020820283011115612e3557612e34613df1565b5b9250929050565b600082601f830112612e5157612e50613dec565b5b8135612e61848260208601612cdd565b91505092915050565b600081359050612e79816140ea565b92915050565b600081359050612e8e81614101565b92915050565b600081359050612ea381614118565b92915050565b600081519050612eb881614118565b92915050565b600082601f830112612ed357612ed2613dec565b5b8135612ee3848260208601612d4d565b91505092915050565b600082601f830112612f0157612f00613dec565b5b8135612f11848260208601612d8f565b91505092915050565b600081359050612f298161412f565b92915050565b600060208284031215612f4557612f44613e00565b5b6000612f5384828501612dd1565b91505092915050565b60008060408385031215612f7357612f72613e00565b5b6000612f8185828601612dd1565b9250506020612f9285828601612dd1565b9150509250929050565b600080600060608486031215612fb557612fb4613e00565b5b6000612fc386828701612dd1565b9350506020612fd486828701612dd1565b9250506040612fe586828701612f1a565b9150509250925092565b6000806000806080858703121561300957613008613e00565b5b600061301787828801612dd1565b945050602061302887828801612dd1565b935050604061303987828801612f1a565b925050606085013567ffffffffffffffff81111561305a57613059613dfb565b5b61306687828801612ebe565b91505092959194509250565b6000806040838503121561308957613088613e00565b5b600061309785828601612dd1565b92505060206130a885828601612e6a565b9150509250929050565b600080604083850312156130c9576130c8613e00565b5b60006130d785828601612dd1565b92505060206130e885828601612f1a565b9150509250929050565b60008060006040848603121561310b5761310a613e00565b5b600084013567ffffffffffffffff81111561312957613128613dfb565b5b61313586828701612de6565b9350935050602061314886828701612f1a565b9150509250925092565b6000806040838503121561316957613168613e00565b5b600083013567ffffffffffffffff81111561318757613186613dfb565b5b61319385828601612e3c565b92505060206131a485828601612e7f565b9150509250929050565b6000602082840312156131c4576131c3613e00565b5b60006131d284828501612e7f565b91505092915050565b6000602082840312156131f1576131f0613e00565b5b60006131ff84828501612e94565b91505092915050565b60006020828403121561321e5761321d613e00565b5b600061322c84828501612ea9565b91505092915050565b60006020828403121561324b5761324a613e00565b5b600082013567ffffffffffffffff81111561326957613268613dfb565b5b61327584828501612eec565b91505092915050565b60006020828403121561329457613293613e00565b5b60006132a284828501612f1a565b91505092915050565b600080604083850312156132c2576132c1613e00565b5b60006132d085828601612f1a565b925050602083013567ffffffffffffffff8111156132f1576132f0613dfb565b5b6132fd85828601612e3c565b9150509250929050565b61331081613b6c565b82525050565b61332761332282613b6c565b613cd8565b82525050565b61333681613b7e565b82525050565b61334581613b8a565b82525050565b600061335682613a14565b6133608185613a2a565b9350613370818560208601613bf9565b61337981613e05565b840191505092915050565b600061338f82613a1f565b6133998185613a3b565b93506133a9818560208601613bf9565b6133b281613e05565b840191505092915050565b60006133c882613a1f565b6133d28185613a4c565b93506133e2818560208601613bf9565b80840191505092915050565b600081546133fb81613c2c565b6134058186613a4c565b94506001821660008114613420576001811461343157613464565b60ff19831686528186019350613464565b61343a856139ff565b60005b8381101561345c5781548189015260018201915060208101905061343d565b838801955050505b50505092915050565b600061347a601483613a3b565b915061348582613e23565b602082019050919050565b600061349d602683613a3b565b91506134a882613e4c565b604082019050919050565b60006134c0601f83613a3b565b91506134cb82613e9b565b602082019050919050565b60006134e3601083613a3b565b91506134ee82613ec4565b602082019050919050565b6000613506601783613a3b565b915061351182613eed565b602082019050919050565b6000613529602083613a3b565b915061353482613f16565b602082019050919050565b600061354c602f83613a3b565b915061355782613f3f565b604082019050919050565b600061356f601c83613a3b565b915061357a82613f8e565b602082019050919050565b6000613592602283613a3b565b915061359d82613fb7565b604082019050919050565b60006135b5601983613a3b565b91506135c082614006565b602082019050919050565b60006135d8601f83613a3b565b91506135e38261402f565b602082019050919050565b60006135fb601583613a3b565b915061360682614058565b602082019050919050565b600061361e601f83613a3b565b915061362982614081565b602082019050919050565b6000613641601f83613a3b565b915061364c826140aa565b602082019050919050565b61366081613be0565b82525050565b60006136728284613316565b60148201915081905092915050565b600061368d82866133bd565b915061369982856133bd565b91506136a582846133ee565b9150819050949350505050565b60006020820190506136c76000830184613307565b92915050565b60006080820190506136e26000830187613307565b6136ef6020830186613307565b6136fc6040830185613657565b818103606083015261370e818461334b565b905095945050505050565b600060208201905061372e600083018461332d565b92915050565b6000602082019050613749600083018461333c565b92915050565b600060208201905081810360008301526137698184613384565b905092915050565b6000602082019050818103600083015261378a8161346d565b9050919050565b600060208201905081810360008301526137aa81613490565b9050919050565b600060208201905081810360008301526137ca816134b3565b9050919050565b600060208201905081810360008301526137ea816134d6565b9050919050565b6000602082019050818103600083015261380a816134f9565b9050919050565b6000602082019050818103600083015261382a8161351c565b9050919050565b6000602082019050818103600083015261384a8161353f565b9050919050565b6000602082019050818103600083015261386a81613562565b9050919050565b6000602082019050818103600083015261388a81613585565b9050919050565b600060208201905081810360008301526138aa816135a8565b9050919050565b600060208201905081810360008301526138ca816135cb565b9050919050565b600060208201905081810360008301526138ea816135ee565b9050919050565b6000602082019050818103600083015261390a81613611565b9050919050565b6000602082019050818103600083015261392a81613634565b9050919050565b60006020820190506139466000830184613657565b92915050565b6000613956613967565b90506139628282613c5e565b919050565b6000604051905090565b600067ffffffffffffffff82111561398c5761398b613db8565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156139b8576139b7613db8565b5b6139c182613e05565b9050602081019050919050565b600067ffffffffffffffff8211156139e9576139e8613db8565b5b6139f282613e05565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a6282613be0565b9150613a6d83613be0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613aa257613aa1613cfc565b5b828201905092915050565b6000613ab882613be0565b9150613ac383613be0565b925082613ad357613ad2613d2b565b5b828204905092915050565b6000613ae982613be0565b9150613af483613be0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b2d57613b2c613cfc565b5b828202905092915050565b6000613b4382613be0565b9150613b4e83613be0565b925082821015613b6157613b60613cfc565b5b828203905092915050565b6000613b7782613bc0565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c17578082015181840152602081019050613bfc565b83811115613c26576000848401525b50505050565b60006002820490506001821680613c4457607f821691505b60208210811415613c5857613c57613d5a565b5b50919050565b613c6782613e05565b810181811067ffffffffffffffff82111715613c8657613c85613db8565b5b80604052505050565b6000613c9a82613be0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ccd57613ccc613cfc565b5b600182019050919050565b6000613ce382613cea565b9050919050565b6000613cf582613e16565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4572726f723a2043616e6e6f74206d696e74206d6f7265207468616e20313000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4e6f7420612070617274206f662077686974656c697374000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f206d6f72652066726565205065706572696e6f73206c6566742100000000600082015250565b7f57686974656c697374206d696e742069732063757272656e746c79207061757360008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4572726f723a206d617820737570706c79207265616368656400000000000000600082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e2032302070657220747800600082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f5075626c6963206d696e742069732063757272656e746c792070617573656400600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6140dc81613b6c565b81146140e757600080fd5b50565b6140f381613b7e565b81146140fe57600080fd5b50565b61410a81613b8a565b811461411557600080fd5b50565b61412181613b94565b811461412c57600080fd5b50565b61413881613be0565b811461414357600080fd5b5056fea26469706673582212203e066a4a7c16f14441feb15d204aaefafc5ca7b1b9cd095d826a53bfc3a7bdb164736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000d536a5f76c24876717b54bfc70465c72d19171580f901cf1806fca14a8191a000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d635638725044346a6a594358477145666566633161314c45526f3245373375653243414d556474326f7367392f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): https://gateway.pinata.cloud/ipfs/QmcV8rPD4jjYCXGqEfefc1a1LERo2E73ue2CAMUdt2osg9/
Arg [1] : _root (bytes32): 0x00d536a5f76c24876717b54bfc70465c72d19171580f901cf1806fca14a8191a

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00d536a5f76c24876717b54bfc70465c72d19171580f901cf1806fca14a8191a
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [3] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [4] : 732f516d635638725044346a6a594358477145666566633161314c45526f3245
Arg [5] : 373375653243414d556474326f7367392f000000000000000000000000000000


Deployed Bytecode Sourcemap

76252:6039:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37159:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38061:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44552:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43985:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76736:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76780:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33812:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48191:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81372:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76507:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79443:441;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76937:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82056:228;;;;;;;;;;;;;:::i;:::-;;81570:77;;;;;;;;;;;;;:::i;:::-;;80760:116;;;;;;;;;;;;;:::i;:::-;;51112:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80996:132;;;;;;;;;;;;;:::i;:::-;;81655:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17773:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39454:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76394:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76666:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81872:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34996:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15283:103;;;;;;;;;;;;;:::i;:::-;;81488:74;;;;;;;;;;;;;:::i;:::-;;14635:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81250:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81136:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38237:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80884;;;;;;;;;;;;;:::i;:::-;;45110:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76555:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51903:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79248:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77239:303;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76622:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80287:427;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77623:1514;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76356:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81771:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76471:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45501:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77015:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76884:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15541:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37159:639;37244:4;37583:10;37568:25;;:11;:25;;;;:102;;;;37660:10;37645:25;;:11;:25;;;;37568:102;:179;;;;37737:10;37722:25;;:11;:25;;;;37568:179;37548:199;;37159:639;;;:::o;38061:100::-;38115:13;38148:5;38141:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38061:100;:::o;44552:218::-;44628:7;44653:16;44661:7;44653;:16::i;:::-;44648:64;;44678:34;;;;;;;;;;;;;;44648:64;44732:15;:24;44748:7;44732:24;;;;;;;;;;;:30;;;;;;;;;;;;44725:37;;44552:218;;;:::o;43985:408::-;44074:13;44090:16;44098:7;44090;:16::i;:::-;44074:32;;44146:5;44123:28;;:19;:17;:19::i;:::-;:28;;;44119:175;;44171:44;44188:5;44195:19;:17;:19::i;:::-;44171:16;:44::i;:::-;44166:128;;44243:35;;;;;;;;;;;;;;44166:128;44119:175;44339:2;44306:15;:24;44322:7;44306:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;44377:7;44373:2;44357:28;;44366:5;44357:28;;;;;;;;;;;;44063:330;43985:408;;:::o;76736:37::-;;;;;;;;;;;;;:::o;76780:33::-;;;;;;;;;;;;;:::o;33812:323::-;33873:7;34101:15;:13;:15::i;:::-;34086:12;;34070:13;;:28;:46;34063:53;;33812:323;:::o;48191:2825::-;48333:27;48363;48382:7;48363:18;:27::i;:::-;48333:57;;48448:4;48407:45;;48423:19;48407:45;;;48403:86;;48461:28;;;;;;;;;;;;;;48403:86;48503:27;48532:23;48559:35;48586:7;48559:26;:35::i;:::-;48502:92;;;;48694:68;48719:15;48736:4;48742:19;:17;:19::i;:::-;48694:24;:68::i;:::-;48689:180;;48782:43;48799:4;48805:19;:17;:19::i;:::-;48782:16;:43::i;:::-;48777:92;;48834:35;;;;;;;;;;;;;;48777:92;48689:180;48900:1;48886:16;;:2;:16;;;48882:52;;;48911:23;;;;;;;;;;;;;;48882:52;48947:43;48969:4;48975:2;48979:7;48988:1;48947:21;:43::i;:::-;49083:15;49080:160;;;49223:1;49202:19;49195:30;49080:160;49620:18;:24;49639:4;49620:24;;;;;;;;;;;;;;;;49618:26;;;;;;;;;;;;49689:18;:22;49708:2;49689:22;;;;;;;;;;;;;;;;49687:24;;;;;;;;;;;50011:146;50048:2;50097:45;50112:4;50118:2;50122:19;50097:14;:45::i;:::-;30211:8;50069:73;50011:18;:146::i;:::-;49982:17;:26;50000:7;49982:26;;;;;;;;;;;:175;;;;50328:1;30211:8;50277:19;:47;:52;50273:627;;;50350:19;50382:1;50372:7;:11;50350:33;;50539:1;50505:17;:30;50523:11;50505:30;;;;;;;;;;;;:35;50501:384;;;50643:13;;50628:11;:28;50624:242;;50823:19;50790:17;:30;50808:11;50790:30;;;;;;;;;;;:52;;;;50624:242;50501:384;50331:569;50273:627;50947:7;50943:2;50928:27;;50937:4;50928:27;;;;;;;;;;;;50966:42;50987:4;50993:2;50997:7;51006:1;50966:20;:42::i;:::-;48322:2694;;;48191:2825;;;:::o;81372:106::-;14521:13;:11;:13::i;:::-;11906:21:::1;:19;:21::i;:::-;81460:10:::2;81448:9;:22;;;;11950:20:::1;:18;:20::i;:::-;81372:106:::0;:::o;76507:41::-;;;;:::o;79443:441::-;17378:19;:17;:19::i;:::-;11906:21:::1;:19;:21::i;:::-;79558:2:::2;79545:9;:15;;79537:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;79615:17;;;;;;;;;;;79607:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;79713:9;;79701;:21;;;;:::i;:::-;79687:9;:36;;79679:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;79797:4;79784:9;79768:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:33;;79760:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;79844:32;79854:10;79866:9;79844;:32::i;:::-;11950:20:::1;:18;:20::i;:::-;79443:441:::0;:::o;76937:49::-;;;;;;;;;;;;;;;;;:::o;82056:228::-;14521:13;:11;:13::i;:::-;11906:21:::1;:19;:21::i;:::-;82129:42:::2;82121:60;;:94;82211:3;82206:2;82182:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;82121:94;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;82236:7;:5;:7::i;:::-;82228:25;;:48;82254:21;82228:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;11950:20:::1;:18;:20::i;:::-;82056:228::o:0;81570:77::-;14521:13;:11;:13::i;:::-;11906:21:::1;:19;:21::i;:::-;81629:10:::2;:8;:10::i;:::-;11950:20:::1;:18;:20::i;:::-;81570:77::o:0;80760:116::-;14521:13;:11;:13::i;:::-;11906:21:::1;:19;:21::i;:::-;80851:17:::2;;;;;;;;;;;80850:18;80830:17;;:38;;;;;;;;;;;;;;;;;;11950:20:::1;:18;:20::i;:::-;80760:116::o:0;51112:193::-;51258:39;51275:4;51281:2;51285:7;51258:39;;;;;;;;;;;;:16;:39::i;:::-;51112:193;;;:::o;80996:132::-;14521:13;:11;:13::i;:::-;11906:21:::1;:19;:21::i;:::-;81081:4:::2;81065:13;;:20;;;;;;;;;;;;;;;;;;81116:4;81096:17;;:24;;;;;;;;;;;;;;;;;;11950:20:::1;:18;:20::i;:::-;80996:132::o:0;81655:108::-;14521:13;:11;:13::i;:::-;11906:21:::1;:19;:21::i;:::-;81748:7:::2;81738;:17;;;;;;;;;;;;:::i;:::-;;11950:20:::1;:18;:20::i;:::-;81655:108:::0;:::o;17773:86::-;17820:4;17844:7;;;;;;;;;;;17837:14;;17773:86;:::o;39454:152::-;39526:7;39569:27;39588:7;39569:18;:27::i;:::-;39546:52;;39454:152;;;:::o;76394:39::-;;;;:::o;76666:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;81872:115::-;14521:13;:11;:13::i;:::-;11906:21:::1;:19;:21::i;:::-;81969:10:::2;81957:9;:22;;;;11950:20:::1;:18;:20::i;:::-;81872:115:::0;:::o;34996:233::-;35068:7;35109:1;35092:19;;:5;:19;;;35088:60;;;35120:28;;;;;;;;;;;;;;35088:60;29155:13;35166:18;:25;35185:5;35166:25;;;;;;;;;;;;;;;;:55;35159:62;;34996:233;;;:::o;15283:103::-;14521:13;:11;:13::i;:::-;15348:30:::1;15375:1;15348:18;:30::i;:::-;15283:103::o:0;81488:74::-;14521:13;:11;:13::i;:::-;11906:21:::1;:19;:21::i;:::-;81546:8:::2;:6;:8::i;:::-;11950:20:::1;:18;:20::i;:::-;81488:74::o:0;14635:87::-;14681:7;14708:6;;;;;;;;;;;14701:13;;14635:87;:::o;81250:114::-;14521:13;:11;:13::i;:::-;11906:21:::1;:19;:21::i;:::-;81344:12:::2;81330:11;:26;;;;11950:20:::1;:18;:20::i;:::-;81250:114:::0;:::o;81136:106::-;14521:13;:11;:13::i;:::-;11906:21:::1;:19;:21::i;:::-;81224:10:::2;81212:9;:22;;;;11950:20:::1;:18;:20::i;:::-;81136:106:::0;:::o;38237:104::-;38293:13;38326:7;38319:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38237:104;:::o;80884:::-;14521:13;:11;:13::i;:::-;11906:21:::1;:19;:21::i;:::-;80967:13:::2;;;;;;;;;;;80966:14;80950:13;;:30;;;;;;;;;;;;;;;;;;11950:20:::1;:18;:20::i;:::-;80884:104::o:0;45110:234::-;45257:8;45205:18;:39;45224:19;:17;:19::i;:::-;45205:39;;;;;;;;;;;;;;;:49;45245:8;45205:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;45317:8;45281:55;;45296:19;:17;:19::i;:::-;45281:55;;;45327:8;45281:55;;;;;;:::i;:::-;;;;;;;;45110:234;;:::o;76555:26::-;;;;:::o;51903:407::-;52078:31;52091:4;52097:2;52101:7;52078:12;:31::i;:::-;52142:1;52124:2;:14;;;:19;52120:183;;52163:56;52194:4;52200:2;52204:7;52213:5;52163:30;:56::i;:::-;52158:145;;52247:40;;;;;;;;;;;;;;52158:145;52120:183;51903:407;;;;:::o;79248:144::-;79323:4;79347:37;79366:5;79373:4;;79379;79347:18;:37::i;:::-;79340:44;;79248:144;;;;:::o;77239:303::-;14521:13;:11;:13::i;:::-;11906:21:::1;:19;:21::i;:::-;77382:9:::2;;77371:7;77355:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:36;;77347:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;77439:6;77434:101;77455:8;;:15;;77451:1;:19;77434:101;;;77492:31;77502:8;;77511:1;77502:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;77515:7;77492:9;:31::i;:::-;77472:3;;;;;:::i;:::-;;;;77434:101;;;;11950:20:::1;:18;:20::i;:::-;77239:303:::0;;;:::o;76622:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;80287:427::-;80385:13;80420:16;80428:7;80420;:16::i;:::-;80412:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;80504:28;80535:10;:8;:10::i;:::-;80504:41;;80594:1;80569:14;80563:28;:32;:133;;;;;;;;;;;;;;;;;80631:14;80647:18;80657:7;80647:9;:18::i;:::-;80667:13;80614:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;80563:133;80556:140;;;80287:427;;;:::o;77623:1514::-;17378:19;:17;:19::i;:::-;11906:21:::1;:19;:21::i;:::-;77788:1:::2;77758:14;:26;77773:10;77758:26;;;;;;;;;;;;;;;;:31;:50;;;;;77804:4;77793:7;;:15;;77758:50;77754:1376;;;77844:4;77833:7;;:15;;77825:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;77904:55;77912:5;77946:10;77929:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;77919:39;;;;;;77904:7;:55::i;:::-;77896:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;78010:13;;;;;;;;;;;78002:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;78114:4;78101:9;78085:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:33;;78077:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;78212:9;;78198;78172:11;:23;78184:10;78172:23;;;;;;;;;;;;;;;;:35;;;;:::i;:::-;78171:50;;78163:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;78322:11;;78307;;78295:9;:23;;;;:::i;:::-;78294:39;;;;:::i;:::-;78280:9;:54;;78272:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;78407:1;78377:14;:26;78392:10;78377:26;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;78434:1;78423:7;;:12;;;;;;;:::i;:::-;;;;;;;;78477:9;78450:11;:23;78462:10;78450:23;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;78501:32;78511:10;78523:9;78501;:32::i;:::-;77754:1376;;;78576:55;78584:5;78618:10;78601:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;78591:39;;;;;;78576:7;:55::i;:::-;78568:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;78682:13;;;;;;;;;;;78674:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;78786:4;78773:9;78757:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:33;;78749:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;78884:9;;78870;78844:11;:23;78856:10;78844:23;;;;;;;;;;;;;;;;:35;;;;:::i;:::-;78843:50;;78835:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;78978:11;;78966:9;:23;;;;:::i;:::-;78952:9;:38;;78944:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;79060:9;79033:11;:23;79045:10;79033:23;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;79084:32;79094:10;79106:9;79084;:32::i;:::-;77754:1376;11950:20:::1;:18;:20::i;:::-;77623:1514:::0;;:::o;76356:31::-;;;;:::o;81771:93::-;14521:13;:11;:13::i;:::-;11906:21:::1;:19;:21::i;:::-;81851:5:::2;81844:4;:12;;;;11950:20:::1;:18;:20::i;:::-;81771:93:::0;:::o;76471:29::-;;;;:::o;45501:164::-;45598:4;45622:18;:25;45641:5;45622:25;;;;;;;;;;;;;;;:35;45648:8;45622:35;;;;;;;;;;;;;;;;;;;;;;;;;45615:42;;45501:164;;;;:::o;77015:19::-;;;;:::o;76884:46::-;;;;;;;;;;;;;;;;;:::o;15541:201::-;14521:13;:11;:13::i;:::-;15650:1:::1;15630:22;;:8;:22;;;;15622:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;15706:28;15725:8;15706:18;:28::i;:::-;15541:201:::0;:::o;45923:282::-;45988:4;46044:7;46025:15;:13;:15::i;:::-;:26;;:66;;;;;46078:13;;46068:7;:23;46025:66;:153;;;;;46177:1;29931:8;46129:17;:26;46147:7;46129:26;;;;;;;;;;;;:44;:49;46025:153;46005:173;;45923:282;;;:::o;68231:105::-;68291:7;68318:10;68311:17;;68231:105;:::o;80134:101::-;80199:7;80226:1;80219:8;;80134:101;:::o;40609:1275::-;40676:7;40696:12;40711:7;40696:22;;40779:4;40760:15;:13;:15::i;:::-;:23;40756:1061;;40813:13;;40806:4;:20;40802:1015;;;40851:14;40868:17;:23;40886:4;40868:23;;;;;;;;;;;;40851:40;;40985:1;29931:8;40957:6;:24;:29;40953:845;;;41622:113;41639:1;41629:6;:11;41622:113;;;41682:17;:25;41700:6;;;;;;;41682:25;;;;;;;;;;;;41673:34;;41622:113;;;41768:6;41761:13;;;;;;40953:845;40828:989;40802:1015;40756:1061;41845:31;;;;;;;;;;;;;;40609:1275;;;;:::o;47086:485::-;47188:27;47217:23;47258:38;47299:15;:24;47315:7;47299:24;;;;;;;;;;;47258:65;;47476:18;47453:41;;47533:19;47527:26;47508:45;;47438:126;47086:485;;;:::o;46314:659::-;46463:11;46628:16;46621:5;46617:28;46608:37;;46788:16;46777:9;46773:32;46760:45;;46938:15;46927:9;46924:30;46916:5;46905:9;46902:20;46899:56;46889:66;;46314:659;;;;;:::o;52972:159::-;;;;;:::o;67540:311::-;67675:7;67695:16;30335:3;67721:19;:41;;67695:68;;30335:3;67789:31;67800:4;67806:2;67810:9;67789:10;:31::i;:::-;67781:40;;:62;;67774:69;;;67540:311;;;;;:::o;42432:450::-;42512:14;42680:16;42673:5;42669:28;42660:37;;42857:5;42843:11;42818:23;42814:41;42811:52;42804:5;42801:63;42791:73;;42432:450;;;;:::o;53796:158::-;;;;;:::o;14800:132::-;14875:12;:10;:12::i;:::-;14864:23;;:7;:5;:7::i;:::-;:23;;;14856:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14800:132::o;11986:293::-;11388:1;12120:7;;:19;;12112:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;11388:1;12253:7;:18;;;;11986:293::o;12287:213::-;11344:1;12470:7;:22;;;;12287:213::o;17932:108::-;18003:8;:6;:8::i;:::-;18002:9;17994:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;17932:108::o;62063:112::-;62140:27;62150:2;62154:8;62140:27;;;;;;;;;;;;:9;:27::i;:::-;62063:112;;:::o;18628:120::-;17637:16;:14;:16::i;:::-;18697:5:::1;18687:7;;:15;;;;;;;;;;;;;;;;;;18718:22;18727:12;:10;:12::i;:::-;18718:22;;;;;;:::i;:::-;;;;;;;;18628:120::o:0;15902:191::-;15976:16;15995:6;;;;;;;;;;;15976:25;;16021:8;16012:6;;:17;;;;;;;;;;;;;;;;;;16076:8;16045:40;;16066:8;16045:40;;;;;;;;;;;;15965:128;15902:191;:::o;18369:118::-;17378:19;:17;:19::i;:::-;18439:4:::1;18429:7;;:14;;;;;;;;;;;;;;;;;;18459:20;18466:12;:10;:12::i;:::-;18459:20;;;;;;:::i;:::-;;;;;;;;18369:118::o:0;54394:716::-;54557:4;54603:2;54578:45;;;54624:19;:17;:19::i;:::-;54645:4;54651:7;54660:5;54578:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;54574:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54878:1;54861:6;:13;:18;54857:235;;;54907:40;;;;;;;;;;;;;;54857:235;55050:6;55044:13;55035:6;55031:2;55027:15;55020:38;54574:529;54747:54;;;54737:64;;;:6;:64;;;;54730:71;;;54394:716;;;;;;:::o;1222:190::-;1347:4;1400;1371:25;1384:5;1391:4;1371:12;:25::i;:::-;:33;1364:40;;1222:190;;;;;:::o;79951:108::-;80011:13;80044:7;80037:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79951:108;:::o;68438:1745::-;68503:17;68937:4;68930;68924:11;68920:22;69029:1;69023:4;69016:15;69104:4;69101:1;69097:12;69090:19;;69186:1;69181:3;69174:14;69290:3;69529:5;69511:428;69537:1;69511:428;;;69577:1;69572:3;69568:11;69561:18;;69748:2;69742:4;69738:13;69734:2;69730:22;69725:3;69717:36;69842:2;69836:4;69832:13;69824:21;;69909:4;69899:25;;69917:5;;69899:25;69511:428;;;69515:21;69978:3;69973;69969:13;70093:4;70088:3;70084:14;70077:21;;70158:6;70153:3;70146:19;68542:1634;;;68438:1745;;;:::o;67241:147::-;67378:6;67241:147;;;;;:::o;13186:98::-;13239:7;13266:10;13259:17;;13186:98;:::o;61290:689::-;61421:19;61427:2;61431:8;61421:5;:19::i;:::-;61500:1;61482:2;:14;;;:19;61478:483;;61522:11;61536:13;;61522:27;;61568:13;61590:8;61584:3;:14;61568:30;;61617:233;61648:62;61687:1;61691:2;61695:7;;;;;;61704:5;61648:30;:62::i;:::-;61643:167;;61746:40;;;;;;;;;;;;;;61643:167;61845:3;61837:5;:11;61617:233;;61932:3;61915:13;;:20;61911:34;;61937:8;;;61911:34;61503:458;;61478:483;61290:689;;;:::o;18117:108::-;18184:8;:6;:8::i;:::-;18176:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;18117:108::o;2089:296::-;2172:7;2192:20;2215:4;2192:27;;2235:9;2230:118;2254:5;:12;2250:1;:16;2230:118;;;2303:33;2313:12;2327:5;2333:1;2327:8;;;;;;;;:::i;:::-;;;;;;;;2303:9;:33::i;:::-;2288:48;;2268:3;;;;;:::i;:::-;;;;2230:118;;;;2365:12;2358:19;;;2089:296;;;;:::o;55572:2966::-;55645:20;55668:13;;55645:36;;55708:1;55696:8;:13;55692:44;;;55718:18;;;;;;;;;;;;;;55692:44;55749:61;55779:1;55783:2;55787:12;55801:8;55749:21;:61::i;:::-;56293:1;29293:2;56263:1;:26;;56262:32;56250:8;:45;56224:18;:22;56243:2;56224:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;56572:139;56609:2;56663:33;56686:1;56690:2;56694:1;56663:14;:33::i;:::-;56630:30;56651:8;56630:20;:30::i;:::-;:66;56572:18;:139::i;:::-;56538:17;:31;56556:12;56538:31;;;;;;;;;;;:173;;;;56728:16;56759:11;56788:8;56773:12;:23;56759:37;;57309:16;57305:2;57301:25;57289:37;;57681:12;57641:8;57600:1;57538:25;57479:1;57418;57391:335;58052:1;58038:12;58034:20;57992:346;58093:3;58084:7;58081:16;57992:346;;58311:7;58301:8;58298:1;58271:25;58268:1;58265;58260:59;58146:1;58137:7;58133:15;58122:26;;57992:346;;;57996:77;58383:1;58371:8;:13;58367:45;;;58393:19;;;;;;;;;;;;;;58367:45;58445:3;58429:13;:19;;;;55998:2462;;58470:60;58499:1;58503:2;58507:12;58521:8;58470:20;:60::i;:::-;55634:2904;55572:2966;;:::o;9129:149::-;9192:7;9223:1;9219;:5;:51;;9250:20;9265:1;9268;9250:14;:20::i;:::-;9219:51;;;9227:20;9242:1;9245;9227:14;:20::i;:::-;9219:51;9212:58;;9129:149;;;;:::o;42984:324::-;43054:14;43287:1;43277:8;43274:15;43248:24;43244:46;43234:56;;42984:324;;;:::o;9286:268::-;9354:13;9461:1;9455:4;9448:15;9490:1;9484:4;9477:15;9531:4;9525;9515:21;9506:30;;9286:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:568::-;1821:8;1831:6;1881:3;1874:4;1866:6;1862:17;1858:27;1848:122;;1889:79;;:::i;:::-;1848:122;2002:6;1989:20;1979:30;;2032:18;2024:6;2021:30;2018:117;;;2054:79;;:::i;:::-;2018:117;2168:4;2160:6;2156:17;2144:29;;2222:3;2214:4;2206:6;2202:17;2192:8;2188:32;2185:41;2182:128;;;2229:79;;:::i;:::-;2182:128;1748:568;;;;;:::o;2339:370::-;2410:5;2459:3;2452:4;2444:6;2440:17;2436:27;2426:122;;2467:79;;:::i;:::-;2426:122;2584:6;2571:20;2609:94;2699:3;2691:6;2684:4;2676:6;2672:17;2609:94;:::i;:::-;2600:103;;2416:293;2339:370;;;;:::o;2715:133::-;2758:5;2796:6;2783:20;2774:29;;2812:30;2836:5;2812:30;:::i;:::-;2715:133;;;;:::o;2854:139::-;2900:5;2938:6;2925:20;2916:29;;2954:33;2981:5;2954:33;:::i;:::-;2854:139;;;;:::o;2999:137::-;3044:5;3082:6;3069:20;3060:29;;3098:32;3124:5;3098:32;:::i;:::-;2999:137;;;;:::o;3142:141::-;3198:5;3229:6;3223:13;3214:22;;3245:32;3271:5;3245:32;:::i;:::-;3142:141;;;;:::o;3302:338::-;3357:5;3406:3;3399:4;3391:6;3387:17;3383:27;3373:122;;3414:79;;:::i;:::-;3373:122;3531:6;3518:20;3556:78;3630:3;3622:6;3615:4;3607:6;3603:17;3556:78;:::i;:::-;3547:87;;3363:277;3302:338;;;;:::o;3660:340::-;3716:5;3765:3;3758:4;3750:6;3746:17;3742:27;3732:122;;3773:79;;:::i;:::-;3732:122;3890:6;3877:20;3915:79;3990:3;3982:6;3975:4;3967:6;3963:17;3915:79;:::i;:::-;3906:88;;3722:278;3660:340;;;;:::o;4006:139::-;4052:5;4090:6;4077:20;4068:29;;4106:33;4133:5;4106:33;:::i;:::-;4006:139;;;;:::o;4151:329::-;4210:6;4259:2;4247:9;4238:7;4234:23;4230:32;4227:119;;;4265:79;;:::i;:::-;4227:119;4385:1;4410:53;4455:7;4446:6;4435:9;4431:22;4410:53;:::i;:::-;4400:63;;4356:117;4151:329;;;;:::o;4486:474::-;4554:6;4562;4611:2;4599:9;4590:7;4586:23;4582:32;4579:119;;;4617:79;;:::i;:::-;4579:119;4737:1;4762:53;4807:7;4798:6;4787:9;4783:22;4762:53;:::i;:::-;4752:63;;4708:117;4864:2;4890:53;4935:7;4926:6;4915:9;4911:22;4890:53;:::i;:::-;4880:63;;4835:118;4486:474;;;;;:::o;4966:619::-;5043:6;5051;5059;5108:2;5096:9;5087:7;5083:23;5079:32;5076:119;;;5114:79;;:::i;:::-;5076:119;5234:1;5259:53;5304:7;5295:6;5284:9;5280:22;5259:53;:::i;:::-;5249:63;;5205:117;5361:2;5387:53;5432:7;5423:6;5412:9;5408:22;5387:53;:::i;:::-;5377:63;;5332:118;5489:2;5515:53;5560:7;5551:6;5540:9;5536:22;5515:53;:::i;:::-;5505:63;;5460:118;4966:619;;;;;:::o;5591:943::-;5686:6;5694;5702;5710;5759:3;5747:9;5738:7;5734:23;5730:33;5727:120;;;5766:79;;:::i;:::-;5727:120;5886:1;5911:53;5956:7;5947:6;5936:9;5932:22;5911:53;:::i;:::-;5901:63;;5857:117;6013:2;6039:53;6084:7;6075:6;6064:9;6060:22;6039:53;:::i;:::-;6029:63;;5984:118;6141:2;6167:53;6212:7;6203:6;6192:9;6188:22;6167:53;:::i;:::-;6157:63;;6112:118;6297:2;6286:9;6282:18;6269:32;6328:18;6320:6;6317:30;6314:117;;;6350:79;;:::i;:::-;6314:117;6455:62;6509:7;6500:6;6489:9;6485:22;6455:62;:::i;:::-;6445:72;;6240:287;5591:943;;;;;;;:::o;6540:468::-;6605:6;6613;6662:2;6650:9;6641:7;6637:23;6633:32;6630:119;;;6668:79;;:::i;:::-;6630:119;6788:1;6813:53;6858:7;6849:6;6838:9;6834:22;6813:53;:::i;:::-;6803:63;;6759:117;6915:2;6941:50;6983:7;6974:6;6963:9;6959:22;6941:50;:::i;:::-;6931:60;;6886:115;6540:468;;;;;:::o;7014:474::-;7082:6;7090;7139:2;7127:9;7118:7;7114:23;7110:32;7107:119;;;7145:79;;:::i;:::-;7107:119;7265:1;7290:53;7335:7;7326:6;7315:9;7311:22;7290:53;:::i;:::-;7280:63;;7236:117;7392:2;7418:53;7463:7;7454:6;7443:9;7439:22;7418:53;:::i;:::-;7408:63;;7363:118;7014:474;;;;;:::o;7494:704::-;7589:6;7597;7605;7654:2;7642:9;7633:7;7629:23;7625:32;7622:119;;;7660:79;;:::i;:::-;7622:119;7808:1;7797:9;7793:17;7780:31;7838:18;7830:6;7827:30;7824:117;;;7860:79;;:::i;:::-;7824:117;7973:80;8045:7;8036:6;8025:9;8021:22;7973:80;:::i;:::-;7955:98;;;;7751:312;8102:2;8128:53;8173:7;8164:6;8153:9;8149:22;8128:53;:::i;:::-;8118:63;;8073:118;7494:704;;;;;:::o;8204:684::-;8297:6;8305;8354:2;8342:9;8333:7;8329:23;8325:32;8322:119;;;8360:79;;:::i;:::-;8322:119;8508:1;8497:9;8493:17;8480:31;8538:18;8530:6;8527:30;8524:117;;;8560:79;;:::i;:::-;8524:117;8665:78;8735:7;8726:6;8715:9;8711:22;8665:78;:::i;:::-;8655:88;;8451:302;8792:2;8818:53;8863:7;8854:6;8843:9;8839:22;8818:53;:::i;:::-;8808:63;;8763:118;8204:684;;;;;:::o;8894:329::-;8953:6;9002:2;8990:9;8981:7;8977:23;8973:32;8970:119;;;9008:79;;:::i;:::-;8970:119;9128:1;9153:53;9198:7;9189:6;9178:9;9174:22;9153:53;:::i;:::-;9143:63;;9099:117;8894:329;;;;:::o;9229:327::-;9287:6;9336:2;9324:9;9315:7;9311:23;9307:32;9304:119;;;9342:79;;:::i;:::-;9304:119;9462:1;9487:52;9531:7;9522:6;9511:9;9507:22;9487:52;:::i;:::-;9477:62;;9433:116;9229:327;;;;:::o;9562:349::-;9631:6;9680:2;9668:9;9659:7;9655:23;9651:32;9648:119;;;9686:79;;:::i;:::-;9648:119;9806:1;9831:63;9886:7;9877:6;9866:9;9862:22;9831:63;:::i;:::-;9821:73;;9777:127;9562:349;;;;:::o;9917:509::-;9986:6;10035:2;10023:9;10014:7;10010:23;10006:32;10003:119;;;10041:79;;:::i;:::-;10003:119;10189:1;10178:9;10174:17;10161:31;10219:18;10211:6;10208:30;10205:117;;;10241:79;;:::i;:::-;10205:117;10346:63;10401:7;10392:6;10381:9;10377:22;10346:63;:::i;:::-;10336:73;;10132:287;9917:509;;;;:::o;10432:329::-;10491:6;10540:2;10528:9;10519:7;10515:23;10511:32;10508:119;;;10546:79;;:::i;:::-;10508:119;10666:1;10691:53;10736:7;10727:6;10716:9;10712:22;10691:53;:::i;:::-;10681:63;;10637:117;10432:329;;;;:::o;10767:684::-;10860:6;10868;10917:2;10905:9;10896:7;10892:23;10888:32;10885:119;;;10923:79;;:::i;:::-;10885:119;11043:1;11068:53;11113:7;11104:6;11093:9;11089:22;11068:53;:::i;:::-;11058:63;;11014:117;11198:2;11187:9;11183:18;11170:32;11229:18;11221:6;11218:30;11215:117;;;11251:79;;:::i;:::-;11215:117;11356:78;11426:7;11417:6;11406:9;11402:22;11356:78;:::i;:::-;11346:88;;11141:303;10767:684;;;;;:::o;11457:118::-;11544:24;11562:5;11544:24;:::i;:::-;11539:3;11532:37;11457:118;;:::o;11581:157::-;11686:45;11706:24;11724:5;11706:24;:::i;:::-;11686:45;:::i;:::-;11681:3;11674:58;11581:157;;:::o;11744:109::-;11825:21;11840:5;11825:21;:::i;:::-;11820:3;11813:34;11744:109;;:::o;11859:118::-;11946:24;11964:5;11946:24;:::i;:::-;11941:3;11934:37;11859:118;;:::o;11983:360::-;12069:3;12097:38;12129:5;12097:38;:::i;:::-;12151:70;12214:6;12209:3;12151:70;:::i;:::-;12144:77;;12230:52;12275:6;12270:3;12263:4;12256:5;12252:16;12230:52;:::i;:::-;12307:29;12329:6;12307:29;:::i;:::-;12302:3;12298:39;12291:46;;12073:270;11983:360;;;;:::o;12349:364::-;12437:3;12465:39;12498:5;12465:39;:::i;:::-;12520:71;12584:6;12579:3;12520:71;:::i;:::-;12513:78;;12600:52;12645:6;12640:3;12633:4;12626:5;12622:16;12600:52;:::i;:::-;12677:29;12699:6;12677:29;:::i;:::-;12672:3;12668:39;12661:46;;12441:272;12349:364;;;;:::o;12719:377::-;12825:3;12853:39;12886:5;12853:39;:::i;:::-;12908:89;12990:6;12985:3;12908:89;:::i;:::-;12901:96;;13006:52;13051:6;13046:3;13039:4;13032:5;13028:16;13006:52;:::i;:::-;13083:6;13078:3;13074:16;13067:23;;12829:267;12719:377;;;;:::o;13126:845::-;13229:3;13266:5;13260:12;13295:36;13321:9;13295:36;:::i;:::-;13347:89;13429:6;13424:3;13347:89;:::i;:::-;13340:96;;13467:1;13456:9;13452:17;13483:1;13478:137;;;;13629:1;13624:341;;;;13445:520;;13478:137;13562:4;13558:9;13547;13543:25;13538:3;13531:38;13598:6;13593:3;13589:16;13582:23;;13478:137;;13624:341;13691:38;13723:5;13691:38;:::i;:::-;13751:1;13765:154;13779:6;13776:1;13773:13;13765:154;;;13853:7;13847:14;13843:1;13838:3;13834:11;13827:35;13903:1;13894:7;13890:15;13879:26;;13801:4;13798:1;13794:12;13789:17;;13765:154;;;13948:6;13943:3;13939:16;13932:23;;13631:334;;13445:520;;13233:738;;13126:845;;;;:::o;13977:366::-;14119:3;14140:67;14204:2;14199:3;14140:67;:::i;:::-;14133:74;;14216:93;14305:3;14216:93;:::i;:::-;14334:2;14329:3;14325:12;14318:19;;13977:366;;;:::o;14349:::-;14491:3;14512:67;14576:2;14571:3;14512:67;:::i;:::-;14505:74;;14588:93;14677:3;14588:93;:::i;:::-;14706:2;14701:3;14697:12;14690:19;;14349:366;;;:::o;14721:::-;14863:3;14884:67;14948:2;14943:3;14884:67;:::i;:::-;14877:74;;14960:93;15049:3;14960:93;:::i;:::-;15078:2;15073:3;15069:12;15062:19;;14721:366;;;:::o;15093:::-;15235:3;15256:67;15320:2;15315:3;15256:67;:::i;:::-;15249:74;;15332:93;15421:3;15332:93;:::i;:::-;15450:2;15445:3;15441:12;15434:19;;15093:366;;;:::o;15465:::-;15607:3;15628:67;15692:2;15687:3;15628:67;:::i;:::-;15621:74;;15704:93;15793:3;15704:93;:::i;:::-;15822:2;15817:3;15813:12;15806:19;;15465:366;;;:::o;15837:::-;15979:3;16000:67;16064:2;16059:3;16000:67;:::i;:::-;15993:74;;16076:93;16165:3;16076:93;:::i;:::-;16194:2;16189:3;16185:12;16178:19;;15837:366;;;:::o;16209:::-;16351:3;16372:67;16436:2;16431:3;16372:67;:::i;:::-;16365:74;;16448:93;16537:3;16448:93;:::i;:::-;16566:2;16561:3;16557:12;16550:19;;16209:366;;;:::o;16581:::-;16723:3;16744:67;16808:2;16803:3;16744:67;:::i;:::-;16737:74;;16820:93;16909:3;16820:93;:::i;:::-;16938:2;16933:3;16929:12;16922:19;;16581:366;;;:::o;16953:::-;17095:3;17116:67;17180:2;17175:3;17116:67;:::i;:::-;17109:74;;17192:93;17281:3;17192:93;:::i;:::-;17310:2;17305:3;17301:12;17294:19;;16953:366;;;:::o;17325:::-;17467:3;17488:67;17552:2;17547:3;17488:67;:::i;:::-;17481:74;;17564:93;17653:3;17564:93;:::i;:::-;17682:2;17677:3;17673:12;17666:19;;17325:366;;;:::o;17697:::-;17839:3;17860:67;17924:2;17919:3;17860:67;:::i;:::-;17853:74;;17936:93;18025:3;17936:93;:::i;:::-;18054:2;18049:3;18045:12;18038:19;;17697:366;;;:::o;18069:::-;18211:3;18232:67;18296:2;18291:3;18232:67;:::i;:::-;18225:74;;18308:93;18397:3;18308:93;:::i;:::-;18426:2;18421:3;18417:12;18410:19;;18069:366;;;:::o;18441:::-;18583:3;18604:67;18668:2;18663:3;18604:67;:::i;:::-;18597:74;;18680:93;18769:3;18680:93;:::i;:::-;18798:2;18793:3;18789:12;18782:19;;18441:366;;;:::o;18813:::-;18955:3;18976:67;19040:2;19035:3;18976:67;:::i;:::-;18969:74;;19052:93;19141:3;19052:93;:::i;:::-;19170:2;19165:3;19161:12;19154:19;;18813:366;;;:::o;19185:118::-;19272:24;19290:5;19272:24;:::i;:::-;19267:3;19260:37;19185:118;;:::o;19309:256::-;19421:3;19436:75;19507:3;19498:6;19436:75;:::i;:::-;19536:2;19531:3;19527:12;19520:19;;19556:3;19549:10;;19309:256;;;;:::o;19571:589::-;19796:3;19818:95;19909:3;19900:6;19818:95;:::i;:::-;19811:102;;19930:95;20021:3;20012:6;19930:95;:::i;:::-;19923:102;;20042:92;20130:3;20121:6;20042:92;:::i;:::-;20035:99;;20151:3;20144:10;;19571:589;;;;;;:::o;20166:222::-;20259:4;20297:2;20286:9;20282:18;20274:26;;20310:71;20378:1;20367:9;20363:17;20354:6;20310:71;:::i;:::-;20166:222;;;;:::o;20394:640::-;20589:4;20627:3;20616:9;20612:19;20604:27;;20641:71;20709:1;20698:9;20694:17;20685:6;20641:71;:::i;:::-;20722:72;20790:2;20779:9;20775:18;20766:6;20722:72;:::i;:::-;20804;20872:2;20861:9;20857:18;20848:6;20804:72;:::i;:::-;20923:9;20917:4;20913:20;20908:2;20897:9;20893:18;20886:48;20951:76;21022:4;21013:6;20951:76;:::i;:::-;20943:84;;20394:640;;;;;;;:::o;21040:210::-;21127:4;21165:2;21154:9;21150:18;21142:26;;21178:65;21240:1;21229:9;21225:17;21216:6;21178:65;:::i;:::-;21040:210;;;;:::o;21256:222::-;21349:4;21387:2;21376:9;21372:18;21364:26;;21400:71;21468:1;21457:9;21453:17;21444:6;21400:71;:::i;:::-;21256:222;;;;:::o;21484:313::-;21597:4;21635:2;21624:9;21620:18;21612:26;;21684:9;21678:4;21674:20;21670:1;21659:9;21655:17;21648:47;21712:78;21785:4;21776:6;21712:78;:::i;:::-;21704:86;;21484:313;;;;:::o;21803:419::-;21969:4;22007:2;21996:9;21992:18;21984:26;;22056:9;22050:4;22046:20;22042:1;22031:9;22027:17;22020:47;22084:131;22210:4;22084:131;:::i;:::-;22076:139;;21803:419;;;:::o;22228:::-;22394:4;22432:2;22421:9;22417:18;22409:26;;22481:9;22475:4;22471:20;22467:1;22456:9;22452:17;22445:47;22509:131;22635:4;22509:131;:::i;:::-;22501:139;;22228:419;;;:::o;22653:::-;22819:4;22857:2;22846:9;22842:18;22834:26;;22906:9;22900:4;22896:20;22892:1;22881:9;22877:17;22870:47;22934:131;23060:4;22934:131;:::i;:::-;22926:139;;22653:419;;;:::o;23078:::-;23244:4;23282:2;23271:9;23267:18;23259:26;;23331:9;23325:4;23321:20;23317:1;23306:9;23302:17;23295:47;23359:131;23485:4;23359:131;:::i;:::-;23351:139;;23078:419;;;:::o;23503:::-;23669:4;23707:2;23696:9;23692:18;23684:26;;23756:9;23750:4;23746:20;23742:1;23731:9;23727:17;23720:47;23784:131;23910:4;23784:131;:::i;:::-;23776:139;;23503:419;;;:::o;23928:::-;24094:4;24132:2;24121:9;24117:18;24109:26;;24181:9;24175:4;24171:20;24167:1;24156:9;24152:17;24145:47;24209:131;24335:4;24209:131;:::i;:::-;24201:139;;23928:419;;;:::o;24353:::-;24519:4;24557:2;24546:9;24542:18;24534:26;;24606:9;24600:4;24596:20;24592:1;24581:9;24577:17;24570:47;24634:131;24760:4;24634:131;:::i;:::-;24626:139;;24353:419;;;:::o;24778:::-;24944:4;24982:2;24971:9;24967:18;24959:26;;25031:9;25025:4;25021:20;25017:1;25006:9;25002:17;24995:47;25059:131;25185:4;25059:131;:::i;:::-;25051:139;;24778:419;;;:::o;25203:::-;25369:4;25407:2;25396:9;25392:18;25384:26;;25456:9;25450:4;25446:20;25442:1;25431:9;25427:17;25420:47;25484:131;25610:4;25484:131;:::i;:::-;25476:139;;25203:419;;;:::o;25628:::-;25794:4;25832:2;25821:9;25817:18;25809:26;;25881:9;25875:4;25871:20;25867:1;25856:9;25852:17;25845:47;25909:131;26035:4;25909:131;:::i;:::-;25901:139;;25628:419;;;:::o;26053:::-;26219:4;26257:2;26246:9;26242:18;26234:26;;26306:9;26300:4;26296:20;26292:1;26281:9;26277:17;26270:47;26334:131;26460:4;26334:131;:::i;:::-;26326:139;;26053:419;;;:::o;26478:::-;26644:4;26682:2;26671:9;26667:18;26659:26;;26731:9;26725:4;26721:20;26717:1;26706:9;26702:17;26695:47;26759:131;26885:4;26759:131;:::i;:::-;26751:139;;26478:419;;;:::o;26903:::-;27069:4;27107:2;27096:9;27092:18;27084:26;;27156:9;27150:4;27146:20;27142:1;27131:9;27127:17;27120:47;27184:131;27310:4;27184:131;:::i;:::-;27176:139;;26903:419;;;:::o;27328:::-;27494:4;27532:2;27521:9;27517:18;27509:26;;27581:9;27575:4;27571:20;27567:1;27556:9;27552:17;27545:47;27609:131;27735:4;27609:131;:::i;:::-;27601:139;;27328:419;;;:::o;27753:222::-;27846:4;27884:2;27873:9;27869:18;27861:26;;27897:71;27965:1;27954:9;27950:17;27941:6;27897:71;:::i;:::-;27753:222;;;;:::o;27981:129::-;28015:6;28042:20;;:::i;:::-;28032:30;;28071:33;28099:4;28091:6;28071:33;:::i;:::-;27981:129;;;:::o;28116:75::-;28149:6;28182:2;28176:9;28166:19;;28116:75;:::o;28197:311::-;28274:4;28364:18;28356:6;28353:30;28350:56;;;28386:18;;:::i;:::-;28350:56;28436:4;28428:6;28424:17;28416:25;;28496:4;28490;28486:15;28478:23;;28197:311;;;:::o;28514:307::-;28575:4;28665:18;28657:6;28654:30;28651:56;;;28687:18;;:::i;:::-;28651:56;28725:29;28747:6;28725:29;:::i;:::-;28717:37;;28809:4;28803;28799:15;28791:23;;28514:307;;;:::o;28827:308::-;28889:4;28979:18;28971:6;28968:30;28965:56;;;29001:18;;:::i;:::-;28965:56;29039:29;29061:6;29039:29;:::i;:::-;29031:37;;29123:4;29117;29113:15;29105:23;;28827:308;;;:::o;29141:141::-;29190:4;29213:3;29205:11;;29236:3;29233:1;29226:14;29270:4;29267:1;29257:18;29249:26;;29141:141;;;:::o;29288:98::-;29339:6;29373:5;29367:12;29357:22;;29288:98;;;:::o;29392:99::-;29444:6;29478:5;29472:12;29462:22;;29392:99;;;:::o;29497:168::-;29580:11;29614:6;29609:3;29602:19;29654:4;29649:3;29645:14;29630:29;;29497:168;;;;:::o;29671:169::-;29755:11;29789:6;29784:3;29777:19;29829:4;29824:3;29820:14;29805:29;;29671:169;;;;:::o;29846:148::-;29948:11;29985:3;29970:18;;29846:148;;;;:::o;30000:305::-;30040:3;30059:20;30077:1;30059:20;:::i;:::-;30054:25;;30093:20;30111:1;30093:20;:::i;:::-;30088:25;;30247:1;30179:66;30175:74;30172:1;30169:81;30166:107;;;30253:18;;:::i;:::-;30166:107;30297:1;30294;30290:9;30283:16;;30000:305;;;;:::o;30311:185::-;30351:1;30368:20;30386:1;30368:20;:::i;:::-;30363:25;;30402:20;30420:1;30402:20;:::i;:::-;30397:25;;30441:1;30431:35;;30446:18;;:::i;:::-;30431:35;30488:1;30485;30481:9;30476:14;;30311:185;;;;:::o;30502:348::-;30542:7;30565:20;30583:1;30565:20;:::i;:::-;30560:25;;30599:20;30617:1;30599:20;:::i;:::-;30594:25;;30787:1;30719:66;30715:74;30712:1;30709:81;30704:1;30697:9;30690:17;30686:105;30683:131;;;30794:18;;:::i;:::-;30683:131;30842:1;30839;30835:9;30824:20;;30502:348;;;;:::o;30856:191::-;30896:4;30916:20;30934:1;30916:20;:::i;:::-;30911:25;;30950:20;30968:1;30950:20;:::i;:::-;30945:25;;30989:1;30986;30983:8;30980:34;;;30994:18;;:::i;:::-;30980:34;31039:1;31036;31032:9;31024:17;;30856:191;;;;:::o;31053:96::-;31090:7;31119:24;31137:5;31119:24;:::i;:::-;31108:35;;31053:96;;;:::o;31155:90::-;31189:7;31232:5;31225:13;31218:21;31207:32;;31155:90;;;:::o;31251:77::-;31288:7;31317:5;31306:16;;31251:77;;;:::o;31334:149::-;31370:7;31410:66;31403:5;31399:78;31388:89;;31334:149;;;:::o;31489:126::-;31526:7;31566:42;31559:5;31555:54;31544:65;;31489:126;;;:::o;31621:77::-;31658:7;31687:5;31676:16;;31621:77;;;:::o;31704:154::-;31788:6;31783:3;31778;31765:30;31850:1;31841:6;31836:3;31832:16;31825:27;31704:154;;;:::o;31864:307::-;31932:1;31942:113;31956:6;31953:1;31950:13;31942:113;;;32041:1;32036:3;32032:11;32026:18;32022:1;32017:3;32013:11;32006:39;31978:2;31975:1;31971:10;31966:15;;31942:113;;;32073:6;32070:1;32067:13;32064:101;;;32153:1;32144:6;32139:3;32135:16;32128:27;32064:101;31913:258;31864:307;;;:::o;32177:320::-;32221:6;32258:1;32252:4;32248:12;32238:22;;32305:1;32299:4;32295:12;32326:18;32316:81;;32382:4;32374:6;32370:17;32360:27;;32316:81;32444:2;32436:6;32433:14;32413:18;32410:38;32407:84;;;32463:18;;:::i;:::-;32407:84;32228:269;32177:320;;;:::o;32503:281::-;32586:27;32608:4;32586:27;:::i;:::-;32578:6;32574:40;32716:6;32704:10;32701:22;32680:18;32668:10;32665:34;32662:62;32659:88;;;32727:18;;:::i;:::-;32659:88;32767:10;32763:2;32756:22;32546:238;32503:281;;:::o;32790:233::-;32829:3;32852:24;32870:5;32852:24;:::i;:::-;32843:33;;32898:66;32891:5;32888:77;32885:103;;;32968:18;;:::i;:::-;32885:103;33015:1;33008:5;33004:13;32997:20;;32790:233;;;:::o;33029:100::-;33068:7;33097:26;33117:5;33097:26;:::i;:::-;33086:37;;33029:100;;;:::o;33135:94::-;33174:7;33203:20;33217:5;33203:20;:::i;:::-;33192:31;;33135:94;;;:::o;33235:180::-;33283:77;33280:1;33273:88;33380:4;33377:1;33370:15;33404:4;33401:1;33394:15;33421:180;33469:77;33466:1;33459:88;33566:4;33563:1;33556:15;33590:4;33587:1;33580:15;33607:180;33655:77;33652:1;33645:88;33752:4;33749:1;33742:15;33776:4;33773:1;33766:15;33793:180;33841:77;33838:1;33831:88;33938:4;33935:1;33928:15;33962:4;33959:1;33952:15;33979:180;34027:77;34024:1;34017:88;34124:4;34121:1;34114:15;34148:4;34145:1;34138:15;34165:117;34274:1;34271;34264:12;34288:117;34397:1;34394;34387:12;34411:117;34520:1;34517;34510:12;34534:117;34643:1;34640;34633:12;34657:117;34766:1;34763;34756:12;34780:117;34889:1;34886;34879:12;34903:102;34944:6;34995:2;34991:7;34986:2;34979:5;34975:14;34971:28;34961:38;;34903:102;;;:::o;35011:94::-;35044:8;35092:5;35088:2;35084:14;35063:35;;35011:94;;;:::o;35111:170::-;35251:22;35247:1;35239:6;35235:14;35228:46;35111:170;:::o;35287:225::-;35427:34;35423:1;35415:6;35411:14;35404:58;35496:8;35491:2;35483:6;35479:15;35472:33;35287:225;:::o;35518:181::-;35658:33;35654:1;35646:6;35642:14;35635:57;35518:181;:::o;35705:166::-;35845:18;35841:1;35833:6;35829:14;35822:42;35705:166;:::o;35877:173::-;36017:25;36013:1;36005:6;36001:14;35994:49;35877:173;:::o;36056:182::-;36196:34;36192:1;36184:6;36180:14;36173:58;36056:182;:::o;36244:234::-;36384:34;36380:1;36372:6;36368:14;36361:58;36453:17;36448:2;36440:6;36436:15;36429:42;36244:234;:::o;36484:178::-;36624:30;36620:1;36612:6;36608:14;36601:54;36484:178;:::o;36668:221::-;36808:34;36804:1;36796:6;36792:14;36785:58;36877:4;36872:2;36864:6;36860:15;36853:29;36668:221;:::o;36895:175::-;37035:27;37031:1;37023:6;37019:14;37012:51;36895:175;:::o;37076:181::-;37216:33;37212:1;37204:6;37200:14;37193:57;37076:181;:::o;37263:171::-;37403:23;37399:1;37391:6;37387:14;37380:47;37263:171;:::o;37440:181::-;37580:33;37576:1;37568:6;37564:14;37557:57;37440:181;:::o;37627:::-;37767:33;37763:1;37755:6;37751:14;37744:57;37627:181;:::o;37814:122::-;37887:24;37905:5;37887:24;:::i;:::-;37880:5;37877:35;37867:63;;37926:1;37923;37916:12;37867:63;37814:122;:::o;37942:116::-;38012:21;38027:5;38012:21;:::i;:::-;38005:5;38002:32;37992:60;;38048:1;38045;38038:12;37992:60;37942:116;:::o;38064:122::-;38137:24;38155:5;38137:24;:::i;:::-;38130:5;38127:35;38117:63;;38176:1;38173;38166:12;38117:63;38064:122;:::o;38192:120::-;38264:23;38281:5;38264:23;:::i;:::-;38257:5;38254:34;38244:62;;38302:1;38299;38292:12;38244:62;38192:120;:::o;38318:122::-;38391:24;38409:5;38391:24;:::i;:::-;38384:5;38381:35;38371:63;;38430:1;38427;38420:12;38371:63;38318:122;:::o

Swarm Source

ipfs://3e066a4a7c16f14441feb15d204aaefafc5ca7b1b9cd095d826a53bfc3a7bdb1
Loading...
Loading
Loading...
Loading
[ 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.