ETH Price: $3,307.48 (-3.06%)
Gas: 21 Gwei

Pepe Army Yacht Club (PAYC)
 

Overview

TokenID

232

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
PepeArmyYachtClub

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-12-25
*/

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.20;

/**
 * @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 The multiproof provided is not valid.
     */
    error MerkleProofInvalidMultiproof();

    /**
     * @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}
     */
    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.
     */
    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}
     */
    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.
     */
    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.
     */
    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).
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds 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 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        if (leavesLen + proofLen != totalHashes + 1) {
            revert MerkleProofInvalidMultiproof();
        }

        // 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 from 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) {
            if (proofPos != proofLen) {
                revert MerkleProofInvalidMultiproof();
            }
            unchecked {
                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.
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds 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 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        if (leavesLen + proofLen != totalHashes + 1) {
            revert MerkleProofInvalidMultiproof();
        }

        // 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 from 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) {
            if (proofPos != proofLen) {
                revert MerkleProofInvalidMultiproof();
            }
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Sorts the pair (a, b) and hashes the result.
     */
    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    /**
     * @dev Implementation of keccak256(abi.encode(a, b)) that doesn't allocate or expand memory.
     */
    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/interfaces/draft-IERC6093.sol


// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

// File: @openzeppelin/contracts/utils/math/SignedMath.sol


// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

// File: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Muldiv operation overflow.
     */
    error MathOverflowedMulDiv();

    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            return a / b;
        }

        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or
     * denominator == 0.
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by
     * Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0 = x * y; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            if (denominator <= prod1) {
                revert MathOverflowedMulDiv();
            }

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator.
            // Always >= 1. See https://cs.stackexchange.com/q/138556/92363.

            uint256 twos = denominator & (0 - denominator);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also
            // works in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
     * towards zero.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
        }
    }

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)

pragma solidity ^0.8.20;



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

    /**
     * @dev The `value` string doesn't fit in the specified `length`.
     */
    error StringsInsufficientHexLength(uint256 value, uint256 length);

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toStringSigned(int256 value) internal pure returns (string memory) {
        return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value)));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

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

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

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/Pausable.sol)

pragma solidity ^0.8.20;


/**
 * @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 {
    bool private _paused;

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

    /**
     * @dev The operation failed because the contract is paused.
     */
    error EnforcedPause();

    /**
     * @dev The operation failed because the contract is not paused.
     */
    error ExpectedPause();

    /**
     * @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 {
        if (paused()) {
            revert EnforcedPause();
        }
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        if (!paused()) {
            revert ExpectedPause();
        }
    }

    /**
     * @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: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.20;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be
     * reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/interfaces/IERC165.sol


// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC165.sol)

pragma solidity ^0.8.20;


// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol)

pragma solidity ^0.8.20;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.20;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or
     *   {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon
     *   a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the address zero.
     *
     * 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);
}

// File: @openzeppelin/contracts/interfaces/IERC721.sol


// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC721.sol)

pragma solidity ^0.8.20;


// File: @openzeppelin/contracts/interfaces/IERC4906.sol


// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC4906.sol)

pragma solidity ^0.8.20;



/// @title EIP-721 Metadata Update Extension
interface IERC4906 is IERC165, IERC721 {
    /// @dev This event emits when the metadata of a token is changed.
    /// So that the third-party platforms such as NFT market could
    /// timely update the images and related attributes of the NFT.
    event MetadataUpdate(uint256 _tokenId);

    /// @dev This event emits when the metadata of a range of tokens is changed.
    /// So that the third-party platforms such as NFT market could
    /// timely update the images and related attributes of the NFTs.
    event BatchMetadataUpdate(uint256 _fromTokenId, uint256 _toTokenId);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.20;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.20;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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);
}

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.20;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Errors {
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    mapping(uint256 tokenId => address) private _owners;

    mapping(address owner => uint256) private _balances;

    mapping(uint256 tokenId => address) private _tokenApprovals;

    mapping(address owner => mapping(address operator => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual returns (uint256) {
        if (owner == address(0)) {
            revert ERC721InvalidOwner(address(0));
        }
        return _balances[owner];
    }

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

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual returns (string memory) {
        _requireOwned(tokenId);

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string.concat(baseURI, tokenId.toString()) : "";
    }

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual {
        _approve(to, tokenId, _msgSender());
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual returns (address) {
        _requireOwned(tokenId);

        return _getApproved(tokenId);
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        // Setting an "auth" arguments enables the `_isAuthorized` check which verifies that the token exists
        // (from != 0). Therefore, it is not needed to verify that the return value is not 0 here.
        address previousOwner = _update(to, tokenId, _msgSender());
        if (previousOwner != from) {
            revert ERC721IncorrectOwner(from, tokenId, previousOwner);
        }
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual {
        transferFrom(from, to, tokenId);
        _checkOnERC721Received(from, to, tokenId, data);
    }

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     *
     * IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the
     * core ERC721 logic MUST be matched with the use of {_increaseBalance} to keep balances
     * consistent with ownership. The invariant to preserve is that for any address `a` the value returned by
     * `balanceOf(a)` must be equal to the number of tokens such that `_ownerOf(tokenId)` is `a`.
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @dev Returns the approved address for `tokenId`. Returns 0 if `tokenId` is not minted.
     */
    function _getApproved(uint256 tokenId) internal view virtual returns (address) {
        return _tokenApprovals[tokenId];
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `owner`'s tokens, or `tokenId` in
     * particular (ignoring whether it is owned by `owner`).
     *
     * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this
     * assumption.
     */
    function _isAuthorized(address owner, address spender, uint256 tokenId) internal view virtual returns (bool) {
        return
            spender != address(0) &&
            (owner == spender || isApprovedForAll(owner, spender) || _getApproved(tokenId) == spender);
    }

    /**
     * @dev Checks if `spender` can operate on `tokenId`, assuming the provided `owner` is the actual owner.
     * Reverts if `spender` does not have approval from the provided `owner` for the given token or for all its assets
     * the `spender` for the specific `tokenId`.
     *
     * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this
     * assumption.
     */
    function _checkAuthorized(address owner, address spender, uint256 tokenId) internal view virtual {
        if (!_isAuthorized(owner, spender, tokenId)) {
            if (owner == address(0)) {
                revert ERC721NonexistentToken(tokenId);
            } else {
                revert ERC721InsufficientApproval(spender, tokenId);
            }
        }
    }

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * NOTE: the value is limited to type(uint128).max. This protect against _balance overflow. It is unrealistic that
     * a uint256 would ever overflow from increments when these increments are bounded to uint128 values.
     *
     * WARNING: Increasing an account's balance using this function tends to be paired with an override of the
     * {_ownerOf} function to resolve the ownership of the corresponding tokens so that balances and ownership
     * remain consistent with one another.
     */
    function _increaseBalance(address account, uint128 value) internal virtual {
        unchecked {
            _balances[account] += value;
        }
    }

    /**
     * @dev Transfers `tokenId` from its current owner to `to`, or alternatively mints (or burns) if the current owner
     * (or `to`) is the zero address. Returns the owner of the `tokenId` before the update.
     *
     * The `auth` argument is optional. If the value passed is non 0, then this function will check that
     * `auth` is either the owner of the token, or approved to operate on the token (by the owner).
     *
     * Emits a {Transfer} event.
     *
     * NOTE: If overriding this function in a way that tracks balances, see also {_increaseBalance}.
     */
    function _update(address to, uint256 tokenId, address auth) internal virtual returns (address) {
        address from = _ownerOf(tokenId);

        // Perform (optional) operator check
        if (auth != address(0)) {
            _checkAuthorized(from, auth, tokenId);
        }

        // Execute the update
        if (from != address(0)) {
            // Clear approval. No need to re-authorize or emit the Approval event
            _approve(address(0), tokenId, address(0), false);

            unchecked {
                _balances[from] -= 1;
            }
        }

        if (to != address(0)) {
            unchecked {
                _balances[to] += 1;
            }
        }

        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        return from;
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        address previousOwner = _update(to, tokenId, address(0));
        if (previousOwner != address(0)) {
            revert ERC721InvalidSender(address(0));
        }
    }

    /**
     * @dev Mints `tokenId`, transfers it to `to` and checks for `to` acceptance.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(address to, uint256 tokenId, bytes memory data) internal virtual {
        _mint(to, tokenId);
        _checkOnERC721Received(address(0), to, tokenId, data);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal {
        address previousOwner = _update(address(0), tokenId, address(0));
        if (previousOwner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        }
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(address from, address to, uint256 tokenId) internal {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        address previousOwner = _update(to, tokenId, address(0));
        if (previousOwner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        } else if (previousOwner != from) {
            revert ERC721IncorrectOwner(from, tokenId, previousOwner);
        }
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking that contract recipients
     * are aware of the ERC721 standard to prevent tokens from being forever locked.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is like {safeTransferFrom} in the sense that it invokes
     * {IERC721Receiver-onERC721Received} on the receiver, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `tokenId` token must exist and be owned by `from`.
     * - `to` cannot be the zero address.
     * - `from` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(address from, address to, uint256 tokenId) internal {
        _safeTransfer(from, to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeTransfer-address-address-uint256-}[`_safeTransfer`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual {
        _transfer(from, to, tokenId);
        _checkOnERC721Received(from, to, tokenId, data);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * The `auth` argument is optional. If the value passed is non 0, then this function will check that `auth` is
     * either the owner of the token, or approved to operate on all tokens held by this owner.
     *
     * Emits an {Approval} event.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address to, uint256 tokenId, address auth) internal {
        _approve(to, tokenId, auth, true);
    }

    /**
     * @dev Variant of `_approve` with an optional flag to enable or disable the {Approval} event. The event is not
     * emitted in the context of transfers.
     */
    function _approve(address to, uint256 tokenId, address auth, bool emitEvent) internal virtual {
        // Avoid reading the owner unless necessary
        if (emitEvent || auth != address(0)) {
            address owner = _requireOwned(tokenId);

            // We do not use _isAuthorized because single-token approvals should not be able to call approve
            if (auth != address(0) && owner != auth && !isApprovedForAll(owner, auth)) {
                revert ERC721InvalidApprover(auth);
            }

            if (emitEvent) {
                emit Approval(owner, to, tokenId);
            }
        }

        _tokenApprovals[tokenId] = to;
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Requirements:
     * - operator can't be the address zero.
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {
        if (operator == address(0)) {
            revert ERC721InvalidOperator(operator);
        }
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` doesn't have a current owner (it hasn't been minted, or it has been burned).
     * Returns the owner.
     *
     * Overrides to ownership logic should be done to {_ownerOf}.
     */
    function _requireOwned(uint256 tokenId) internal view returns (address) {
        address owner = _ownerOf(tokenId);
        if (owner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        }
        return owner;
    }

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target address. This will revert if the
     * recipient doesn't accept the token transfer. The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory data) private {
        if (to.code.length > 0) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                if (retval != IERC721Receiver.onERC721Received.selector) {
                    revert ERC721InvalidReceiver(to);
                }
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert ERC721InvalidReceiver(to);
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/ERC721Pausable.sol)

pragma solidity ^0.8.20;



/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 *
 * IMPORTANT: This contract does not include public pause and unpause functions. In
 * addition to inheriting this contract, you must define both functions, invoking the
 * {Pausable-_pause} and {Pausable-_unpause} internal functions, with appropriate
 * access control, e.g. using {AccessControl} or {Ownable}. Not doing so will
 * make the contract pause mechanism of the contract unreachable, and thus unusable.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_update}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _update(
        address to,
        uint256 tokenId,
        address auth
    ) internal virtual override whenNotPaused returns (address) {
        return super._update(to, tokenId, auth);
    }
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.20;





/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is IERC4906, ERC721 {
    using Strings for uint256;

    // Interface ID as defined in ERC-4906. This does not correspond to a traditional interface ID as ERC-4906 only
    // defines events and does not include any external function.
    bytes4 private constant ERC4906_INTERFACE_ID = bytes4(0x49064906);

    // Optional mapping for token URIs
    mapping(uint256 tokenId => string) private _tokenURIs;

    /**
     * @dev See {IERC165-supportsInterface}
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, IERC165) returns (bool) {
        return interfaceId == ERC4906_INTERFACE_ID || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireOwned(tokenId);

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via string.concat).
        if (bytes(_tokenURI).length > 0) {
            return string.concat(base, _tokenURI);
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Emits {MetadataUpdate}.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        _tokenURIs[tokenId] = _tokenURI;
        emit MetadataUpdate(tokenId);
    }
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.20;




/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds enumerability
 * of all the token ids in the contract as well as all token ids owned by each account.
 *
 * CAUTION: `ERC721` extensions that implement custom `balanceOf` logic, such as `ERC721Consecutive`,
 * interfere with enumerability and should not be used together with `ERC721Enumerable`.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    mapping(address owner => mapping(uint256 index => uint256)) private _ownedTokens;
    mapping(uint256 tokenId => uint256) private _ownedTokensIndex;

    uint256[] private _allTokens;
    mapping(uint256 tokenId => uint256) private _allTokensIndex;

    /**
     * @dev An `owner`'s token query was out of bounds for `index`.
     *
     * NOTE: The owner being `address(0)` indicates a global out of bounds index.
     */
    error ERC721OutOfBoundsIndex(address owner, uint256 index);

    /**
     * @dev Batch mint is not allowed.
     */
    error ERC721EnumerableForbiddenBatchMint();

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual returns (uint256) {
        if (index >= balanceOf(owner)) {
            revert ERC721OutOfBoundsIndex(owner, index);
        }
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual returns (uint256) {
        if (index >= totalSupply()) {
            revert ERC721OutOfBoundsIndex(address(0), index);
        }
        return _allTokens[index];
    }

    /**
     * @dev See {ERC721-_update}.
     */
    function _update(address to, uint256 tokenId, address auth) internal virtual override returns (address) {
        address previousOwner = super._update(to, tokenId, auth);

        if (previousOwner == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (previousOwner != to) {
            _removeTokenFromOwnerEnumeration(previousOwner, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (previousOwner != to) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }

        return previousOwner;
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = balanceOf(to) - 1;
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = balanceOf(from);
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }

    /**
     * See {ERC721-_increaseBalance}. We need that to account tokens that were minted in batch
     */
    function _increaseBalance(address account, uint128 amount) internal virtual override {
        if (amount > 0) {
            revert ERC721EnumerableForbiddenBatchMint();
        }
        super._increaseBalance(account, amount);
    }
}

// File: new_contract.sol


pragma solidity ^0.8.20;








contract PepeArmyYachtClub is
    ERC721,
    ERC721Enumerable,
    ERC721URIStorage,
    ERC721Pausable,
    Ownable
{
    using Strings for uint256;

    uint256 private _nextTokenId;

    uint256 public MINT_PRICE = 0.003 ether;
    string public baseExtension = ".json";
    uint256 public maxSupply = 3333;

    string private baseURI =
        "ipfs://bafybeiaq6ssijldbf43ioiyasdjmlx5f3lkyb26bxivtmvax5vb4zxezoe/";

    bytes32 teamWhiteListMerkleRoot =
        0xcc8d70f0ef7875707a27f1a8158d8fd96ec3995f34a774481d7ca11b01f122fc;
    bytes32 whitelist2MerkleRoot =
        0xc0bcfa936b49f2af68784e63ab7ecfaa53b4235440827fd9b5f1d3c2db7cef3e;
    bytes32 whitelist3MerkleRoot =
        0xa3826c0a1b29b6f8f763b470ac5e6b544a86c6c483c8ae74bddfe8909c8a53e3;
    bytes32 whitelist4MerkleRoot =
        0x74b0d803383524f1141fa41104f6e2311d7941654e1df4f0a2458eb9a263fcd7;
    bytes32 whitelist5MerkleRoot =
        0x3a619fd9cf6d42cbefd3d3059f18d14fe5e80dc4bcb9a334fc6146d1ca8e0da9;

    mapping(address => uint256) public mintedNFTs;

    enum MintPhase {
        NotStarted,
        Whitelist,
        Public
    }

    MintPhase public phase = MintPhase.NotStarted;

    constructor(address initialOwner)
        ERC721("Pepe Army Yacht Club", "PAYC")
        Ownable(initialOwner)
    {
        phase = MintPhase.Whitelist;
    }

    function startWhitelistPhase() external onlyOwner {
        phase = MintPhase.Whitelist;
    }

    function startPublicMintPhase() external onlyOwner {
        phase = MintPhase.Public;
    }

    function pause() public onlyOwner {
        _pause();
    }

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

     // Function to allow the owner to update the team whitelist Merkle tree root
    function updateTeamWhiteListMerkleRoot(bytes32 _newRoot) external onlyOwner {
        teamWhiteListMerkleRoot = _newRoot;
    }

    // Function to allow the owner to update the whitelist2 Merkle tree root
    function updateWhitelist2MerkleRoot(bytes32 _newRoot) external onlyOwner {
        whitelist2MerkleRoot = _newRoot;
    }

    // Function to allow the owner to update the whitelist3 Merkle tree root
    function updateWhitelist3MerkleRoot(bytes32 _newRoot) external onlyOwner {
        whitelist3MerkleRoot = _newRoot;
    }

    // Function to allow the owner to update the whitelist4 Merkle tree root
    function updateWhitelist4MerkleRoot(bytes32 _newRoot) external onlyOwner {
        whitelist4MerkleRoot = _newRoot;
    }

    // Function to allow the owner to update the whitelist5 Merkle tree root
    function updateWhitelist5MerkleRoot(bytes32 _newRoot) external onlyOwner {
        whitelist5MerkleRoot = _newRoot;
    }

    function isValidTeamWhitelist(bytes32[] memory proof)
        public
        view
        returns (bool)
    {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        return MerkleProof.verify(proof, teamWhiteListMerkleRoot, leaf);
    }

    function isValidWhitelist2(bytes32[] memory proof)
        public
        view
        returns (bool)
    {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        return MerkleProof.verify(proof, whitelist2MerkleRoot, leaf);
    }

    function isValidWhitelist3(bytes32[] memory proof)
        public
        view
        returns (bool)
    {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        return MerkleProof.verify(proof, whitelist3MerkleRoot, leaf);
    }

    function isValidWhitelist4(bytes32[] memory proof)
        public
        view
        returns (bool)
    {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        return MerkleProof.verify(proof, whitelist4MerkleRoot, leaf);
    }

    function isValidWhitelist5(bytes32[] memory proof)
        public
        view
        returns (bool)
    {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        return MerkleProof.verify(proof, whitelist5MerkleRoot, leaf);
    }

    function mint(
        address to,
        uint256 amount,
        bytes32[] memory proof
    ) public payable {
        require(!paused(), "Contract is paused, please try again later");
        require(amount > 0);
        uint256 supply = totalSupply();
        require(supply + amount <= maxSupply);

        if (phase == MintPhase.Whitelist) {
            if (isValidWhitelist2(proof)) {
                require(
                    mintedNFTs[msg.sender] + amount <= 2,
                    "Exceeded maximum holding for whitelist 2"
                );
            } else if (isValidWhitelist3(proof)) {
                require(
                    mintedNFTs[msg.sender] + amount <= 3,
                    "Exceeded maximum holding for whitelist 3"
                );
            } else if (isValidWhitelist4(proof)) {
                require(
                    mintedNFTs[msg.sender] + amount <= 4,
                    "Exceeded maximum holding for whitelist 4"
                );
            } else if (isValidWhitelist5(proof)) {
                require(
                    mintedNFTs[msg.sender] + amount <= 5,
                    "Exceeded maximum holding for whitelist 5"
                );
            } else if (isValidTeamWhitelist(proof)) {
                require(
                    mintedNFTs[msg.sender] + amount <= 15,
                    "Exceeded maximum holding for team whitelist 15"
                );
            } else {
                revert("Not whitelisted");
            }
        } else if (phase == MintPhase.Public) {
            if (msg.sender != owner()) {
                require(
                    msg.value >= MINT_PRICE * amount,
                    "Insufficient funds to mint"
                );
            }
        } else {
            revert("Minting phase has not started");
        }

        for (uint256 i = 1; i <= amount; i++) {
            _safeMint(to, supply + i);
            mintedNFTs[to]++;
        }

        if (phase == MintPhase.Public && msg.sender != owner()) {
            require(
                payable(owner()).send(address(this).balance),
                "Failed to transfer funds to owner"
            );
        }
    }

    function getMintedNFTs(address addr) public view returns (uint256) {
        return mintedNFTs[addr];
    }

    function withdraw() public onlyOwner {
        require(address(this).balance > 0, "Balance is zero");
        payable(owner()).transfer(address(this).balance);
    }

    function setMintPrice(uint256 newMintPrice) external onlyOwner {
        MINT_PRICE = newMintPrice;
    }

    function setBaseURI(string memory newBaseURI) external onlyOwner {
        baseURI = newBaseURI;
    }

    // The following functions are overrides required by Solidity.

    function _update(
        address to,
        uint256 tokenId,
        address auth
    )
        internal
        override(ERC721, ERC721Enumerable, ERC721Pausable)
        returns (address)
    {
        return super._update(to, tokenId, auth);
    }

    function _increaseBalance(address account, uint128 value)
        internal
        override(ERC721, ERC721Enumerable)
    {
        super._increaseBalance(account, value);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721, ERC721URIStorage)
        returns (string memory)
    {
        string memory baseUri = baseURI; // Use the updated baseURI variable
        return
            string(
                abi.encodePacked(baseUri, tokenId.toString(), baseExtension)
            );
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable, ERC721URIStorage)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ERC721EnumerableForbiddenBatchMint","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721IncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721InsufficientApproval","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC721InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC721InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721InvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC721InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC721InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"ERC721OutOfBoundsIndex","type":"error"},{"inputs":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","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":false,"internalType":"uint256","name":"_fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_toTokenId","type":"uint256"}],"name":"BatchMetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"MetadataUpdate","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":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"getMintedNFTs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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[]"}],"name":"isValidTeamWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"isValidWhitelist2","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"isValidWhitelist3","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"isValidWhitelist4","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"isValidWhitelist5","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedNFTs","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":"phase","outputs":[{"internalType":"enum PepeArmyYachtClub.MintPhase","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPublicMintPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startWhitelistPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newRoot","type":"bytes32"}],"name":"updateTeamWhiteListMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newRoot","type":"bytes32"}],"name":"updateWhitelist2MerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newRoot","type":"bytes32"}],"name":"updateWhitelist3MerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newRoot","type":"bytes32"}],"name":"updateWhitelist4MerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newRoot","type":"bytes32"}],"name":"updateWhitelist5MerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052660aa87bee538000600d556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600e908162000055919062000630565b50610d05600f5560405180608001604052806043815260200162004f03604391396010908162000086919062000630565b507fcc8d70f0ef7875707a27f1a8158d8fd96ec3995f34a774481d7ca11b01f122fc5f1b6011557fc0bcfa936b49f2af68784e63ab7ecfaa53b4235440827fd9b5f1d3c2db7cef3e5f1b6012557fa3826c0a1b29b6f8f763b470ac5e6b544a86c6c483c8ae74bddfe8909c8a53e35f1b6013557f74b0d803383524f1141fa41104f6e2311d7941654e1df4f0a2458eb9a263fcd75f1b6014557f3a619fd9cf6d42cbefd3d3059f18d14fe5e80dc4bcb9a334fc6146d1ca8e0da95f1b6015555f60175f6101000a81548160ff021916908360028111156200016c576200016b62000714565b5b02179055503480156200017d575f80fd5b5060405162004f4638038062004f468339818101604052810190620001a39190620007a6565b806040518060400160405280601481526020017f506570652041726d7920596163687420436c75620000000000000000000000008152506040518060400160405280600481526020017f5041594300000000000000000000000000000000000000000000000000000000815250815f908162000220919062000630565b50806001908162000232919062000630565b5050505f600b5f6101000a81548160ff0219169083151502179055505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620002c1575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620002b89190620007e7565b60405180910390fd5b620002d2816200030760201b60201c565b50600160175f6101000a81548160ff02191690836002811115620002fb57620002fa62000714565b5b02179055505062000802565b5f600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200044857607f821691505b6020821081036200045e576200045d62000403565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620004c27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000485565b620004ce868362000485565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000518620005126200050c84620004e6565b620004ef565b620004e6565b9050919050565b5f819050919050565b6200053383620004f8565b6200054b62000542826200051f565b84845462000491565b825550505050565b5f90565b6200056162000553565b6200056e81848462000528565b505050565b5b818110156200059557620005895f8262000557565b60018101905062000574565b5050565b601f821115620005e457620005ae8162000464565b620005b98462000476565b81016020851015620005c9578190505b620005e1620005d88562000476565b83018262000573565b50505b505050565b5f82821c905092915050565b5f620006065f1984600802620005e9565b1980831691505092915050565b5f620006208383620005f5565b9150826002028217905092915050565b6200063b82620003cc565b67ffffffffffffffff811115620006575762000656620003d6565b5b62000663825462000430565b6200067082828562000599565b5f60209050601f831160018114620006a6575f841562000691578287015190505b6200069d858262000613565b8655506200070c565b601f198416620006b68662000464565b5f5b82811015620006df57848901518255600182019150602085019450602081019050620006b8565b86831015620006ff5784890151620006fb601f891682620005f5565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620007708262000745565b9050919050565b620007828162000764565b81146200078d575f80fd5b50565b5f81519050620007a08162000777565b92915050565b5f60208284031215620007be57620007bd62000741565b5b5f620007cd8482850162000790565b91505092915050565b620007e18162000764565b82525050565b5f602082019050620007fc5f830184620007d6565b92915050565b6146f380620008105f395ff3fe608060405260043610610266575f3560e01c80638da5cb5b11610143578063ba635b53116100b5578063da641f7911610079578063da641f79146108f8578063e985e9c514610934578063ed2aa1c914610970578063f2fde38b14610998578063f425a4b0146109c0578063f4a0a528146109e857610266565b8063ba635b5314610828578063c002d23d1461083e578063c668286214610868578063c87b56dd14610892578063d5abeb01146108ce57610266565b8063ad93d0e111610107578063ad93d0e114610720578063aecbabf81461075c578063b1c9fe6e14610784578063b717cc09146107ae578063b88d4fde146107c4578063ba060bed146107ec57610266565b80638da5cb5b14610640578063909485e21461066a578063939b66df146106a657806395d89b41146106ce578063a22cb465146106f857610266565b806342842e0e116101dc5780636352211e116101a05780636352211e14610558578063641ce1401461059457806370a08231146105b0578063715018a6146105ec57806379f3480c146106025780638456cb591461062a57610266565b806342842e0e146104665780634f6ccce71461048e57806355f804b3146104ca5780635c975abb146104f257806362766dec1461051c57610266565b806318160ddd1161022e57806318160ddd146103705780631a50de1a1461039a57806323b872dd146103d65780632f745c59146103fe5780633ccfd60b1461043a5780633f4ba83a1461045057610266565b806301ffc9a71461026a57806303666579146102a657806306fdde03146102e2578063081812fc1461030c578063095ea7b314610348575b5f80fd5b348015610275575f80fd5b50610290600480360381019061028b91906131ef565b610a10565b60405161029d9190613234565b60405180910390f35b3480156102b1575f80fd5b506102cc60048036038101906102c791906133d0565b610a21565b6040516102d99190613234565b60405180910390f35b3480156102ed575f80fd5b506102f6610a61565b6040516103039190613491565b60405180910390f35b348015610317575f80fd5b50610332600480360381019061032d91906134e4565b610af0565b60405161033f919061354e565b60405180910390f35b348015610353575f80fd5b5061036e60048036038101906103699190613591565b610b0b565b005b34801561037b575f80fd5b50610384610b21565b60405161039191906135de565b60405180910390f35b3480156103a5575f80fd5b506103c060048036038101906103bb91906133d0565b610b2d565b6040516103cd9190613234565b60405180910390f35b3480156103e1575f80fd5b506103fc60048036038101906103f791906135f7565b610b6d565b005b348015610409575f80fd5b50610424600480360381019061041f9190613591565b610c6c565b60405161043191906135de565b60405180910390f35b348015610445575f80fd5b5061044e610d10565b005b34801561045b575f80fd5b50610464610da7565b005b348015610471575f80fd5b5061048c600480360381019061048791906135f7565b610db9565b005b348015610499575f80fd5b506104b460048036038101906104af91906134e4565b610dd8565b6040516104c191906135de565b60405180910390f35b3480156104d5575f80fd5b506104f060048036038101906104eb91906136f7565b610e4a565b005b3480156104fd575f80fd5b50610506610e65565b6040516105139190613234565b60405180910390f35b348015610527575f80fd5b50610542600480360381019061053d919061373e565b610e7a565b60405161054f91906135de565b60405180910390f35b348015610563575f80fd5b5061057e600480360381019061057991906134e4565b610ec0565b60405161058b919061354e565b60405180910390f35b6105ae60048036038101906105a99190613769565b610ed1565b005b3480156105bb575f80fd5b506105d660048036038101906105d1919061373e565b611568565b6040516105e391906135de565b60405180910390f35b3480156105f7575f80fd5b5061060061161e565b005b34801561060d575f80fd5b50610628600480360381019061062391906137d5565b611631565b005b348015610635575f80fd5b5061063e611643565b005b34801561064b575f80fd5b50610654611655565b604051610661919061354e565b60405180910390f35b348015610675575f80fd5b50610690600480360381019061068b91906133d0565b61167e565b60405161069d9190613234565b60405180910390f35b3480156106b1575f80fd5b506106cc60048036038101906106c791906137d5565b6116be565b005b3480156106d9575f80fd5b506106e26116d0565b6040516106ef9190613491565b60405180910390f35b348015610703575f80fd5b5061071e6004803603810190610719919061382a565b611760565b005b34801561072b575f80fd5b50610746600480360381019061074191906133d0565b611776565b6040516107539190613234565b60405180910390f35b348015610767575f80fd5b50610782600480360381019061077d91906137d5565b6117b6565b005b34801561078f575f80fd5b506107986117c8565b6040516107a591906138db565b60405180910390f35b3480156107b9575f80fd5b506107c26117da565b005b3480156107cf575f80fd5b506107ea60048036038101906107e59190613992565b61180e565b005b3480156107f7575f80fd5b50610812600480360381019061080d919061373e565b61182b565b60405161081f91906135de565b60405180910390f35b348015610833575f80fd5b5061083c611840565b005b348015610849575f80fd5b50610852611874565b60405161085f91906135de565b60405180910390f35b348015610873575f80fd5b5061087c61187a565b6040516108899190613491565b60405180910390f35b34801561089d575f80fd5b506108b860048036038101906108b391906134e4565b611906565b6040516108c59190613491565b60405180910390f35b3480156108d9575f80fd5b506108e26119c9565b6040516108ef91906135de565b60405180910390f35b348015610903575f80fd5b5061091e600480360381019061091991906133d0565b6119cf565b60405161092b9190613234565b60405180910390f35b34801561093f575f80fd5b5061095a60048036038101906109559190613a12565b611a0f565b6040516109679190613234565b60405180910390f35b34801561097b575f80fd5b50610996600480360381019061099191906137d5565b611a9d565b005b3480156109a3575f80fd5b506109be60048036038101906109b9919061373e565b611aaf565b005b3480156109cb575f80fd5b506109e660048036038101906109e191906137d5565b611b33565b005b3480156109f3575f80fd5b50610a0e6004803603810190610a0991906134e4565b611b45565b005b5f610a1a82611b57565b9050919050565b5f8033604051602001610a349190613a95565b604051602081830303815290604052805190602001209050610a598360145483611bb7565b915050919050565b60605f8054610a6f90613adc565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9b90613adc565b8015610ae65780601f10610abd57610100808354040283529160200191610ae6565b820191905f5260205f20905b815481529060010190602001808311610ac957829003601f168201915b5050505050905090565b5f610afa82611bcd565b50610b0482611c53565b9050919050565b610b1d8282610b18611c8c565b611c93565b5050565b5f600880549050905090565b5f8033604051602001610b409190613a95565b604051602081830303815290604052805190602001209050610b658360115483611bb7565b915050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bdd575f6040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401610bd4919061354e565b60405180910390fd5b5f610bf08383610beb611c8c565b611ca5565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c66578382826040517f64283d7b000000000000000000000000000000000000000000000000000000008152600401610c5d93929190613b0c565b60405180910390fd5b50505050565b5f610c7683611568565b8210610cbb5782826040517fa57d13dc000000000000000000000000000000000000000000000000000000008152600401610cb2929190613b41565b60405180910390fd5b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f2054905092915050565b610d18611cba565b5f4711610d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5190613bb2565b60405180910390fd5b610d62611655565b73ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610da4573d5f803e3d5ffd5b50565b610daf611cba565b610db7611d41565b565b610dd383838360405180602001604052805f81525061180e565b505050565b5f610de1610b21565b8210610e26575f826040517fa57d13dc000000000000000000000000000000000000000000000000000000008152600401610e1d929190613b41565b60405180910390fd5b60088281548110610e3a57610e39613bd0565b5b905f5260205f2001549050919050565b610e52611cba565b8060109081610e619190613d9a565b5050565b5f600b5f9054906101000a900460ff16905090565b5f60165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f610eca82611bcd565b9050919050565b610ed9610e65565b15610f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1090613ed9565b60405180910390fd5b5f8211610f24575f80fd5b5f610f2d610b21565b9050600f548382610f3e9190613f24565b1115610f48575f80fd5b60016002811115610f5c57610f5b613868565b5b60175f9054906101000a900460ff166002811115610f7d57610f7c613868565b5b036112e157610f8b826119cf565b156110215760028360165f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610fdb9190613f24565b111561101c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101390613fc7565b60405180910390fd5b6112dc565b61102a82611776565b156110c05760038360165f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461107a9190613f24565b11156110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b290614055565b60405180910390fd5b6112db565b6110c982610a21565b1561115f5760048360165f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546111199190613f24565b111561115a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611151906140e3565b60405180910390fd5b6112da565b6111688261167e565b156111fe5760058360165f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546111b89190613f24565b11156111f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f090614171565b60405180910390fd5b6112d9565b61120782610b2d565b1561129d57600f8360165f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546112579190613f24565b1115611298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128f906141ff565b60405180910390fd5b6112d8565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cf90614267565b60405180910390fd5b5b5b5b5b6113e6565b6002808111156112f4576112f3613868565b5b60175f9054906101000a900460ff16600281111561131557611314613868565b5b036113aa57611322611655565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146113a55782600d546113629190614285565b3410156113a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139b90614310565b60405180910390fd5b5b6113e5565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dc90614378565b60405180910390fd5b5b5f600190505b83811161146d576114088582846114039190613f24565b611da2565b60165f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f81548092919061145590614396565b9190505550808061146590614396565b9150506113ec565b5060028081111561148157611480613868565b5b60175f9054906101000a900460ff1660028111156114a2576114a1613868565b5b1480156114e257506114b2611655565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15611562576114ef611655565b73ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050611561576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115589061444d565b60405180910390fd5b5b50505050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115d9575f6040517f89c62b640000000000000000000000000000000000000000000000000000000081526004016115d0919061354e565b60405180910390fd5b60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b611626611cba565b61162f5f611dbf565b565b611639611cba565b8060148190555050565b61164b611cba565b611653611e84565b565b5f600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f80336040516020016116919190613a95565b6040516020818303038152906040528051906020012090506116b68360155483611bb7565b915050919050565b6116c6611cba565b8060158190555050565b6060600180546116df90613adc565b80601f016020809104026020016040519081016040528092919081815260200182805461170b90613adc565b80156117565780601f1061172d57610100808354040283529160200191611756565b820191905f5260205f20905b81548152906001019060200180831161173957829003601f168201915b5050505050905090565b61177261176b611c8c565b8383611ee6565b5050565b5f80336040516020016117899190613a95565b6040516020818303038152906040528051906020012090506117ae8360135483611bb7565b915050919050565b6117be611cba565b8060128190555050565b60175f9054906101000a900460ff1681565b6117e2611cba565b600160175f6101000a81548160ff0219169083600281111561180757611806613868565b5b0217905550565b611819848484610b6d565b6118258484848461204f565b50505050565b6016602052805f5260405f205f915090505481565b611848611cba565b600260175f6101000a81548160ff0219169083600281111561186d5761186c613868565b5b0217905550565b600d5481565b600e805461188790613adc565b80601f01602080910402602001604051908101604052809291908181526020018280546118b390613adc565b80156118fe5780601f106118d5576101008083540402835291602001916118fe565b820191905f5260205f20905b8154815290600101906020018083116118e157829003601f168201915b505050505081565b60605f6010805461191690613adc565b80601f016020809104026020016040519081016040528092919081815260200182805461194290613adc565b801561198d5780601f106119645761010080835404028352916020019161198d565b820191905f5260205f20905b81548152906001019060200180831161197057829003601f168201915b505050505090508061199e84612201565b600e6040516020016119b293929190614525565b604051602081830303815290604052915050919050565b600f5481565b5f80336040516020016119e29190613a95565b604051602081830303815290604052805190602001209050611a078360125483611bb7565b915050919050565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b611aa5611cba565b8060118190555050565b611ab7611cba565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b27575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401611b1e919061354e565b60405180910390fd5b611b3081611dbf565b50565b611b3b611cba565b8060138190555050565b611b4d611cba565b80600d8190555050565b5f634906490660e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611bb05750611baf826122cb565b5b9050919050565b5f82611bc38584612344565b1490509392505050565b5f80611bd883612392565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c4a57826040517f7e273289000000000000000000000000000000000000000000000000000000008152600401611c4191906135de565b60405180910390fd5b80915050919050565b5f60045f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f33905090565b611ca083838360016123cb565b505050565b5f611cb184848461258a565b90509392505050565b611cc2611c8c565b73ffffffffffffffffffffffffffffffffffffffff16611ce0611655565b73ffffffffffffffffffffffffffffffffffffffff1614611d3f57611d03611c8c565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611d36919061354e565b60405180910390fd5b565b611d496125a7565b5f600b5f6101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611d8b611c8c565b604051611d98919061354e565b60405180910390a1565b611dbb828260405180602001604052805f8152506125e7565b5050565b5f600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e8c612602565b6001600b5f6101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611ecf611c8c565b604051611edc919061354e565b60405180910390a1565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f5657816040517f5b08ba18000000000000000000000000000000000000000000000000000000008152600401611f4d919061354e565b60405180910390fd5b8060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120429190613234565b60405180910390a3505050565b5f8373ffffffffffffffffffffffffffffffffffffffff163b11156121fb578273ffffffffffffffffffffffffffffffffffffffff1663150b7a02612092611c8c565b8685856040518563ffffffff1660e01b81526004016120b494939291906145a7565b6020604051808303815f875af19250505080156120ef57506040513d601f19601f820116820180604052508101906120ec9190614605565b60015b612170573d805f811461211d576040519150601f19603f3d011682016040523d82523d5f602084013e612122565b606091505b505f81510361216857836040517f64a0ae9200000000000000000000000000000000000000000000000000000000815260040161215f919061354e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146121f957836040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016121f0919061354e565b60405180910390fd5b505b50505050565b60605f600161220f84612643565b0190505f8167ffffffffffffffff81111561222d5761222c613261565b5b6040519080825280601f01601f19166020018201604052801561225f5781602001600182028036833780820191505090505b5090505f82602001820190505b6001156122c0578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816122b5576122b4614630565b5b0494505f850361226c575b819350505050919050565b5f7f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061233d575061233c82612794565b5b9050919050565b5f808290505f5b8451811015612387576123788286838151811061236b5761236a613bd0565b5b6020026020010151612875565b9150808060010191505061234b565b508091505092915050565b5f60025f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b808061240357505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612535575f61241284611bcd565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561247c57508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b801561248f575061248d8184611a0f565b155b156124d157826040517fa9fbf51f0000000000000000000000000000000000000000000000000000000081526004016124c8919061354e565b60405180910390fd5b811561253357838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b8360045f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b5f612593612602565b61259e84848461289f565b90509392505050565b6125af610e65565b6125e5576040517f8dfc202b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b6125f183836129b9565b6125fd5f84848461204f565b505050565b61260a610e65565b15612641576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061269f577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161269557612694614630565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106126dc576d04ee2d6d415b85acef810000000083816126d2576126d1614630565b5b0492506020810190505b662386f26fc10000831061270b57662386f26fc10000838161270157612700614630565b5b0492506010810190505b6305f5e1008310612734576305f5e100838161272a57612729614630565b5b0492506008810190505b612710831061275957612710838161274f5761274e614630565b5b0492506004810190505b6064831061277c576064838161277257612771614630565b5b0492506002810190505b600a831061278b576001810190505b80915050919050565b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061285e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061286e575061286d82612aac565b5b9050919050565b5f81831061288c576128878284612b15565b612897565b6128968383612b15565b5b905092915050565b5f806128ac858585612b29565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036128ef576128ea84612d34565b61292e565b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461292d5761292c8185612d78565b5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361296f5761296a84612ec2565b6129ae565b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146129ad576129ac8585612f82565b5b5b809150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a29575f6040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401612a20919061354e565b60405180910390fd5b5f612a3583835f611ca5565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612aa7575f6040517f73c6ac6e000000000000000000000000000000000000000000000000000000008152600401612a9e919061354e565b60405180910390fd5b505050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f825f528160205260405f20905092915050565b5f80612b3484612392565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612b7557612b74818486613006565b5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612c0057612bb45f855f806123cb565b600160035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825403925050819055505b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614612c7f57600160035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8460025f8681526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4809150509392505050565b60088054905060095f8381526020019081526020015f2081905550600881908060018154018082558091505060019003905f5260205f20015f909190919091505550565b5f612d8283611568565b90505f60075f8481526020019081526020015f20549050818114612e59575f60065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f205490508060065f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f20819055508160075f8381526020019081526020015f2081905550505b60075f8481526020019081526020015f205f905560065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f205f905550505050565b5f6001600880549050612ed5919061465d565b90505f60095f8481526020019081526020015f205490505f60088381548110612f0157612f00613bd0565b5b905f5260205f20015490508060088381548110612f2157612f20613bd0565b5b905f5260205f2001819055508160095f8381526020019081526020015f208190555060095f8581526020019081526020015f205f90556008805480612f6957612f68614690565b5b600190038181905f5260205f20015f9055905550505050565b5f6001612f8e84611568565b612f98919061465d565b90508160065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f20819055508060075f8481526020019081526020015f2081905550505050565b6130118383836130c9565b6130c4575f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361308557806040517f7e27328900000000000000000000000000000000000000000000000000000000815260040161307c91906135de565b60405180910390fd5b81816040517f177e802f0000000000000000000000000000000000000000000000000000000081526004016130bb929190613b41565b60405180910390fd5b505050565b5f8073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561318057508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061314157506131408484611a0f565b5b8061317f57508273ffffffffffffffffffffffffffffffffffffffff1661316783611c53565b73ffffffffffffffffffffffffffffffffffffffff16145b5b90509392505050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131ce8161319a565b81146131d8575f80fd5b50565b5f813590506131e9816131c5565b92915050565b5f6020828403121561320457613203613192565b5b5f613211848285016131db565b91505092915050565b5f8115159050919050565b61322e8161321a565b82525050565b5f6020820190506132475f830184613225565b92915050565b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61329782613251565b810181811067ffffffffffffffff821117156132b6576132b5613261565b5b80604052505050565b5f6132c8613189565b90506132d4828261328e565b919050565b5f67ffffffffffffffff8211156132f3576132f2613261565b5b602082029050602081019050919050565b5f80fd5b5f819050919050565b61331a81613308565b8114613324575f80fd5b50565b5f8135905061333581613311565b92915050565b5f61334d613348846132d9565b6132bf565b905080838252602082019050602084028301858111156133705761336f613304565b5b835b8181101561339957806133858882613327565b845260208401935050602081019050613372565b5050509392505050565b5f82601f8301126133b7576133b661324d565b5b81356133c784826020860161333b565b91505092915050565b5f602082840312156133e5576133e4613192565b5b5f82013567ffffffffffffffff81111561340257613401613196565b5b61340e848285016133a3565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561344e578082015181840152602081019050613433565b5f8484015250505050565b5f61346382613417565b61346d8185613421565b935061347d818560208601613431565b61348681613251565b840191505092915050565b5f6020820190508181035f8301526134a98184613459565b905092915050565b5f819050919050565b6134c3816134b1565b81146134cd575f80fd5b50565b5f813590506134de816134ba565b92915050565b5f602082840312156134f9576134f8613192565b5b5f613506848285016134d0565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6135388261350f565b9050919050565b6135488161352e565b82525050565b5f6020820190506135615f83018461353f565b92915050565b6135708161352e565b811461357a575f80fd5b50565b5f8135905061358b81613567565b92915050565b5f80604083850312156135a7576135a6613192565b5b5f6135b48582860161357d565b92505060206135c5858286016134d0565b9150509250929050565b6135d8816134b1565b82525050565b5f6020820190506135f15f8301846135cf565b92915050565b5f805f6060848603121561360e5761360d613192565b5b5f61361b8682870161357d565b935050602061362c8682870161357d565b925050604061363d868287016134d0565b9150509250925092565b5f80fd5b5f67ffffffffffffffff82111561366557613664613261565b5b61366e82613251565b9050602081019050919050565b828183375f83830152505050565b5f61369b6136968461364b565b6132bf565b9050828152602081018484840111156136b7576136b6613647565b5b6136c284828561367b565b509392505050565b5f82601f8301126136de576136dd61324d565b5b81356136ee848260208601613689565b91505092915050565b5f6020828403121561370c5761370b613192565b5b5f82013567ffffffffffffffff81111561372957613728613196565b5b613735848285016136ca565b91505092915050565b5f6020828403121561375357613752613192565b5b5f6137608482850161357d565b91505092915050565b5f805f606084860312156137805761377f613192565b5b5f61378d8682870161357d565b935050602061379e868287016134d0565b925050604084013567ffffffffffffffff8111156137bf576137be613196565b5b6137cb868287016133a3565b9150509250925092565b5f602082840312156137ea576137e9613192565b5b5f6137f784828501613327565b91505092915050565b6138098161321a565b8114613813575f80fd5b50565b5f8135905061382481613800565b92915050565b5f80604083850312156138405761383f613192565b5b5f61384d8582860161357d565b925050602061385e85828601613816565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b600381106138a6576138a5613868565b5b50565b5f8190506138b682613895565b919050565b5f6138c5826138a9565b9050919050565b6138d5816138bb565b82525050565b5f6020820190506138ee5f8301846138cc565b92915050565b5f67ffffffffffffffff82111561390e5761390d613261565b5b61391782613251565b9050602081019050919050565b5f613936613931846138f4565b6132bf565b90508281526020810184848401111561395257613951613647565b5b61395d84828561367b565b509392505050565b5f82601f8301126139795761397861324d565b5b8135613989848260208601613924565b91505092915050565b5f805f80608085870312156139aa576139a9613192565b5b5f6139b78782880161357d565b94505060206139c88782880161357d565b93505060406139d9878288016134d0565b925050606085013567ffffffffffffffff8111156139fa576139f9613196565b5b613a0687828801613965565b91505092959194509250565b5f8060408385031215613a2857613a27613192565b5b5f613a358582860161357d565b9250506020613a468582860161357d565b9150509250929050565b5f8160601b9050919050565b5f613a6682613a50565b9050919050565b5f613a7782613a5c565b9050919050565b613a8f613a8a8261352e565b613a6d565b82525050565b5f613aa08284613a7e565b60148201915081905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680613af357607f821691505b602082108103613b0657613b05613aaf565b5b50919050565b5f606082019050613b1f5f83018661353f565b613b2c60208301856135cf565b613b39604083018461353f565b949350505050565b5f604082019050613b545f83018561353f565b613b6160208301846135cf565b9392505050565b7f42616c616e6365206973207a65726f00000000000000000000000000000000005f82015250565b5f613b9c600f83613421565b9150613ba782613b68565b602082019050919050565b5f6020820190508181035f830152613bc981613b90565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302613c597fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613c1e565b613c638683613c1e565b95508019841693508086168417925050509392505050565b5f819050919050565b5f613c9e613c99613c94846134b1565b613c7b565b6134b1565b9050919050565b5f819050919050565b613cb783613c84565b613ccb613cc382613ca5565b848454613c2a565b825550505050565b5f90565b613cdf613cd3565b613cea818484613cae565b505050565b5b81811015613d0d57613d025f82613cd7565b600181019050613cf0565b5050565b601f821115613d5257613d2381613bfd565b613d2c84613c0f565b81016020851015613d3b578190505b613d4f613d4785613c0f565b830182613cef565b50505b505050565b5f82821c905092915050565b5f613d725f1984600802613d57565b1980831691505092915050565b5f613d8a8383613d63565b9150826002028217905092915050565b613da382613417565b67ffffffffffffffff811115613dbc57613dbb613261565b5b613dc68254613adc565b613dd1828285613d11565b5f60209050601f831160018114613e02575f8415613df0578287015190505b613dfa8582613d7f565b865550613e61565b601f198416613e1086613bfd565b5f5b82811015613e3757848901518255600182019150602085019450602081019050613e12565b86831015613e545784890151613e50601f891682613d63565b8355505b6001600288020188555050505b505050505050565b7f436f6e7472616374206973207061757365642c20706c656173652074727920615f8201527f6761696e206c6174657200000000000000000000000000000000000000000000602082015250565b5f613ec3602a83613421565b9150613ece82613e69565b604082019050919050565b5f6020820190508181035f830152613ef081613eb7565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613f2e826134b1565b9150613f39836134b1565b9250828201905080821115613f5157613f50613ef7565b5b92915050565b7f4578636565646564206d6178696d756d20686f6c64696e6720666f72207768695f8201527f74656c6973742032000000000000000000000000000000000000000000000000602082015250565b5f613fb1602883613421565b9150613fbc82613f57565b604082019050919050565b5f6020820190508181035f830152613fde81613fa5565b9050919050565b7f4578636565646564206d6178696d756d20686f6c64696e6720666f72207768695f8201527f74656c6973742033000000000000000000000000000000000000000000000000602082015250565b5f61403f602883613421565b915061404a82613fe5565b604082019050919050565b5f6020820190508181035f83015261406c81614033565b9050919050565b7f4578636565646564206d6178696d756d20686f6c64696e6720666f72207768695f8201527f74656c6973742034000000000000000000000000000000000000000000000000602082015250565b5f6140cd602883613421565b91506140d882614073565b604082019050919050565b5f6020820190508181035f8301526140fa816140c1565b9050919050565b7f4578636565646564206d6178696d756d20686f6c64696e6720666f72207768695f8201527f74656c6973742035000000000000000000000000000000000000000000000000602082015250565b5f61415b602883613421565b915061416682614101565b604082019050919050565b5f6020820190508181035f8301526141888161414f565b9050919050565b7f4578636565646564206d6178696d756d20686f6c64696e6720666f72207465615f8201527f6d2077686974656c697374203135000000000000000000000000000000000000602082015250565b5f6141e9602e83613421565b91506141f48261418f565b604082019050919050565b5f6020820190508181035f830152614216816141dd565b9050919050565b7f4e6f742077686974656c697374656400000000000000000000000000000000005f82015250565b5f614251600f83613421565b915061425c8261421d565b602082019050919050565b5f6020820190508181035f83015261427e81614245565b9050919050565b5f61428f826134b1565b915061429a836134b1565b92508282026142a8816134b1565b915082820484148315176142bf576142be613ef7565b5b5092915050565b7f496e73756666696369656e742066756e647320746f206d696e740000000000005f82015250565b5f6142fa601a83613421565b9150614305826142c6565b602082019050919050565b5f6020820190508181035f830152614327816142ee565b9050919050565b7f4d696e74696e6720706861736520686173206e6f7420737461727465640000005f82015250565b5f614362601d83613421565b915061436d8261432e565b602082019050919050565b5f6020820190508181035f83015261438f81614356565b9050919050565b5f6143a0826134b1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036143d2576143d1613ef7565b5b600182019050919050565b7f4661696c656420746f207472616e736665722066756e647320746f206f776e655f8201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b5f614437602183613421565b9150614442826143dd565b604082019050919050565b5f6020820190508181035f8301526144648161442b565b9050919050565b5f81905092915050565b5f61447f82613417565b614489818561446b565b9350614499818560208601613431565b80840191505092915050565b5f81546144b181613adc565b6144bb818661446b565b9450600182165f81146144d557600181146144ea5761451c565b60ff198316865281151582028601935061451c565b6144f385613bfd565b5f5b83811015614514578154818901526001820191506020810190506144f5565b838801955050505b50505092915050565b5f6145308286614475565b915061453c8285614475565b915061454882846144a5565b9150819050949350505050565b5f81519050919050565b5f82825260208201905092915050565b5f61457982614555565b614583818561455f565b9350614593818560208601613431565b61459c81613251565b840191505092915050565b5f6080820190506145ba5f83018761353f565b6145c7602083018661353f565b6145d460408301856135cf565b81810360608301526145e6818461456f565b905095945050505050565b5f815190506145ff816131c5565b92915050565b5f6020828403121561461a57614619613192565b5b5f614627848285016145f1565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f614667826134b1565b9150614672836134b1565b925082820390508181111561468a57614689613ef7565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffdfea2646970667358221220d0f7a20abfba3d89de212d66c956821f41d07698e9a15090da89df39e974337f64736f6c63430008160033697066733a2f2f626166796265696171367373696a6c6462663433696f69796173646a6d6c783566336c6b7962323662786976746d766178357662347a78657a6f652f0000000000000000000000005aaf1313ff73ffd7a3b63e6d2ab628dcfd480a3e

Deployed Bytecode

0x608060405260043610610266575f3560e01c80638da5cb5b11610143578063ba635b53116100b5578063da641f7911610079578063da641f79146108f8578063e985e9c514610934578063ed2aa1c914610970578063f2fde38b14610998578063f425a4b0146109c0578063f4a0a528146109e857610266565b8063ba635b5314610828578063c002d23d1461083e578063c668286214610868578063c87b56dd14610892578063d5abeb01146108ce57610266565b8063ad93d0e111610107578063ad93d0e114610720578063aecbabf81461075c578063b1c9fe6e14610784578063b717cc09146107ae578063b88d4fde146107c4578063ba060bed146107ec57610266565b80638da5cb5b14610640578063909485e21461066a578063939b66df146106a657806395d89b41146106ce578063a22cb465146106f857610266565b806342842e0e116101dc5780636352211e116101a05780636352211e14610558578063641ce1401461059457806370a08231146105b0578063715018a6146105ec57806379f3480c146106025780638456cb591461062a57610266565b806342842e0e146104665780634f6ccce71461048e57806355f804b3146104ca5780635c975abb146104f257806362766dec1461051c57610266565b806318160ddd1161022e57806318160ddd146103705780631a50de1a1461039a57806323b872dd146103d65780632f745c59146103fe5780633ccfd60b1461043a5780633f4ba83a1461045057610266565b806301ffc9a71461026a57806303666579146102a657806306fdde03146102e2578063081812fc1461030c578063095ea7b314610348575b5f80fd5b348015610275575f80fd5b50610290600480360381019061028b91906131ef565b610a10565b60405161029d9190613234565b60405180910390f35b3480156102b1575f80fd5b506102cc60048036038101906102c791906133d0565b610a21565b6040516102d99190613234565b60405180910390f35b3480156102ed575f80fd5b506102f6610a61565b6040516103039190613491565b60405180910390f35b348015610317575f80fd5b50610332600480360381019061032d91906134e4565b610af0565b60405161033f919061354e565b60405180910390f35b348015610353575f80fd5b5061036e60048036038101906103699190613591565b610b0b565b005b34801561037b575f80fd5b50610384610b21565b60405161039191906135de565b60405180910390f35b3480156103a5575f80fd5b506103c060048036038101906103bb91906133d0565b610b2d565b6040516103cd9190613234565b60405180910390f35b3480156103e1575f80fd5b506103fc60048036038101906103f791906135f7565b610b6d565b005b348015610409575f80fd5b50610424600480360381019061041f9190613591565b610c6c565b60405161043191906135de565b60405180910390f35b348015610445575f80fd5b5061044e610d10565b005b34801561045b575f80fd5b50610464610da7565b005b348015610471575f80fd5b5061048c600480360381019061048791906135f7565b610db9565b005b348015610499575f80fd5b506104b460048036038101906104af91906134e4565b610dd8565b6040516104c191906135de565b60405180910390f35b3480156104d5575f80fd5b506104f060048036038101906104eb91906136f7565b610e4a565b005b3480156104fd575f80fd5b50610506610e65565b6040516105139190613234565b60405180910390f35b348015610527575f80fd5b50610542600480360381019061053d919061373e565b610e7a565b60405161054f91906135de565b60405180910390f35b348015610563575f80fd5b5061057e600480360381019061057991906134e4565b610ec0565b60405161058b919061354e565b60405180910390f35b6105ae60048036038101906105a99190613769565b610ed1565b005b3480156105bb575f80fd5b506105d660048036038101906105d1919061373e565b611568565b6040516105e391906135de565b60405180910390f35b3480156105f7575f80fd5b5061060061161e565b005b34801561060d575f80fd5b50610628600480360381019061062391906137d5565b611631565b005b348015610635575f80fd5b5061063e611643565b005b34801561064b575f80fd5b50610654611655565b604051610661919061354e565b60405180910390f35b348015610675575f80fd5b50610690600480360381019061068b91906133d0565b61167e565b60405161069d9190613234565b60405180910390f35b3480156106b1575f80fd5b506106cc60048036038101906106c791906137d5565b6116be565b005b3480156106d9575f80fd5b506106e26116d0565b6040516106ef9190613491565b60405180910390f35b348015610703575f80fd5b5061071e6004803603810190610719919061382a565b611760565b005b34801561072b575f80fd5b50610746600480360381019061074191906133d0565b611776565b6040516107539190613234565b60405180910390f35b348015610767575f80fd5b50610782600480360381019061077d91906137d5565b6117b6565b005b34801561078f575f80fd5b506107986117c8565b6040516107a591906138db565b60405180910390f35b3480156107b9575f80fd5b506107c26117da565b005b3480156107cf575f80fd5b506107ea60048036038101906107e59190613992565b61180e565b005b3480156107f7575f80fd5b50610812600480360381019061080d919061373e565b61182b565b60405161081f91906135de565b60405180910390f35b348015610833575f80fd5b5061083c611840565b005b348015610849575f80fd5b50610852611874565b60405161085f91906135de565b60405180910390f35b348015610873575f80fd5b5061087c61187a565b6040516108899190613491565b60405180910390f35b34801561089d575f80fd5b506108b860048036038101906108b391906134e4565b611906565b6040516108c59190613491565b60405180910390f35b3480156108d9575f80fd5b506108e26119c9565b6040516108ef91906135de565b60405180910390f35b348015610903575f80fd5b5061091e600480360381019061091991906133d0565b6119cf565b60405161092b9190613234565b60405180910390f35b34801561093f575f80fd5b5061095a60048036038101906109559190613a12565b611a0f565b6040516109679190613234565b60405180910390f35b34801561097b575f80fd5b50610996600480360381019061099191906137d5565b611a9d565b005b3480156109a3575f80fd5b506109be60048036038101906109b9919061373e565b611aaf565b005b3480156109cb575f80fd5b506109e660048036038101906109e191906137d5565b611b33565b005b3480156109f3575f80fd5b50610a0e6004803603810190610a0991906134e4565b611b45565b005b5f610a1a82611b57565b9050919050565b5f8033604051602001610a349190613a95565b604051602081830303815290604052805190602001209050610a598360145483611bb7565b915050919050565b60605f8054610a6f90613adc565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9b90613adc565b8015610ae65780601f10610abd57610100808354040283529160200191610ae6565b820191905f5260205f20905b815481529060010190602001808311610ac957829003601f168201915b5050505050905090565b5f610afa82611bcd565b50610b0482611c53565b9050919050565b610b1d8282610b18611c8c565b611c93565b5050565b5f600880549050905090565b5f8033604051602001610b409190613a95565b604051602081830303815290604052805190602001209050610b658360115483611bb7565b915050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bdd575f6040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401610bd4919061354e565b60405180910390fd5b5f610bf08383610beb611c8c565b611ca5565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c66578382826040517f64283d7b000000000000000000000000000000000000000000000000000000008152600401610c5d93929190613b0c565b60405180910390fd5b50505050565b5f610c7683611568565b8210610cbb5782826040517fa57d13dc000000000000000000000000000000000000000000000000000000008152600401610cb2929190613b41565b60405180910390fd5b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f2054905092915050565b610d18611cba565b5f4711610d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5190613bb2565b60405180910390fd5b610d62611655565b73ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610da4573d5f803e3d5ffd5b50565b610daf611cba565b610db7611d41565b565b610dd383838360405180602001604052805f81525061180e565b505050565b5f610de1610b21565b8210610e26575f826040517fa57d13dc000000000000000000000000000000000000000000000000000000008152600401610e1d929190613b41565b60405180910390fd5b60088281548110610e3a57610e39613bd0565b5b905f5260205f2001549050919050565b610e52611cba565b8060109081610e619190613d9a565b5050565b5f600b5f9054906101000a900460ff16905090565b5f60165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f610eca82611bcd565b9050919050565b610ed9610e65565b15610f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1090613ed9565b60405180910390fd5b5f8211610f24575f80fd5b5f610f2d610b21565b9050600f548382610f3e9190613f24565b1115610f48575f80fd5b60016002811115610f5c57610f5b613868565b5b60175f9054906101000a900460ff166002811115610f7d57610f7c613868565b5b036112e157610f8b826119cf565b156110215760028360165f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610fdb9190613f24565b111561101c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101390613fc7565b60405180910390fd5b6112dc565b61102a82611776565b156110c05760038360165f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461107a9190613f24565b11156110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b290614055565b60405180910390fd5b6112db565b6110c982610a21565b1561115f5760048360165f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546111199190613f24565b111561115a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611151906140e3565b60405180910390fd5b6112da565b6111688261167e565b156111fe5760058360165f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546111b89190613f24565b11156111f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f090614171565b60405180910390fd5b6112d9565b61120782610b2d565b1561129d57600f8360165f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546112579190613f24565b1115611298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128f906141ff565b60405180910390fd5b6112d8565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cf90614267565b60405180910390fd5b5b5b5b5b6113e6565b6002808111156112f4576112f3613868565b5b60175f9054906101000a900460ff16600281111561131557611314613868565b5b036113aa57611322611655565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146113a55782600d546113629190614285565b3410156113a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139b90614310565b60405180910390fd5b5b6113e5565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dc90614378565b60405180910390fd5b5b5f600190505b83811161146d576114088582846114039190613f24565b611da2565b60165f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f81548092919061145590614396565b9190505550808061146590614396565b9150506113ec565b5060028081111561148157611480613868565b5b60175f9054906101000a900460ff1660028111156114a2576114a1613868565b5b1480156114e257506114b2611655565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15611562576114ef611655565b73ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050611561576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115589061444d565b60405180910390fd5b5b50505050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115d9575f6040517f89c62b640000000000000000000000000000000000000000000000000000000081526004016115d0919061354e565b60405180910390fd5b60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b611626611cba565b61162f5f611dbf565b565b611639611cba565b8060148190555050565b61164b611cba565b611653611e84565b565b5f600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f80336040516020016116919190613a95565b6040516020818303038152906040528051906020012090506116b68360155483611bb7565b915050919050565b6116c6611cba565b8060158190555050565b6060600180546116df90613adc565b80601f016020809104026020016040519081016040528092919081815260200182805461170b90613adc565b80156117565780601f1061172d57610100808354040283529160200191611756565b820191905f5260205f20905b81548152906001019060200180831161173957829003601f168201915b5050505050905090565b61177261176b611c8c565b8383611ee6565b5050565b5f80336040516020016117899190613a95565b6040516020818303038152906040528051906020012090506117ae8360135483611bb7565b915050919050565b6117be611cba565b8060128190555050565b60175f9054906101000a900460ff1681565b6117e2611cba565b600160175f6101000a81548160ff0219169083600281111561180757611806613868565b5b0217905550565b611819848484610b6d565b6118258484848461204f565b50505050565b6016602052805f5260405f205f915090505481565b611848611cba565b600260175f6101000a81548160ff0219169083600281111561186d5761186c613868565b5b0217905550565b600d5481565b600e805461188790613adc565b80601f01602080910402602001604051908101604052809291908181526020018280546118b390613adc565b80156118fe5780601f106118d5576101008083540402835291602001916118fe565b820191905f5260205f20905b8154815290600101906020018083116118e157829003601f168201915b505050505081565b60605f6010805461191690613adc565b80601f016020809104026020016040519081016040528092919081815260200182805461194290613adc565b801561198d5780601f106119645761010080835404028352916020019161198d565b820191905f5260205f20905b81548152906001019060200180831161197057829003601f168201915b505050505090508061199e84612201565b600e6040516020016119b293929190614525565b604051602081830303815290604052915050919050565b600f5481565b5f80336040516020016119e29190613a95565b604051602081830303815290604052805190602001209050611a078360125483611bb7565b915050919050565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b611aa5611cba565b8060118190555050565b611ab7611cba565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b27575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401611b1e919061354e565b60405180910390fd5b611b3081611dbf565b50565b611b3b611cba565b8060138190555050565b611b4d611cba565b80600d8190555050565b5f634906490660e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611bb05750611baf826122cb565b5b9050919050565b5f82611bc38584612344565b1490509392505050565b5f80611bd883612392565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c4a57826040517f7e273289000000000000000000000000000000000000000000000000000000008152600401611c4191906135de565b60405180910390fd5b80915050919050565b5f60045f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f33905090565b611ca083838360016123cb565b505050565b5f611cb184848461258a565b90509392505050565b611cc2611c8c565b73ffffffffffffffffffffffffffffffffffffffff16611ce0611655565b73ffffffffffffffffffffffffffffffffffffffff1614611d3f57611d03611c8c565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611d36919061354e565b60405180910390fd5b565b611d496125a7565b5f600b5f6101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611d8b611c8c565b604051611d98919061354e565b60405180910390a1565b611dbb828260405180602001604052805f8152506125e7565b5050565b5f600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e8c612602565b6001600b5f6101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611ecf611c8c565b604051611edc919061354e565b60405180910390a1565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f5657816040517f5b08ba18000000000000000000000000000000000000000000000000000000008152600401611f4d919061354e565b60405180910390fd5b8060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120429190613234565b60405180910390a3505050565b5f8373ffffffffffffffffffffffffffffffffffffffff163b11156121fb578273ffffffffffffffffffffffffffffffffffffffff1663150b7a02612092611c8c565b8685856040518563ffffffff1660e01b81526004016120b494939291906145a7565b6020604051808303815f875af19250505080156120ef57506040513d601f19601f820116820180604052508101906120ec9190614605565b60015b612170573d805f811461211d576040519150601f19603f3d011682016040523d82523d5f602084013e612122565b606091505b505f81510361216857836040517f64a0ae9200000000000000000000000000000000000000000000000000000000815260040161215f919061354e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146121f957836040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016121f0919061354e565b60405180910390fd5b505b50505050565b60605f600161220f84612643565b0190505f8167ffffffffffffffff81111561222d5761222c613261565b5b6040519080825280601f01601f19166020018201604052801561225f5781602001600182028036833780820191505090505b5090505f82602001820190505b6001156122c0578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816122b5576122b4614630565b5b0494505f850361226c575b819350505050919050565b5f7f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061233d575061233c82612794565b5b9050919050565b5f808290505f5b8451811015612387576123788286838151811061236b5761236a613bd0565b5b6020026020010151612875565b9150808060010191505061234b565b508091505092915050565b5f60025f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b808061240357505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612535575f61241284611bcd565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561247c57508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b801561248f575061248d8184611a0f565b155b156124d157826040517fa9fbf51f0000000000000000000000000000000000000000000000000000000081526004016124c8919061354e565b60405180910390fd5b811561253357838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b8360045f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b5f612593612602565b61259e84848461289f565b90509392505050565b6125af610e65565b6125e5576040517f8dfc202b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b6125f183836129b9565b6125fd5f84848461204f565b505050565b61260a610e65565b15612641576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061269f577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161269557612694614630565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106126dc576d04ee2d6d415b85acef810000000083816126d2576126d1614630565b5b0492506020810190505b662386f26fc10000831061270b57662386f26fc10000838161270157612700614630565b5b0492506010810190505b6305f5e1008310612734576305f5e100838161272a57612729614630565b5b0492506008810190505b612710831061275957612710838161274f5761274e614630565b5b0492506004810190505b6064831061277c576064838161277257612771614630565b5b0492506002810190505b600a831061278b576001810190505b80915050919050565b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061285e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061286e575061286d82612aac565b5b9050919050565b5f81831061288c576128878284612b15565b612897565b6128968383612b15565b5b905092915050565b5f806128ac858585612b29565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036128ef576128ea84612d34565b61292e565b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461292d5761292c8185612d78565b5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361296f5761296a84612ec2565b6129ae565b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146129ad576129ac8585612f82565b5b5b809150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a29575f6040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401612a20919061354e565b60405180910390fd5b5f612a3583835f611ca5565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612aa7575f6040517f73c6ac6e000000000000000000000000000000000000000000000000000000008152600401612a9e919061354e565b60405180910390fd5b505050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f825f528160205260405f20905092915050565b5f80612b3484612392565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612b7557612b74818486613006565b5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612c0057612bb45f855f806123cb565b600160035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825403925050819055505b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614612c7f57600160035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8460025f8681526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4809150509392505050565b60088054905060095f8381526020019081526020015f2081905550600881908060018154018082558091505060019003905f5260205f20015f909190919091505550565b5f612d8283611568565b90505f60075f8481526020019081526020015f20549050818114612e59575f60065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f205490508060065f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f20819055508160075f8381526020019081526020015f2081905550505b60075f8481526020019081526020015f205f905560065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f205f905550505050565b5f6001600880549050612ed5919061465d565b90505f60095f8481526020019081526020015f205490505f60088381548110612f0157612f00613bd0565b5b905f5260205f20015490508060088381548110612f2157612f20613bd0565b5b905f5260205f2001819055508160095f8381526020019081526020015f208190555060095f8581526020019081526020015f205f90556008805480612f6957612f68614690565b5b600190038181905f5260205f20015f9055905550505050565b5f6001612f8e84611568565b612f98919061465d565b90508160065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f20819055508060075f8481526020019081526020015f2081905550505050565b6130118383836130c9565b6130c4575f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361308557806040517f7e27328900000000000000000000000000000000000000000000000000000000815260040161307c91906135de565b60405180910390fd5b81816040517f177e802f0000000000000000000000000000000000000000000000000000000081526004016130bb929190613b41565b60405180910390fd5b505050565b5f8073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561318057508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061314157506131408484611a0f565b5b8061317f57508273ffffffffffffffffffffffffffffffffffffffff1661316783611c53565b73ffffffffffffffffffffffffffffffffffffffff16145b5b90509392505050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131ce8161319a565b81146131d8575f80fd5b50565b5f813590506131e9816131c5565b92915050565b5f6020828403121561320457613203613192565b5b5f613211848285016131db565b91505092915050565b5f8115159050919050565b61322e8161321a565b82525050565b5f6020820190506132475f830184613225565b92915050565b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61329782613251565b810181811067ffffffffffffffff821117156132b6576132b5613261565b5b80604052505050565b5f6132c8613189565b90506132d4828261328e565b919050565b5f67ffffffffffffffff8211156132f3576132f2613261565b5b602082029050602081019050919050565b5f80fd5b5f819050919050565b61331a81613308565b8114613324575f80fd5b50565b5f8135905061333581613311565b92915050565b5f61334d613348846132d9565b6132bf565b905080838252602082019050602084028301858111156133705761336f613304565b5b835b8181101561339957806133858882613327565b845260208401935050602081019050613372565b5050509392505050565b5f82601f8301126133b7576133b661324d565b5b81356133c784826020860161333b565b91505092915050565b5f602082840312156133e5576133e4613192565b5b5f82013567ffffffffffffffff81111561340257613401613196565b5b61340e848285016133a3565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561344e578082015181840152602081019050613433565b5f8484015250505050565b5f61346382613417565b61346d8185613421565b935061347d818560208601613431565b61348681613251565b840191505092915050565b5f6020820190508181035f8301526134a98184613459565b905092915050565b5f819050919050565b6134c3816134b1565b81146134cd575f80fd5b50565b5f813590506134de816134ba565b92915050565b5f602082840312156134f9576134f8613192565b5b5f613506848285016134d0565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6135388261350f565b9050919050565b6135488161352e565b82525050565b5f6020820190506135615f83018461353f565b92915050565b6135708161352e565b811461357a575f80fd5b50565b5f8135905061358b81613567565b92915050565b5f80604083850312156135a7576135a6613192565b5b5f6135b48582860161357d565b92505060206135c5858286016134d0565b9150509250929050565b6135d8816134b1565b82525050565b5f6020820190506135f15f8301846135cf565b92915050565b5f805f6060848603121561360e5761360d613192565b5b5f61361b8682870161357d565b935050602061362c8682870161357d565b925050604061363d868287016134d0565b9150509250925092565b5f80fd5b5f67ffffffffffffffff82111561366557613664613261565b5b61366e82613251565b9050602081019050919050565b828183375f83830152505050565b5f61369b6136968461364b565b6132bf565b9050828152602081018484840111156136b7576136b6613647565b5b6136c284828561367b565b509392505050565b5f82601f8301126136de576136dd61324d565b5b81356136ee848260208601613689565b91505092915050565b5f6020828403121561370c5761370b613192565b5b5f82013567ffffffffffffffff81111561372957613728613196565b5b613735848285016136ca565b91505092915050565b5f6020828403121561375357613752613192565b5b5f6137608482850161357d565b91505092915050565b5f805f606084860312156137805761377f613192565b5b5f61378d8682870161357d565b935050602061379e868287016134d0565b925050604084013567ffffffffffffffff8111156137bf576137be613196565b5b6137cb868287016133a3565b9150509250925092565b5f602082840312156137ea576137e9613192565b5b5f6137f784828501613327565b91505092915050565b6138098161321a565b8114613813575f80fd5b50565b5f8135905061382481613800565b92915050565b5f80604083850312156138405761383f613192565b5b5f61384d8582860161357d565b925050602061385e85828601613816565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b600381106138a6576138a5613868565b5b50565b5f8190506138b682613895565b919050565b5f6138c5826138a9565b9050919050565b6138d5816138bb565b82525050565b5f6020820190506138ee5f8301846138cc565b92915050565b5f67ffffffffffffffff82111561390e5761390d613261565b5b61391782613251565b9050602081019050919050565b5f613936613931846138f4565b6132bf565b90508281526020810184848401111561395257613951613647565b5b61395d84828561367b565b509392505050565b5f82601f8301126139795761397861324d565b5b8135613989848260208601613924565b91505092915050565b5f805f80608085870312156139aa576139a9613192565b5b5f6139b78782880161357d565b94505060206139c88782880161357d565b93505060406139d9878288016134d0565b925050606085013567ffffffffffffffff8111156139fa576139f9613196565b5b613a0687828801613965565b91505092959194509250565b5f8060408385031215613a2857613a27613192565b5b5f613a358582860161357d565b9250506020613a468582860161357d565b9150509250929050565b5f8160601b9050919050565b5f613a6682613a50565b9050919050565b5f613a7782613a5c565b9050919050565b613a8f613a8a8261352e565b613a6d565b82525050565b5f613aa08284613a7e565b60148201915081905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680613af357607f821691505b602082108103613b0657613b05613aaf565b5b50919050565b5f606082019050613b1f5f83018661353f565b613b2c60208301856135cf565b613b39604083018461353f565b949350505050565b5f604082019050613b545f83018561353f565b613b6160208301846135cf565b9392505050565b7f42616c616e6365206973207a65726f00000000000000000000000000000000005f82015250565b5f613b9c600f83613421565b9150613ba782613b68565b602082019050919050565b5f6020820190508181035f830152613bc981613b90565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302613c597fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613c1e565b613c638683613c1e565b95508019841693508086168417925050509392505050565b5f819050919050565b5f613c9e613c99613c94846134b1565b613c7b565b6134b1565b9050919050565b5f819050919050565b613cb783613c84565b613ccb613cc382613ca5565b848454613c2a565b825550505050565b5f90565b613cdf613cd3565b613cea818484613cae565b505050565b5b81811015613d0d57613d025f82613cd7565b600181019050613cf0565b5050565b601f821115613d5257613d2381613bfd565b613d2c84613c0f565b81016020851015613d3b578190505b613d4f613d4785613c0f565b830182613cef565b50505b505050565b5f82821c905092915050565b5f613d725f1984600802613d57565b1980831691505092915050565b5f613d8a8383613d63565b9150826002028217905092915050565b613da382613417565b67ffffffffffffffff811115613dbc57613dbb613261565b5b613dc68254613adc565b613dd1828285613d11565b5f60209050601f831160018114613e02575f8415613df0578287015190505b613dfa8582613d7f565b865550613e61565b601f198416613e1086613bfd565b5f5b82811015613e3757848901518255600182019150602085019450602081019050613e12565b86831015613e545784890151613e50601f891682613d63565b8355505b6001600288020188555050505b505050505050565b7f436f6e7472616374206973207061757365642c20706c656173652074727920615f8201527f6761696e206c6174657200000000000000000000000000000000000000000000602082015250565b5f613ec3602a83613421565b9150613ece82613e69565b604082019050919050565b5f6020820190508181035f830152613ef081613eb7565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613f2e826134b1565b9150613f39836134b1565b9250828201905080821115613f5157613f50613ef7565b5b92915050565b7f4578636565646564206d6178696d756d20686f6c64696e6720666f72207768695f8201527f74656c6973742032000000000000000000000000000000000000000000000000602082015250565b5f613fb1602883613421565b9150613fbc82613f57565b604082019050919050565b5f6020820190508181035f830152613fde81613fa5565b9050919050565b7f4578636565646564206d6178696d756d20686f6c64696e6720666f72207768695f8201527f74656c6973742033000000000000000000000000000000000000000000000000602082015250565b5f61403f602883613421565b915061404a82613fe5565b604082019050919050565b5f6020820190508181035f83015261406c81614033565b9050919050565b7f4578636565646564206d6178696d756d20686f6c64696e6720666f72207768695f8201527f74656c6973742034000000000000000000000000000000000000000000000000602082015250565b5f6140cd602883613421565b91506140d882614073565b604082019050919050565b5f6020820190508181035f8301526140fa816140c1565b9050919050565b7f4578636565646564206d6178696d756d20686f6c64696e6720666f72207768695f8201527f74656c6973742035000000000000000000000000000000000000000000000000602082015250565b5f61415b602883613421565b915061416682614101565b604082019050919050565b5f6020820190508181035f8301526141888161414f565b9050919050565b7f4578636565646564206d6178696d756d20686f6c64696e6720666f72207465615f8201527f6d2077686974656c697374203135000000000000000000000000000000000000602082015250565b5f6141e9602e83613421565b91506141f48261418f565b604082019050919050565b5f6020820190508181035f830152614216816141dd565b9050919050565b7f4e6f742077686974656c697374656400000000000000000000000000000000005f82015250565b5f614251600f83613421565b915061425c8261421d565b602082019050919050565b5f6020820190508181035f83015261427e81614245565b9050919050565b5f61428f826134b1565b915061429a836134b1565b92508282026142a8816134b1565b915082820484148315176142bf576142be613ef7565b5b5092915050565b7f496e73756666696369656e742066756e647320746f206d696e740000000000005f82015250565b5f6142fa601a83613421565b9150614305826142c6565b602082019050919050565b5f6020820190508181035f830152614327816142ee565b9050919050565b7f4d696e74696e6720706861736520686173206e6f7420737461727465640000005f82015250565b5f614362601d83613421565b915061436d8261432e565b602082019050919050565b5f6020820190508181035f83015261438f81614356565b9050919050565b5f6143a0826134b1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036143d2576143d1613ef7565b5b600182019050919050565b7f4661696c656420746f207472616e736665722066756e647320746f206f776e655f8201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b5f614437602183613421565b9150614442826143dd565b604082019050919050565b5f6020820190508181035f8301526144648161442b565b9050919050565b5f81905092915050565b5f61447f82613417565b614489818561446b565b9350614499818560208601613431565b80840191505092915050565b5f81546144b181613adc565b6144bb818661446b565b9450600182165f81146144d557600181146144ea5761451c565b60ff198316865281151582028601935061451c565b6144f385613bfd565b5f5b83811015614514578154818901526001820191506020810190506144f5565b838801955050505b50505092915050565b5f6145308286614475565b915061453c8285614475565b915061454882846144a5565b9150819050949350505050565b5f81519050919050565b5f82825260208201905092915050565b5f61457982614555565b614583818561455f565b9350614593818560208601613431565b61459c81613251565b840191505092915050565b5f6080820190506145ba5f83018761353f565b6145c7602083018661353f565b6145d460408301856135cf565b81810360608301526145e6818461456f565b905095945050505050565b5f815190506145ff816131c5565b92915050565b5f6020828403121561461a57614619613192565b5b5f614627848285016145f1565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f614667826134b1565b9150614672836134b1565b925082820390508181111561468a57614689613ef7565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffdfea2646970667358221220d0f7a20abfba3d89de212d66c956821f41d07698e9a15090da89df39e974337f64736f6c63430008160033

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

0000000000000000000000005aaf1313ff73ffd7a3b63e6d2ab628dcfd480a3e

-----Decoded View---------------
Arg [0] : initialOwner (address): 0x5Aaf1313FF73Ffd7a3B63e6d2aB628dCFD480a3e

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000005aaf1313ff73ffd7a3b63e6d2ab628dcfd480a3e


Deployed Bytecode Sourcemap

83510:8025:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91302:230;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87088:254;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57015:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58187:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58006:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78094:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86296:260;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58856:588;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77758:260;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89997:168;;;;;;;;;;;;;:::i;:::-;;85167:65;;;;;;;;;;;;;:::i;:::-;;59515:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78275:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90288:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42891:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89880:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56828:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87612:2260;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56553:213;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40155:103;;;;;;;;;;;;;:::i;:::-;;85956:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85098:61;;;;;;;;;;;;;:::i;:::-;;39480:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87350:254;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86165:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57175:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58417:146;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86826:254;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85538:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84666:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84892:96;;;;;;;;;;;;;:::i;:::-;;59720:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84524:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84996:94;;;;;;;;;;;;;:::i;:::-;;83712:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83758:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90930:364;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83802:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86564:254;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58634:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85323:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40413:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85747:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;90173:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91302:230;91459:4;91488:36;91512:11;91488:23;:36::i;:::-;91481:43;;91302:230;;;:::o;87088:254::-;87187:4;87209:12;87251:10;87234:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;87224:39;;;;;;87209:54;;87281:53;87300:5;87307:20;;87329:4;87281:18;:53::i;:::-;87274:60;;;87088:254;;;:::o;57015:91::-;57060:13;57093:5;57086:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57015:91;:::o;58187:158::-;58254:7;58274:22;58288:7;58274:13;:22::i;:::-;;58316:21;58329:7;58316:12;:21::i;:::-;58309:28;;58187:158;;;:::o;58006:115::-;58078:35;58087:2;58091:7;58100:12;:10;:12::i;:::-;58078:8;:35::i;:::-;58006:115;;:::o;78094:104::-;78146:7;78173:10;:17;;;;78166:24;;78094:104;:::o;86296:260::-;86398:4;86420:12;86462:10;86445:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;86435:39;;;;;;86420:54;;86492:56;86511:5;86518:23;;86543:4;86492:18;:56::i;:::-;86485:63;;;86296:260;;;:::o;58856:588::-;58965:1;58951:16;;:2;:16;;;58947:89;;59021:1;58991:33;;;;;;;;;;;:::i;:::-;;;;;;;;58947:89;59257:21;59281:34;59289:2;59293:7;59302:12;:10;:12::i;:::-;59281:7;:34::i;:::-;59257:58;;59347:4;59330:21;;:13;:21;;;59326:111;;59396:4;59402:7;59411:13;59375:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;59326:111;58936:508;58856:588;;;:::o;77758:260::-;77846:7;77879:16;77889:5;77879:9;:16::i;:::-;77870:5;:25;77866:101;;77942:5;77949;77919:36;;;;;;;;;;;;:::i;:::-;;;;;;;;77866:101;77984:12;:19;77997:5;77984:19;;;;;;;;;;;;;;;:26;78004:5;77984:26;;;;;;;;;;;;77977:33;;77758:260;;;;:::o;89997:168::-;39366:13;:11;:13::i;:::-;90077:1:::1;90053:21;:25;90045:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;90117:7;:5;:7::i;:::-;90109:25;;:48;90135:21;90109:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;89997:168::o:0;85167:65::-;39366:13;:11;:13::i;:::-;85214:10:::1;:8;:10::i;:::-;85167:65::o:0;59515:134::-;59602:39;59619:4;59625:2;59629:7;59602:39;;;;;;;;;;;;:16;:39::i;:::-;59515:134;;;:::o;78275:231::-;78341:7;78374:13;:11;:13::i;:::-;78365:5;:22;78361:103;;78442:1;78446:5;78411:41;;;;;;;;;;;;:::i;:::-;;;;;;;;78361:103;78481:10;78492:5;78481:17;;;;;;;;:::i;:::-;;;;;;;;;;78474:24;;78275:231;;;:::o;90288:104::-;39366:13;:11;:13::i;:::-;90374:10:::1;90364:7;:20;;;;;;:::i;:::-;;90288:104:::0;:::o;42891:86::-;42938:4;42962:7;;;;;;;;;;;42955:14;;42891:86;:::o;89880:109::-;89938:7;89965:10;:16;89976:4;89965:16;;;;;;;;;;;;;;;;89958:23;;89880:109;;;:::o;56828:120::-;56891:7;56918:22;56932:7;56918:13;:22::i;:::-;56911:29;;56828:120;;;:::o;87612:2260::-;87747:8;:6;:8::i;:::-;87746:9;87738:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;87830:1;87821:6;:10;87813:19;;;;;;87843:14;87860:13;:11;:13::i;:::-;87843:30;;87911:9;;87901:6;87892;:15;;;;:::i;:::-;:28;;87884:37;;;;;;87947:19;87938:28;;;;;;;;:::i;:::-;;:5;;;;;;;;;;;:28;;;;;;;;:::i;:::-;;;87934:1564;;87987:24;88005:5;87987:17;:24::i;:::-;87983:1175;;;88097:1;88087:6;88062:10;:22;88073:10;88062:22;;;;;;;;;;;;;;;;:31;;;;:::i;:::-;:36;;88032:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;87983:1175;;;88208:24;88226:5;88208:17;:24::i;:::-;88204:954;;;88318:1;88308:6;88283:10;:22;88294:10;88283:22;;;;;;;;;;;;;;;;:31;;;;:::i;:::-;:36;;88253:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;88204:954;;;88429:24;88447:5;88429:17;:24::i;:::-;88425:733;;;88539:1;88529:6;88504:10;:22;88515:10;88504:22;;;;;;;;;;;;;;;;:31;;;;:::i;:::-;:36;;88474:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;88425:733;;;88650:24;88668:5;88650:17;:24::i;:::-;88646:512;;;88760:1;88750:6;88725:10;:22;88736:10;88725:22;;;;;;;;;;;;;;;;:31;;;;:::i;:::-;:36;;88695:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;88646:512;;;88871:27;88892:5;88871:20;:27::i;:::-;88867:291;;;88984:2;88974:6;88949:10;:22;88960:10;88949:22;;;;;;;;;;;;;;;;:31;;;;:::i;:::-;:37;;88919:157;;;;;;;;;;;;:::i;:::-;;;;;;;;;88867:291;;;89117:25;;;;;;;;;;:::i;:::-;;;;;;;;88867:291;88646:512;88425:733;88204:954;87983:1175;87934:1564;;;89188:16;89179:25;;;;;;;;:::i;:::-;;:5;;;;;;;;;;;:25;;;;;;;;:::i;:::-;;;89175:323;;89239:7;:5;:7::i;:::-;89225:21;;:10;:21;;;89221:194;;89323:6;89310:10;;:19;;;;:::i;:::-;89297:9;:32;;89267:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;89221:194;89175:323;;;89447:39;;;;;;;;;;:::i;:::-;;;;;;;;89175:323;87934:1564;89515:9;89527:1;89515:13;;89510:121;89535:6;89530:1;:11;89510:121;;89563:25;89573:2;89586:1;89577:6;:10;;;;:::i;:::-;89563:9;:25::i;:::-;89603:10;:14;89614:2;89603:14;;;;;;;;;;;;;;;;:16;;;;;;;;;:::i;:::-;;;;;;89543:3;;;;;:::i;:::-;;;;89510:121;;;;89656:16;89647:25;;;;;;;;:::i;:::-;;:5;;;;;;;;;;;:25;;;;;;;;:::i;:::-;;;:50;;;;;89690:7;:5;:7::i;:::-;89676:21;;:10;:21;;;;89647:50;89643:222;;;89748:7;:5;:7::i;:::-;89740:21;;:44;89762:21;89740:44;;;;;;;;;;;;;;;;;;;;;;;89714:139;;;;;;;;;;;;:::i;:::-;;;;;;;;;89643:222;87727:2145;87612:2260;;;:::o;56553:213::-;56616:7;56657:1;56640:19;;:5;:19;;;56636:89;;56710:1;56683:30;;;;;;;;;;;:::i;:::-;;;;;;;;56636:89;56742:9;:16;56752:5;56742:16;;;;;;;;;;;;;;;;56735:23;;56553:213;;;:::o;40155:103::-;39366:13;:11;:13::i;:::-;40220:30:::1;40247:1;40220:18;:30::i;:::-;40155:103::o:0;85956:123::-;39366:13;:11;:13::i;:::-;86063:8:::1;86040:20;:31;;;;85956:123:::0;:::o;85098:61::-;39366:13;:11;:13::i;:::-;85143:8:::1;:6;:8::i;:::-;85098:61::o:0;39480:87::-;39526:7;39553:6;;;;;;;;;;;39546:13;;39480:87;:::o;87350:254::-;87449:4;87471:12;87513:10;87496:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;87486:39;;;;;;87471:54;;87543:53;87562:5;87569:20;;87591:4;87543:18;:53::i;:::-;87536:60;;;87350:254;;;:::o;86165:123::-;39366:13;:11;:13::i;:::-;86272:8:::1;86249:20;:31;;;;86165:123:::0;:::o;57175:95::-;57222:13;57255:7;57248:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57175:95;:::o;58417:146::-;58503:52;58522:12;:10;:12::i;:::-;58536:8;58546;58503:18;:52::i;:::-;58417:146;;:::o;86826:254::-;86925:4;86947:12;86989:10;86972:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;86962:39;;;;;;86947:54;;87019:53;87038:5;87045:20;;87067:4;87019:18;:53::i;:::-;87012:60;;;86826:254;;;:::o;85538:123::-;39366:13;:11;:13::i;:::-;85645:8:::1;85622:20;:31;;;;85538:123:::0;:::o;84666:45::-;;;;;;;;;;;;;:::o;84892:96::-;39366:13;:11;:13::i;:::-;84961:19:::1;84953:5;;:27;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;84892:96::o:0;59720:211::-;59834:31;59847:4;59853:2;59857:7;59834:12;:31::i;:::-;59876:47;59899:4;59905:2;59909:7;59918:4;59876:22;:47::i;:::-;59720:211;;;;:::o;84524:45::-;;;;;;;;;;;;;;;;;:::o;84996:94::-;39366:13;:11;:13::i;:::-;85066:16:::1;85058:5;;:24;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;84996:94::o:0;83712:39::-;;;;:::o;83758:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;90930:364::-;91057:13;91088:21;91112:7;91088:31;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91228:7;91237:18;:7;:16;:18::i;:::-;91257:13;91211:60;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;91166:120;;;90930:364;;;:::o;83802:31::-;;;;:::o;86564:254::-;86663:4;86685:12;86727:10;86710:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;86700:39;;;;;;86685:54;;86757:53;86776:5;86783:20;;86805:4;86757:18;:53::i;:::-;86750:60;;;86564:254;;;:::o;58634:155::-;58722:4;58746:18;:25;58765:5;58746:25;;;;;;;;;;;;;;;:35;58772:8;58746:35;;;;;;;;;;;;;;;;;;;;;;;;;58739:42;;58634:155;;;;:::o;85323:129::-;39366:13;:11;:13::i;:::-;85436:8:::1;85410:23;:34;;;;85323:129:::0;:::o;40413:220::-;39366:13;:11;:13::i;:::-;40518:1:::1;40498:22;;:8;:22;;::::0;40494:93:::1;;40572:1;40544:31;;;;;;;;;;;:::i;:::-;;;;;;;;40494:93;40597:28;40616:8;40597:18;:28::i;:::-;40413:220:::0;:::o;85747:123::-;39366:13;:11;:13::i;:::-;85854:8:::1;85831:20;:31;;;;85747:123:::0;:::o;90173:107::-;39366:13;:11;:13::i;:::-;90260:12:::1;90247:10;:25;;;;90173:107:::0;:::o;74896:209::-;74998:4;74711:10;74704:18;;75022:35;;;:11;:35;;;;:75;;;;75061:36;75085:11;75061:23;:36::i;:::-;75022:75;75015:82;;74896:209;;;:::o;1336:156::-;1427:4;1480;1451:25;1464:5;1471:4;1451:12;:25::i;:::-;:33;1444:40;;1336:156;;;;;:::o;71162:247::-;71225:7;71245:13;71261:17;71270:7;71261:8;:17::i;:::-;71245:33;;71310:1;71293:19;;:5;:19;;;71289:90;;71359:7;71336:31;;;;;;;;;;;:::i;:::-;;;;;;;;71289:90;71396:5;71389:12;;;71162:247;;;:::o;60693:129::-;60763:7;60790:15;:24;60806:7;60790:24;;;;;;;;;;;;;;;;;;;;;60783:31;;60693:129;;;:::o;37489:98::-;37542:7;37569:10;37562:17;;37489:98;:::o;69394:122::-;69475:33;69484:2;69488:7;69497:4;69503;69475:8;:33::i;:::-;69394:122;;;:::o;90470:262::-;90660:7;90692:32;90706:2;90710:7;90719:4;90692:13;:32::i;:::-;90685:39;;90470:262;;;;;:::o;39645:166::-;39716:12;:10;:12::i;:::-;39705:23;;:7;:5;:7::i;:::-;:23;;;39701:103;;39779:12;:10;:12::i;:::-;39752:40;;;;;;;;;;;:::i;:::-;;;;;;;;39701:103;39645:166::o;43792:120::-;42755:16;:14;:16::i;:::-;43861:5:::1;43851:7;;:15;;;;;;;;;;;;;;;;;;43882:22;43891:12;:10;:12::i;:::-;43882:22;;;;;;:::i;:::-;;;;;;;;43792:120::o:0;65513:102::-;65581:26;65591:2;65595:7;65581:26;;;;;;;;;;;;:9;:26::i;:::-;65513:102;;:::o;40793:191::-;40867:16;40886:6;;;;;;;;;;;40867:25;;40912:8;40903:6;;:17;;;;;;;;;;;;;;;;;;40967:8;40936:40;;40957:8;40936:40;;;;;;;;;;;;40856:128;40793:191;:::o;43533:118::-;42496:19;:17;:19::i;:::-;43603:4:::1;43593:7;;:14;;;;;;;;;;;;;;;;;;43623:20;43630:12;:10;:12::i;:::-;43623:20;;;;;;:::i;:::-;;;;;;;;43533:118::o:0;70601:318::-;70729:1;70709:22;;:8;:22;;;70705:93;;70777:8;70755:31;;;;;;;;;;;:::i;:::-;;;;;;;;70705:93;70846:8;70808:18;:25;70827:5;70808:25;;;;;;;;;;;;;;;:35;70834:8;70808:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;70892:8;70870:41;;70885:5;70870:41;;;70902:8;70870:41;;;;;;:::i;:::-;;;;;;;;70601:318;;;:::o;71959:799::-;72093:1;72076:2;:14;;;:18;72072:679;;;72131:2;72115:36;;;72152:12;:10;:12::i;:::-;72166:4;72172:7;72181:4;72115:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;72111:629;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72446:1;72429:6;:13;:18;72425:300;;72501:2;72479:25;;;;;;;;;;;:::i;:::-;;;;;;;;72425:300;72675:6;72669:13;72660:6;72656:2;72652:15;72645:38;72111:629;72244:41;;;72234:51;;;:6;:51;;;;72230:132;;72339:2;72317:25;;;;;;;;;;;:::i;:::-;;;;;;;;72230:132;72187:190;72072:679;71959:799;;;;:::o;34259:718::-;34315:13;34366:14;34403:1;34383:17;34394:5;34383:10;:17::i;:::-;:21;34366:38;;34419:20;34453:6;34442:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34419:41;;34475:11;34604:6;34600:2;34596:15;34588:6;34584:28;34577:35;;34641:290;34648:4;34641:290;;;34673:5;;;;;;;;34815:10;34810:2;34803:5;34799:14;34794:32;34789:3;34781:46;34873:2;34864:11;;;;;;:::i;:::-;;;;;34907:1;34898:5;:10;34641:290;34894:21;34641:290;34952:6;34945:13;;;;;34259:718;;;:::o;77450:224::-;77552:4;77591:35;77576:50;;;:11;:50;;;;:90;;;;77630:36;77654:11;77630:23;:36::i;:::-;77576:90;77569:97;;77450:224;;;:::o;2055:296::-;2138:7;2158:20;2181:4;2158:27;;2201:9;2196:118;2220:5;:12;2216:1;:16;2196:118;;;2269:33;2279:12;2293:5;2299:1;2293:8;;;;;;;;:::i;:::-;;;;;;;;2269:9;:33::i;:::-;2254:48;;2234:3;;;;;;;2196:118;;;;2331:12;2324:19;;;2055:296;;;;:::o;60455:117::-;60521:7;60548;:16;60556:7;60548:16;;;;;;;;;;;;;;;;;;;;;60541:23;;60455:117;;;:::o;69704:678::-;69866:9;:31;;;;69895:1;69879:18;;:4;:18;;;;69866:31;69862:471;;;69914:13;69930:22;69944:7;69930:13;:22::i;:::-;69914:38;;70099:1;70083:18;;:4;:18;;;;:35;;;;;70114:4;70105:13;;:5;:13;;;;70083:35;:69;;;;;70123:29;70140:5;70147:4;70123:16;:29::i;:::-;70122:30;70083:69;70079:144;;;70202:4;70180:27;;;;;;;;;;;:::i;:::-;;;;;;;;70079:144;70243:9;70239:83;;;70298:7;70294:2;70278:28;;70287:5;70278:28;;;;;;;;;;;;70239:83;69899:434;69862:471;70372:2;70345:15;:24;70361:7;70345:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;69704:678;;;;:::o;73870:210::-;74013:7;42496:19;:17;:19::i;:::-;74040:32:::1;74054:2;74058:7;74067:4;74040:13;:32::i;:::-;74033:39;;73870:210:::0;;;;;:::o;43259:130::-;43323:8;:6;:8::i;:::-;43318:64;;43355:15;;;;;;;;;;;;;;43318:64;43259:130::o;65842:185::-;65937:18;65943:2;65947:7;65937:5;:18::i;:::-;65966:53;65997:1;66001:2;66005:7;66014:4;65966:22;:53::i;:::-;65842:185;;;:::o;43050:132::-;43116:8;:6;:8::i;:::-;43112:63;;;43148:15;;;;;;;;;;;;;;43112:63;43050:132::o;30663:948::-;30716:7;30736:14;30753:1;30736:18;;30803:8;30794:5;:17;30790:106;;30841:8;30832:17;;;;;;:::i;:::-;;;;;30878:2;30868:12;;;;30790:106;30923:8;30914:5;:17;30910:106;;30961:8;30952:17;;;;;;:::i;:::-;;;;;30998:2;30988:12;;;;30910:106;31043:8;31034:5;:17;31030:106;;31081:8;31072:17;;;;;;:::i;:::-;;;;;31118:2;31108:12;;;;31030:106;31163:7;31154:5;:16;31150:103;;31200:7;31191:16;;;;;;:::i;:::-;;;;;31236:1;31226:11;;;;31150:103;31280:7;31271:5;:16;31267:103;;31317:7;31308:16;;;;;;:::i;:::-;;;;;31353:1;31343:11;;;;31267:103;31397:7;31388:5;:16;31384:103;;31434:7;31425:16;;;;;;:::i;:::-;;;;;31470:1;31460:11;;;;31384:103;31514:7;31505:5;:16;31501:68;;31552:1;31542:11;;;;31501:68;31597:6;31590:13;;;30663:948;;;:::o;56184:305::-;56286:4;56338:25;56323:40;;;:11;:40;;;;:105;;;;56395:33;56380:48;;;:11;:48;;;;56323:105;:158;;;;56445:36;56469:11;56445:23;:36::i;:::-;56323:158;56303:178;;56184:305;;;:::o;9485:149::-;9548:7;9579:1;9575;:5;:51;;9606:20;9621:1;9624;9606:14;:20::i;:::-;9575:51;;;9583:20;9598:1;9601;9583:14;:20::i;:::-;9575:51;9568:58;;9485:149;;;;:::o;78567:640::-;78662:7;78682:21;78706:32;78720:2;78724:7;78733:4;78706:13;:32::i;:::-;78682:56;;78780:1;78755:27;;:13;:27;;;78751:214;;78799:40;78831:7;78799:31;:40::i;:::-;78751:214;;;78878:2;78861:19;;:13;:19;;;78857:108;;78897:56;78930:13;78945:7;78897:32;:56::i;:::-;78857:108;78751:214;78993:1;78979:16;;:2;:16;;;78975:192;;79012:45;79049:7;79012:36;:45::i;:::-;78975:192;;;79096:2;79079:19;;:13;:19;;;79075:92;;79115:40;79143:2;79147:7;79115:27;:40::i;:::-;79075:92;78975:192;79186:13;79179:20;;;78567:640;;;;;:::o;64815:335::-;64897:1;64883:16;;:2;:16;;;64879:89;;64953:1;64923:33;;;;;;;;;;;:::i;:::-;;;;;;;;64879:89;64978:21;65002:32;65010:2;65014:7;65031:1;65002:7;:32::i;:::-;64978:56;;65074:1;65049:27;;:13;:27;;;65045:98;;65128:1;65100:31;;;;;;;;;;;:::i;:::-;;;;;;;;65045:98;64868:282;64815:335;;:::o;46863:148::-;46939:4;46978:25;46963:40;;;:11;:40;;;;46956:47;;46863:148;;;:::o;9759:268::-;9827:13;9934:1;9928:4;9921:15;9963:1;9957:4;9950:15;10004:4;9998;9988:21;9979:30;;9759:268;;;;:::o;63655:824::-;63741:7;63761:12;63776:17;63785:7;63776:8;:17::i;:::-;63761:32;;63872:1;63856:18;;:4;:18;;;63852:88;;63891:37;63908:4;63914;63920:7;63891:16;:37::i;:::-;63852:88;64003:1;63987:18;;:4;:18;;;63983:263;;64105:48;64122:1;64126:7;64143:1;64147:5;64105:8;:48::i;:::-;64218:1;64199:9;:15;64209:4;64199:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;63983:263;64276:1;64262:16;;:2;:16;;;64258:111;;64341:1;64324:9;:13;64334:2;64324:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;64258:111;64400:2;64381:7;:16;64389:7;64381:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;64439:7;64435:2;64420:27;;64429:4;64420:27;;;;;;;;;;;;64467:4;64460:11;;;63655:824;;;;;:::o;79927:164::-;80031:10;:17;;;;80004:15;:24;80020:7;80004:24;;;;;;;;;;;:44;;;;80059:10;80075:7;80059:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79927:164;:::o;80718:977::-;80984:22;81009:15;81019:4;81009:9;:15::i;:::-;80984:40;;81035:18;81056:17;:26;81074:7;81056:26;;;;;;;;;;;;81035:47;;81203:14;81189:10;:28;81185:328;;81234:19;81256:12;:18;81269:4;81256:18;;;;;;;;;;;;;;;:34;81275:14;81256:34;;;;;;;;;;;;81234:56;;81340:11;81307:12;:18;81320:4;81307:18;;;;;;;;;;;;;;;:30;81326:10;81307:30;;;;;;;;;;;:44;;;;81457:10;81424:17;:30;81442:11;81424:30;;;;;;;;;;;:43;;;;81219:294;81185:328;81609:17;:26;81627:7;81609:26;;;;;;;;;;;81602:33;;;81653:12;:18;81666:4;81653:18;;;;;;;;;;;;;;;:34;81672:14;81653:34;;;;;;;;;;;81646:41;;;80799:896;;80718:977;;:::o;81990:1079::-;82243:22;82288:1;82268:10;:17;;;;:21;;;;:::i;:::-;82243:46;;82300:18;82321:15;:24;82337:7;82321:24;;;;;;;;;;;;82300:45;;82672:19;82694:10;82705:14;82694:26;;;;;;;;:::i;:::-;;;;;;;;;;82672:48;;82758:11;82733:10;82744;82733:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;82869:10;82838:15;:28;82854:11;82838:28;;;;;;;;;;;:41;;;;83010:15;:24;83026:7;83010:24;;;;;;;;;;;83003:31;;;83045:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;82061:1008;;;81990:1079;:::o;79508:218::-;79593:14;79626:1;79610:13;79620:2;79610:9;:13::i;:::-;:17;;;;:::i;:::-;79593:34;;79665:7;79638:12;:16;79651:2;79638:16;;;;;;;;;;;;;;;:24;79655:6;79638:24;;;;;;;;;;;:34;;;;79712:6;79683:17;:26;79701:7;79683:26;;;;;;;;;;;:35;;;;79582:144;79508:218;;:::o;61862:376::-;61975:38;61989:5;61996:7;62005;61975:13;:38::i;:::-;61970:261;;62051:1;62034:19;;:5;:19;;;62030:190;;62104:7;62081:31;;;;;;;;;;;:::i;:::-;;;;;;;;62030:190;62187:7;62196;62160:44;;;;;;;;;;;;:::i;:::-;;;;;;;;61970:261;61862:376;;;:::o;61142:276::-;61245:4;61301:1;61282:21;;:7;:21;;;;:128;;;;;61330:7;61321:16;;:5;:16;;;:52;;;;61341:32;61358:5;61365:7;61341:16;:32::i;:::-;61321:52;:88;;;;61402:7;61377:32;;:21;61390:7;61377:12;:21::i;:::-;:32;;;61321:88;61282:128;61262:148;;61142:276;;;;;:::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:117::-;1627:1;1624;1617:12;1641:102;1682:6;1733:2;1729:7;1724:2;1717:5;1713:14;1709:28;1699:38;;1641:102;;;:::o;1749:180::-;1797:77;1794:1;1787:88;1894:4;1891:1;1884:15;1918:4;1915:1;1908:15;1935:281;2018:27;2040:4;2018:27;:::i;:::-;2010:6;2006:40;2148:6;2136:10;2133:22;2112:18;2100:10;2097:34;2094:62;2091:88;;;2159:18;;:::i;:::-;2091:88;2199:10;2195:2;2188:22;1978:238;1935:281;;:::o;2222:129::-;2256:6;2283:20;;:::i;:::-;2273:30;;2312:33;2340:4;2332:6;2312:33;:::i;:::-;2222:129;;;:::o;2357:311::-;2434:4;2524:18;2516:6;2513:30;2510:56;;;2546:18;;:::i;:::-;2510:56;2596:4;2588:6;2584:17;2576:25;;2656:4;2650;2646:15;2638:23;;2357:311;;;:::o;2674:117::-;2783:1;2780;2773:12;2797:77;2834:7;2863:5;2852:16;;2797:77;;;:::o;2880:122::-;2953:24;2971:5;2953:24;:::i;:::-;2946:5;2943:35;2933:63;;2992:1;2989;2982:12;2933:63;2880:122;:::o;3008:139::-;3054:5;3092:6;3079:20;3070:29;;3108:33;3135:5;3108:33;:::i;:::-;3008:139;;;;:::o;3170:710::-;3266:5;3291:81;3307:64;3364:6;3307:64;:::i;:::-;3291:81;:::i;:::-;3282:90;;3392:5;3421:6;3414:5;3407:21;3455:4;3448:5;3444:16;3437:23;;3508:4;3500:6;3496:17;3488:6;3484:30;3537:3;3529:6;3526:15;3523:122;;;3556:79;;:::i;:::-;3523:122;3671:6;3654:220;3688:6;3683:3;3680:15;3654:220;;;3763:3;3792:37;3825:3;3813:10;3792:37;:::i;:::-;3787:3;3780:50;3859:4;3854:3;3850:14;3843:21;;3730:144;3714:4;3709:3;3705:14;3698:21;;3654:220;;;3658:21;3272:608;;3170:710;;;;;:::o;3903:370::-;3974:5;4023:3;4016:4;4008:6;4004:17;4000:27;3990:122;;4031:79;;:::i;:::-;3990:122;4148:6;4135:20;4173:94;4263:3;4255:6;4248:4;4240:6;4236:17;4173:94;:::i;:::-;4164:103;;3980:293;3903:370;;;;:::o;4279:539::-;4363:6;4412:2;4400:9;4391:7;4387:23;4383:32;4380:119;;;4418:79;;:::i;:::-;4380:119;4566:1;4555:9;4551:17;4538:31;4596:18;4588:6;4585:30;4582:117;;;4618:79;;:::i;:::-;4582:117;4723:78;4793:7;4784:6;4773:9;4769:22;4723:78;:::i;:::-;4713:88;;4509:302;4279:539;;;;:::o;4824:99::-;4876:6;4910:5;4904:12;4894:22;;4824:99;;;:::o;4929:169::-;5013:11;5047:6;5042:3;5035:19;5087:4;5082:3;5078:14;5063:29;;4929:169;;;;:::o;5104:246::-;5185:1;5195:113;5209:6;5206:1;5203:13;5195:113;;;5294:1;5289:3;5285:11;5279:18;5275:1;5270:3;5266:11;5259:39;5231:2;5228:1;5224:10;5219:15;;5195:113;;;5342:1;5333:6;5328:3;5324:16;5317:27;5166:184;5104:246;;;:::o;5356:377::-;5444:3;5472:39;5505:5;5472:39;:::i;:::-;5527:71;5591:6;5586:3;5527:71;:::i;:::-;5520:78;;5607:65;5665:6;5660:3;5653:4;5646:5;5642:16;5607:65;:::i;:::-;5697:29;5719:6;5697:29;:::i;:::-;5692:3;5688:39;5681:46;;5448:285;5356:377;;;;:::o;5739:313::-;5852:4;5890:2;5879:9;5875:18;5867:26;;5939:9;5933:4;5929:20;5925:1;5914:9;5910:17;5903:47;5967:78;6040:4;6031:6;5967:78;:::i;:::-;5959:86;;5739:313;;;;:::o;6058:77::-;6095:7;6124:5;6113:16;;6058:77;;;:::o;6141:122::-;6214:24;6232:5;6214:24;:::i;:::-;6207:5;6204:35;6194:63;;6253:1;6250;6243:12;6194:63;6141:122;:::o;6269:139::-;6315:5;6353:6;6340:20;6331:29;;6369:33;6396:5;6369:33;:::i;:::-;6269:139;;;;:::o;6414:329::-;6473:6;6522:2;6510:9;6501:7;6497:23;6493:32;6490:119;;;6528:79;;:::i;:::-;6490:119;6648:1;6673:53;6718:7;6709:6;6698:9;6694:22;6673:53;:::i;:::-;6663:63;;6619:117;6414:329;;;;:::o;6749:126::-;6786:7;6826:42;6819:5;6815:54;6804:65;;6749:126;;;:::o;6881:96::-;6918:7;6947:24;6965:5;6947:24;:::i;:::-;6936:35;;6881:96;;;:::o;6983:118::-;7070:24;7088:5;7070:24;:::i;:::-;7065:3;7058:37;6983:118;;:::o;7107:222::-;7200:4;7238:2;7227:9;7223:18;7215:26;;7251:71;7319:1;7308:9;7304:17;7295:6;7251:71;:::i;:::-;7107:222;;;;:::o;7335:122::-;7408:24;7426:5;7408:24;:::i;:::-;7401:5;7398:35;7388:63;;7447:1;7444;7437:12;7388:63;7335:122;:::o;7463:139::-;7509:5;7547:6;7534:20;7525:29;;7563:33;7590:5;7563:33;:::i;:::-;7463:139;;;;:::o;7608:474::-;7676:6;7684;7733:2;7721:9;7712:7;7708:23;7704:32;7701:119;;;7739:79;;:::i;:::-;7701:119;7859:1;7884:53;7929:7;7920:6;7909:9;7905:22;7884:53;:::i;:::-;7874:63;;7830:117;7986:2;8012:53;8057:7;8048:6;8037:9;8033:22;8012:53;:::i;:::-;8002:63;;7957:118;7608:474;;;;;:::o;8088:118::-;8175:24;8193:5;8175:24;:::i;:::-;8170:3;8163:37;8088:118;;:::o;8212:222::-;8305:4;8343:2;8332:9;8328:18;8320:26;;8356:71;8424:1;8413:9;8409:17;8400:6;8356:71;:::i;:::-;8212:222;;;;:::o;8440:619::-;8517:6;8525;8533;8582:2;8570:9;8561:7;8557:23;8553:32;8550:119;;;8588:79;;:::i;:::-;8550:119;8708:1;8733:53;8778:7;8769:6;8758:9;8754:22;8733:53;:::i;:::-;8723:63;;8679:117;8835:2;8861:53;8906:7;8897:6;8886:9;8882:22;8861:53;:::i;:::-;8851:63;;8806:118;8963:2;8989:53;9034:7;9025:6;9014:9;9010:22;8989:53;:::i;:::-;8979:63;;8934:118;8440:619;;;;;:::o;9065:117::-;9174:1;9171;9164:12;9188:308;9250:4;9340:18;9332:6;9329:30;9326:56;;;9362:18;;:::i;:::-;9326:56;9400:29;9422:6;9400:29;:::i;:::-;9392:37;;9484:4;9478;9474:15;9466:23;;9188:308;;;:::o;9502:146::-;9599:6;9594:3;9589;9576:30;9640:1;9631:6;9626:3;9622:16;9615:27;9502:146;;;:::o;9654:425::-;9732:5;9757:66;9773:49;9815:6;9773:49;:::i;:::-;9757:66;:::i;:::-;9748:75;;9846:6;9839:5;9832:21;9884:4;9877:5;9873:16;9922:3;9913:6;9908:3;9904:16;9901:25;9898:112;;;9929:79;;:::i;:::-;9898:112;10019:54;10066:6;10061:3;10056;10019:54;:::i;:::-;9738:341;9654:425;;;;;:::o;10099:340::-;10155:5;10204:3;10197:4;10189:6;10185:17;10181:27;10171:122;;10212:79;;:::i;:::-;10171:122;10329:6;10316:20;10354:79;10429:3;10421:6;10414:4;10406:6;10402:17;10354:79;:::i;:::-;10345:88;;10161:278;10099:340;;;;:::o;10445:509::-;10514:6;10563:2;10551:9;10542:7;10538:23;10534:32;10531:119;;;10569:79;;:::i;:::-;10531:119;10717:1;10706:9;10702:17;10689:31;10747:18;10739:6;10736:30;10733:117;;;10769:79;;:::i;:::-;10733:117;10874:63;10929:7;10920:6;10909:9;10905:22;10874:63;:::i;:::-;10864:73;;10660:287;10445:509;;;;:::o;10960:329::-;11019:6;11068:2;11056:9;11047:7;11043:23;11039:32;11036:119;;;11074:79;;:::i;:::-;11036:119;11194:1;11219:53;11264:7;11255:6;11244:9;11240:22;11219:53;:::i;:::-;11209:63;;11165:117;10960:329;;;;:::o;11295:829::-;11397:6;11405;11413;11462:2;11450:9;11441:7;11437:23;11433:32;11430:119;;;11468:79;;:::i;:::-;11430:119;11588:1;11613:53;11658:7;11649:6;11638:9;11634:22;11613:53;:::i;:::-;11603:63;;11559:117;11715:2;11741:53;11786:7;11777:6;11766:9;11762:22;11741:53;:::i;:::-;11731:63;;11686:118;11871:2;11860:9;11856:18;11843:32;11902:18;11894:6;11891:30;11888:117;;;11924:79;;:::i;:::-;11888:117;12029:78;12099:7;12090:6;12079:9;12075:22;12029:78;:::i;:::-;12019:88;;11814:303;11295:829;;;;;:::o;12130:329::-;12189:6;12238:2;12226:9;12217:7;12213:23;12209:32;12206:119;;;12244:79;;:::i;:::-;12206:119;12364:1;12389:53;12434:7;12425:6;12414:9;12410:22;12389:53;:::i;:::-;12379:63;;12335:117;12130:329;;;;:::o;12465:116::-;12535:21;12550:5;12535:21;:::i;:::-;12528:5;12525:32;12515:60;;12571:1;12568;12561:12;12515:60;12465:116;:::o;12587:133::-;12630:5;12668:6;12655:20;12646:29;;12684:30;12708:5;12684:30;:::i;:::-;12587:133;;;;:::o;12726:468::-;12791:6;12799;12848:2;12836:9;12827:7;12823:23;12819:32;12816:119;;;12854:79;;:::i;:::-;12816:119;12974:1;12999:53;13044:7;13035:6;13024:9;13020:22;12999:53;:::i;:::-;12989:63;;12945:117;13101:2;13127:50;13169:7;13160:6;13149:9;13145:22;13127:50;:::i;:::-;13117:60;;13072:115;12726:468;;;;;:::o;13200:180::-;13248:77;13245:1;13238:88;13345:4;13342:1;13335:15;13369:4;13366:1;13359:15;13386:119;13473:1;13466:5;13463:12;13453:46;;13479:18;;:::i;:::-;13453:46;13386:119;:::o;13511:139::-;13562:7;13591:5;13580:16;;13597:47;13638:5;13597:47;:::i;:::-;13511:139;;;:::o;13656:::-;13718:9;13751:38;13783:5;13751:38;:::i;:::-;13738:51;;13656:139;;;:::o;13801:155::-;13900:49;13943:5;13900:49;:::i;:::-;13895:3;13888:62;13801:155;;:::o;13962:246::-;14067:4;14105:2;14094:9;14090:18;14082:26;;14118:83;14198:1;14187:9;14183:17;14174:6;14118:83;:::i;:::-;13962:246;;;;:::o;14214:307::-;14275:4;14365:18;14357:6;14354:30;14351:56;;;14387:18;;:::i;:::-;14351:56;14425:29;14447:6;14425:29;:::i;:::-;14417:37;;14509:4;14503;14499:15;14491:23;;14214:307;;;:::o;14527:423::-;14604:5;14629:65;14645:48;14686:6;14645:48;:::i;:::-;14629:65;:::i;:::-;14620:74;;14717:6;14710:5;14703:21;14755:4;14748:5;14744:16;14793:3;14784:6;14779:3;14775:16;14772:25;14769:112;;;14800:79;;:::i;:::-;14769:112;14890:54;14937:6;14932:3;14927;14890:54;:::i;:::-;14610:340;14527:423;;;;;:::o;14969:338::-;15024:5;15073:3;15066:4;15058:6;15054:17;15050:27;15040:122;;15081:79;;:::i;:::-;15040:122;15198:6;15185:20;15223:78;15297:3;15289:6;15282:4;15274:6;15270:17;15223:78;:::i;:::-;15214:87;;15030:277;14969:338;;;;:::o;15313:943::-;15408:6;15416;15424;15432;15481:3;15469:9;15460:7;15456:23;15452:33;15449:120;;;15488:79;;:::i;:::-;15449:120;15608:1;15633:53;15678:7;15669:6;15658:9;15654:22;15633:53;:::i;:::-;15623:63;;15579:117;15735:2;15761:53;15806:7;15797:6;15786:9;15782:22;15761:53;:::i;:::-;15751:63;;15706:118;15863:2;15889:53;15934:7;15925:6;15914:9;15910:22;15889:53;:::i;:::-;15879:63;;15834:118;16019:2;16008:9;16004:18;15991:32;16050:18;16042:6;16039:30;16036:117;;;16072:79;;:::i;:::-;16036:117;16177:62;16231:7;16222:6;16211:9;16207:22;16177:62;:::i;:::-;16167:72;;15962:287;15313:943;;;;;;;:::o;16262:474::-;16330:6;16338;16387:2;16375:9;16366:7;16362:23;16358:32;16355:119;;;16393:79;;:::i;:::-;16355:119;16513:1;16538:53;16583:7;16574:6;16563:9;16559:22;16538:53;:::i;:::-;16528:63;;16484:117;16640:2;16666:53;16711:7;16702:6;16691:9;16687:22;16666:53;:::i;:::-;16656:63;;16611:118;16262:474;;;;;:::o;16742:94::-;16775:8;16823:5;16819:2;16815:14;16794:35;;16742:94;;;:::o;16842:::-;16881:7;16910:20;16924:5;16910:20;:::i;:::-;16899:31;;16842:94;;;:::o;16942:100::-;16981:7;17010:26;17030:5;17010:26;:::i;:::-;16999:37;;16942:100;;;:::o;17048:157::-;17153:45;17173:24;17191:5;17173:24;:::i;:::-;17153:45;:::i;:::-;17148:3;17141:58;17048:157;;:::o;17211:256::-;17323:3;17338:75;17409:3;17400:6;17338:75;:::i;:::-;17438:2;17433:3;17429:12;17422:19;;17458:3;17451:10;;17211:256;;;;:::o;17473:180::-;17521:77;17518:1;17511:88;17618:4;17615:1;17608:15;17642:4;17639:1;17632:15;17659:320;17703:6;17740:1;17734:4;17730:12;17720:22;;17787:1;17781:4;17777:12;17808:18;17798:81;;17864:4;17856:6;17852:17;17842:27;;17798:81;17926:2;17918:6;17915:14;17895:18;17892:38;17889:84;;17945:18;;:::i;:::-;17889:84;17710:269;17659:320;;;:::o;17985:442::-;18134:4;18172:2;18161:9;18157:18;18149:26;;18185:71;18253:1;18242:9;18238:17;18229:6;18185:71;:::i;:::-;18266:72;18334:2;18323:9;18319:18;18310:6;18266:72;:::i;:::-;18348;18416:2;18405:9;18401:18;18392:6;18348:72;:::i;:::-;17985:442;;;;;;:::o;18433:332::-;18554:4;18592:2;18581:9;18577:18;18569:26;;18605:71;18673:1;18662:9;18658:17;18649:6;18605:71;:::i;:::-;18686:72;18754:2;18743:9;18739:18;18730:6;18686:72;:::i;:::-;18433:332;;;;;:::o;18771:165::-;18911:17;18907:1;18899:6;18895:14;18888:41;18771:165;:::o;18942:366::-;19084:3;19105:67;19169:2;19164:3;19105:67;:::i;:::-;19098:74;;19181:93;19270:3;19181:93;:::i;:::-;19299:2;19294:3;19290:12;19283:19;;18942:366;;;:::o;19314:419::-;19480:4;19518:2;19507:9;19503:18;19495:26;;19567:9;19561:4;19557:20;19553:1;19542:9;19538:17;19531:47;19595:131;19721:4;19595:131;:::i;:::-;19587:139;;19314:419;;;:::o;19739:180::-;19787:77;19784:1;19777:88;19884:4;19881:1;19874:15;19908:4;19905:1;19898:15;19925:141;19974:4;19997:3;19989:11;;20020:3;20017:1;20010:14;20054:4;20051:1;20041:18;20033:26;;19925:141;;;:::o;20072:93::-;20109:6;20156:2;20151;20144:5;20140:14;20136:23;20126:33;;20072:93;;;:::o;20171:107::-;20215:8;20265:5;20259:4;20255:16;20234:37;;20171:107;;;;:::o;20284:393::-;20353:6;20403:1;20391:10;20387:18;20426:97;20456:66;20445:9;20426:97;:::i;:::-;20544:39;20574:8;20563:9;20544:39;:::i;:::-;20532:51;;20616:4;20612:9;20605:5;20601:21;20592:30;;20665:4;20655:8;20651:19;20644:5;20641:30;20631:40;;20360:317;;20284:393;;;;;:::o;20683:60::-;20711:3;20732:5;20725:12;;20683:60;;;:::o;20749:142::-;20799:9;20832:53;20850:34;20859:24;20877:5;20859:24;:::i;:::-;20850:34;:::i;:::-;20832:53;:::i;:::-;20819:66;;20749:142;;;:::o;20897:75::-;20940:3;20961:5;20954:12;;20897:75;;;:::o;20978:269::-;21088:39;21119:7;21088:39;:::i;:::-;21149:91;21198:41;21222:16;21198:41;:::i;:::-;21190:6;21183:4;21177:11;21149:91;:::i;:::-;21143:4;21136:105;21054:193;20978:269;;;:::o;21253:73::-;21298:3;21253:73;:::o;21332:189::-;21409:32;;:::i;:::-;21450:65;21508:6;21500;21494:4;21450:65;:::i;:::-;21385:136;21332:189;;:::o;21527:186::-;21587:120;21604:3;21597:5;21594:14;21587:120;;;21658:39;21695:1;21688:5;21658:39;:::i;:::-;21631:1;21624:5;21620:13;21611:22;;21587:120;;;21527:186;;:::o;21719:543::-;21820:2;21815:3;21812:11;21809:446;;;21854:38;21886:5;21854:38;:::i;:::-;21938:29;21956:10;21938:29;:::i;:::-;21928:8;21924:44;22121:2;22109:10;22106:18;22103:49;;;22142:8;22127:23;;22103:49;22165:80;22221:22;22239:3;22221:22;:::i;:::-;22211:8;22207:37;22194:11;22165:80;:::i;:::-;21824:431;;21809:446;21719:543;;;:::o;22268:117::-;22322:8;22372:5;22366:4;22362:16;22341:37;;22268:117;;;;:::o;22391:169::-;22435:6;22468:51;22516:1;22512:6;22504:5;22501:1;22497:13;22468:51;:::i;:::-;22464:56;22549:4;22543;22539:15;22529:25;;22442:118;22391:169;;;;:::o;22565:295::-;22641:4;22787:29;22812:3;22806:4;22787:29;:::i;:::-;22779:37;;22849:3;22846:1;22842:11;22836:4;22833:21;22825:29;;22565:295;;;;:::o;22865:1395::-;22982:37;23015:3;22982:37;:::i;:::-;23084:18;23076:6;23073:30;23070:56;;;23106:18;;:::i;:::-;23070:56;23150:38;23182:4;23176:11;23150:38;:::i;:::-;23235:67;23295:6;23287;23281:4;23235:67;:::i;:::-;23329:1;23353:4;23340:17;;23385:2;23377:6;23374:14;23402:1;23397:618;;;;24059:1;24076:6;24073:77;;;24125:9;24120:3;24116:19;24110:26;24101:35;;24073:77;24176:67;24236:6;24229:5;24176:67;:::i;:::-;24170:4;24163:81;24032:222;23367:887;;23397:618;23449:4;23445:9;23437:6;23433:22;23483:37;23515:4;23483:37;:::i;:::-;23542:1;23556:208;23570:7;23567:1;23564:14;23556:208;;;23649:9;23644:3;23640:19;23634:26;23626:6;23619:42;23700:1;23692:6;23688:14;23678:24;;23747:2;23736:9;23732:18;23719:31;;23593:4;23590:1;23586:12;23581:17;;23556:208;;;23792:6;23783:7;23780:19;23777:179;;;23850:9;23845:3;23841:19;23835:26;23893:48;23935:4;23927:6;23923:17;23912:9;23893:48;:::i;:::-;23885:6;23878:64;23800:156;23777:179;24002:1;23998;23990:6;23986:14;23982:22;23976:4;23969:36;23404:611;;;23367:887;;22957:1303;;;22865:1395;;:::o;24266:229::-;24406:34;24402:1;24394:6;24390:14;24383:58;24475:12;24470:2;24462:6;24458:15;24451:37;24266:229;:::o;24501:366::-;24643:3;24664:67;24728:2;24723:3;24664:67;:::i;:::-;24657:74;;24740:93;24829:3;24740:93;:::i;:::-;24858:2;24853:3;24849:12;24842:19;;24501:366;;;:::o;24873:419::-;25039:4;25077:2;25066:9;25062:18;25054:26;;25126:9;25120:4;25116:20;25112:1;25101:9;25097:17;25090:47;25154:131;25280:4;25154:131;:::i;:::-;25146:139;;24873:419;;;:::o;25298:180::-;25346:77;25343:1;25336:88;25443:4;25440:1;25433:15;25467:4;25464:1;25457:15;25484:191;25524:3;25543:20;25561:1;25543:20;:::i;:::-;25538:25;;25577:20;25595:1;25577:20;:::i;:::-;25572:25;;25620:1;25617;25613:9;25606:16;;25641:3;25638:1;25635:10;25632:36;;;25648:18;;:::i;:::-;25632:36;25484:191;;;;:::o;25681:227::-;25821:34;25817:1;25809:6;25805:14;25798:58;25890:10;25885:2;25877:6;25873:15;25866:35;25681:227;:::o;25914:366::-;26056:3;26077:67;26141:2;26136:3;26077:67;:::i;:::-;26070:74;;26153:93;26242:3;26153:93;:::i;:::-;26271:2;26266:3;26262:12;26255:19;;25914:366;;;:::o;26286:419::-;26452:4;26490:2;26479:9;26475:18;26467:26;;26539:9;26533:4;26529:20;26525:1;26514:9;26510:17;26503:47;26567:131;26693:4;26567:131;:::i;:::-;26559:139;;26286:419;;;:::o;26711:227::-;26851:34;26847:1;26839:6;26835:14;26828:58;26920:10;26915:2;26907:6;26903:15;26896:35;26711:227;:::o;26944:366::-;27086:3;27107:67;27171:2;27166:3;27107:67;:::i;:::-;27100:74;;27183:93;27272:3;27183:93;:::i;:::-;27301:2;27296:3;27292:12;27285:19;;26944:366;;;:::o;27316:419::-;27482:4;27520:2;27509:9;27505:18;27497:26;;27569:9;27563:4;27559:20;27555:1;27544:9;27540:17;27533:47;27597:131;27723:4;27597:131;:::i;:::-;27589:139;;27316:419;;;:::o;27741:227::-;27881:34;27877:1;27869:6;27865:14;27858:58;27950:10;27945:2;27937:6;27933:15;27926:35;27741:227;:::o;27974:366::-;28116:3;28137:67;28201:2;28196:3;28137:67;:::i;:::-;28130:74;;28213:93;28302:3;28213:93;:::i;:::-;28331:2;28326:3;28322:12;28315:19;;27974:366;;;:::o;28346:419::-;28512:4;28550:2;28539:9;28535:18;28527:26;;28599:9;28593:4;28589:20;28585:1;28574:9;28570:17;28563:47;28627:131;28753:4;28627:131;:::i;:::-;28619:139;;28346:419;;;:::o;28771:227::-;28911:34;28907:1;28899:6;28895:14;28888:58;28980:10;28975:2;28967:6;28963:15;28956:35;28771:227;:::o;29004:366::-;29146:3;29167:67;29231:2;29226:3;29167:67;:::i;:::-;29160:74;;29243:93;29332:3;29243:93;:::i;:::-;29361:2;29356:3;29352:12;29345:19;;29004:366;;;:::o;29376:419::-;29542:4;29580:2;29569:9;29565:18;29557:26;;29629:9;29623:4;29619:20;29615:1;29604:9;29600:17;29593:47;29657:131;29783:4;29657:131;:::i;:::-;29649:139;;29376:419;;;:::o;29801:233::-;29941:34;29937:1;29929:6;29925:14;29918:58;30010:16;30005:2;29997:6;29993:15;29986:41;29801:233;:::o;30040:366::-;30182:3;30203:67;30267:2;30262:3;30203:67;:::i;:::-;30196:74;;30279:93;30368:3;30279:93;:::i;:::-;30397:2;30392:3;30388:12;30381:19;;30040:366;;;:::o;30412:419::-;30578:4;30616:2;30605:9;30601:18;30593:26;;30665:9;30659:4;30655:20;30651:1;30640:9;30636:17;30629:47;30693:131;30819:4;30693:131;:::i;:::-;30685:139;;30412:419;;;:::o;30837:165::-;30977:17;30973:1;30965:6;30961:14;30954:41;30837:165;:::o;31008:366::-;31150:3;31171:67;31235:2;31230:3;31171:67;:::i;:::-;31164:74;;31247:93;31336:3;31247:93;:::i;:::-;31365:2;31360:3;31356:12;31349:19;;31008:366;;;:::o;31380:419::-;31546:4;31584:2;31573:9;31569:18;31561:26;;31633:9;31627:4;31623:20;31619:1;31608:9;31604:17;31597:47;31661:131;31787:4;31661:131;:::i;:::-;31653:139;;31380:419;;;:::o;31805:410::-;31845:7;31868:20;31886:1;31868:20;:::i;:::-;31863:25;;31902:20;31920:1;31902:20;:::i;:::-;31897:25;;31957:1;31954;31950:9;31979:30;31997:11;31979:30;:::i;:::-;31968:41;;32158:1;32149:7;32145:15;32142:1;32139:22;32119:1;32112:9;32092:83;32069:139;;32188:18;;:::i;:::-;32069:139;31853:362;31805:410;;;;:::o;32221:176::-;32361:28;32357:1;32349:6;32345:14;32338:52;32221:176;:::o;32403:366::-;32545:3;32566:67;32630:2;32625:3;32566:67;:::i;:::-;32559:74;;32642:93;32731:3;32642:93;:::i;:::-;32760:2;32755:3;32751:12;32744:19;;32403:366;;;:::o;32775:419::-;32941:4;32979:2;32968:9;32964:18;32956:26;;33028:9;33022:4;33018:20;33014:1;33003:9;32999:17;32992:47;33056:131;33182:4;33056:131;:::i;:::-;33048:139;;32775:419;;;:::o;33200:179::-;33340:31;33336:1;33328:6;33324:14;33317:55;33200:179;:::o;33385:366::-;33527:3;33548:67;33612:2;33607:3;33548:67;:::i;:::-;33541:74;;33624:93;33713:3;33624:93;:::i;:::-;33742:2;33737:3;33733:12;33726:19;;33385:366;;;:::o;33757:419::-;33923:4;33961:2;33950:9;33946:18;33938:26;;34010:9;34004:4;34000:20;33996:1;33985:9;33981:17;33974:47;34038:131;34164:4;34038:131;:::i;:::-;34030:139;;33757:419;;;:::o;34182:233::-;34221:3;34244:24;34262:5;34244:24;:::i;:::-;34235:33;;34290:66;34283:5;34280:77;34277:103;;34360:18;;:::i;:::-;34277:103;34407:1;34400:5;34396:13;34389:20;;34182:233;;;:::o;34421:220::-;34561:34;34557:1;34549:6;34545:14;34538:58;34630:3;34625:2;34617:6;34613:15;34606:28;34421:220;:::o;34647:366::-;34789:3;34810:67;34874:2;34869:3;34810:67;:::i;:::-;34803:74;;34886:93;34975:3;34886:93;:::i;:::-;35004:2;34999:3;34995:12;34988:19;;34647:366;;;:::o;35019:419::-;35185:4;35223:2;35212:9;35208:18;35200:26;;35272:9;35266:4;35262:20;35258:1;35247:9;35243:17;35236:47;35300:131;35426:4;35300:131;:::i;:::-;35292:139;;35019:419;;;:::o;35444:148::-;35546:11;35583:3;35568:18;;35444:148;;;;:::o;35598:390::-;35704:3;35732:39;35765:5;35732:39;:::i;:::-;35787:89;35869:6;35864:3;35787:89;:::i;:::-;35780:96;;35885:65;35943:6;35938:3;35931:4;35924:5;35920:16;35885:65;:::i;:::-;35975:6;35970:3;35966:16;35959:23;;35708:280;35598:390;;;;:::o;36018:874::-;36121:3;36158:5;36152:12;36187:36;36213:9;36187:36;:::i;:::-;36239:89;36321:6;36316:3;36239:89;:::i;:::-;36232:96;;36359:1;36348:9;36344:17;36375:1;36370:166;;;;36550:1;36545:341;;;;36337:549;;36370:166;36454:4;36450:9;36439;36435:25;36430:3;36423:38;36516:6;36509:14;36502:22;36494:6;36490:35;36485:3;36481:45;36474:52;;36370:166;;36545:341;36612:38;36644:5;36612:38;:::i;:::-;36672:1;36686:154;36700:6;36697:1;36694:13;36686:154;;;36774:7;36768:14;36764:1;36759:3;36755:11;36748:35;36824:1;36815:7;36811:15;36800:26;;36722:4;36719:1;36715:12;36710:17;;36686:154;;;36869:6;36864:3;36860:16;36853:23;;36552:334;;36337:549;;36125:767;;36018:874;;;;:::o;36898:589::-;37123:3;37145:95;37236:3;37227:6;37145:95;:::i;:::-;37138:102;;37257:95;37348:3;37339:6;37257:95;:::i;:::-;37250:102;;37369:92;37457:3;37448:6;37369:92;:::i;:::-;37362:99;;37478:3;37471:10;;36898:589;;;;;;:::o;37493:98::-;37544:6;37578:5;37572:12;37562:22;;37493:98;;;:::o;37597:168::-;37680:11;37714:6;37709:3;37702:19;37754:4;37749:3;37745:14;37730:29;;37597:168;;;;:::o;37771:373::-;37857:3;37885:38;37917:5;37885:38;:::i;:::-;37939:70;38002:6;37997:3;37939:70;:::i;:::-;37932:77;;38018:65;38076:6;38071:3;38064:4;38057:5;38053:16;38018:65;:::i;:::-;38108:29;38130:6;38108:29;:::i;:::-;38103:3;38099:39;38092:46;;37861:283;37771:373;;;;:::o;38150:640::-;38345:4;38383:3;38372:9;38368:19;38360:27;;38397:71;38465:1;38454:9;38450:17;38441:6;38397:71;:::i;:::-;38478:72;38546:2;38535:9;38531:18;38522:6;38478:72;:::i;:::-;38560;38628:2;38617:9;38613:18;38604:6;38560:72;:::i;:::-;38679:9;38673:4;38669:20;38664:2;38653:9;38649:18;38642:48;38707:76;38778:4;38769:6;38707:76;:::i;:::-;38699:84;;38150:640;;;;;;;:::o;38796:141::-;38852:5;38883:6;38877:13;38868:22;;38899:32;38925:5;38899:32;:::i;:::-;38796:141;;;;:::o;38943:349::-;39012:6;39061:2;39049:9;39040:7;39036:23;39032:32;39029:119;;;39067:79;;:::i;:::-;39029:119;39187:1;39212:63;39267:7;39258:6;39247:9;39243:22;39212:63;:::i;:::-;39202:73;;39158:127;38943:349;;;;:::o;39298:180::-;39346:77;39343:1;39336:88;39443:4;39440:1;39433:15;39467:4;39464:1;39457:15;39484:194;39524:4;39544:20;39562:1;39544:20;:::i;:::-;39539:25;;39578:20;39596:1;39578:20;:::i;:::-;39573:25;;39622:1;39619;39615:9;39607:17;;39646:1;39640:4;39637:11;39634:37;;;39651:18;;:::i;:::-;39634:37;39484:194;;;;:::o;39684:180::-;39732:77;39729:1;39722:88;39829:4;39826:1;39819:15;39853:4;39850:1;39843:15

Swarm Source

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

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