ETH Price: $3,167.23 (-7.95%)
Gas: 3 Gwei

Token

PePeLabs (PPLBS)
 

Overview

Max Total Supply

288 PPLBS

Holders

129

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
thegvnr.eth
Balance
2 PPLBS
0xB415fEAEa73A5e716622Ac58b41887A00bE4e069
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:
Pepelabs

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-13
*/

// SPDX-License-Identifier: MIT

// File: lib/Constants.sol


pragma solidity ^0.8.13;

address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E;
address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

// File: IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    /**
     * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns
     *         true if supplied registrant address is not registered.
     */
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);

    /**
     * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner.
     */
    function register(address registrant) external;

    /**
     * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes.
     */
    function registerAndSubscribe(address registrant, address subscription) external;

    /**
     * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another
     *         address without subscribing.
     */
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;

    /**
     * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner.
     *         Note that this does not remove any filtered addresses or codeHashes.
     *         Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes.
     */
    function unregister(address addr) external;

    /**
     * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered.
     */
    function updateOperator(address registrant, address operator, bool filtered) external;

    /**
     * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates.
     */
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;

    /**
     * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered.
     */
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;

    /**
     * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates.
     */
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;

    /**
     * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous
     *         subscription if present.
     *         Note that accounts with subscriptions may go on to subscribe to other accounts - in this case,
     *         subscriptions will not be forwarded. Instead the former subscription's existing entries will still be
     *         used.
     */
    function subscribe(address registrant, address registrantToSubscribe) external;

    /**
     * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes.
     */
    function unsubscribe(address registrant, bool copyExistingEntries) external;

    /**
     * @notice Get the subscription address of a given registrant, if any.
     */
    function subscriptionOf(address addr) external returns (address registrant);

    /**
     * @notice Get the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscribers(address registrant) external returns (address[] memory);

    /**
     * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscriberAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr.
     */
    function copyEntriesOf(address registrant, address registrantToCopy) external;

    /**
     * @notice Returns true if operator is filtered by a given address or its subscription.
     */
    function isOperatorFiltered(address registrant, address operator) external returns (bool);

    /**
     * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription.
     */
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);

    /**
     * @notice Returns true if a codeHash is filtered by a given address or its subscription.
     */
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);

    /**
     * @notice Returns a list of filtered operators for a given address or its subscription.
     */
    function filteredOperators(address addr) external returns (address[] memory);

    /**
     * @notice Returns the set of filtered codeHashes for a given address or its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);

    /**
     * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);

    /**
     * @notice Returns true if an address has registered
     */
    function isRegistered(address addr) external returns (bool);

    /**
     * @dev Convenience method to compute the code hash of an arbitrary contract
     */
    function codeHashOf(address addr) external returns (bytes32);
}

// File: OperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 *         Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract OperatorFilterer {
    /// @dev Emitted when an operator is not allowed.
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS);

    /// @dev The constructor that is called when the contract is being deployed.
    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    /**
     * @dev A helper function to check if an operator approval is allowed.
     */
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // under normal circumstances, this function will revert rather than return false, but inheriting contracts
            // may specify their own OperatorFilterRegistry implementations, which may behave differently
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

// File: DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 * @dev    Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract DefaultOperatorFilterer is OperatorFilterer {
    /// @dev The constructor that is called when the contract is being deployed.
    constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {}
}

// 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/Pepelabs.sol



pragma solidity ^0.8.13;








contract Pepelabs is ERC721A, Ownable, ReentrancyGuard, Pausable, DefaultOperatorFilterer{

    // Uint256 mint variables
    uint256 public maxSupply = 6969;
    uint256 public mintPrice = 0.015 ether;
    uint256 public wlMaxMint = 2;
    uint256 public publicMaxMint = 3;
    uint256 public wlMintPrice = 0.012 ether;


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


    // Merkle root
    bytes32 public root;

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

    function teamMint(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 2 per wallet
    function whitelistMint(uint256 _quantity, bytes32[] memory proof) external payable whenNotPaused nonReentrant {
        
       
            require(isValid(proof, keccak256(abi.encodePacked(msg.sender))), "Not a part of whitelist");
            require(wlMintEnabled, "Whitelist mint is currently paused");
            require(totalSupply() + _quantity <= maxSupply, "Error: max supply reached");
            require((totalWlMint[msg.sender] + _quantity) <= wlMaxMint, "Error: Cannot mint more than 2");
            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 3 per wallet limit
    function publicMint(uint256 _quantity) external payable whenNotPaused nonReentrant {

        require(publicMintEnabled, "Public mint is currently paused");
        require(totalSupply() + _quantity <= maxSupply, "Error: max supply reached");
        require((totalPublicMint[msg.sender] + _quantity) <= publicMaxMint, "Error: Cannot mint more than 3");
        require(msg.value >= (_quantity * mintPrice), "Not enough ether sent");

        totalPublicMint[msg.sender] += _quantity;
        _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;
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721A)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    // Set Token Metadata Uri
    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))
        : "";
        
    }

    // Opensea Operator Filter Registry
    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) {
    super.approve(operator, tokenId);
  }

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public payable override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId, data);
    }

    // Owner 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 {
    wlMaxMint = _wlMaxMint;
    }

    function setmaxPublic(uint256 _publicMaxMint) external onlyOwner {
    publicMaxMint = _publicMaxMint;
    }

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

    // Withdrawl function
    function withdraw() external onlyOwner nonReentrant {

        payable(0x5Dcd46924e70485dB55a668B48123f27A189e81e).transfer(address(this).balance * 10 / 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":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":[{"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":[],"name":"publicMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_publicMaxMint","type":"uint256"}],"name":"setmaxPublic","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":[{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","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":"totalPublicMint","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"}]

6080604052611b39600b5566354a6ba7a18000600c556002600d556003600e55662aa1efb94e0000600f556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250601090805190602001906200007792919062000686565b506000601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff021916908315150217905550348015620000bb57600080fd5b5060405162004cd938038062004cd98339818101604052810190620000e191906200090e565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600881526020017f506550654c6162730000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f50504c425300000000000000000000000000000000000000000000000000000081525081600290805190602001906200017c92919062000686565b5080600390805190602001906200019592919062000686565b50620001a66200041260201b60201c565b6000819055505050620001ce620001c26200041b60201b60201c565b6200042360201b60201c565b60016009819055506000600a60006101000a81548160ff02191690831515021790555060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003e6578015620002ac576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b815260040162000272929190620009b9565b600060405180830381600087803b1580156200028d57600080fd5b505af1158015620002a2573d6000803e3d6000fd5b50505050620003e5565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000366576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200032c929190620009b9565b600060405180830381600087803b1580156200034757600080fd5b505af11580156200035c573d6000803e3d6000fd5b50505050620003e4565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620003af9190620009e6565b600060405180830381600087803b158015620003ca57600080fd5b505af1158015620003df573d6000803e3d6000fd5b505050505b5b5b5050620003f982620004e960201b60201c565b6200040a816200053560201b60201c565b505062000b5c565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620004f96200056f60201b60201c565b620005096200060060201b60201c565b80601190805190602001906200052192919062000686565b50620005326200065260201b60201c565b50565b620005456200056f60201b60201c565b620005556200060060201b60201c565b806015819055506200056c6200065260201b60201c565b50565b6200057f6200041b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005a56200065c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620005fe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005f59062000a64565b60405180910390fd5b565b60026009540362000648576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200063f9062000ad6565b60405180910390fd5b6002600981905550565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620006949062000b27565b90600052602060002090601f016020900481019282620006b8576000855562000704565b82601f10620006d357805160ff191683800117855562000704565b8280016001018555821562000704579182015b8281111562000703578251825591602001919060010190620006e6565b5b50905062000713919062000717565b5090565b5b808211156200073257600081600090555060010162000718565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200079f8262000754565b810181811067ffffffffffffffff82111715620007c157620007c062000765565b5b80604052505050565b6000620007d662000736565b9050620007e4828262000794565b919050565b600067ffffffffffffffff82111562000807576200080662000765565b5b620008128262000754565b9050602081019050919050565b60005b838110156200083f57808201518184015260208101905062000822565b838111156200084f576000848401525b50505050565b60006200086c6200086684620007e9565b620007ca565b9050828152602081018484840111156200088b576200088a6200074f565b5b620008988482856200081f565b509392505050565b600082601f830112620008b857620008b76200074a565b5b8151620008ca84826020860162000855565b91505092915050565b6000819050919050565b620008e881620008d3565b8114620008f457600080fd5b50565b6000815190506200090881620008dd565b92915050565b6000806040838503121562000928576200092762000740565b5b600083015167ffffffffffffffff81111562000949576200094862000745565b5b6200095785828601620008a0565b92505060206200096a85828601620008f7565b9150509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620009a18262000974565b9050919050565b620009b38162000994565b82525050565b6000604082019050620009d06000830185620009a8565b620009df6020830184620009a8565b9392505050565b6000602082019050620009fd6000830184620009a8565b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000a4c60208362000a03565b915062000a598262000a14565b602082019050919050565b6000602082019050818103600083015262000a7f8162000a3d565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600062000abe601f8362000a03565b915062000acb8262000a86565b602082019050919050565b6000602082019050818103600083015262000af18162000aaf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b4057607f821691505b60208210810362000b565762000b5562000af8565b5b50919050565b61416d8062000b6c6000396000f3fe6080604052600436106102935760003560e01c80636f8b44b01161015a578063b8a20ed0116100c1578063e4b356831161007a578063e4b356831461092e578063e985e9c514610959578063ebf0c71714610996578063f2dc824c146109c1578063f2e83403146109ea578063f2fde38b14610a2757610293565b8063b8a20ed014610819578063c668286214610856578063c87b56dd14610881578063d2cab056146108be578063d5abeb01146108da578063dab5f3401461090557610293565b80638dd07d0f116101135780638dd07d0f1461074057806391b7f5ed1461076957806395d89b41146107925780639c08feb2146107bd578063a22cb465146107d4578063b88d4fde146107fd57610293565b80636f8b44b01461065857806370a0823114610681578063715018a6146106be5780637aebd396146106d55780638456cb59146106fe5780638da5cb5b1461071557610293565b8063305c7d4a116101fe578063450f6b86116101b7578063450f6b861461055a57806355f804b3146105715780635c975abb1461059a5780636352211e146105c55780636817c76c146106025780636c0360eb1461062d57610293565b8063305c7d4a146104a35780633ccfd60b146104ce5780633f4ba83a146104e55780634047638d146104fc57806341f434341461051357806342842e0e1461053e57610293565b806318160ddd1161025057806318160ddd146103af5780631c16521c146103da57806323b872dd14610417578063258e835b146104335780632c4e9fc61461045c5780632db115441461048757610293565b806301ffc9a71461029857806306fdde03146102d5578063081812fc14610300578063095ea7b31461033d5780630f4161aa1461035957806311f95ac314610384575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190612cfe565b610a50565b6040516102cc9190612d46565b60405180910390f35b3480156102e157600080fd5b506102ea610a62565b6040516102f79190612dfa565b60405180910390f35b34801561030c57600080fd5b5061032760048036038101906103229190612e52565b610af4565b6040516103349190612ec0565b60405180910390f35b61035760048036038101906103529190612f07565b610b73565b005b34801561036557600080fd5b5061036e610b8c565b60405161037b9190612d46565b60405180910390f35b34801561039057600080fd5b50610399610b9f565b6040516103a69190612d46565b60405180910390f35b3480156103bb57600080fd5b506103c4610bb2565b6040516103d19190612f56565b60405180910390f35b3480156103e657600080fd5b5061040160048036038101906103fc9190612f71565b610bc9565b60405161040e9190612f56565b60405180910390f35b610431600480360381019061042c9190612f9e565b610be1565b005b34801561043f57600080fd5b5061045a60048036038101906104559190612e52565b610c30565b005b34801561046857600080fd5b50610471610c42565b60405161047e9190612f56565b60405180910390f35b6104a1600480360381019061049c9190612e52565b610c48565b005b3480156104af57600080fd5b506104b8610e48565b6040516104c59190612f56565b60405180910390f35b3480156104da57600080fd5b506104e3610e4e565b005b3480156104f157600080fd5b506104fa610f29565b005b34801561050857600080fd5b50610511610f4b565b005b34801561051f57600080fd5b50610528610f8f565b6040516105359190613050565b60405180910390f35b61055860048036038101906105539190612f9e565b610fa1565b005b34801561056657600080fd5b5061056f610ff0565b005b34801561057d57600080fd5b50610598600480360381019061059391906131a0565b611040565b005b3480156105a657600080fd5b506105af611072565b6040516105bc9190612d46565b60405180910390f35b3480156105d157600080fd5b506105ec60048036038101906105e79190612e52565b611089565b6040516105f99190612ec0565b60405180910390f35b34801561060e57600080fd5b5061061761109b565b6040516106249190612f56565b60405180910390f35b34801561063957600080fd5b506106426110a1565b60405161064f9190612dfa565b60405180910390f35b34801561066457600080fd5b5061067f600480360381019061067a9190612e52565b61112f565b005b34801561068d57600080fd5b506106a860048036038101906106a39190612f71565b611151565b6040516106b59190612f56565b60405180910390f35b3480156106ca57600080fd5b506106d3611209565b005b3480156106e157600080fd5b506106fc60048036038101906106f79190612e52565b61121d565b005b34801561070a57600080fd5b5061071361122f565b005b34801561072157600080fd5b5061072a611251565b6040516107379190612ec0565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190612e52565b61127b565b005b34801561077557600080fd5b50610790600480360381019061078b9190612e52565b61129d565b005b34801561079e57600080fd5b506107a76112bf565b6040516107b49190612dfa565b60405180910390f35b3480156107c957600080fd5b506107d2611351565b005b3480156107e057600080fd5b506107fb60048036038101906107f69190613215565b611395565b005b610817600480360381019061081291906132f6565b6113ae565b005b34801561082557600080fd5b50610840600480360381019061083b9190613477565b6113ff565b60405161084d9190612d46565b60405180910390f35b34801561086257600080fd5b5061086b611416565b6040516108789190612dfa565b60405180910390f35b34801561088d57600080fd5b506108a860048036038101906108a39190612e52565b6114a4565b6040516108b59190612dfa565b60405180910390f35b6108d860048036038101906108d391906134d3565b61154e565b005b3480156108e657600080fd5b506108ef6117be565b6040516108fc9190612f56565b60405180910390f35b34801561091157600080fd5b5061092c6004803603810190610927919061352f565b6117c4565b005b34801561093a57600080fd5b506109436117e6565b6040516109509190612f56565b60405180910390f35b34801561096557600080fd5b50610980600480360381019061097b919061355c565b6117ec565b60405161098d9190612d46565b60405180910390f35b3480156109a257600080fd5b506109ab611880565b6040516109b891906135ab565b60405180910390f35b3480156109cd57600080fd5b506109e860048036038101906109e39190613621565b611886565b005b3480156109f657600080fd5b50610a116004803603810190610a0c9190612f71565b61194d565b604051610a1e9190612f56565b60405180910390f35b348015610a3357600080fd5b50610a4e6004803603810190610a499190612f71565b611965565b005b6000610a5b826119e8565b9050919050565b606060028054610a71906136b0565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9d906136b0565b8015610aea5780601f10610abf57610100808354040283529160200191610aea565b820191906000526020600020905b815481529060010190602001808311610acd57829003601f168201915b5050505050905090565b6000610aff82611a7a565b610b35576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610b7d81611ad9565b610b878383611bd6565b505050565b601260009054906101000a900460ff1681565b601260019054906101000a900460ff1681565b6000610bbc611d1a565b6001546000540303905090565b60146020528060005260406000206000915090505481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c1f57610c1e33611ad9565b5b610c2a848484611d23565b50505050565b610c38612045565b80600d8190555050565b600f5481565b610c506120c3565b610c5861210d565b601260009054906101000a900460ff16610ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e9061372d565b60405180910390fd5b600b5481610cb3610bb2565b610cbd919061377c565b1115610cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf59061381e565b60405180910390fd5b600e5481601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d4c919061377c565b1115610d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d849061388a565b60405180910390fd5b600c5481610d9b91906138aa565b341015610ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd490613950565b60405180910390fd5b80601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e2c919061377c565b92505081905550610e3d338261215c565b610e4561217a565b50565b600e5481565b610e56612045565b610e5e61210d565b735dcd46924e70485db55a668b48123f27a189e81e73ffffffffffffffffffffffffffffffffffffffff166108fc6064600a47610e9b91906138aa565b610ea5919061399f565b9081150290604051600060405180830381858888f19350505050158015610ed0573d6000803e3d6000fd5b50610ed9611251565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f1e573d6000803e3d6000fd5b50610f2761217a565b565b610f31612045565b610f3961210d565b610f41612184565b610f4961217a565b565b610f53612045565b610f5b61210d565b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550610f8d61217a565b565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610fdf57610fde33611ad9565b5b610fea8484846121e7565b50505050565b610ff8612045565b61100061210d565b6001601260016101000a81548160ff0219169083151502179055506001601260006101000a81548160ff02191690831515021790555061103e61217a565b565b611048612045565b61105061210d565b8060119080519060200190611066929190612bef565b5061106f61217a565b50565b6000600a60009054906101000a900460ff16905090565b600061109482612207565b9050919050565b600c5481565b601180546110ae906136b0565b80601f01602080910402602001604051908101604052809291908181526020018280546110da906136b0565b80156111275780601f106110fc57610100808354040283529160200191611127565b820191906000526020600020905b81548152906001019060200180831161110a57829003601f168201915b505050505081565b611137612045565b61113f61210d565b80600b8190555061114e61217a565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111b8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611211612045565b61121b60006122d3565b565b611225612045565b80600e8190555050565b611237612045565b61123f61210d565b611247612399565b61124f61217a565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611283612045565b61128b61210d565b80600f8190555061129a61217a565b50565b6112a5612045565b6112ad61210d565b80600c819055506112bc61217a565b50565b6060600380546112ce906136b0565b80601f01602080910402602001604051908101604052809291908181526020018280546112fa906136b0565b80156113475780601f1061131c57610100808354040283529160200191611347565b820191906000526020600020905b81548152906001019060200180831161132a57829003601f168201915b5050505050905090565b611359612045565b61136161210d565b601260019054906101000a900460ff1615601260016101000a81548160ff02191690831515021790555061139361217a565b565b8161139f81611ad9565b6113a983836123fc565b505050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146113ec576113eb33611ad9565b5b6113f885858585612507565b5050505050565b600061140e836015548461257a565b905092915050565b60108054611423906136b0565b80601f016020809104026020016040519081016040528092919081815260200182805461144f906136b0565b801561149c5780601f106114715761010080835404028352916020019161149c565b820191906000526020600020905b81548152906001019060200180831161147f57829003601f168201915b505050505081565b60606114af82611a7a565b6114ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e590613a42565b60405180910390fd5b60006114f8612591565b905060008151116115185760405180602001604052806000815250611546565b8061152284612623565b601060405160200161153693929190613b32565b6040516020818303038152906040525b915050919050565b6115566120c3565b61155e61210d565b61158e81336040516020016115739190613bab565b604051602081830303815290604052805190602001206113ff565b6115cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c490613c12565b60405180910390fd5b601260019054906101000a900460ff1661161c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161390613ca4565b60405180910390fd5b600b5482611628610bb2565b611632919061377c565b1115611673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166a9061381e565b60405180910390fd5b600d5482601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116c1919061377c565b1115611702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f990613d10565b60405180910390fd5b600f548261171091906138aa565b341015611752576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174990613950565b60405180910390fd5b81601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117a1919061377c565b925050819055506117b2338361215c565b6117ba61217a565b5050565b600b5481565b6117cc612045565b6117d461210d565b806015819055506117e361217a565b50565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60155481565b61188e612045565b61189661210d565b600b54816118a2610bb2565b6118ac919061377c565b11156118ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e49061381e565b60405180910390fd5b60005b8383905081101561193f5761192c84848381811061191157611910613d30565b5b90506020020160208101906119269190612f71565b8361215c565b808061193790613d5f565b9150506118f0565b5061194861217a565b505050565b60136020528060005260406000206000915090505481565b61196d612045565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036119dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d390613e19565b60405180910390fd5b6119e5816122d3565b50565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a4357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a735750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600081611a85611d1a565b11158015611a94575060005482105b8015611ad2575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611bd3576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611b50929190613e39565b602060405180830381865afa158015611b6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b919190613e77565b611bd257806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611bc99190612ec0565b60405180910390fd5b5b50565b6000611be182611089565b90508073ffffffffffffffffffffffffffffffffffffffff16611c02612673565b73ffffffffffffffffffffffffffffffffffffffff1614611c6557611c2e81611c29612673565b6117ec565b611c64576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611d2e82612207565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611d95576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611da18461267b565b91509150611db78187611db2612673565b6126a2565b611e0357611dcc86611dc7612673565b6117ec565b611e02576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611e69576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e7686868660016126e6565b8015611e8157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611f4f85611f2b8888876126ec565b7c020000000000000000000000000000000000000000000000000000000017612714565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611fd55760006001850190506000600460008381526020019081526020016000205403611fd3576000548114611fd2578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461203d868686600161273f565b505050505050565b61204d612745565b73ffffffffffffffffffffffffffffffffffffffff1661206b611251565b73ffffffffffffffffffffffffffffffffffffffff16146120c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b890613ef0565b60405180910390fd5b565b6120cb611072565b1561210b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210290613f5c565b60405180910390fd5b565b600260095403612152576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214990613fc8565b60405180910390fd5b6002600981905550565b61217682826040518060200160405280600081525061274d565b5050565b6001600981905550565b61218c6127ea565b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6121d0612745565b6040516121dd9190612ec0565b60405180910390a1565b612202838383604051806020016040528060008152506113ae565b505050565b60008082905080612216611d1a565b1161229c5760005481101561229b5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612299575b6000810361228f576004600083600190039350838152602001908152602001600020549050612265565b80925050506122ce565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123a16120c3565b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586123e5612745565b6040516123f29190612ec0565b60405180910390a1565b8060076000612409612673565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166124b6612673565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124fb9190612d46565b60405180910390a35050565b612512848484610be1565b60008373ffffffffffffffffffffffffffffffffffffffff163b146125745761253d84848484612833565b612573576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6000826125878584612983565b1490509392505050565b6060601180546125a0906136b0565b80601f01602080910402602001604051908101604052809291908181526020018280546125cc906136b0565b80156126195780601f106125ee57610100808354040283529160200191612619565b820191906000526020600020905b8154815290600101906020018083116125fc57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561265e57600184039350600a81066030018453600a810490508061263c575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86127038686846129d9565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b61275783836129e2565b60008373ffffffffffffffffffffffffffffffffffffffff163b146127e557600080549050600083820390505b6127976000868380600101945086612833565b6127cd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106127845781600054146127e257600080fd5b50505b505050565b6127f2611072565b612831576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282890614034565b60405180910390fd5b565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612859612673565b8786866040518563ffffffff1660e01b815260040161287b94939291906140a9565b6020604051808303816000875af19250505080156128b757506040513d601f19601f820116820180604052508101906128b4919061410a565b60015b612930573d80600081146128e7576040519150601f19603f3d011682016040523d82523d6000602084013e6128ec565b606091505b506000815103612928576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60008082905060005b84518110156129ce576129b9828683815181106129ac576129ab613d30565b5b6020026020010151612b9d565b915080806129c690613d5f565b91505061298c565b508091505092915050565b60009392505050565b60008054905060008203612a22576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a2f60008483856126e6565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612aa683612a9760008660006126ec565b612aa085612bc8565b17612714565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612b4757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612b0c565b5060008203612b82576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612b98600084838561273f565b505050565b6000818310612bb557612bb08284612bd8565b612bc0565b612bbf8383612bd8565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b828054612bfb906136b0565b90600052602060002090601f016020900481019282612c1d5760008555612c64565b82601f10612c3657805160ff1916838001178555612c64565b82800160010185558215612c64579182015b82811115612c63578251825591602001919060010190612c48565b5b509050612c719190612c75565b5090565b5b80821115612c8e576000816000905550600101612c76565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612cdb81612ca6565b8114612ce657600080fd5b50565b600081359050612cf881612cd2565b92915050565b600060208284031215612d1457612d13612c9c565b5b6000612d2284828501612ce9565b91505092915050565b60008115159050919050565b612d4081612d2b565b82525050565b6000602082019050612d5b6000830184612d37565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d9b578082015181840152602081019050612d80565b83811115612daa576000848401525b50505050565b6000601f19601f8301169050919050565b6000612dcc82612d61565b612dd68185612d6c565b9350612de6818560208601612d7d565b612def81612db0565b840191505092915050565b60006020820190508181036000830152612e148184612dc1565b905092915050565b6000819050919050565b612e2f81612e1c565b8114612e3a57600080fd5b50565b600081359050612e4c81612e26565b92915050565b600060208284031215612e6857612e67612c9c565b5b6000612e7684828501612e3d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612eaa82612e7f565b9050919050565b612eba81612e9f565b82525050565b6000602082019050612ed56000830184612eb1565b92915050565b612ee481612e9f565b8114612eef57600080fd5b50565b600081359050612f0181612edb565b92915050565b60008060408385031215612f1e57612f1d612c9c565b5b6000612f2c85828601612ef2565b9250506020612f3d85828601612e3d565b9150509250929050565b612f5081612e1c565b82525050565b6000602082019050612f6b6000830184612f47565b92915050565b600060208284031215612f8757612f86612c9c565b5b6000612f9584828501612ef2565b91505092915050565b600080600060608486031215612fb757612fb6612c9c565b5b6000612fc586828701612ef2565b9350506020612fd686828701612ef2565b9250506040612fe786828701612e3d565b9150509250925092565b6000819050919050565b600061301661301161300c84612e7f565b612ff1565b612e7f565b9050919050565b600061302882612ffb565b9050919050565b600061303a8261301d565b9050919050565b61304a8161302f565b82525050565b60006020820190506130656000830184613041565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6130ad82612db0565b810181811067ffffffffffffffff821117156130cc576130cb613075565b5b80604052505050565b60006130df612c92565b90506130eb82826130a4565b919050565b600067ffffffffffffffff82111561310b5761310a613075565b5b61311482612db0565b9050602081019050919050565b82818337600083830152505050565b600061314361313e846130f0565b6130d5565b90508281526020810184848401111561315f5761315e613070565b5b61316a848285613121565b509392505050565b600082601f8301126131875761318661306b565b5b8135613197848260208601613130565b91505092915050565b6000602082840312156131b6576131b5612c9c565b5b600082013567ffffffffffffffff8111156131d4576131d3612ca1565b5b6131e084828501613172565b91505092915050565b6131f281612d2b565b81146131fd57600080fd5b50565b60008135905061320f816131e9565b92915050565b6000806040838503121561322c5761322b612c9c565b5b600061323a85828601612ef2565b925050602061324b85828601613200565b9150509250929050565b600067ffffffffffffffff8211156132705761326f613075565b5b61327982612db0565b9050602081019050919050565b600061329961329484613255565b6130d5565b9050828152602081018484840111156132b5576132b4613070565b5b6132c0848285613121565b509392505050565b600082601f8301126132dd576132dc61306b565b5b81356132ed848260208601613286565b91505092915050565b600080600080608085870312156133105761330f612c9c565b5b600061331e87828801612ef2565b945050602061332f87828801612ef2565b935050604061334087828801612e3d565b925050606085013567ffffffffffffffff81111561336157613360612ca1565b5b61336d878288016132c8565b91505092959194509250565b600067ffffffffffffffff82111561339457613393613075565b5b602082029050602081019050919050565b600080fd5b6000819050919050565b6133bd816133aa565b81146133c857600080fd5b50565b6000813590506133da816133b4565b92915050565b60006133f36133ee84613379565b6130d5565b90508083825260208201905060208402830185811115613416576134156133a5565b5b835b8181101561343f578061342b88826133cb565b845260208401935050602081019050613418565b5050509392505050565b600082601f83011261345e5761345d61306b565b5b813561346e8482602086016133e0565b91505092915050565b6000806040838503121561348e5761348d612c9c565b5b600083013567ffffffffffffffff8111156134ac576134ab612ca1565b5b6134b885828601613449565b92505060206134c9858286016133cb565b9150509250929050565b600080604083850312156134ea576134e9612c9c565b5b60006134f885828601612e3d565b925050602083013567ffffffffffffffff81111561351957613518612ca1565b5b61352585828601613449565b9150509250929050565b60006020828403121561354557613544612c9c565b5b6000613553848285016133cb565b91505092915050565b6000806040838503121561357357613572612c9c565b5b600061358185828601612ef2565b925050602061359285828601612ef2565b9150509250929050565b6135a5816133aa565b82525050565b60006020820190506135c0600083018461359c565b92915050565b600080fd5b60008083601f8401126135e1576135e061306b565b5b8235905067ffffffffffffffff8111156135fe576135fd6135c6565b5b60208301915083602082028301111561361a576136196133a5565b5b9250929050565b60008060006040848603121561363a57613639612c9c565b5b600084013567ffffffffffffffff81111561365857613657612ca1565b5b613664868287016135cb565b9350935050602061367786828701612e3d565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806136c857607f821691505b6020821081036136db576136da613681565b5b50919050565b7f5075626c6963206d696e742069732063757272656e746c792070617573656400600082015250565b6000613717601f83612d6c565b9150613722826136e1565b602082019050919050565b600060208201905081810360008301526137468161370a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061378782612e1c565b915061379283612e1c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137c7576137c661374d565b5b828201905092915050565b7f4572726f723a206d617820737570706c79207265616368656400000000000000600082015250565b6000613808601983612d6c565b9150613813826137d2565b602082019050919050565b60006020820190508181036000830152613837816137fb565b9050919050565b7f4572726f723a2043616e6e6f74206d696e74206d6f7265207468616e20330000600082015250565b6000613874601e83612d6c565b915061387f8261383e565b602082019050919050565b600060208201905081810360008301526138a381613867565b9050919050565b60006138b582612e1c565b91506138c083612e1c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138f9576138f861374d565b5b828202905092915050565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b600061393a601583612d6c565b915061394582613904565b602082019050919050565b600060208201905081810360008301526139698161392d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006139aa82612e1c565b91506139b583612e1c565b9250826139c5576139c4613970565b5b828204905092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613a2c602f83612d6c565b9150613a37826139d0565b604082019050919050565b60006020820190508181036000830152613a5b81613a1f565b9050919050565b600081905092915050565b6000613a7882612d61565b613a828185613a62565b9350613a92818560208601612d7d565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613ac0816136b0565b613aca8186613a62565b94506001821660008114613ae55760018114613af657613b29565b60ff19831686528186019350613b29565b613aff85613a9e565b60005b83811015613b2157815481890152600182019150602081019050613b02565b838801955050505b50505092915050565b6000613b3e8286613a6d565b9150613b4a8285613a6d565b9150613b568284613ab3565b9150819050949350505050565b60008160601b9050919050565b6000613b7b82613b63565b9050919050565b6000613b8d82613b70565b9050919050565b613ba5613ba082612e9f565b613b82565b82525050565b6000613bb78284613b94565b60148201915081905092915050565b7f4e6f7420612070617274206f662077686974656c697374000000000000000000600082015250565b6000613bfc601783612d6c565b9150613c0782613bc6565b602082019050919050565b60006020820190508181036000830152613c2b81613bef565b9050919050565b7f57686974656c697374206d696e742069732063757272656e746c79207061757360008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c8e602283612d6c565b9150613c9982613c32565b604082019050919050565b60006020820190508181036000830152613cbd81613c81565b9050919050565b7f4572726f723a2043616e6e6f74206d696e74206d6f7265207468616e20320000600082015250565b6000613cfa601e83612d6c565b9150613d0582613cc4565b602082019050919050565b60006020820190508181036000830152613d2981613ced565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613d6a82612e1c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613d9c57613d9b61374d565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e03602683612d6c565b9150613e0e82613da7565b604082019050919050565b60006020820190508181036000830152613e3281613df6565b9050919050565b6000604082019050613e4e6000830185612eb1565b613e5b6020830184612eb1565b9392505050565b600081519050613e71816131e9565b92915050565b600060208284031215613e8d57613e8c612c9c565b5b6000613e9b84828501613e62565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613eda602083612d6c565b9150613ee582613ea4565b602082019050919050565b60006020820190508181036000830152613f0981613ecd565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000613f46601083612d6c565b9150613f5182613f10565b602082019050919050565b60006020820190508181036000830152613f7581613f39565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613fb2601f83612d6c565b9150613fbd82613f7c565b602082019050919050565b60006020820190508181036000830152613fe181613fa5565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061401e601483612d6c565b915061402982613fe8565b602082019050919050565b6000602082019050818103600083015261404d81614011565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061407b82614054565b614085818561405f565b9350614095818560208601612d7d565b61409e81612db0565b840191505092915050565b60006080820190506140be6000830187612eb1565b6140cb6020830186612eb1565b6140d86040830185612f47565b81810360608301526140ea8184614070565b905095945050505050565b60008151905061410481612cd2565b92915050565b6000602082840312156141205761411f612c9c565b5b600061412e848285016140f5565b9150509291505056fea2646970667358221220f89c8d8754203df5456a244262a14aff0441ddc464121dcfb481e8003d775a7f64736f6c634300080d00330000000000000000000000000000000000000000000000000000000000000040aa94285c4dadcda22419aabe2e49f18fd84cf76ea8ed226c160aae429e83690e0000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696275766d666e7664686373776e637567683470616235326633796c6a6d6a7737697070727579796d6663346163357778686e7a692f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102935760003560e01c80636f8b44b01161015a578063b8a20ed0116100c1578063e4b356831161007a578063e4b356831461092e578063e985e9c514610959578063ebf0c71714610996578063f2dc824c146109c1578063f2e83403146109ea578063f2fde38b14610a2757610293565b8063b8a20ed014610819578063c668286214610856578063c87b56dd14610881578063d2cab056146108be578063d5abeb01146108da578063dab5f3401461090557610293565b80638dd07d0f116101135780638dd07d0f1461074057806391b7f5ed1461076957806395d89b41146107925780639c08feb2146107bd578063a22cb465146107d4578063b88d4fde146107fd57610293565b80636f8b44b01461065857806370a0823114610681578063715018a6146106be5780637aebd396146106d55780638456cb59146106fe5780638da5cb5b1461071557610293565b8063305c7d4a116101fe578063450f6b86116101b7578063450f6b861461055a57806355f804b3146105715780635c975abb1461059a5780636352211e146105c55780636817c76c146106025780636c0360eb1461062d57610293565b8063305c7d4a146104a35780633ccfd60b146104ce5780633f4ba83a146104e55780634047638d146104fc57806341f434341461051357806342842e0e1461053e57610293565b806318160ddd1161025057806318160ddd146103af5780631c16521c146103da57806323b872dd14610417578063258e835b146104335780632c4e9fc61461045c5780632db115441461048757610293565b806301ffc9a71461029857806306fdde03146102d5578063081812fc14610300578063095ea7b31461033d5780630f4161aa1461035957806311f95ac314610384575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190612cfe565b610a50565b6040516102cc9190612d46565b60405180910390f35b3480156102e157600080fd5b506102ea610a62565b6040516102f79190612dfa565b60405180910390f35b34801561030c57600080fd5b5061032760048036038101906103229190612e52565b610af4565b6040516103349190612ec0565b60405180910390f35b61035760048036038101906103529190612f07565b610b73565b005b34801561036557600080fd5b5061036e610b8c565b60405161037b9190612d46565b60405180910390f35b34801561039057600080fd5b50610399610b9f565b6040516103a69190612d46565b60405180910390f35b3480156103bb57600080fd5b506103c4610bb2565b6040516103d19190612f56565b60405180910390f35b3480156103e657600080fd5b5061040160048036038101906103fc9190612f71565b610bc9565b60405161040e9190612f56565b60405180910390f35b610431600480360381019061042c9190612f9e565b610be1565b005b34801561043f57600080fd5b5061045a60048036038101906104559190612e52565b610c30565b005b34801561046857600080fd5b50610471610c42565b60405161047e9190612f56565b60405180910390f35b6104a1600480360381019061049c9190612e52565b610c48565b005b3480156104af57600080fd5b506104b8610e48565b6040516104c59190612f56565b60405180910390f35b3480156104da57600080fd5b506104e3610e4e565b005b3480156104f157600080fd5b506104fa610f29565b005b34801561050857600080fd5b50610511610f4b565b005b34801561051f57600080fd5b50610528610f8f565b6040516105359190613050565b60405180910390f35b61055860048036038101906105539190612f9e565b610fa1565b005b34801561056657600080fd5b5061056f610ff0565b005b34801561057d57600080fd5b50610598600480360381019061059391906131a0565b611040565b005b3480156105a657600080fd5b506105af611072565b6040516105bc9190612d46565b60405180910390f35b3480156105d157600080fd5b506105ec60048036038101906105e79190612e52565b611089565b6040516105f99190612ec0565b60405180910390f35b34801561060e57600080fd5b5061061761109b565b6040516106249190612f56565b60405180910390f35b34801561063957600080fd5b506106426110a1565b60405161064f9190612dfa565b60405180910390f35b34801561066457600080fd5b5061067f600480360381019061067a9190612e52565b61112f565b005b34801561068d57600080fd5b506106a860048036038101906106a39190612f71565b611151565b6040516106b59190612f56565b60405180910390f35b3480156106ca57600080fd5b506106d3611209565b005b3480156106e157600080fd5b506106fc60048036038101906106f79190612e52565b61121d565b005b34801561070a57600080fd5b5061071361122f565b005b34801561072157600080fd5b5061072a611251565b6040516107379190612ec0565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190612e52565b61127b565b005b34801561077557600080fd5b50610790600480360381019061078b9190612e52565b61129d565b005b34801561079e57600080fd5b506107a76112bf565b6040516107b49190612dfa565b60405180910390f35b3480156107c957600080fd5b506107d2611351565b005b3480156107e057600080fd5b506107fb60048036038101906107f69190613215565b611395565b005b610817600480360381019061081291906132f6565b6113ae565b005b34801561082557600080fd5b50610840600480360381019061083b9190613477565b6113ff565b60405161084d9190612d46565b60405180910390f35b34801561086257600080fd5b5061086b611416565b6040516108789190612dfa565b60405180910390f35b34801561088d57600080fd5b506108a860048036038101906108a39190612e52565b6114a4565b6040516108b59190612dfa565b60405180910390f35b6108d860048036038101906108d391906134d3565b61154e565b005b3480156108e657600080fd5b506108ef6117be565b6040516108fc9190612f56565b60405180910390f35b34801561091157600080fd5b5061092c6004803603810190610927919061352f565b6117c4565b005b34801561093a57600080fd5b506109436117e6565b6040516109509190612f56565b60405180910390f35b34801561096557600080fd5b50610980600480360381019061097b919061355c565b6117ec565b60405161098d9190612d46565b60405180910390f35b3480156109a257600080fd5b506109ab611880565b6040516109b891906135ab565b60405180910390f35b3480156109cd57600080fd5b506109e860048036038101906109e39190613621565b611886565b005b3480156109f657600080fd5b50610a116004803603810190610a0c9190612f71565b61194d565b604051610a1e9190612f56565b60405180910390f35b348015610a3357600080fd5b50610a4e6004803603810190610a499190612f71565b611965565b005b6000610a5b826119e8565b9050919050565b606060028054610a71906136b0565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9d906136b0565b8015610aea5780601f10610abf57610100808354040283529160200191610aea565b820191906000526020600020905b815481529060010190602001808311610acd57829003601f168201915b5050505050905090565b6000610aff82611a7a565b610b35576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610b7d81611ad9565b610b878383611bd6565b505050565b601260009054906101000a900460ff1681565b601260019054906101000a900460ff1681565b6000610bbc611d1a565b6001546000540303905090565b60146020528060005260406000206000915090505481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c1f57610c1e33611ad9565b5b610c2a848484611d23565b50505050565b610c38612045565b80600d8190555050565b600f5481565b610c506120c3565b610c5861210d565b601260009054906101000a900460ff16610ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e9061372d565b60405180910390fd5b600b5481610cb3610bb2565b610cbd919061377c565b1115610cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf59061381e565b60405180910390fd5b600e5481601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d4c919061377c565b1115610d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d849061388a565b60405180910390fd5b600c5481610d9b91906138aa565b341015610ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd490613950565b60405180910390fd5b80601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e2c919061377c565b92505081905550610e3d338261215c565b610e4561217a565b50565b600e5481565b610e56612045565b610e5e61210d565b735dcd46924e70485db55a668b48123f27a189e81e73ffffffffffffffffffffffffffffffffffffffff166108fc6064600a47610e9b91906138aa565b610ea5919061399f565b9081150290604051600060405180830381858888f19350505050158015610ed0573d6000803e3d6000fd5b50610ed9611251565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f1e573d6000803e3d6000fd5b50610f2761217a565b565b610f31612045565b610f3961210d565b610f41612184565b610f4961217a565b565b610f53612045565b610f5b61210d565b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550610f8d61217a565b565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610fdf57610fde33611ad9565b5b610fea8484846121e7565b50505050565b610ff8612045565b61100061210d565b6001601260016101000a81548160ff0219169083151502179055506001601260006101000a81548160ff02191690831515021790555061103e61217a565b565b611048612045565b61105061210d565b8060119080519060200190611066929190612bef565b5061106f61217a565b50565b6000600a60009054906101000a900460ff16905090565b600061109482612207565b9050919050565b600c5481565b601180546110ae906136b0565b80601f01602080910402602001604051908101604052809291908181526020018280546110da906136b0565b80156111275780601f106110fc57610100808354040283529160200191611127565b820191906000526020600020905b81548152906001019060200180831161110a57829003601f168201915b505050505081565b611137612045565b61113f61210d565b80600b8190555061114e61217a565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111b8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611211612045565b61121b60006122d3565b565b611225612045565b80600e8190555050565b611237612045565b61123f61210d565b611247612399565b61124f61217a565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611283612045565b61128b61210d565b80600f8190555061129a61217a565b50565b6112a5612045565b6112ad61210d565b80600c819055506112bc61217a565b50565b6060600380546112ce906136b0565b80601f01602080910402602001604051908101604052809291908181526020018280546112fa906136b0565b80156113475780601f1061131c57610100808354040283529160200191611347565b820191906000526020600020905b81548152906001019060200180831161132a57829003601f168201915b5050505050905090565b611359612045565b61136161210d565b601260019054906101000a900460ff1615601260016101000a81548160ff02191690831515021790555061139361217a565b565b8161139f81611ad9565b6113a983836123fc565b505050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146113ec576113eb33611ad9565b5b6113f885858585612507565b5050505050565b600061140e836015548461257a565b905092915050565b60108054611423906136b0565b80601f016020809104026020016040519081016040528092919081815260200182805461144f906136b0565b801561149c5780601f106114715761010080835404028352916020019161149c565b820191906000526020600020905b81548152906001019060200180831161147f57829003601f168201915b505050505081565b60606114af82611a7a565b6114ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e590613a42565b60405180910390fd5b60006114f8612591565b905060008151116115185760405180602001604052806000815250611546565b8061152284612623565b601060405160200161153693929190613b32565b6040516020818303038152906040525b915050919050565b6115566120c3565b61155e61210d565b61158e81336040516020016115739190613bab565b604051602081830303815290604052805190602001206113ff565b6115cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c490613c12565b60405180910390fd5b601260019054906101000a900460ff1661161c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161390613ca4565b60405180910390fd5b600b5482611628610bb2565b611632919061377c565b1115611673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166a9061381e565b60405180910390fd5b600d5482601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116c1919061377c565b1115611702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f990613d10565b60405180910390fd5b600f548261171091906138aa565b341015611752576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174990613950565b60405180910390fd5b81601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117a1919061377c565b925050819055506117b2338361215c565b6117ba61217a565b5050565b600b5481565b6117cc612045565b6117d461210d565b806015819055506117e361217a565b50565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60155481565b61188e612045565b61189661210d565b600b54816118a2610bb2565b6118ac919061377c565b11156118ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e49061381e565b60405180910390fd5b60005b8383905081101561193f5761192c84848381811061191157611910613d30565b5b90506020020160208101906119269190612f71565b8361215c565b808061193790613d5f565b9150506118f0565b5061194861217a565b505050565b60136020528060005260406000206000915090505481565b61196d612045565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036119dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d390613e19565b60405180910390fd5b6119e5816122d3565b50565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a4357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a735750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600081611a85611d1a565b11158015611a94575060005482105b8015611ad2575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611bd3576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611b50929190613e39565b602060405180830381865afa158015611b6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b919190613e77565b611bd257806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611bc99190612ec0565b60405180910390fd5b5b50565b6000611be182611089565b90508073ffffffffffffffffffffffffffffffffffffffff16611c02612673565b73ffffffffffffffffffffffffffffffffffffffff1614611c6557611c2e81611c29612673565b6117ec565b611c64576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611d2e82612207565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611d95576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611da18461267b565b91509150611db78187611db2612673565b6126a2565b611e0357611dcc86611dc7612673565b6117ec565b611e02576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611e69576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e7686868660016126e6565b8015611e8157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611f4f85611f2b8888876126ec565b7c020000000000000000000000000000000000000000000000000000000017612714565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611fd55760006001850190506000600460008381526020019081526020016000205403611fd3576000548114611fd2578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461203d868686600161273f565b505050505050565b61204d612745565b73ffffffffffffffffffffffffffffffffffffffff1661206b611251565b73ffffffffffffffffffffffffffffffffffffffff16146120c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b890613ef0565b60405180910390fd5b565b6120cb611072565b1561210b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210290613f5c565b60405180910390fd5b565b600260095403612152576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214990613fc8565b60405180910390fd5b6002600981905550565b61217682826040518060200160405280600081525061274d565b5050565b6001600981905550565b61218c6127ea565b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6121d0612745565b6040516121dd9190612ec0565b60405180910390a1565b612202838383604051806020016040528060008152506113ae565b505050565b60008082905080612216611d1a565b1161229c5760005481101561229b5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612299575b6000810361228f576004600083600190039350838152602001908152602001600020549050612265565b80925050506122ce565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123a16120c3565b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586123e5612745565b6040516123f29190612ec0565b60405180910390a1565b8060076000612409612673565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166124b6612673565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124fb9190612d46565b60405180910390a35050565b612512848484610be1565b60008373ffffffffffffffffffffffffffffffffffffffff163b146125745761253d84848484612833565b612573576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6000826125878584612983565b1490509392505050565b6060601180546125a0906136b0565b80601f01602080910402602001604051908101604052809291908181526020018280546125cc906136b0565b80156126195780601f106125ee57610100808354040283529160200191612619565b820191906000526020600020905b8154815290600101906020018083116125fc57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561265e57600184039350600a81066030018453600a810490508061263c575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86127038686846129d9565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b61275783836129e2565b60008373ffffffffffffffffffffffffffffffffffffffff163b146127e557600080549050600083820390505b6127976000868380600101945086612833565b6127cd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106127845781600054146127e257600080fd5b50505b505050565b6127f2611072565b612831576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282890614034565b60405180910390fd5b565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612859612673565b8786866040518563ffffffff1660e01b815260040161287b94939291906140a9565b6020604051808303816000875af19250505080156128b757506040513d601f19601f820116820180604052508101906128b4919061410a565b60015b612930573d80600081146128e7576040519150601f19603f3d011682016040523d82523d6000602084013e6128ec565b606091505b506000815103612928576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60008082905060005b84518110156129ce576129b9828683815181106129ac576129ab613d30565b5b6020026020010151612b9d565b915080806129c690613d5f565b91505061298c565b508091505092915050565b60009392505050565b60008054905060008203612a22576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a2f60008483856126e6565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612aa683612a9760008660006126ec565b612aa085612bc8565b17612714565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612b4757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612b0c565b5060008203612b82576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612b98600084838561273f565b505050565b6000818310612bb557612bb08284612bd8565b612bc0565b612bbf8383612bd8565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b828054612bfb906136b0565b90600052602060002090601f016020900481019282612c1d5760008555612c64565b82601f10612c3657805160ff1916838001178555612c64565b82800160010185558215612c64579182015b82811115612c63578251825591602001919060010190612c48565b5b509050612c719190612c75565b5090565b5b80821115612c8e576000816000905550600101612c76565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612cdb81612ca6565b8114612ce657600080fd5b50565b600081359050612cf881612cd2565b92915050565b600060208284031215612d1457612d13612c9c565b5b6000612d2284828501612ce9565b91505092915050565b60008115159050919050565b612d4081612d2b565b82525050565b6000602082019050612d5b6000830184612d37565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d9b578082015181840152602081019050612d80565b83811115612daa576000848401525b50505050565b6000601f19601f8301169050919050565b6000612dcc82612d61565b612dd68185612d6c565b9350612de6818560208601612d7d565b612def81612db0565b840191505092915050565b60006020820190508181036000830152612e148184612dc1565b905092915050565b6000819050919050565b612e2f81612e1c565b8114612e3a57600080fd5b50565b600081359050612e4c81612e26565b92915050565b600060208284031215612e6857612e67612c9c565b5b6000612e7684828501612e3d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612eaa82612e7f565b9050919050565b612eba81612e9f565b82525050565b6000602082019050612ed56000830184612eb1565b92915050565b612ee481612e9f565b8114612eef57600080fd5b50565b600081359050612f0181612edb565b92915050565b60008060408385031215612f1e57612f1d612c9c565b5b6000612f2c85828601612ef2565b9250506020612f3d85828601612e3d565b9150509250929050565b612f5081612e1c565b82525050565b6000602082019050612f6b6000830184612f47565b92915050565b600060208284031215612f8757612f86612c9c565b5b6000612f9584828501612ef2565b91505092915050565b600080600060608486031215612fb757612fb6612c9c565b5b6000612fc586828701612ef2565b9350506020612fd686828701612ef2565b9250506040612fe786828701612e3d565b9150509250925092565b6000819050919050565b600061301661301161300c84612e7f565b612ff1565b612e7f565b9050919050565b600061302882612ffb565b9050919050565b600061303a8261301d565b9050919050565b61304a8161302f565b82525050565b60006020820190506130656000830184613041565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6130ad82612db0565b810181811067ffffffffffffffff821117156130cc576130cb613075565b5b80604052505050565b60006130df612c92565b90506130eb82826130a4565b919050565b600067ffffffffffffffff82111561310b5761310a613075565b5b61311482612db0565b9050602081019050919050565b82818337600083830152505050565b600061314361313e846130f0565b6130d5565b90508281526020810184848401111561315f5761315e613070565b5b61316a848285613121565b509392505050565b600082601f8301126131875761318661306b565b5b8135613197848260208601613130565b91505092915050565b6000602082840312156131b6576131b5612c9c565b5b600082013567ffffffffffffffff8111156131d4576131d3612ca1565b5b6131e084828501613172565b91505092915050565b6131f281612d2b565b81146131fd57600080fd5b50565b60008135905061320f816131e9565b92915050565b6000806040838503121561322c5761322b612c9c565b5b600061323a85828601612ef2565b925050602061324b85828601613200565b9150509250929050565b600067ffffffffffffffff8211156132705761326f613075565b5b61327982612db0565b9050602081019050919050565b600061329961329484613255565b6130d5565b9050828152602081018484840111156132b5576132b4613070565b5b6132c0848285613121565b509392505050565b600082601f8301126132dd576132dc61306b565b5b81356132ed848260208601613286565b91505092915050565b600080600080608085870312156133105761330f612c9c565b5b600061331e87828801612ef2565b945050602061332f87828801612ef2565b935050604061334087828801612e3d565b925050606085013567ffffffffffffffff81111561336157613360612ca1565b5b61336d878288016132c8565b91505092959194509250565b600067ffffffffffffffff82111561339457613393613075565b5b602082029050602081019050919050565b600080fd5b6000819050919050565b6133bd816133aa565b81146133c857600080fd5b50565b6000813590506133da816133b4565b92915050565b60006133f36133ee84613379565b6130d5565b90508083825260208201905060208402830185811115613416576134156133a5565b5b835b8181101561343f578061342b88826133cb565b845260208401935050602081019050613418565b5050509392505050565b600082601f83011261345e5761345d61306b565b5b813561346e8482602086016133e0565b91505092915050565b6000806040838503121561348e5761348d612c9c565b5b600083013567ffffffffffffffff8111156134ac576134ab612ca1565b5b6134b885828601613449565b92505060206134c9858286016133cb565b9150509250929050565b600080604083850312156134ea576134e9612c9c565b5b60006134f885828601612e3d565b925050602083013567ffffffffffffffff81111561351957613518612ca1565b5b61352585828601613449565b9150509250929050565b60006020828403121561354557613544612c9c565b5b6000613553848285016133cb565b91505092915050565b6000806040838503121561357357613572612c9c565b5b600061358185828601612ef2565b925050602061359285828601612ef2565b9150509250929050565b6135a5816133aa565b82525050565b60006020820190506135c0600083018461359c565b92915050565b600080fd5b60008083601f8401126135e1576135e061306b565b5b8235905067ffffffffffffffff8111156135fe576135fd6135c6565b5b60208301915083602082028301111561361a576136196133a5565b5b9250929050565b60008060006040848603121561363a57613639612c9c565b5b600084013567ffffffffffffffff81111561365857613657612ca1565b5b613664868287016135cb565b9350935050602061367786828701612e3d565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806136c857607f821691505b6020821081036136db576136da613681565b5b50919050565b7f5075626c6963206d696e742069732063757272656e746c792070617573656400600082015250565b6000613717601f83612d6c565b9150613722826136e1565b602082019050919050565b600060208201905081810360008301526137468161370a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061378782612e1c565b915061379283612e1c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137c7576137c661374d565b5b828201905092915050565b7f4572726f723a206d617820737570706c79207265616368656400000000000000600082015250565b6000613808601983612d6c565b9150613813826137d2565b602082019050919050565b60006020820190508181036000830152613837816137fb565b9050919050565b7f4572726f723a2043616e6e6f74206d696e74206d6f7265207468616e20330000600082015250565b6000613874601e83612d6c565b915061387f8261383e565b602082019050919050565b600060208201905081810360008301526138a381613867565b9050919050565b60006138b582612e1c565b91506138c083612e1c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138f9576138f861374d565b5b828202905092915050565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b600061393a601583612d6c565b915061394582613904565b602082019050919050565b600060208201905081810360008301526139698161392d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006139aa82612e1c565b91506139b583612e1c565b9250826139c5576139c4613970565b5b828204905092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613a2c602f83612d6c565b9150613a37826139d0565b604082019050919050565b60006020820190508181036000830152613a5b81613a1f565b9050919050565b600081905092915050565b6000613a7882612d61565b613a828185613a62565b9350613a92818560208601612d7d565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613ac0816136b0565b613aca8186613a62565b94506001821660008114613ae55760018114613af657613b29565b60ff19831686528186019350613b29565b613aff85613a9e565b60005b83811015613b2157815481890152600182019150602081019050613b02565b838801955050505b50505092915050565b6000613b3e8286613a6d565b9150613b4a8285613a6d565b9150613b568284613ab3565b9150819050949350505050565b60008160601b9050919050565b6000613b7b82613b63565b9050919050565b6000613b8d82613b70565b9050919050565b613ba5613ba082612e9f565b613b82565b82525050565b6000613bb78284613b94565b60148201915081905092915050565b7f4e6f7420612070617274206f662077686974656c697374000000000000000000600082015250565b6000613bfc601783612d6c565b9150613c0782613bc6565b602082019050919050565b60006020820190508181036000830152613c2b81613bef565b9050919050565b7f57686974656c697374206d696e742069732063757272656e746c79207061757360008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c8e602283612d6c565b9150613c9982613c32565b604082019050919050565b60006020820190508181036000830152613cbd81613c81565b9050919050565b7f4572726f723a2043616e6e6f74206d696e74206d6f7265207468616e20320000600082015250565b6000613cfa601e83612d6c565b9150613d0582613cc4565b602082019050919050565b60006020820190508181036000830152613d2981613ced565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613d6a82612e1c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613d9c57613d9b61374d565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e03602683612d6c565b9150613e0e82613da7565b604082019050919050565b60006020820190508181036000830152613e3281613df6565b9050919050565b6000604082019050613e4e6000830185612eb1565b613e5b6020830184612eb1565b9392505050565b600081519050613e71816131e9565b92915050565b600060208284031215613e8d57613e8c612c9c565b5b6000613e9b84828501613e62565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613eda602083612d6c565b9150613ee582613ea4565b602082019050919050565b60006020820190508181036000830152613f0981613ecd565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000613f46601083612d6c565b9150613f5182613f10565b602082019050919050565b60006020820190508181036000830152613f7581613f39565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613fb2601f83612d6c565b9150613fbd82613f7c565b602082019050919050565b60006020820190508181036000830152613fe181613fa5565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061401e601483612d6c565b915061402982613fe8565b602082019050919050565b6000602082019050818103600083015261404d81614011565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061407b82614054565b614085818561405f565b9350614095818560208601612d7d565b61409e81612db0565b840191505092915050565b60006080820190506140be6000830187612eb1565b6140cb6020830186612eb1565b6140d86040830185612f47565b81810360608301526140ea8184614070565b905095945050505050565b60008151905061410481612cd2565b92915050565b6000602082840312156141205761411f612c9c565b5b600061412e848285016140f5565b9150509291505056fea2646970667358221220f89c8d8754203df5456a244262a14aff0441ddc464121dcfb481e8003d775a7f64736f6c634300080d0033

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

0000000000000000000000000000000000000000000000000000000000000040aa94285c4dadcda22419aabe2e49f18fd84cf76ea8ed226c160aae429e83690e0000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696275766d666e7664686373776e637567683470616235326633796c6a6d6a7737697070727579796d6663346163357778686e7a692f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://bafybeibuvmfnvdhcswncugh4pab52f3yljmjw7ippruyymfc4ac5wxhnzi/
Arg [1] : _root (bytes32): 0xaa94285c4dadcda22419aabe2e49f18fd84cf76ea8ed226c160aae429e83690e

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : aa94285c4dadcda22419aabe2e49f18fd84cf76ea8ed226c160aae429e83690e
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [3] : 697066733a2f2f626166796265696275766d666e7664686373776e6375676834
Arg [4] : 70616235326633796c6a6d6a7737697070727579796d6663346163357778686e
Arg [5] : 7a692f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

81278:6671:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84568:195;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49068:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55559:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85462:159;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81761:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81805:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44819:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81962:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85629:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86954:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81564:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83668:541;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81525:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87714:228;;;;;;;;;;;;;:::i;:::-;;87260:77;;;;;;;;;;;;;:::i;:::-;;86342:116;;;;;;;;;;;;;:::i;:::-;;7683:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85842:213;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86578:132;;;;;;;;;;;;;:::i;:::-;;87345:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28780:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50461:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81445:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81691:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87564:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46003:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26290:103;;;;;;;;;;;;;:::i;:::-;;87056:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87178:74;;;;;;;;;;;;;:::i;:::-;;25642:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86832:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86718:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49244:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86466;;;;;;;;;;;;;:::i;:::-;;85278:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86063:247;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83472:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81647:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84802:427;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82645:716;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81407:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87463:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81490:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56508:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82043:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82270:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81909:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26548:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84568:195;84690:4;84719:36;84743:11;84719:23;:36::i;:::-;84712:43;;84568:195;;;:::o;49068:100::-;49122:13;49155:5;49148:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49068:100;:::o;55559:218::-;55635:7;55660:16;55668:7;55660;:16::i;:::-;55655:64;;55685:34;;;;;;;;;;;;;;55655:64;55739:15;:24;55755:7;55739:24;;;;;;;;;;;:30;;;;;;;;;;;;55732:37;;55559:218;;;:::o;85462:159::-;85566:8;9465:30;9486:8;9465:20;:30::i;:::-;85583:32:::1;85597:8;85607:7;85583:13;:32::i;:::-;85462:159:::0;;;:::o;81761:37::-;;;;;;;;;;;;;:::o;81805:33::-;;;;;;;;;;;;;:::o;44819:323::-;44880:7;45108:15;:13;:15::i;:::-;45093:12;;45077:13;;:28;:46;45070:53;;44819:323;:::o;81962:50::-;;;;;;;;;;;;;;;;;:::o;85629:205::-;85772:4;9199:10;9191:18;;:4;:18;;;9187:83;;9226:32;9247:10;9226:20;:32::i;:::-;9187:83;85789:37:::1;85808:4;85814:2;85818:7;85789:18;:37::i;:::-;85629:205:::0;;;;:::o;86954:94::-;25528:13;:11;:13::i;:::-;87030:10:::1;87018:9;:22;;;;86954:94:::0;:::o;81564:40::-;;;;:::o;83668:541::-;28385:19;:17;:19::i;:::-;22913:21:::1;:19;:21::i;:::-;83772:17:::2;;;;;;;;;;;83764:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;83873:9;;83860;83844:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;83836:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;83976:13;;83962:9;83932:15;:27;83948:10;83932:27;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;83931:58;;83923:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;84069:9;;84057;:21;;;;:::i;:::-;84043:9;:36;;84035:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;84149:9;84118:15;:27;84134:10;84118:27;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;84169:32;84179:10;84191:9;84169;:32::i;:::-;22957:20:::1;:18;:20::i;:::-;83668:541:::0;:::o;81525:32::-;;;;:::o;87714:228::-;25528:13;:11;:13::i;:::-;22913:21:::1;:19;:21::i;:::-;87787:42:::2;87779:60;;:94;87869:3;87864:2;87840:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;87779:94;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;87894:7;:5;:7::i;:::-;87886:25;;:48;87912:21;87886:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;22957:20:::1;:18;:20::i;:::-;87714:228::o:0;87260:77::-;25528:13;:11;:13::i;:::-;22913:21:::1;:19;:21::i;:::-;87319:10:::2;:8;:10::i;:::-;22957:20:::1;:18;:20::i;:::-;87260:77::o:0;86342:116::-;25528:13;:11;:13::i;:::-;22913:21:::1;:19;:21::i;:::-;86433:17:::2;;;;;;;;;;;86432:18;86412:17;;:38;;;;;;;;;;;;;;;;;;22957:20:::1;:18;:20::i;:::-;86342:116::o:0;7683:143::-;157:42;7683:143;:::o;85842:213::-;85989:4;9199:10;9191:18;;:4;:18;;;9187:83;;9226:32;9247:10;9226:20;:32::i;:::-;9187:83;86006:41:::1;86029:4;86035:2;86039:7;86006:22;:41::i;:::-;85842:213:::0;;;;:::o;86578:132::-;25528:13;:11;:13::i;:::-;22913:21:::1;:19;:21::i;:::-;86663:4:::2;86647:13;;:20;;;;;;;;;;;;;;;;;;86698:4;86678:17;;:24;;;;;;;;;;;;;;;;;;22957:20:::1;:18;:20::i;:::-;86578:132::o:0;87345:108::-;25528:13;:11;:13::i;:::-;22913:21:::1;:19;:21::i;:::-;87438:7:::2;87428;:17;;;;;;;;;;;;:::i;:::-;;22957:20:::1;:18;:20::i;:::-;87345:108:::0;:::o;28780:86::-;28827:4;28851:7;;;;;;;;;;;28844:14;;28780:86;:::o;50461:152::-;50533:7;50576:27;50595:7;50576:18;:27::i;:::-;50553:52;;50461:152;;;:::o;81445:38::-;;;;:::o;81691:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;87564:115::-;25528:13;:11;:13::i;:::-;22913:21:::1;:19;:21::i;:::-;87661:10:::2;87649:9;:22;;;;22957:20:::1;:18;:20::i;:::-;87564:115:::0;:::o;46003:233::-;46075:7;46116:1;46099:19;;:5;:19;;;46095:60;;46127:28;;;;;;;;;;;;;;46095:60;40162:13;46173:18;:25;46192:5;46173:25;;;;;;;;;;;;;;;;:55;46166:62;;46003:233;;;:::o;26290:103::-;25528:13;:11;:13::i;:::-;26355:30:::1;26382:1;26355:18;:30::i;:::-;26290:103::o:0;87056:110::-;25528:13;:11;:13::i;:::-;87144:14:::1;87128:13;:30;;;;87056:110:::0;:::o;87178:74::-;25528:13;:11;:13::i;:::-;22913:21:::1;:19;:21::i;:::-;87236:8:::2;:6;:8::i;:::-;22957:20:::1;:18;:20::i;:::-;87178:74::o:0;25642:87::-;25688:7;25715:6;;;;;;;;;;;25708:13;;25642:87;:::o;86832:114::-;25528:13;:11;:13::i;:::-;22913:21:::1;:19;:21::i;:::-;86926:12:::2;86912:11;:26;;;;22957:20:::1;:18;:20::i;:::-;86832:114:::0;:::o;86718:106::-;25528:13;:11;:13::i;:::-;22913:21:::1;:19;:21::i;:::-;86806:10:::2;86794:9;:22;;;;22957:20:::1;:18;:20::i;:::-;86718:106:::0;:::o;49244:104::-;49300:13;49333:7;49326:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49244:104;:::o;86466:::-;25528:13;:11;:13::i;:::-;22913:21:::1;:19;:21::i;:::-;86549:13:::2;;;;;;;;;;;86548:14;86532:13;;:30;;;;;;;;;;;;;;;;;;22957:20:::1;:18;:20::i;:::-;86466:104::o:0;85278:176::-;85382:8;9465:30;9486:8;9465:20;:30::i;:::-;85403:43:::1;85427:8;85437;85403:23;:43::i;:::-;85278:176:::0;;;:::o;86063:247::-;86238:4;9199:10;9191:18;;:4;:18;;;9187:83;;9226:32;9247:10;9226:20;:32::i;:::-;9187:83;86255:47:::1;86278:4;86284:2;86288:7;86297:4;86255:22;:47::i;:::-;86063:247:::0;;;;;:::o;83472:144::-;83547:4;83571:37;83590:5;83597:4;;83603;83571:18;:37::i;:::-;83564:44;;83472:144;;;;:::o;81647:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;84802:427::-;84900:13;84935:16;84943:7;84935;:16::i;:::-;84927:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;85019:28;85050:10;:8;:10::i;:::-;85019:41;;85109:1;85084:14;85078:28;:32;:133;;;;;;;;;;;;;;;;;85146:14;85162:18;85172:7;85162:9;:18::i;:::-;85182:13;85129:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;85078:133;85071:140;;;84802:427;;;:::o;82645:716::-;28385:19;:17;:19::i;:::-;22913:21:::1;:19;:21::i;:::-;82797:55:::2;82805:5;82839:10;82822:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;82812:39;;;;;;82797:7;:55::i;:::-;82789:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;82903:13;;;;;;;;;;;82895:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;83007:9;;82994;82978:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;82970:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;83110:9;;83096;83070:11;:23;83082:10;83070:23;;;;;;;;;;;;;;;;:35;;;;:::i;:::-;83069:50;;83061:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;83203:11;;83191:9;:23;;;;:::i;:::-;83177:9;:38;;83169:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;83285:9;83258:11;:23;83270:10;83258:23;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;83309:32;83319:10;83331:9;83309;:32::i;:::-;22957:20:::1;:18;:20::i;:::-;82645:716:::0;;:::o;81407:31::-;;;;:::o;87463:93::-;25528:13;:11;:13::i;:::-;22913:21:::1;:19;:21::i;:::-;87543:5:::2;87536:4;:12;;;;22957:20:::1;:18;:20::i;:::-;87463:93:::0;:::o;81490:28::-;;;;:::o;56508:164::-;56605:4;56629:18;:25;56648:5;56629:25;;;;;;;;;;;;;;;:35;56655:8;56629:35;;;;;;;;;;;;;;;;;;;;;;;;;56622:42;;56508:164;;;;:::o;82043:19::-;;;;:::o;82270:304::-;25528:13;:11;:13::i;:::-;22913:21:::1;:19;:21::i;:::-;82414:9:::2;;82403:7;82387:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:36;;82379:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;82471:6;82466:101;82487:8;;:15;;82483:1;:19;82466:101;;;82524:31;82534:8;;82543:1;82534:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;82547:7;82524:9;:31::i;:::-;82504:3;;;;;:::i;:::-;;;;82466:101;;;;22957:20:::1;:18;:20::i;:::-;82270:304:::0;;;:::o;81909:46::-;;;;;;;;;;;;;;;;;:::o;26548:201::-;25528:13;:11;:13::i;:::-;26657:1:::1;26637:22;;:8;:22;;::::0;26629:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;26713:28;26732:8;26713:18;:28::i;:::-;26548:201:::0;:::o;48166:639::-;48251:4;48590:10;48575:25;;:11;:25;;;;:102;;;;48667:10;48652:25;;:11;:25;;;;48575:102;:179;;;;48744:10;48729:25;;:11;:25;;;;48575:179;48555:199;;48166:639;;;:::o;56930:282::-;56995:4;57051:7;57032:15;:13;:15::i;:::-;:26;;:66;;;;;57085:13;;57075:7;:23;57032:66;:153;;;;;57184:1;40938:8;57136:17;:26;57154:7;57136:26;;;;;;;;;;;;:44;:49;57032:153;57012:173;;56930:282;;;:::o;9608:647::-;9847:1;157:42;9799:45;;;:49;9795:453;;;157:42;10098;;;10149:4;10156:8;10098:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10093:144;;10212:8;10193:28;;;;;;;;;;;:::i;:::-;;;;;;;;10093:144;9795:453;9608:647;:::o;54992:408::-;55081:13;55097:16;55105:7;55097;:16::i;:::-;55081:32;;55153:5;55130:28;;:19;:17;:19::i;:::-;:28;;;55126:175;;55178:44;55195:5;55202:19;:17;:19::i;:::-;55178:16;:44::i;:::-;55173:128;;55250:35;;;;;;;;;;;;;;55173:128;55126:175;55346:2;55313:15;:24;55329:7;55313:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;55384:7;55380:2;55364:28;;55373:5;55364:28;;;;;;;;;;;;55070:330;54992:408;;:::o;84459:101::-;84524:7;84551:1;84544:8;;84459:101;:::o;59198:2825::-;59340:27;59370;59389:7;59370:18;:27::i;:::-;59340:57;;59455:4;59414:45;;59430:19;59414:45;;;59410:86;;59468:28;;;;;;;;;;;;;;59410:86;59510:27;59539:23;59566:35;59593:7;59566:26;:35::i;:::-;59509:92;;;;59701:68;59726:15;59743:4;59749:19;:17;:19::i;:::-;59701:24;:68::i;:::-;59696:180;;59789:43;59806:4;59812:19;:17;:19::i;:::-;59789:16;:43::i;:::-;59784:92;;59841:35;;;;;;;;;;;;;;59784:92;59696:180;59907:1;59893:16;;:2;:16;;;59889:52;;59918:23;;;;;;;;;;;;;;59889:52;59954:43;59976:4;59982:2;59986:7;59995:1;59954:21;:43::i;:::-;60090:15;60087:160;;;60230:1;60209:19;60202:30;60087:160;60627:18;:24;60646:4;60627:24;;;;;;;;;;;;;;;;60625:26;;;;;;;;;;;;60696:18;:22;60715:2;60696:22;;;;;;;;;;;;;;;;60694:24;;;;;;;;;;;61018:146;61055:2;61104:45;61119:4;61125:2;61129:19;61104:14;:45::i;:::-;41218:8;61076:73;61018:18;:146::i;:::-;60989:17;:26;61007:7;60989:26;;;;;;;;;;;:175;;;;61335:1;41218:8;61284:19;:47;:52;61280:627;;61357:19;61389:1;61379:7;:11;61357:33;;61546:1;61512:17;:30;61530:11;61512:30;;;;;;;;;;;;:35;61508:384;;61650:13;;61635:11;:28;61631:242;;61830:19;61797:17;:30;61815:11;61797:30;;;;;;;;;;;:52;;;;61631:242;61508:384;61338:569;61280:627;61954:7;61950:2;61935:27;;61944:4;61935:27;;;;;;;;;;;;61973:42;61994:4;62000:2;62004:7;62013:1;61973:20;:42::i;:::-;59329:2694;;;59198:2825;;;:::o;25807:132::-;25882:12;:10;:12::i;:::-;25871:23;;:7;:5;:7::i;:::-;:23;;;25863:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25807:132::o;28939:108::-;29010:8;:6;:8::i;:::-;29009:9;29001:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;28939:108::o;22993:293::-;22395:1;23127:7;;:19;23119:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;22395:1;23260:7;:18;;;;22993:293::o;73070:112::-;73147:27;73157:2;73161:8;73147:27;;;;;;;;;;;;:9;:27::i;:::-;73070:112;;:::o;23294:213::-;22351:1;23477:7;:22;;;;23294:213::o;29635:120::-;28644:16;:14;:16::i;:::-;29704:5:::1;29694:7;;:15;;;;;;;;;;;;;;;;;;29725:22;29734:12;:10;:12::i;:::-;29725:22;;;;;;:::i;:::-;;;;;;;;29635:120::o:0;62119:193::-;62265:39;62282:4;62288:2;62292:7;62265:39;;;;;;;;;;;;:16;:39::i;:::-;62119:193;;;:::o;51616:1275::-;51683:7;51703:12;51718:7;51703:22;;51786:4;51767:15;:13;:15::i;:::-;:23;51763:1061;;51820:13;;51813:4;:20;51809:1015;;;51858:14;51875:17;:23;51893:4;51875:23;;;;;;;;;;;;51858:40;;51992:1;40938:8;51964:6;:24;:29;51960:845;;52629:113;52646:1;52636:6;:11;52629:113;;52689:17;:25;52707:6;;;;;;;52689:25;;;;;;;;;;;;52680:34;;52629:113;;;52775:6;52768:13;;;;;;51960:845;51835:989;51809:1015;51763:1061;52852:31;;;;;;;;;;;;;;51616:1275;;;;:::o;26909:191::-;26983:16;27002:6;;;;;;;;;;;26983:25;;27028:8;27019:6;;:17;;;;;;;;;;;;;;;;;;27083:8;27052:40;;27073:8;27052:40;;;;;;;;;;;;26972:128;26909:191;:::o;29376:118::-;28385:19;:17;:19::i;:::-;29446:4:::1;29436:7;;:14;;;;;;;;;;;;;;;;;;29466:20;29473:12;:10;:12::i;:::-;29466:20;;;;;;:::i;:::-;;;;;;;;29376:118::o:0;56117:234::-;56264:8;56212:18;:39;56231:19;:17;:19::i;:::-;56212:39;;;;;;;;;;;;;;;:49;56252:8;56212:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;56324:8;56288:55;;56303:19;:17;:19::i;:::-;56288:55;;;56334:8;56288:55;;;;;;:::i;:::-;;;;;;;;56117:234;;:::o;62910:407::-;63085:31;63098:4;63104:2;63108:7;63085:12;:31::i;:::-;63149:1;63131:2;:14;;;:19;63127:183;;63170:56;63201:4;63207:2;63211:7;63220:5;63170:30;:56::i;:::-;63165:145;;63254:40;;;;;;;;;;;;;;63165:145;63127:183;62910:407;;;;:::o;12229:190::-;12354:4;12407;12378:25;12391:5;12398:4;12378:12;:25::i;:::-;:33;12371:40;;12229:190;;;;;:::o;84276:108::-;84336:13;84369:7;84362:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84276:108;:::o;79445:1745::-;79510:17;79944:4;79937;79931:11;79927:22;80036:1;80030:4;80023:15;80111:4;80108:1;80104:12;80097:19;;80193:1;80188:3;80181:14;80297:3;80536:5;80518:428;80544:1;80518:428;;;80584:1;80579:3;80575:11;80568:18;;80755:2;80749:4;80745:13;80741:2;80737:22;80732:3;80724:36;80849:2;80843:4;80839:13;80831:21;;80916:4;80518:428;80906:25;80518:428;80522:21;80985:3;80980;80976:13;81100:4;81095:3;81091:14;81084:21;;81165:6;81160:3;81153:19;79549:1634;;;79445:1745;;;:::o;79238:105::-;79298:7;79325:10;79318:17;;79238:105;:::o;58093:485::-;58195:27;58224:23;58265:38;58306:15;:24;58322:7;58306:24;;;;;;;;;;;58265:65;;58483:18;58460:41;;58540:19;58534:26;58515:45;;58445:126;58093:485;;;:::o;57321:659::-;57470:11;57635:16;57628:5;57624:28;57615:37;;57795:16;57784:9;57780:32;57767:45;;57945:15;57934:9;57931:30;57923:5;57912:9;57909:20;57906:56;57896:66;;57321:659;;;;;:::o;63979:159::-;;;;;:::o;78547:311::-;78682:7;78702:16;41342:3;78728:19;:41;;78702:68;;41342:3;78796:31;78807:4;78813:2;78817:9;78796:10;:31::i;:::-;78788:40;;:62;;78781:69;;;78547:311;;;;;:::o;53439:450::-;53519:14;53687:16;53680:5;53676:28;53667:37;;53864:5;53850:11;53825:23;53821:41;53818:52;53811:5;53808:63;53798:73;;53439:450;;;;:::o;64803:158::-;;;;;:::o;24193:98::-;24246:7;24273:10;24266:17;;24193:98;:::o;72297:689::-;72428:19;72434:2;72438:8;72428:5;:19::i;:::-;72507:1;72489:2;:14;;;:19;72485:483;;72529:11;72543:13;;72529:27;;72575:13;72597:8;72591:3;:14;72575:30;;72624:233;72655:62;72694:1;72698:2;72702:7;;;;;;72711:5;72655:30;:62::i;:::-;72650:167;;72753:40;;;;;;;;;;;;;;72650:167;72852:3;72844:5;:11;72624:233;;72939:3;72922:13;;:20;72918:34;;72944:8;;;72918:34;72510:458;;72485:483;72297:689;;;:::o;29124:108::-;29191:8;:6;:8::i;:::-;29183:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;29124:108::o;65401:716::-;65564:4;65610:2;65585:45;;;65631:19;:17;:19::i;:::-;65652:4;65658:7;65667:5;65585:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;65581:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65885:1;65868:6;:13;:18;65864:235;;65914:40;;;;;;;;;;;;;;65864:235;66057:6;66051:13;66042:6;66038:2;66034:15;66027:38;65581:529;65754:54;;;65744:64;;;:6;:64;;;;65737:71;;;65401:716;;;;;;:::o;13096:296::-;13179:7;13199:20;13222:4;13199:27;;13242:9;13237:118;13261:5;:12;13257:1;:16;13237:118;;;13310:33;13320:12;13334:5;13340:1;13334:8;;;;;;;;:::i;:::-;;;;;;;;13310:9;:33::i;:::-;13295:48;;13275:3;;;;;:::i;:::-;;;;13237:118;;;;13372:12;13365:19;;;13096:296;;;;:::o;78248:147::-;78385:6;78248:147;;;;;:::o;66579:2966::-;66652:20;66675:13;;66652:36;;66715:1;66703:8;:13;66699:44;;66725:18;;;;;;;;;;;;;;66699:44;66756:61;66786:1;66790:2;66794:12;66808:8;66756:21;:61::i;:::-;67300:1;40300:2;67270:1;:26;;67269:32;67257:8;:45;67231:18;:22;67250:2;67231:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;67579:139;67616:2;67670:33;67693:1;67697:2;67701:1;67670:14;:33::i;:::-;67637:30;67658:8;67637:20;:30::i;:::-;:66;67579:18;:139::i;:::-;67545:17;:31;67563:12;67545:31;;;;;;;;;;;:173;;;;67735:16;67766:11;67795:8;67780:12;:23;67766:37;;68316:16;68312:2;68308:25;68296:37;;68688:12;68648:8;68607:1;68545:25;68486:1;68425;68398:335;69059:1;69045:12;69041:20;68999:346;69100:3;69091:7;69088:16;68999:346;;69318:7;69308:8;69305:1;69278:25;69275:1;69272;69267:59;69153:1;69144:7;69140:15;69129:26;;68999:346;;;69003:77;69390:1;69378:8;:13;69374:45;;69400:19;;;;;;;;;;;;;;69374:45;69452:3;69436:13;:19;;;;67005:2462;;69477:60;69506:1;69510:2;69514:12;69528:8;69477:20;:60::i;:::-;66641:2904;66579:2966;;:::o;20136:149::-;20199:7;20230:1;20226;:5;:51;;20257:20;20272:1;20275;20257:14;:20::i;:::-;20226:51;;;20234:20;20249:1;20252;20234:14;:20::i;:::-;20226:51;20219:58;;20136:149;;;;:::o;53991:324::-;54061:14;54294:1;54284:8;54281:15;54255:24;54251:46;54241:56;;53991:324;;;:::o;20293:268::-;20361:13;20468:1;20462:4;20455:15;20497:1;20491:4;20484:15;20538:4;20532;20522:21;20513:30;;20293:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:329::-;5349:6;5398:2;5386:9;5377:7;5373:23;5369:32;5366:119;;;5404:79;;:::i;:::-;5366:119;5524:1;5549:53;5594:7;5585:6;5574:9;5570:22;5549:53;:::i;:::-;5539:63;;5495:117;5290:329;;;;:::o;5625:619::-;5702:6;5710;5718;5767:2;5755:9;5746:7;5742:23;5738:32;5735:119;;;5773:79;;:::i;:::-;5735:119;5893:1;5918:53;5963:7;5954:6;5943:9;5939:22;5918:53;:::i;:::-;5908:63;;5864:117;6020:2;6046:53;6091:7;6082:6;6071:9;6067:22;6046:53;:::i;:::-;6036:63;;5991:118;6148:2;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6119:118;5625:619;;;;;:::o;6250:60::-;6278:3;6299:5;6292:12;;6250:60;;;:::o;6316:142::-;6366:9;6399:53;6417:34;6426:24;6444:5;6426:24;:::i;:::-;6417:34;:::i;:::-;6399:53;:::i;:::-;6386:66;;6316:142;;;:::o;6464:126::-;6514:9;6547:37;6578:5;6547:37;:::i;:::-;6534:50;;6464:126;;;:::o;6596:157::-;6677:9;6710:37;6741:5;6710:37;:::i;:::-;6697:50;;6596:157;;;:::o;6759:193::-;6877:68;6939:5;6877:68;:::i;:::-;6872:3;6865:81;6759:193;;:::o;6958:284::-;7082:4;7120:2;7109:9;7105:18;7097:26;;7133:102;7232:1;7221:9;7217:17;7208:6;7133:102;:::i;:::-;6958:284;;;;:::o;7248:117::-;7357:1;7354;7347:12;7371:117;7480:1;7477;7470:12;7494:180;7542:77;7539:1;7532:88;7639:4;7636:1;7629:15;7663:4;7660:1;7653:15;7680:281;7763:27;7785:4;7763:27;:::i;:::-;7755:6;7751:40;7893:6;7881:10;7878:22;7857:18;7845:10;7842:34;7839:62;7836:88;;;7904:18;;:::i;:::-;7836:88;7944:10;7940:2;7933:22;7723:238;7680:281;;:::o;7967:129::-;8001:6;8028:20;;:::i;:::-;8018:30;;8057:33;8085:4;8077:6;8057:33;:::i;:::-;7967:129;;;:::o;8102:308::-;8164:4;8254:18;8246:6;8243:30;8240:56;;;8276:18;;:::i;:::-;8240:56;8314:29;8336:6;8314:29;:::i;:::-;8306:37;;8398:4;8392;8388:15;8380:23;;8102:308;;;:::o;8416:154::-;8500:6;8495:3;8490;8477:30;8562:1;8553:6;8548:3;8544:16;8537:27;8416:154;;;:::o;8576:412::-;8654:5;8679:66;8695:49;8737:6;8695:49;:::i;:::-;8679:66;:::i;:::-;8670:75;;8768:6;8761:5;8754:21;8806:4;8799:5;8795:16;8844:3;8835:6;8830:3;8826:16;8823:25;8820:112;;;8851:79;;:::i;:::-;8820:112;8941:41;8975:6;8970:3;8965;8941:41;:::i;:::-;8660:328;8576:412;;;;;:::o;9008:340::-;9064:5;9113:3;9106:4;9098:6;9094:17;9090:27;9080:122;;9121:79;;:::i;:::-;9080:122;9238:6;9225:20;9263:79;9338:3;9330:6;9323:4;9315:6;9311:17;9263:79;:::i;:::-;9254:88;;9070:278;9008:340;;;;:::o;9354:509::-;9423:6;9472:2;9460:9;9451:7;9447:23;9443:32;9440:119;;;9478:79;;:::i;:::-;9440:119;9626:1;9615:9;9611:17;9598:31;9656:18;9648:6;9645:30;9642:117;;;9678:79;;:::i;:::-;9642:117;9783:63;9838:7;9829:6;9818:9;9814:22;9783:63;:::i;:::-;9773:73;;9569:287;9354:509;;;;:::o;9869:116::-;9939:21;9954:5;9939:21;:::i;:::-;9932:5;9929:32;9919:60;;9975:1;9972;9965:12;9919:60;9869:116;:::o;9991:133::-;10034:5;10072:6;10059:20;10050:29;;10088:30;10112:5;10088:30;:::i;:::-;9991:133;;;;:::o;10130:468::-;10195:6;10203;10252:2;10240:9;10231:7;10227:23;10223:32;10220:119;;;10258:79;;:::i;:::-;10220:119;10378:1;10403:53;10448:7;10439:6;10428:9;10424:22;10403:53;:::i;:::-;10393:63;;10349:117;10505:2;10531:50;10573:7;10564:6;10553:9;10549:22;10531:50;:::i;:::-;10521:60;;10476:115;10130:468;;;;;:::o;10604:307::-;10665:4;10755:18;10747:6;10744:30;10741:56;;;10777:18;;:::i;:::-;10741:56;10815:29;10837:6;10815:29;:::i;:::-;10807:37;;10899:4;10893;10889:15;10881:23;;10604:307;;;:::o;10917:410::-;10994:5;11019:65;11035:48;11076:6;11035:48;:::i;:::-;11019:65;:::i;:::-;11010:74;;11107:6;11100:5;11093:21;11145:4;11138:5;11134:16;11183:3;11174:6;11169:3;11165:16;11162:25;11159:112;;;11190:79;;:::i;:::-;11159:112;11280:41;11314:6;11309:3;11304;11280:41;:::i;:::-;11000:327;10917:410;;;;;:::o;11346:338::-;11401:5;11450:3;11443:4;11435:6;11431:17;11427:27;11417:122;;11458:79;;:::i;:::-;11417:122;11575:6;11562:20;11600:78;11674:3;11666:6;11659:4;11651:6;11647:17;11600:78;:::i;:::-;11591:87;;11407:277;11346:338;;;;:::o;11690:943::-;11785:6;11793;11801;11809;11858:3;11846:9;11837:7;11833:23;11829:33;11826:120;;;11865:79;;:::i;:::-;11826:120;11985:1;12010:53;12055:7;12046:6;12035:9;12031:22;12010:53;:::i;:::-;12000:63;;11956:117;12112:2;12138:53;12183:7;12174:6;12163:9;12159:22;12138:53;:::i;:::-;12128:63;;12083:118;12240:2;12266:53;12311:7;12302:6;12291:9;12287:22;12266:53;:::i;:::-;12256:63;;12211:118;12396:2;12385:9;12381:18;12368:32;12427:18;12419:6;12416:30;12413:117;;;12449:79;;:::i;:::-;12413:117;12554:62;12608:7;12599:6;12588:9;12584:22;12554:62;:::i;:::-;12544:72;;12339:287;11690:943;;;;;;;:::o;12639:311::-;12716:4;12806:18;12798:6;12795:30;12792:56;;;12828:18;;:::i;:::-;12792:56;12878:4;12870:6;12866:17;12858:25;;12938:4;12932;12928:15;12920:23;;12639:311;;;:::o;12956:117::-;13065:1;13062;13055:12;13079:77;13116:7;13145:5;13134:16;;13079:77;;;:::o;13162:122::-;13235:24;13253:5;13235:24;:::i;:::-;13228:5;13225:35;13215:63;;13274:1;13271;13264:12;13215:63;13162:122;:::o;13290:139::-;13336:5;13374:6;13361:20;13352:29;;13390:33;13417:5;13390:33;:::i;:::-;13290:139;;;;:::o;13452:710::-;13548:5;13573:81;13589:64;13646:6;13589:64;:::i;:::-;13573:81;:::i;:::-;13564:90;;13674:5;13703:6;13696:5;13689:21;13737:4;13730:5;13726:16;13719:23;;13790:4;13782:6;13778:17;13770:6;13766:30;13819:3;13811:6;13808:15;13805:122;;;13838:79;;:::i;:::-;13805:122;13953:6;13936:220;13970:6;13965:3;13962:15;13936:220;;;14045:3;14074:37;14107:3;14095:10;14074:37;:::i;:::-;14069:3;14062:50;14141:4;14136:3;14132:14;14125:21;;14012:144;13996:4;13991:3;13987:14;13980:21;;13936:220;;;13940:21;13554:608;;13452:710;;;;;:::o;14185:370::-;14256:5;14305:3;14298:4;14290:6;14286:17;14282:27;14272:122;;14313:79;;:::i;:::-;14272:122;14430:6;14417:20;14455:94;14545:3;14537:6;14530:4;14522:6;14518:17;14455:94;:::i;:::-;14446:103;;14262:293;14185:370;;;;:::o;14561:684::-;14654:6;14662;14711:2;14699:9;14690:7;14686:23;14682:32;14679:119;;;14717:79;;:::i;:::-;14679:119;14865:1;14854:9;14850:17;14837:31;14895:18;14887:6;14884:30;14881:117;;;14917:79;;:::i;:::-;14881:117;15022:78;15092:7;15083:6;15072:9;15068:22;15022:78;:::i;:::-;15012:88;;14808:302;15149:2;15175:53;15220:7;15211:6;15200:9;15196:22;15175:53;:::i;:::-;15165:63;;15120:118;14561:684;;;;;:::o;15251:::-;15344:6;15352;15401:2;15389:9;15380:7;15376:23;15372:32;15369:119;;;15407:79;;:::i;:::-;15369:119;15527:1;15552:53;15597:7;15588:6;15577:9;15573:22;15552:53;:::i;:::-;15542:63;;15498:117;15682:2;15671:9;15667:18;15654:32;15713:18;15705:6;15702:30;15699:117;;;15735:79;;:::i;:::-;15699:117;15840:78;15910:7;15901:6;15890:9;15886:22;15840:78;:::i;:::-;15830:88;;15625:303;15251:684;;;;;:::o;15941:329::-;16000:6;16049:2;16037:9;16028:7;16024:23;16020:32;16017:119;;;16055:79;;:::i;:::-;16017:119;16175:1;16200:53;16245:7;16236:6;16225:9;16221:22;16200:53;:::i;:::-;16190:63;;16146:117;15941:329;;;;:::o;16276:474::-;16344:6;16352;16401:2;16389:9;16380:7;16376:23;16372:32;16369:119;;;16407:79;;:::i;:::-;16369:119;16527:1;16552:53;16597:7;16588:6;16577:9;16573:22;16552:53;:::i;:::-;16542:63;;16498:117;16654:2;16680:53;16725:7;16716:6;16705:9;16701:22;16680:53;:::i;:::-;16670:63;;16625:118;16276:474;;;;;:::o;16756:118::-;16843:24;16861:5;16843:24;:::i;:::-;16838:3;16831:37;16756:118;;:::o;16880:222::-;16973:4;17011:2;17000:9;16996:18;16988:26;;17024:71;17092:1;17081:9;17077:17;17068:6;17024:71;:::i;:::-;16880:222;;;;:::o;17108:117::-;17217:1;17214;17207:12;17248:568;17321:8;17331:6;17381:3;17374:4;17366:6;17362:17;17358:27;17348:122;;17389:79;;:::i;:::-;17348:122;17502:6;17489:20;17479:30;;17532:18;17524:6;17521:30;17518:117;;;17554:79;;:::i;:::-;17518:117;17668:4;17660:6;17656:17;17644:29;;17722:3;17714:4;17706:6;17702:17;17692:8;17688:32;17685:41;17682:128;;;17729:79;;:::i;:::-;17682:128;17248:568;;;;;:::o;17822:704::-;17917:6;17925;17933;17982:2;17970:9;17961:7;17957:23;17953:32;17950:119;;;17988:79;;:::i;:::-;17950:119;18136:1;18125:9;18121:17;18108:31;18166:18;18158:6;18155:30;18152:117;;;18188:79;;:::i;:::-;18152:117;18301:80;18373:7;18364:6;18353:9;18349:22;18301:80;:::i;:::-;18283:98;;;;18079:312;18430:2;18456:53;18501:7;18492:6;18481:9;18477:22;18456:53;:::i;:::-;18446:63;;18401:118;17822:704;;;;;:::o;18532:180::-;18580:77;18577:1;18570:88;18677:4;18674:1;18667:15;18701:4;18698:1;18691:15;18718:320;18762:6;18799:1;18793:4;18789:12;18779:22;;18846:1;18840:4;18836:12;18867:18;18857:81;;18923:4;18915:6;18911:17;18901:27;;18857:81;18985:2;18977:6;18974:14;18954:18;18951:38;18948:84;;19004:18;;:::i;:::-;18948:84;18769:269;18718:320;;;:::o;19044:181::-;19184:33;19180:1;19172:6;19168:14;19161:57;19044:181;:::o;19231:366::-;19373:3;19394:67;19458:2;19453:3;19394:67;:::i;:::-;19387:74;;19470:93;19559:3;19470:93;:::i;:::-;19588:2;19583:3;19579:12;19572:19;;19231:366;;;:::o;19603:419::-;19769:4;19807:2;19796:9;19792:18;19784:26;;19856:9;19850:4;19846:20;19842:1;19831:9;19827:17;19820:47;19884:131;20010:4;19884:131;:::i;:::-;19876:139;;19603:419;;;:::o;20028:180::-;20076:77;20073:1;20066:88;20173:4;20170:1;20163:15;20197:4;20194:1;20187:15;20214:305;20254:3;20273:20;20291:1;20273:20;:::i;:::-;20268:25;;20307:20;20325:1;20307:20;:::i;:::-;20302:25;;20461:1;20393:66;20389:74;20386:1;20383:81;20380:107;;;20467:18;;:::i;:::-;20380:107;20511:1;20508;20504:9;20497:16;;20214:305;;;;:::o;20525:175::-;20665:27;20661:1;20653:6;20649:14;20642:51;20525:175;:::o;20706:366::-;20848:3;20869:67;20933:2;20928:3;20869:67;:::i;:::-;20862:74;;20945:93;21034:3;20945:93;:::i;:::-;21063:2;21058:3;21054:12;21047:19;;20706:366;;;:::o;21078:419::-;21244:4;21282:2;21271:9;21267:18;21259:26;;21331:9;21325:4;21321:20;21317:1;21306:9;21302:17;21295:47;21359:131;21485:4;21359:131;:::i;:::-;21351:139;;21078:419;;;:::o;21503:180::-;21643:32;21639:1;21631:6;21627:14;21620:56;21503:180;:::o;21689:366::-;21831:3;21852:67;21916:2;21911:3;21852:67;:::i;:::-;21845:74;;21928:93;22017:3;21928:93;:::i;:::-;22046:2;22041:3;22037:12;22030:19;;21689:366;;;:::o;22061:419::-;22227:4;22265:2;22254:9;22250:18;22242:26;;22314:9;22308:4;22304:20;22300:1;22289:9;22285:17;22278:47;22342:131;22468:4;22342:131;:::i;:::-;22334:139;;22061:419;;;:::o;22486:348::-;22526:7;22549:20;22567:1;22549:20;:::i;:::-;22544:25;;22583:20;22601:1;22583:20;:::i;:::-;22578:25;;22771:1;22703:66;22699:74;22696:1;22693:81;22688:1;22681:9;22674:17;22670:105;22667:131;;;22778:18;;:::i;:::-;22667:131;22826:1;22823;22819:9;22808:20;;22486:348;;;;:::o;22840:171::-;22980:23;22976:1;22968:6;22964:14;22957:47;22840:171;:::o;23017:366::-;23159:3;23180:67;23244:2;23239:3;23180:67;:::i;:::-;23173:74;;23256:93;23345:3;23256:93;:::i;:::-;23374:2;23369:3;23365:12;23358:19;;23017:366;;;:::o;23389:419::-;23555:4;23593:2;23582:9;23578:18;23570:26;;23642:9;23636:4;23632:20;23628:1;23617:9;23613:17;23606:47;23670:131;23796:4;23670:131;:::i;:::-;23662:139;;23389:419;;;:::o;23814:180::-;23862:77;23859:1;23852:88;23959:4;23956:1;23949:15;23983:4;23980:1;23973:15;24000:185;24040:1;24057:20;24075:1;24057:20;:::i;:::-;24052:25;;24091:20;24109:1;24091:20;:::i;:::-;24086:25;;24130:1;24120:35;;24135:18;;:::i;:::-;24120:35;24177:1;24174;24170:9;24165:14;;24000:185;;;;:::o;24191:234::-;24331:34;24327:1;24319:6;24315:14;24308:58;24400:17;24395:2;24387:6;24383:15;24376:42;24191:234;:::o;24431:366::-;24573:3;24594:67;24658:2;24653:3;24594:67;:::i;:::-;24587:74;;24670:93;24759:3;24670:93;:::i;:::-;24788:2;24783:3;24779:12;24772:19;;24431:366;;;:::o;24803:419::-;24969:4;25007:2;24996:9;24992:18;24984:26;;25056:9;25050:4;25046:20;25042:1;25031:9;25027:17;25020:47;25084:131;25210:4;25084:131;:::i;:::-;25076:139;;24803:419;;;:::o;25228:148::-;25330:11;25367:3;25352:18;;25228:148;;;;:::o;25382:377::-;25488:3;25516:39;25549:5;25516:39;:::i;:::-;25571:89;25653:6;25648:3;25571:89;:::i;:::-;25564:96;;25669:52;25714:6;25709:3;25702:4;25695:5;25691:16;25669:52;:::i;:::-;25746:6;25741:3;25737:16;25730:23;;25492:267;25382:377;;;;:::o;25765:141::-;25814:4;25837:3;25829:11;;25860:3;25857:1;25850:14;25894:4;25891:1;25881:18;25873:26;;25765:141;;;:::o;25936:845::-;26039:3;26076:5;26070:12;26105:36;26131:9;26105:36;:::i;:::-;26157:89;26239:6;26234:3;26157:89;:::i;:::-;26150:96;;26277:1;26266:9;26262:17;26293:1;26288:137;;;;26439:1;26434:341;;;;26255:520;;26288:137;26372:4;26368:9;26357;26353:25;26348:3;26341:38;26408:6;26403:3;26399:16;26392:23;;26288:137;;26434:341;26501:38;26533:5;26501:38;:::i;:::-;26561:1;26575:154;26589:6;26586:1;26583:13;26575:154;;;26663:7;26657:14;26653:1;26648:3;26644:11;26637:35;26713:1;26704:7;26700:15;26689:26;;26611:4;26608:1;26604:12;26599:17;;26575:154;;;26758:6;26753:3;26749:16;26742:23;;26441:334;;26255:520;;26043:738;;25936:845;;;;:::o;26787:589::-;27012:3;27034:95;27125:3;27116:6;27034:95;:::i;:::-;27027:102;;27146:95;27237:3;27228:6;27146:95;:::i;:::-;27139:102;;27258:92;27346:3;27337:6;27258:92;:::i;:::-;27251:99;;27367:3;27360:10;;26787:589;;;;;;:::o;27382:94::-;27415:8;27463:5;27459:2;27455:14;27434:35;;27382:94;;;:::o;27482:::-;27521:7;27550:20;27564:5;27550:20;:::i;:::-;27539:31;;27482:94;;;:::o;27582:100::-;27621:7;27650:26;27670:5;27650:26;:::i;:::-;27639:37;;27582:100;;;:::o;27688:157::-;27793:45;27813:24;27831:5;27813:24;:::i;:::-;27793:45;:::i;:::-;27788:3;27781:58;27688:157;;:::o;27851:256::-;27963:3;27978:75;28049:3;28040:6;27978:75;:::i;:::-;28078:2;28073:3;28069:12;28062:19;;28098:3;28091:10;;27851:256;;;;:::o;28113:173::-;28253:25;28249:1;28241:6;28237:14;28230:49;28113:173;:::o;28292:366::-;28434:3;28455:67;28519:2;28514:3;28455:67;:::i;:::-;28448:74;;28531:93;28620:3;28531:93;:::i;:::-;28649:2;28644:3;28640:12;28633:19;;28292:366;;;:::o;28664:419::-;28830:4;28868:2;28857:9;28853:18;28845:26;;28917:9;28911:4;28907:20;28903:1;28892:9;28888:17;28881:47;28945:131;29071:4;28945:131;:::i;:::-;28937:139;;28664:419;;;:::o;29089:221::-;29229:34;29225:1;29217:6;29213:14;29206:58;29298:4;29293:2;29285:6;29281:15;29274:29;29089:221;:::o;29316:366::-;29458:3;29479:67;29543:2;29538:3;29479:67;:::i;:::-;29472:74;;29555:93;29644:3;29555:93;:::i;:::-;29673:2;29668:3;29664:12;29657:19;;29316:366;;;:::o;29688:419::-;29854:4;29892:2;29881:9;29877:18;29869:26;;29941:9;29935:4;29931:20;29927:1;29916:9;29912:17;29905:47;29969:131;30095:4;29969:131;:::i;:::-;29961:139;;29688:419;;;:::o;30113:180::-;30253:32;30249:1;30241:6;30237:14;30230:56;30113:180;:::o;30299:366::-;30441:3;30462:67;30526:2;30521:3;30462:67;:::i;:::-;30455:74;;30538:93;30627:3;30538:93;:::i;:::-;30656:2;30651:3;30647:12;30640:19;;30299:366;;;:::o;30671:419::-;30837:4;30875:2;30864:9;30860:18;30852:26;;30924:9;30918:4;30914:20;30910:1;30899:9;30895:17;30888:47;30952:131;31078:4;30952:131;:::i;:::-;30944:139;;30671:419;;;:::o;31096:180::-;31144:77;31141:1;31134:88;31241:4;31238:1;31231:15;31265:4;31262:1;31255:15;31282:233;31321:3;31344:24;31362:5;31344:24;:::i;:::-;31335:33;;31390:66;31383:5;31380:77;31377:103;;31460:18;;:::i;:::-;31377:103;31507:1;31500:5;31496:13;31489:20;;31282:233;;;:::o;31521:225::-;31661:34;31657:1;31649:6;31645:14;31638:58;31730:8;31725:2;31717:6;31713:15;31706:33;31521:225;:::o;31752:366::-;31894:3;31915:67;31979:2;31974:3;31915:67;:::i;:::-;31908:74;;31991:93;32080:3;31991:93;:::i;:::-;32109:2;32104:3;32100:12;32093:19;;31752:366;;;:::o;32124:419::-;32290:4;32328:2;32317:9;32313:18;32305:26;;32377:9;32371:4;32367:20;32363:1;32352:9;32348:17;32341:47;32405:131;32531:4;32405:131;:::i;:::-;32397:139;;32124:419;;;:::o;32549:332::-;32670:4;32708:2;32697:9;32693:18;32685:26;;32721:71;32789:1;32778:9;32774:17;32765:6;32721:71;:::i;:::-;32802:72;32870:2;32859:9;32855:18;32846:6;32802:72;:::i;:::-;32549:332;;;;;:::o;32887:137::-;32941:5;32972:6;32966:13;32957:22;;32988:30;33012:5;32988:30;:::i;:::-;32887:137;;;;:::o;33030:345::-;33097:6;33146:2;33134:9;33125:7;33121:23;33117:32;33114:119;;;33152:79;;:::i;:::-;33114:119;33272:1;33297:61;33350:7;33341:6;33330:9;33326:22;33297:61;:::i;:::-;33287:71;;33243:125;33030:345;;;;:::o;33381:182::-;33521:34;33517:1;33509:6;33505:14;33498:58;33381:182;:::o;33569:366::-;33711:3;33732:67;33796:2;33791:3;33732:67;:::i;:::-;33725:74;;33808:93;33897:3;33808:93;:::i;:::-;33926:2;33921:3;33917:12;33910:19;;33569:366;;;:::o;33941:419::-;34107:4;34145:2;34134:9;34130:18;34122:26;;34194:9;34188:4;34184:20;34180:1;34169:9;34165:17;34158:47;34222:131;34348:4;34222:131;:::i;:::-;34214:139;;33941:419;;;:::o;34366:166::-;34506:18;34502:1;34494:6;34490:14;34483:42;34366:166;:::o;34538:366::-;34680:3;34701:67;34765:2;34760:3;34701:67;:::i;:::-;34694:74;;34777:93;34866:3;34777:93;:::i;:::-;34895:2;34890:3;34886:12;34879:19;;34538:366;;;:::o;34910:419::-;35076:4;35114:2;35103:9;35099:18;35091:26;;35163:9;35157:4;35153:20;35149:1;35138:9;35134:17;35127:47;35191:131;35317:4;35191:131;:::i;:::-;35183:139;;34910:419;;;:::o;35335:181::-;35475:33;35471:1;35463:6;35459:14;35452:57;35335:181;:::o;35522:366::-;35664:3;35685:67;35749:2;35744:3;35685:67;:::i;:::-;35678:74;;35761:93;35850:3;35761:93;:::i;:::-;35879:2;35874:3;35870:12;35863:19;;35522:366;;;:::o;35894:419::-;36060:4;36098:2;36087:9;36083:18;36075:26;;36147:9;36141:4;36137:20;36133:1;36122:9;36118:17;36111:47;36175:131;36301:4;36175:131;:::i;:::-;36167:139;;35894:419;;;:::o;36319:170::-;36459:22;36455:1;36447:6;36443:14;36436:46;36319:170;:::o;36495:366::-;36637:3;36658:67;36722:2;36717:3;36658:67;:::i;:::-;36651:74;;36734:93;36823:3;36734:93;:::i;:::-;36852:2;36847:3;36843:12;36836:19;;36495:366;;;:::o;36867:419::-;37033:4;37071:2;37060:9;37056:18;37048:26;;37120:9;37114:4;37110:20;37106:1;37095:9;37091:17;37084:47;37148:131;37274:4;37148:131;:::i;:::-;37140:139;;36867:419;;;:::o;37292:98::-;37343:6;37377:5;37371:12;37361:22;;37292:98;;;:::o;37396:168::-;37479:11;37513:6;37508:3;37501:19;37553:4;37548:3;37544:14;37529:29;;37396:168;;;;:::o;37570:360::-;37656:3;37684:38;37716:5;37684:38;:::i;:::-;37738:70;37801:6;37796:3;37738:70;:::i;:::-;37731:77;;37817:52;37862:6;37857:3;37850:4;37843:5;37839:16;37817:52;:::i;:::-;37894:29;37916:6;37894:29;:::i;:::-;37889:3;37885:39;37878:46;;37660:270;37570:360;;;;:::o;37936:640::-;38131:4;38169:3;38158:9;38154:19;38146:27;;38183:71;38251:1;38240:9;38236:17;38227:6;38183:71;:::i;:::-;38264:72;38332:2;38321:9;38317:18;38308:6;38264:72;:::i;:::-;38346;38414:2;38403:9;38399:18;38390:6;38346:72;:::i;:::-;38465:9;38459:4;38455:20;38450:2;38439:9;38435:18;38428:48;38493:76;38564:4;38555:6;38493:76;:::i;:::-;38485:84;;37936:640;;;;;;;:::o;38582:141::-;38638:5;38669:6;38663:13;38654:22;;38685:32;38711:5;38685:32;:::i;:::-;38582:141;;;;:::o;38729:349::-;38798:6;38847:2;38835:9;38826:7;38822:23;38818:32;38815:119;;;38853:79;;:::i;:::-;38815:119;38973:1;38998:63;39053:7;39044:6;39033:9;39029:22;38998:63;:::i;:::-;38988:73;;38944:127;38729:349;;;;:::o

Swarm Source

ipfs://f89c8d8754203df5456a244262a14aff0441ddc464121dcfb481e8003d775a7f
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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