ETH Price: $3,266.78 (-7.09%)

Token

CryptoAvatarz (CryptoAvatarz)
 

Overview

Max Total Supply

710 CryptoAvatarz

Holders

238

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 CryptoAvatarz
0x384d45505341fa07eee14fd1af48c75797fc09bd
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:
CryptoAvatarz

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

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


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @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 up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (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; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

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

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            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 (rounding == Rounding.Up && 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 down.
     *
     * 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 + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * 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 + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * 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 + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * 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 10, 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 + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

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


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

pragma solidity ^0.8.0;


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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        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), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @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) {
        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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

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

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


// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

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

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom}
     * whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

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

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

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

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // Mapping from token ID to approved address.
    mapping(uint256 => TokenApprovalRef) private _tokenApprovals;

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

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

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

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

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

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

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

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

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

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

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

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

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token IDs
     * are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token IDs
     * have been transferred. This includes minting.
     * And also called after one token has been burned.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

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

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

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

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

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

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

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


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

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721AQueryable.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

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


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

pragma solidity ^0.8.4;



/**
 * @title ERC721AQueryable.
 *
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] calldata tokenIds)
        external
        view
        virtual
        override
        returns (TokenOwnership[] memory)
    {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view virtual override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

// File: contracts/CryptoAvatarz.sol


pragma solidity ^0.8.4;







// CryptoAvatarz
contract CryptoAvatarz is ERC721AQueryable, Ownable, ReentrancyGuard {
    uint256 public maxSupply;
    string public baseURI;
    uint256 public maxBatch;
    string public defaultURI;
    bytes32 public ogRoot;
    bytes32 public whitelistRoot;

    uint256 public publicPrice;

    uint256 public whitelistPrice;

    uint256 public ogPrice;

    uint256 public ogStartTime;

    uint256 public ogEndTime;

    uint256 public publicStartTime;

    uint256 public publicEndTime;

    uint256 public whitelistStartTime;

    uint256 public whitelistEndTime;

    uint256 public publicNum;

    uint256 public whitelistNum;

    uint256 public maxWhitelistNum;

    uint256 public ogNum;

    uint256 public maxPublicNum;

    uint256 public reservedNum;

    mapping(address => uint256) public ogMined;

    mapping(address => uint256) public whitelistMined;

    mapping(address => uint256) public mined;

    uint256 public premintPrice;

    using Strings for uint256;

    constructor(string memory uri) ERC721A("CryptoAvatarz", "CryptoAvatarz") {
        maxBatch = 3;
        maxSupply = 5555;
        maxPublicNum = 5555;
        maxWhitelistNum = 0;
        whitelistStartTime = 1630206399;
        whitelistEndTime = 99999999999;
        ogStartTime = 1630206399;
        ogEndTime = 99999999999;
        publicStartTime = 1671271200;
        publicEndTime = 99999999999;
        publicPrice = 0.001 ether;
        premintPrice = 0 ether;
        baseURI = uri;
    }

    // 1000000000000000 -》0.001
    /**
     * @dev Burns `tokenId`. See {ERC721A-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        _burn(tokenId, true);
    }

    function setPrice(
        uint256 _publicPrice,
        uint256 _whitelistPrice,
        uint256 _ogPrice
    ) external onlyOwner {
        publicPrice = _publicPrice;
        whitelistPrice = _whitelistPrice;
        ogPrice = _ogPrice;
    }

    function setMintTime(
        uint256 _ogStartTime,
        uint256 _ogEndTime,
        uint256 _publicStartTime,
        uint256 _publicEndTime,
        uint256 _whitelistStartTime,
        uint256 _whitelistEndTime
    ) external onlyOwner {
        publicStartTime = _publicStartTime;
        publicEndTime = _publicEndTime;
        ogStartTime = _ogStartTime;
        ogEndTime = _ogEndTime;
        whitelistStartTime = _whitelistStartTime;
        whitelistEndTime = _whitelistEndTime;
    }

    function setMaxNum(uint256 _maxPublicNum) external onlyOwner {
        maxPublicNum = _maxPublicNum;
    }

    function mint(address _address, uint256 _num) internal nonReentrant {
        require(totalSupply() + _num <= maxSupply, "Num must lower maxSupply");
        _safeMint(_address, _num);
    }

    function mintReservedBatch(address _address, uint256 _num)
        external
        onlyOwner
    {
        mint(_address, _num);
        reservedNum += _num;
    }

    function mintReserved(address[] calldata _address) external onlyOwner {
        uint256 num = _address.length;

        for (uint256 i = 0; i < num; i++) {
            mint(_address[i], 1);
        }
        reservedNum += num;
    }

    function ogMint(uint256 _num, bytes32[] memory _proof) external payable {
        require(mined[msg.sender] + _num <= maxBatch, "Num must lt or eq 3");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(
            MerkleProof.verify(_proof, ogRoot, leaf),
            "Verification failed"
        );
        require(ogStartTime <= block.timestamp, "OgtMint has not started yet");
        require(ogEndTime > block.timestamp, "OgMint has ended");
        require(
            publicNum + _num <= maxPublicNum,
            "Num must lower maxPublicNum"
        );
        uint256 ogFreeNum = 2 - ogMined[msg.sender];
        if (_num < ogFreeNum) {
            ogFreeNum = _num;
        }
        uint256 totalPrice = premintPrice * (_num - ogFreeNum);

        ogNum += ogFreeNum;
        ogMined[msg.sender] += ogFreeNum;
        require(msg.value >= totalPrice, "value not eq");
        mint(msg.sender, _num);

        mined[msg.sender] += _num;
    }

    function whitelistMint(uint256 _num, bytes32[] memory _proof)
        external
        payable
    {
        require(mined[msg.sender] + _num <= maxBatch, "Num must lt or eq 3");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(
            MerkleProof.verify(_proof, whitelistRoot, leaf),
            "Verification failed"
        );
        require(
            whitelistStartTime <= block.timestamp,
            "WhitelistMint has not started yet"
        );
        require(whitelistEndTime > block.timestamp, "WhitelistMint has ended");

        require(
            publicNum + _num <= maxPublicNum,
            "Num must lower maxPublicNum"
        );
        uint256 wlFreeNum = 1 - whitelistMined[msg.sender];
        if (_num < wlFreeNum) {
            wlFreeNum = _num;
        }

        uint256 totalPrice = premintPrice * (_num - wlFreeNum);
        require(
            whitelistNum + wlFreeNum <= maxWhitelistNum,
            "total whiteListNum lt or eq maxWhitelistNum "
        );
        whitelistNum += wlFreeNum;
        whitelistMined[msg.sender] += wlFreeNum;
        require(msg.value >= totalPrice, "value not eq");
        mint(msg.sender, _num);

        mined[msg.sender] += _num;
    }

    function publicMint(uint256 _num) public payable {
        require(mined[msg.sender] + _num <= maxBatch, "Num must lt or eq 3");
        require(
            msg.value == publicPrice * _num,
            "Value must eq publicPrice*num"
        );

        require(
            publicStartTime <= block.timestamp,
            "PublicMint has not started yet"
        );
        require(publicEndTime > block.timestamp, "PublicMint has ended");
        require(
            publicNum + _num <= maxPublicNum,
            "Num must lower maxPublicNum"
        );
        mint(msg.sender, _num);
        publicNum += _num;

        mined[msg.sender] += _num;
    }

    function setWhiteListRoot(bytes32 _whitelistRoot) external onlyOwner {
        whitelistRoot = _whitelistRoot;
    }

    function setRoot(bytes32 _ogRoot, bytes32 _whitelistRoot)
        external
        onlyOwner
    {
        ogRoot = _ogRoot;
        whitelistRoot = _whitelistRoot;
    }

    function setMaxBatch(uint256 _maxBatch) public onlyOwner {
        maxBatch = _maxBatch;
    }

    function withdrawETH(address payable _to) external onlyOwner {
        (bool success, ) = _to.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }

    function withdrawToken(IERC20 _token, address _to) external onlyOwner {
        _token.transfer(_to, _token.balanceOf(address(this)));
    }

    function setBaseURI(string calldata uri) external onlyOwner {
        baseURI = uri;
    }

    function setDefaultURI(string calldata _defaultURI) public onlyOwner {
        defaultURI = _defaultURI;
    }

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

    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory imageURI = bytes(baseURI).length > 0
            ? string(abi.encodePacked(baseURI, _tokenId.toString(), ".json"))
            : defaultURI;

        return imageURI;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"defaultURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBatch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWhitelistNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mined","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_address","type":"address[]"}],"name":"mintReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"mintReservedBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ogMined","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_num","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"ogMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"ogNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"premintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedNum","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":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_defaultURI","type":"string"}],"name":"setDefaultURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBatch","type":"uint256"}],"name":"setMaxBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPublicNum","type":"uint256"}],"name":"setMaxNum","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ogStartTime","type":"uint256"},{"internalType":"uint256","name":"_ogEndTime","type":"uint256"},{"internalType":"uint256","name":"_publicStartTime","type":"uint256"},{"internalType":"uint256","name":"_publicEndTime","type":"uint256"},{"internalType":"uint256","name":"_whitelistStartTime","type":"uint256"},{"internalType":"uint256","name":"_whitelistEndTime","type":"uint256"}],"name":"setMintTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicPrice","type":"uint256"},{"internalType":"uint256","name":"_whitelistPrice","type":"uint256"},{"internalType":"uint256","name":"_ogPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_ogRoot","type":"bytes32"},{"internalType":"bytes32","name":"_whitelistRoot","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistRoot","type":"bytes32"}],"name":"setWhiteListRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistMined","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_num","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162006007380380620060078339818101604052810190620000379190620003a7565b6040518060400160405280600d81526020017f43727970746f4176617461727a000000000000000000000000000000000000008152506040518060400160405280600d81526020017f43727970746f4176617461727a000000000000000000000000000000000000008152508160029080519060200190620000bb92919062000285565b508060039080519060200190620000d492919062000285565b50620000e5620001b260201b60201c565b60008190555050506200010d62000101620001b760201b60201c565b620001bf60201b60201c565b60016009819055506003600c819055506115b3600a819055506115b3601d819055506000601b8190555063612af9bf60178190555064174876e7ff60188190555063612af9bf60138190555064174876e7ff60148190555063639d932060158190555064174876e7ff60168190555066038d7ea4c68000601081905550600060228190555080600b9080519060200190620001aa92919062000285565b50506200055c565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002939062000481565b90600052602060002090601f016020900481019282620002b7576000855562000303565b82601f10620002d257805160ff191683800117855562000303565b8280016001018555821562000303579182015b8281111562000302578251825591602001919060010190620002e5565b5b50905062000312919062000316565b5090565b5b808211156200033157600081600090555060010162000317565b5090565b60006200034c620003468462000415565b620003ec565b9050828152602081018484840111156200036557600080fd5b620003728482856200044b565b509392505050565b600082601f8301126200038c57600080fd5b81516200039e84826020860162000335565b91505092915050565b600060208284031215620003ba57600080fd5b600082015167ffffffffffffffff811115620003d557600080fd5b620003e3848285016200037a565b91505092915050565b6000620003f86200040b565b9050620004068282620004b7565b919050565b6000604051905090565b600067ffffffffffffffff8211156200043357620004326200051c565b5b6200043e826200054b565b9050602081019050919050565b60005b838110156200046b5780820151818401526020810190506200044e565b838111156200047b576000848401525b50505050565b600060028204905060018216806200049a57607f821691505b60208210811415620004b157620004b0620004ed565b5b50919050565b620004c2826200054b565b810181811067ffffffffffffffff82111715620004e457620004e36200051c565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b615a9b806200056c6000396000f3fe6080604052600436106103ad5760003560e01c8063715018a6116101e7578063aa585d561161010d578063d89c6888116100a0578063ee7bf8181161006f578063ee7bf81814610dc1578063f2fde38b14610dec578063f95b5b9914610e15578063fc1a1c3614610e40576103ad565b8063d89c688814610d05578063da1b9e0814610d30578063e985e9c514610d59578063ebdfd72214610d96576103ad565b8063c86c8d8a116100dc578063c86c8d8a14610c56578063c87b56dd14610c81578063d2cab05614610cbe578063d5abeb0114610cda576103ad565b8063aa585d5614610ba9578063b88d4fde14610bd2578063c0edc37d14610bee578063c23dc68f14610c19576103ad565b80639286a52d11610185578063a22cb46511610154578063a22cb46514610b01578063a60062ad14610b2a578063a80ea4eb14610b55578063a945bf8014610b7e576103ad565b80639286a52d14610a455780639292caaf14610a6e57806395d89b4114610a9957806399a2557a14610ac4576103ad565b80638462151c116101c15780638462151c14610989578063850f3f3f146109c65780638da5cb5b146109ef578063903afdc014610a1a576103ad565b8063715018a61461090a5780637f7e80b914610921578063801d8c9a1461095e576103ad565b806342842e0e116102d75780635c9478101161026a57806367765b871161023957806367765b871461084e578063690d8320146108795780636c0360eb146108a257806370a08231146108cd576103ad565b80635c9478101461077e5780635d195c52146107bb5780635fd1bbc4146107e65780636352211e14610811576103ad565b80634574f327116102a65780634574f327146106b0578063517430c9146106ed57806355f804b3146107185780635bbb217714610741576103ad565b806342842e0e1461061957806342966c681461063557806342af83fb1461065e57806345149bb314610687576103ad565b806323b872dd1161034f578063300b23d81161031e578063300b23d814610571578063386bfc981461059a5780633a367a67146105c55780633aeac4e1146105f0576103ad565b806323b872dd146104f25780632b314dc61461050e5780632c27e5811461052a5780632db1154414610555576103ad565b8063081812fc1161038b578063081812fc14610443578063095ea7b31461048057806315f5d8a01461049c57806318160ddd146104c7576103ad565b806301ffc9a7146103b257806302e5329e146103ef57806306fdde0314610418575b600080fd5b3480156103be57600080fd5b506103d960048036038101906103d491906144fd565b610e6b565b6040516103e69190614e93565b60405180910390f35b3480156103fb57600080fd5b50610416600480360381019061041191906145d0565b610efd565b005b34801561042457600080fd5b5061042d610f0f565b60405161043a9190614ec9565b60405180910390f35b34801561044f57600080fd5b5061046a600480360381019061046591906145d0565b610fa1565b6040516104779190614dbf565b60405180910390f35b61049a6004803603810190610495919061435a565b611020565b005b3480156104a857600080fd5b506104b1611164565b6040516104be9190615146565b60405180910390f35b3480156104d357600080fd5b506104dc61116a565b6040516104e99190615146565b60405180910390f35b61050c60048036038101906105079190614254565b611181565b005b61052860048036038101906105239190614622565b6114a6565b005b34801561053657600080fd5b5061053f611819565b60405161054c9190615146565b60405180910390f35b61056f600480360381019061056a91906145d0565b61181f565b005b34801561057d57600080fd5b50610598600480360381019061059391906145d0565b611a54565b005b3480156105a657600080fd5b506105af611a66565b6040516105bc9190614eae565b60405180910390f35b3480156105d157600080fd5b506105da611a6c565b6040516105e79190614ec9565b60405180910390f35b3480156105fc57600080fd5b506106176004803603810190610612919061454f565b611afa565b005b610633600480360381019061062e9190614254565b611c1c565b005b34801561064157600080fd5b5061065c600480360381019061065791906145d0565b611c3c565b005b34801561066a57600080fd5b50610685600480360381019061068091906144c1565b611c4a565b005b34801561069357600080fd5b506106ae60048036038101906106a99190614498565b611c64565b005b3480156106bc57600080fd5b506106d760048036038101906106d291906141c6565b611c76565b6040516106e49190615146565b60405180910390f35b3480156106f957600080fd5b50610702611c8e565b60405161070f9190615146565b60405180910390f35b34801561072457600080fd5b5061073f600480360381019061073a919061458b565b611c94565b005b34801561074d57600080fd5b506107686004803603810190610763919061442a565b611cb2565b6040516107759190614e4f565b60405180910390f35b34801561078a57600080fd5b506107a560048036038101906107a091906141c6565b611de7565b6040516107b29190615146565b60405180910390f35b3480156107c757600080fd5b506107d0611dfe565b6040516107dd9190615146565b60405180910390f35b3480156107f257600080fd5b506107fb611e04565b6040516108089190615146565b60405180910390f35b34801561081d57600080fd5b50610838600480360381019061083391906145d0565b611e0a565b6040516108459190614dbf565b60405180910390f35b34801561085a57600080fd5b50610863611e1c565b6040516108709190615146565b60405180910390f35b34801561088557600080fd5b506108a0600480360381019061089b91906141ef565b611e22565b005b3480156108ae57600080fd5b506108b7611eda565b6040516108c49190614ec9565b60405180910390f35b3480156108d957600080fd5b506108f460048036038101906108ef91906141c6565b611f68565b6040516109019190615146565b60405180910390f35b34801561091657600080fd5b5061091f612021565b005b34801561092d57600080fd5b50610948600480360381019061094391906141c6565b612035565b6040516109559190615146565b60405180910390f35b34801561096a57600080fd5b5061097361204d565b6040516109809190615146565b60405180910390f35b34801561099557600080fd5b506109b060048036038101906109ab91906141c6565b612053565b6040516109bd9190614e71565b60405180910390f35b3480156109d257600080fd5b506109ed60048036038101906109e891906143e5565b6121e9565b005b3480156109fb57600080fd5b50610a0461228e565b604051610a119190614dbf565b60405180910390f35b348015610a2657600080fd5b50610a2f6122b8565b604051610a3c9190614eae565b60405180910390f35b348015610a5157600080fd5b50610a6c6004803603810190610a6791906146c5565b6122be565b005b348015610a7a57600080fd5b50610a836122f8565b604051610a909190615146565b60405180910390f35b348015610aa557600080fd5b50610aae6122fe565b604051610abb9190614ec9565b60405180910390f35b348015610ad057600080fd5b50610aeb6004803603810190610ae69190614396565b612390565b604051610af89190614e71565b60405180910390f35b348015610b0d57600080fd5b50610b286004803603810190610b23919061431e565b6125f0565b005b348015610b3657600080fd5b50610b3f6126fb565b604051610b4c9190615146565b60405180910390f35b348015610b6157600080fd5b50610b7c6004803603810190610b77919061435a565b612701565b005b348015610b8a57600080fd5b50610b93612730565b604051610ba09190615146565b60405180910390f35b348015610bb557600080fd5b50610bd06004803603810190610bcb9190614676565b612736565b005b610bec6004803603810190610be791906142a3565b612758565b005b348015610bfa57600080fd5b50610c036127cb565b604051610c109190615146565b60405180910390f35b348015610c2557600080fd5b50610c406004803603810190610c3b91906145d0565b6127d1565b604051610c4d919061512b565b60405180910390f35b348015610c6257600080fd5b50610c6b61283b565b604051610c789190615146565b60405180910390f35b348015610c8d57600080fd5b50610ca86004803603810190610ca391906145d0565b612841565b604051610cb59190614ec9565b60405180910390f35b610cd86004803603810190610cd39190614622565b612969565b005b348015610ce657600080fd5b50610cef612d2e565b604051610cfc9190615146565b60405180910390f35b348015610d1157600080fd5b50610d1a612d34565b604051610d279190615146565b60405180910390f35b348015610d3c57600080fd5b50610d576004803603810190610d52919061458b565b612d3a565b005b348015610d6557600080fd5b50610d806004803603810190610d7b9190614218565b612d58565b604051610d8d9190614e93565b60405180910390f35b348015610da257600080fd5b50610dab612dec565b604051610db89190615146565b60405180910390f35b348015610dcd57600080fd5b50610dd6612df2565b604051610de39190615146565b60405180910390f35b348015610df857600080fd5b50610e136004803603810190610e0e91906141c6565b612df8565b005b348015610e2157600080fd5b50610e2a612e7c565b604051610e379190615146565b60405180910390f35b348015610e4c57600080fd5b50610e55612e82565b604051610e629190615146565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ec657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ef65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610f05612e88565b80601d8190555050565b606060028054610f1e906154a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4a906154a3565b8015610f975780601f10610f6c57610100808354040283529160200191610f97565b820191906000526020600020905b815481529060010190602001808311610f7a57829003601f168201915b5050505050905090565b6000610fac82612f06565b610fe2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061102b82611e0a565b90508073ffffffffffffffffffffffffffffffffffffffff1661104c612f65565b73ffffffffffffffffffffffffffffffffffffffff16146110af5761107881611073612f65565b612d58565b6110ae576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60125481565b6000611174612f6d565b6001546000540303905090565b600061118c82612f72565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111f3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806111ff84613040565b915091506112158187611210612f65565b613067565b6112615761122a86611225612f65565b612d58565b611260576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156112c8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112d586868660016130ab565b80156112e057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506113ae8561138a8888876130b1565b7c0200000000000000000000000000000000000000000000000000000000176130d9565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611436576000600185019050600060046000838152602001908152602001600020541415611434576000548114611433578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461149e8686866001613104565b505050505050565b600c5482602160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114f491906152b8565b1115611535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152c9061508b565b60405180910390fd5b6000336040516020016115489190614d60565b60405160208183030381529060405280519060200120905061156d82600e548361310a565b6115ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a390614f8b565b60405180910390fd5b4260135411156115f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e890614feb565b60405180910390fd5b4260145411611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c90614f2b565b60405180910390fd5b601d548360195461164691906152b8565b1115611687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167e9061510b565b60405180910390fd5b6000601f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460026116d59190615368565b9050808410156116e3578390505b600081856116f19190615368565b6022546116fe919061530e565b905081601c600082825461171291906152b8565b9250508190555081601f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461176891906152b8565b92505081905550803410156117b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a990614eeb565b60405180910390fd5b6117bc3386613121565b84602160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461180b91906152b8565b925050819055505050505050565b60165481565b600c5481602160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461186d91906152b8565b11156118ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a59061508b565b60405180910390fd5b806010546118bc919061530e565b34146118fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f49061502b565b60405180910390fd5b426015541115611942576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119399061506b565b60405180910390fd5b4260165411611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d90614f6b565b60405180910390fd5b601d548160195461199791906152b8565b11156119d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cf9061510b565b60405180910390fd5b6119e23382613121565b80601960008282546119f491906152b8565b9250508190555080602160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a4a91906152b8565b9250508190555050565b611a5c612e88565b80600c8190555050565b600f5481565b600d8054611a79906154a3565b80601f0160208091040260200160405190810160405280929190818152602001828054611aa5906154a3565b8015611af25780601f10611ac757610100808354040283529160200191611af2565b820191906000526020600020905b815481529060010190602001808311611ad557829003601f168201915b505050505081565b611b02612e88565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb828473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611b589190614dbf565b60206040518083038186803b158015611b7057600080fd5b505afa158015611b84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ba891906145f9565b6040518363ffffffff1660e01b8152600401611bc5929190614e26565b602060405180830381600087803b158015611bdf57600080fd5b505af1158015611bf3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c17919061446f565b505050565b611c3783838360405180602001604052806000815250612758565b505050565b611c47816001613196565b50565b611c52612e88565b81600e8190555080600f819055505050565b611c6c612e88565b80600f8190555050565b60216020528060005260406000206000915090505481565b601b5481565b611c9c612e88565b8181600b9190611cad929190613e26565b505050565b6060600083839050905060008167ffffffffffffffff811115611cfe577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611d3757816020015b611d24613eac565b815260200190600190039081611d1c5790505b50905060005b828114611ddb57611d8c868683818110611d80577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201356127d1565b828281518110611dc5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181905250806001019050611d3d565b50809250505092915050565b602080528060005260406000206000915090505481565b601c5481565b60155481565b6000611e1582612f72565b9050919050565b600c5481565b611e2a612e88565b60008173ffffffffffffffffffffffffffffffffffffffff1647604051611e5090614daa565b60006040518083038185875af1925050503d8060008114611e8d576040519150601f19603f3d011682016040523d82523d6000602084013e611e92565b606091505b5050905080611ed6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecd906150ab565b60405180910390fd5b5050565b600b8054611ee7906154a3565b80601f0160208091040260200160405190810160405280929190818152602001828054611f13906154a3565b8015611f605780601f10611f3557610100808354040283529160200191611f60565b820191906000526020600020905b815481529060010190602001808311611f4357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fd0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b612029612e88565b61203360006133ea565b565b601f6020528060005260406000206000915090505481565b60225481565b6060600080600061206385611f68565b905060008167ffffffffffffffff8111156120a7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156120d55781602001602082028036833780820191505090505b5090506120e0613eac565b60006120ea612f6d565b90505b8386146121db576120fd816134b0565b915081604001511561210e576121d0565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461214e57816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156121cf57808387806001019850815181106121c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b5b8060010190506120ed565b508195505050505050919050565b6121f1612e88565b600082829050905060005b8181101561226f5761225c848483818110612240577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061225591906141c6565b6001613121565b808061226790615506565b9150506121fc565b5080601e600082825461228291906152b8565b92505081905550505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b6122c6612e88565b836015819055508260168190555085601381905550846014819055508160178190555080601881905550505050505050565b60175481565b60606003805461230d906154a3565b80601f0160208091040260200160405190810160405280929190818152602001828054612339906154a3565b80156123865780601f1061235b57610100808354040283529160200191612386565b820191906000526020600020905b81548152906001019060200180831161236957829003601f168201915b5050505050905090565b60608183106123cb576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806123d66134db565b90506123e0612f6d565b8510156123f2576123ef612f6d565b94505b808411156123fe578093505b600061240987611f68565b90508486101561242c576000868603905081811015612426578091505b50612431565b600090505b60008167ffffffffffffffff811115612473577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156124a15781602001602082028036833780820191505090505b50905060008214156124b957809450505050506125e9565b60006124c4886127d1565b9050600081604001516124d957816000015190505b60008990505b8881141580156124ef5750848714155b156125db576124fd816134b0565b925082604001511561250e576125d0565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461254e57826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125cf57808488806001019950815181106125c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b5b8060010190506124df565b508583528296505050505050505b9392505050565b80600760006125fd612f65565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166126aa612f65565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516126ef9190614e93565b60405180910390a35050565b60195481565b612709612e88565b6127138282613121565b80601e600082825461272591906152b8565b925050819055505050565b60105481565b61273e612e88565b826010819055508160118190555080601281905550505050565b612763848484611181565b60008373ffffffffffffffffffffffffffffffffffffffff163b146127c55761278e848484846134e4565b6127c4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b601d5481565b6127d9613eac565b6127e1613eac565b6127e9612f6d565b8310806127fd57506127f96134db565b8310155b1561280b5780915050612836565b612814836134b0565b90508060400151156128295780915050612836565b61283283613644565b9150505b919050565b60135481565b606061284c82612f06565b61288b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128829061504b565b60405180910390fd5b600080600b805461289b906154a3565b90501161293257600d80546128af906154a3565b80601f01602080910402602001604051908101604052809291908181526020018280546128db906154a3565b80156129285780601f106128fd57610100808354040283529160200191612928565b820191906000526020600020905b81548152906001019060200180831161290b57829003601f168201915b505050505061295e565b600b61293d84613664565b60405160200161294e929190614d7b565b6040516020818303038152906040525b905080915050919050565b600c5482602160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129b791906152b8565b11156129f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ef9061508b565b60405180910390fd5b600033604051602001612a0b9190614d60565b604051602081830303815290604052805190602001209050612a3082600f548361310a565b612a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6690614f8b565b60405180910390fd5b426017541115612ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aab906150cb565b60405180910390fd5b4260185411612af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aef90614fcb565b60405180910390fd5b601d5483601954612b0991906152b8565b1115612b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b419061510b565b60405180910390fd5b6000602060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546001612b989190615368565b905080841015612ba6578390505b60008185612bb49190615368565b602254612bc1919061530e565b9050601b5482601a54612bd491906152b8565b1115612c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0c90614f0b565b60405180910390fd5b81601a6000828254612c2791906152b8565b9250508190555081602060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c7d91906152b8565b9250508190555080341015612cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cbe90614eeb565b60405180910390fd5b612cd13386613121565b84602160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d2091906152b8565b925050819055505050505050565b600a5481565b601e5481565b612d42612e88565b8181600d9190612d53929190613e26565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60185481565b60145481565b612e00612e88565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6790614f4b565b60405180910390fd5b612e79816133ea565b50565b601a5481565b60115481565b612e90613788565b73ffffffffffffffffffffffffffffffffffffffff16612eae61228e565b73ffffffffffffffffffffffffffffffffffffffff1614612f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612efb9061500b565b60405180910390fd5b565b600081612f11612f6d565b11158015612f20575060005482105b8015612f5e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080612f81612f6d565b11613009576000548110156130085760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415613006575b6000811415612ffc576004600083600190039350838152602001908152602001600020549050612fd1565b809250505061303b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86130c8868684613790565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000826131178584613799565b1490509392505050565b613129613815565b600a548161313561116a565b61313f91906152b8565b1115613180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317790614fab565b60405180910390fd5b61318a8282613865565b613192613883565b5050565b60006131a183612f72565b905060008190506000806131b486613040565b91509150841561321d576131d081846131cb612f65565b613067565b61321c576131e5836131e0612f65565b612d58565b61321b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b61322b8360008860016130ab565b801561323657600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506132de8361329b856000886130b1565b7c02000000000000000000000000000000000000000000000000000000007c010000000000000000000000000000000000000000000000000000000017176130d9565b600460008881526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000085161415613366576000600187019050600060046000838152602001908152602001600020541415613364576000548114613363578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133d0836000886001613104565b600160008154809291906001019190505550505050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6134b8613eac565b6134d4600460008481526020019081526020016000205461388d565b9050919050565b60008054905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261350a612f65565b8786866040518563ffffffff1660e01b815260040161352c9493929190614dda565b602060405180830381600087803b15801561354657600080fd5b505af192505050801561357757506040513d601f19601f820116820180604052508101906135749190614526565b60015b6135f1573d80600081146135a7576040519150601f19603f3d011682016040523d82523d6000602084013e6135ac565b606091505b506000815114156135e9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b61364c613eac565b61365d61365883612f72565b61388d565b9050919050565b60606000600161367384613943565b01905060008167ffffffffffffffff8111156136b8577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156136ea5781602001600182028036833780820191505090505b509050600082602001820190505b60011561377d578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581613767577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b04945060008514156137785761377d565b6136f8565b819350505050919050565b600033905090565b60009392505050565b60008082905060005b845181101561380a576137f5828683815181106137e8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151613b7a565b9150808061380290615506565b9150506137a2565b508091505092915050565b6002600954141561385b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613852906150eb565b60405180910390fd5b6002600981905550565b61387f828260405180602001604052806000815250613ba5565b5050565b6001600981905550565b613895613eac565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106139c7577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816139bd577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506040810190505b6d04ee2d6d415b85acef81000000008310613a2a576d04ee2d6d415b85acef81000000008381613a20577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506020810190505b662386f26fc100008310613a7f57662386f26fc100008381613a75577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506010810190505b6305f5e1008310613ace576305f5e1008381613ac4577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506008810190505b6127108310613b19576127108381613b0f577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506004810190505b60648310613b625760648381613b58577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506002810190505b600a8310613b71576001810190505b80915050919050565b6000818310613b9257613b8d8284613c42565b613b9d565b613b9c8383613c42565b5b905092915050565b613baf8383613c59565b60008373ffffffffffffffffffffffffffffffffffffffff163b14613c3d57600080549050600083820390505b613bef60008683806001019450866134e4565b613c25576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110613bdc578160005414613c3a57600080fd5b50505b505050565b600082600052816020526040600020905092915050565b6000805490506000821415613c9a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613ca760008483856130ab565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613d1e83613d0f60008660006130b1565b613d1885613e16565b176130d9565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114613dbf57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613d84565b506000821415613dfb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050613e116000848385613104565b505050565b60006001821460e11b9050919050565b828054613e32906154a3565b90600052602060002090601f016020900481019282613e545760008555613e9b565b82601f10613e6d57803560ff1916838001178555613e9b565b82800160010185558215613e9b579182015b82811115613e9a578235825591602001919060010190613e7f565b5b509050613ea89190613efb565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115613f14576000816000905550600101613efc565b5090565b6000613f2b613f2684615186565b615161565b90508083825260208201905082856020860282011115613f4a57600080fd5b60005b85811015613f7a5781613f6088826140d4565b845260208401935060208301925050600181019050613f4d565b5050509392505050565b6000613f97613f92846151b2565b615161565b905082815260208101848484011115613faf57600080fd5b613fba848285615461565b509392505050565b600081359050613fd1816159c4565b92915050565b600081359050613fe6816159db565b92915050565b60008083601f840112613ffe57600080fd5b8235905067ffffffffffffffff81111561401757600080fd5b60208301915083602082028301111561402f57600080fd5b9250929050565b600082601f83011261404757600080fd5b8135614057848260208601613f18565b91505092915050565b60008083601f84011261407257600080fd5b8235905067ffffffffffffffff81111561408b57600080fd5b6020830191508360208202830111156140a357600080fd5b9250929050565b6000813590506140b9816159f2565b92915050565b6000815190506140ce816159f2565b92915050565b6000813590506140e381615a09565b92915050565b6000813590506140f881615a20565b92915050565b60008151905061410d81615a20565b92915050565b600082601f83011261412457600080fd5b8135614134848260208601613f84565b91505092915050565b60008135905061414c81615a37565b92915050565b60008083601f84011261416457600080fd5b8235905067ffffffffffffffff81111561417d57600080fd5b60208301915083600182028301111561419557600080fd5b9250929050565b6000813590506141ab81615a4e565b92915050565b6000815190506141c081615a4e565b92915050565b6000602082840312156141d857600080fd5b60006141e684828501613fc2565b91505092915050565b60006020828403121561420157600080fd5b600061420f84828501613fd7565b91505092915050565b6000806040838503121561422b57600080fd5b600061423985828601613fc2565b925050602061424a85828601613fc2565b9150509250929050565b60008060006060848603121561426957600080fd5b600061427786828701613fc2565b935050602061428886828701613fc2565b92505060406142998682870161419c565b9150509250925092565b600080600080608085870312156142b957600080fd5b60006142c787828801613fc2565b94505060206142d887828801613fc2565b93505060406142e98782880161419c565b925050606085013567ffffffffffffffff81111561430657600080fd5b61431287828801614113565b91505092959194509250565b6000806040838503121561433157600080fd5b600061433f85828601613fc2565b9250506020614350858286016140aa565b9150509250929050565b6000806040838503121561436d57600080fd5b600061437b85828601613fc2565b925050602061438c8582860161419c565b9150509250929050565b6000806000606084860312156143ab57600080fd5b60006143b986828701613fc2565b93505060206143ca8682870161419c565b92505060406143db8682870161419c565b9150509250925092565b600080602083850312156143f857600080fd5b600083013567ffffffffffffffff81111561441257600080fd5b61441e85828601613fec565b92509250509250929050565b6000806020838503121561443d57600080fd5b600083013567ffffffffffffffff81111561445757600080fd5b61446385828601614060565b92509250509250929050565b60006020828403121561448157600080fd5b600061448f848285016140bf565b91505092915050565b6000602082840312156144aa57600080fd5b60006144b8848285016140d4565b91505092915050565b600080604083850312156144d457600080fd5b60006144e2858286016140d4565b92505060206144f3858286016140d4565b9150509250929050565b60006020828403121561450f57600080fd5b600061451d848285016140e9565b91505092915050565b60006020828403121561453857600080fd5b6000614546848285016140fe565b91505092915050565b6000806040838503121561456257600080fd5b60006145708582860161413d565b925050602061458185828601613fc2565b9150509250929050565b6000806020838503121561459e57600080fd5b600083013567ffffffffffffffff8111156145b857600080fd5b6145c485828601614152565b92509250509250929050565b6000602082840312156145e257600080fd5b60006145f08482850161419c565b91505092915050565b60006020828403121561460b57600080fd5b6000614619848285016141b1565b91505092915050565b6000806040838503121561463557600080fd5b60006146438582860161419c565b925050602083013567ffffffffffffffff81111561466057600080fd5b61466c85828601614036565b9150509250929050565b60008060006060848603121561468b57600080fd5b60006146998682870161419c565b93505060206146aa8682870161419c565b92505060406146bb8682870161419c565b9150509250925092565b60008060008060008060c087890312156146de57600080fd5b60006146ec89828a0161419c565b96505060206146fd89828a0161419c565b955050604061470e89828a0161419c565b945050606061471f89828a0161419c565b935050608061473089828a0161419c565b92505060a061474189828a0161419c565b9150509295509295509295565b600061475a8383614c7a565b60808301905092915050565b60006147728383614d33565b60208301905092915050565b6147878161539c565b82525050565b6147968161539c565b82525050565b6147ad6147a88261539c565b61554f565b82525050565b60006147be82615218565b6147c8818561525e565b93506147d3836151e3565b8060005b838110156148045781516147eb888261474e565b97506147f683615244565b9250506001810190506147d7565b5085935050505092915050565b600061481c82615223565b614826818561526f565b9350614831836151f3565b8060005b838110156148625781516148498882614766565b975061485483615251565b925050600181019050614835565b5085935050505092915050565b614878816153c0565b82525050565b614887816153c0565b82525050565b614896816153cc565b82525050565b60006148a78261522e565b6148b18185615280565b93506148c1818560208601615470565b6148ca81615600565b840191505092915050565b60006148e082615239565b6148ea818561529c565b93506148fa818560208601615470565b61490381615600565b840191505092915050565b600061491982615239565b61492381856152ad565b9350614933818560208601615470565b80840191505092915050565b6000815461494c816154a3565b61495681866152ad565b945060018216600081146149715760018114614982576149b5565b60ff198316865281860193506149b5565b61498b85615203565b60005b838110156149ad5781548189015260018201915060208101905061498e565b838801955050505b50505092915050565b60006149cb600c8361529c565b91506149d68261561e565b602082019050919050565b60006149ee602c8361529c565b91506149f982615647565b604082019050919050565b6000614a1160108361529c565b9150614a1c82615696565b602082019050919050565b6000614a3460268361529c565b9150614a3f826156bf565b604082019050919050565b6000614a5760148361529c565b9150614a628261570e565b602082019050919050565b6000614a7a60138361529c565b9150614a8582615737565b602082019050919050565b6000614a9d60188361529c565b9150614aa882615760565b602082019050919050565b6000614ac060178361529c565b9150614acb82615789565b602082019050919050565b6000614ae3601b8361529c565b9150614aee826157b2565b602082019050919050565b6000614b066005836152ad565b9150614b11826157db565b600582019050919050565b6000614b2960208361529c565b9150614b3482615804565b602082019050919050565b6000614b4c601d8361529c565b9150614b578261582d565b602082019050919050565b6000614b6f602f8361529c565b9150614b7a82615856565b604082019050919050565b6000614b92601e8361529c565b9150614b9d826158a5565b602082019050919050565b6000614bb560138361529c565b9150614bc0826158ce565b602082019050919050565b6000614bd8600083615291565b9150614be3826158f7565b600082019050919050565b6000614bfb60108361529c565b9150614c06826158fa565b602082019050919050565b6000614c1e60218361529c565b9150614c2982615923565b604082019050919050565b6000614c41601f8361529c565b9150614c4c82615972565b602082019050919050565b6000614c64601b8361529c565b9150614c6f8261599b565b602082019050919050565b608082016000820151614c90600085018261477e565b506020820151614ca36020850182614d51565b506040820151614cb6604085018261486f565b506060820151614cc96060850182614d24565b50505050565b608082016000820151614ce5600085018261477e565b506020820151614cf86020850182614d51565b506040820151614d0b604085018261486f565b506060820151614d1e6060850182614d24565b50505050565b614d2d81615434565b82525050565b614d3c81615443565b82525050565b614d4b81615443565b82525050565b614d5a8161544d565b82525050565b6000614d6c828461479c565b60148201915081905092915050565b6000614d87828561493f565b9150614d93828461490e565b9150614d9e82614af9565b91508190509392505050565b6000614db582614bcb565b9150819050919050565b6000602082019050614dd4600083018461478d565b92915050565b6000608082019050614def600083018761478d565b614dfc602083018661478d565b614e096040830185614d42565b8181036060830152614e1b818461489c565b905095945050505050565b6000604082019050614e3b600083018561478d565b614e486020830184614d42565b9392505050565b60006020820190508181036000830152614e6981846147b3565b905092915050565b60006020820190508181036000830152614e8b8184614811565b905092915050565b6000602082019050614ea8600083018461487e565b92915050565b6000602082019050614ec3600083018461488d565b92915050565b60006020820190508181036000830152614ee381846148d5565b905092915050565b60006020820190508181036000830152614f04816149be565b9050919050565b60006020820190508181036000830152614f24816149e1565b9050919050565b60006020820190508181036000830152614f4481614a04565b9050919050565b60006020820190508181036000830152614f6481614a27565b9050919050565b60006020820190508181036000830152614f8481614a4a565b9050919050565b60006020820190508181036000830152614fa481614a6d565b9050919050565b60006020820190508181036000830152614fc481614a90565b9050919050565b60006020820190508181036000830152614fe481614ab3565b9050919050565b6000602082019050818103600083015261500481614ad6565b9050919050565b6000602082019050818103600083015261502481614b1c565b9050919050565b6000602082019050818103600083015261504481614b3f565b9050919050565b6000602082019050818103600083015261506481614b62565b9050919050565b6000602082019050818103600083015261508481614b85565b9050919050565b600060208201905081810360008301526150a481614ba8565b9050919050565b600060208201905081810360008301526150c481614bee565b9050919050565b600060208201905081810360008301526150e481614c11565b9050919050565b6000602082019050818103600083015261510481614c34565b9050919050565b6000602082019050818103600083015261512481614c57565b9050919050565b60006080820190506151406000830184614ccf565b92915050565b600060208201905061515b6000830184614d42565b92915050565b600061516b61517c565b905061517782826154d5565b919050565b6000604051905090565b600067ffffffffffffffff8211156151a1576151a06155d1565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156151cd576151cc6155d1565b5b6151d682615600565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006152c382615443565b91506152ce83615443565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561530357615302615573565b5b828201905092915050565b600061531982615443565b915061532483615443565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561535d5761535c615573565b5b828202905092915050565b600061537382615443565b915061537e83615443565b92508282101561539157615390615573565b5b828203905092915050565b60006153a782615414565b9050919050565b60006153b982615414565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061540d8261539c565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062ffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561548e578082015181840152602081019050615473565b8381111561549d576000848401525b50505050565b600060028204905060018216806154bb57607f821691505b602082108114156154cf576154ce6155a2565b5b50919050565b6154de82615600565b810181811067ffffffffffffffff821117156154fd576154fc6155d1565b5b80604052505050565b600061551182615443565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561554457615543615573565b5b600182019050919050565b600061555a82615561565b9050919050565b600061556c82615611565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f76616c7565206e6f742065710000000000000000000000000000000000000000600082015250565b7f746f74616c2077686974654c6973744e756d206c74206f72206571206d61785760008201527f686974656c6973744e756d200000000000000000000000000000000000000000602082015250565b7f4f674d696e742068617320656e64656400000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5075626c69634d696e742068617320656e646564000000000000000000000000600082015250565b7f566572696669636174696f6e206661696c656400000000000000000000000000600082015250565b7f4e756d206d757374206c6f776572206d6178537570706c790000000000000000600082015250565b7f57686974656c6973744d696e742068617320656e646564000000000000000000600082015250565b7f4f67744d696e7420686173206e6f742073746172746564207965740000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f56616c7565206d757374206571207075626c696350726963652a6e756d000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5075626c69634d696e7420686173206e6f742073746172746564207965740000600082015250565b7f4e756d206d757374206c74206f72206571203300000000000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f57686974656c6973744d696e7420686173206e6f74207374617274656420796560008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4e756d206d757374206c6f776572206d61785075626c69634e756d0000000000600082015250565b6159cd8161539c565b81146159d857600080fd5b50565b6159e4816153ae565b81146159ef57600080fd5b50565b6159fb816153c0565b8114615a0657600080fd5b50565b615a12816153cc565b8114615a1d57600080fd5b50565b615a29816153d6565b8114615a3457600080fd5b50565b615a4081615402565b8114615a4b57600080fd5b50565b615a5781615443565b8114615a6257600080fd5b5056fea264697066735822122037e77e83415ffbf4ee0fc3af41c2957c31e05775fe6cbc2faa2c593a4913bb1664736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000034697066732f516d637372616f6d437462683459797731346e675a323136336654537656314438754e764a47447a6d4779546f512f000000000000000000000000

Deployed Bytecode

0x6080604052600436106103ad5760003560e01c8063715018a6116101e7578063aa585d561161010d578063d89c6888116100a0578063ee7bf8181161006f578063ee7bf81814610dc1578063f2fde38b14610dec578063f95b5b9914610e15578063fc1a1c3614610e40576103ad565b8063d89c688814610d05578063da1b9e0814610d30578063e985e9c514610d59578063ebdfd72214610d96576103ad565b8063c86c8d8a116100dc578063c86c8d8a14610c56578063c87b56dd14610c81578063d2cab05614610cbe578063d5abeb0114610cda576103ad565b8063aa585d5614610ba9578063b88d4fde14610bd2578063c0edc37d14610bee578063c23dc68f14610c19576103ad565b80639286a52d11610185578063a22cb46511610154578063a22cb46514610b01578063a60062ad14610b2a578063a80ea4eb14610b55578063a945bf8014610b7e576103ad565b80639286a52d14610a455780639292caaf14610a6e57806395d89b4114610a9957806399a2557a14610ac4576103ad565b80638462151c116101c15780638462151c14610989578063850f3f3f146109c65780638da5cb5b146109ef578063903afdc014610a1a576103ad565b8063715018a61461090a5780637f7e80b914610921578063801d8c9a1461095e576103ad565b806342842e0e116102d75780635c9478101161026a57806367765b871161023957806367765b871461084e578063690d8320146108795780636c0360eb146108a257806370a08231146108cd576103ad565b80635c9478101461077e5780635d195c52146107bb5780635fd1bbc4146107e65780636352211e14610811576103ad565b80634574f327116102a65780634574f327146106b0578063517430c9146106ed57806355f804b3146107185780635bbb217714610741576103ad565b806342842e0e1461061957806342966c681461063557806342af83fb1461065e57806345149bb314610687576103ad565b806323b872dd1161034f578063300b23d81161031e578063300b23d814610571578063386bfc981461059a5780633a367a67146105c55780633aeac4e1146105f0576103ad565b806323b872dd146104f25780632b314dc61461050e5780632c27e5811461052a5780632db1154414610555576103ad565b8063081812fc1161038b578063081812fc14610443578063095ea7b31461048057806315f5d8a01461049c57806318160ddd146104c7576103ad565b806301ffc9a7146103b257806302e5329e146103ef57806306fdde0314610418575b600080fd5b3480156103be57600080fd5b506103d960048036038101906103d491906144fd565b610e6b565b6040516103e69190614e93565b60405180910390f35b3480156103fb57600080fd5b50610416600480360381019061041191906145d0565b610efd565b005b34801561042457600080fd5b5061042d610f0f565b60405161043a9190614ec9565b60405180910390f35b34801561044f57600080fd5b5061046a600480360381019061046591906145d0565b610fa1565b6040516104779190614dbf565b60405180910390f35b61049a6004803603810190610495919061435a565b611020565b005b3480156104a857600080fd5b506104b1611164565b6040516104be9190615146565b60405180910390f35b3480156104d357600080fd5b506104dc61116a565b6040516104e99190615146565b60405180910390f35b61050c60048036038101906105079190614254565b611181565b005b61052860048036038101906105239190614622565b6114a6565b005b34801561053657600080fd5b5061053f611819565b60405161054c9190615146565b60405180910390f35b61056f600480360381019061056a91906145d0565b61181f565b005b34801561057d57600080fd5b50610598600480360381019061059391906145d0565b611a54565b005b3480156105a657600080fd5b506105af611a66565b6040516105bc9190614eae565b60405180910390f35b3480156105d157600080fd5b506105da611a6c565b6040516105e79190614ec9565b60405180910390f35b3480156105fc57600080fd5b506106176004803603810190610612919061454f565b611afa565b005b610633600480360381019061062e9190614254565b611c1c565b005b34801561064157600080fd5b5061065c600480360381019061065791906145d0565b611c3c565b005b34801561066a57600080fd5b50610685600480360381019061068091906144c1565b611c4a565b005b34801561069357600080fd5b506106ae60048036038101906106a99190614498565b611c64565b005b3480156106bc57600080fd5b506106d760048036038101906106d291906141c6565b611c76565b6040516106e49190615146565b60405180910390f35b3480156106f957600080fd5b50610702611c8e565b60405161070f9190615146565b60405180910390f35b34801561072457600080fd5b5061073f600480360381019061073a919061458b565b611c94565b005b34801561074d57600080fd5b506107686004803603810190610763919061442a565b611cb2565b6040516107759190614e4f565b60405180910390f35b34801561078a57600080fd5b506107a560048036038101906107a091906141c6565b611de7565b6040516107b29190615146565b60405180910390f35b3480156107c757600080fd5b506107d0611dfe565b6040516107dd9190615146565b60405180910390f35b3480156107f257600080fd5b506107fb611e04565b6040516108089190615146565b60405180910390f35b34801561081d57600080fd5b50610838600480360381019061083391906145d0565b611e0a565b6040516108459190614dbf565b60405180910390f35b34801561085a57600080fd5b50610863611e1c565b6040516108709190615146565b60405180910390f35b34801561088557600080fd5b506108a0600480360381019061089b91906141ef565b611e22565b005b3480156108ae57600080fd5b506108b7611eda565b6040516108c49190614ec9565b60405180910390f35b3480156108d957600080fd5b506108f460048036038101906108ef91906141c6565b611f68565b6040516109019190615146565b60405180910390f35b34801561091657600080fd5b5061091f612021565b005b34801561092d57600080fd5b50610948600480360381019061094391906141c6565b612035565b6040516109559190615146565b60405180910390f35b34801561096a57600080fd5b5061097361204d565b6040516109809190615146565b60405180910390f35b34801561099557600080fd5b506109b060048036038101906109ab91906141c6565b612053565b6040516109bd9190614e71565b60405180910390f35b3480156109d257600080fd5b506109ed60048036038101906109e891906143e5565b6121e9565b005b3480156109fb57600080fd5b50610a0461228e565b604051610a119190614dbf565b60405180910390f35b348015610a2657600080fd5b50610a2f6122b8565b604051610a3c9190614eae565b60405180910390f35b348015610a5157600080fd5b50610a6c6004803603810190610a6791906146c5565b6122be565b005b348015610a7a57600080fd5b50610a836122f8565b604051610a909190615146565b60405180910390f35b348015610aa557600080fd5b50610aae6122fe565b604051610abb9190614ec9565b60405180910390f35b348015610ad057600080fd5b50610aeb6004803603810190610ae69190614396565b612390565b604051610af89190614e71565b60405180910390f35b348015610b0d57600080fd5b50610b286004803603810190610b23919061431e565b6125f0565b005b348015610b3657600080fd5b50610b3f6126fb565b604051610b4c9190615146565b60405180910390f35b348015610b6157600080fd5b50610b7c6004803603810190610b77919061435a565b612701565b005b348015610b8a57600080fd5b50610b93612730565b604051610ba09190615146565b60405180910390f35b348015610bb557600080fd5b50610bd06004803603810190610bcb9190614676565b612736565b005b610bec6004803603810190610be791906142a3565b612758565b005b348015610bfa57600080fd5b50610c036127cb565b604051610c109190615146565b60405180910390f35b348015610c2557600080fd5b50610c406004803603810190610c3b91906145d0565b6127d1565b604051610c4d919061512b565b60405180910390f35b348015610c6257600080fd5b50610c6b61283b565b604051610c789190615146565b60405180910390f35b348015610c8d57600080fd5b50610ca86004803603810190610ca391906145d0565b612841565b604051610cb59190614ec9565b60405180910390f35b610cd86004803603810190610cd39190614622565b612969565b005b348015610ce657600080fd5b50610cef612d2e565b604051610cfc9190615146565b60405180910390f35b348015610d1157600080fd5b50610d1a612d34565b604051610d279190615146565b60405180910390f35b348015610d3c57600080fd5b50610d576004803603810190610d52919061458b565b612d3a565b005b348015610d6557600080fd5b50610d806004803603810190610d7b9190614218565b612d58565b604051610d8d9190614e93565b60405180910390f35b348015610da257600080fd5b50610dab612dec565b604051610db89190615146565b60405180910390f35b348015610dcd57600080fd5b50610dd6612df2565b604051610de39190615146565b60405180910390f35b348015610df857600080fd5b50610e136004803603810190610e0e91906141c6565b612df8565b005b348015610e2157600080fd5b50610e2a612e7c565b604051610e379190615146565b60405180910390f35b348015610e4c57600080fd5b50610e55612e82565b604051610e629190615146565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ec657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ef65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610f05612e88565b80601d8190555050565b606060028054610f1e906154a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4a906154a3565b8015610f975780601f10610f6c57610100808354040283529160200191610f97565b820191906000526020600020905b815481529060010190602001808311610f7a57829003601f168201915b5050505050905090565b6000610fac82612f06565b610fe2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061102b82611e0a565b90508073ffffffffffffffffffffffffffffffffffffffff1661104c612f65565b73ffffffffffffffffffffffffffffffffffffffff16146110af5761107881611073612f65565b612d58565b6110ae576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60125481565b6000611174612f6d565b6001546000540303905090565b600061118c82612f72565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111f3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806111ff84613040565b915091506112158187611210612f65565b613067565b6112615761122a86611225612f65565b612d58565b611260576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156112c8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112d586868660016130ab565b80156112e057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506113ae8561138a8888876130b1565b7c0200000000000000000000000000000000000000000000000000000000176130d9565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611436576000600185019050600060046000838152602001908152602001600020541415611434576000548114611433578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461149e8686866001613104565b505050505050565b600c5482602160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114f491906152b8565b1115611535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152c9061508b565b60405180910390fd5b6000336040516020016115489190614d60565b60405160208183030381529060405280519060200120905061156d82600e548361310a565b6115ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a390614f8b565b60405180910390fd5b4260135411156115f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e890614feb565b60405180910390fd5b4260145411611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c90614f2b565b60405180910390fd5b601d548360195461164691906152b8565b1115611687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167e9061510b565b60405180910390fd5b6000601f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460026116d59190615368565b9050808410156116e3578390505b600081856116f19190615368565b6022546116fe919061530e565b905081601c600082825461171291906152b8565b9250508190555081601f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461176891906152b8565b92505081905550803410156117b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a990614eeb565b60405180910390fd5b6117bc3386613121565b84602160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461180b91906152b8565b925050819055505050505050565b60165481565b600c5481602160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461186d91906152b8565b11156118ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a59061508b565b60405180910390fd5b806010546118bc919061530e565b34146118fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f49061502b565b60405180910390fd5b426015541115611942576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119399061506b565b60405180910390fd5b4260165411611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d90614f6b565b60405180910390fd5b601d548160195461199791906152b8565b11156119d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cf9061510b565b60405180910390fd5b6119e23382613121565b80601960008282546119f491906152b8565b9250508190555080602160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a4a91906152b8565b9250508190555050565b611a5c612e88565b80600c8190555050565b600f5481565b600d8054611a79906154a3565b80601f0160208091040260200160405190810160405280929190818152602001828054611aa5906154a3565b8015611af25780601f10611ac757610100808354040283529160200191611af2565b820191906000526020600020905b815481529060010190602001808311611ad557829003601f168201915b505050505081565b611b02612e88565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb828473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611b589190614dbf565b60206040518083038186803b158015611b7057600080fd5b505afa158015611b84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ba891906145f9565b6040518363ffffffff1660e01b8152600401611bc5929190614e26565b602060405180830381600087803b158015611bdf57600080fd5b505af1158015611bf3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c17919061446f565b505050565b611c3783838360405180602001604052806000815250612758565b505050565b611c47816001613196565b50565b611c52612e88565b81600e8190555080600f819055505050565b611c6c612e88565b80600f8190555050565b60216020528060005260406000206000915090505481565b601b5481565b611c9c612e88565b8181600b9190611cad929190613e26565b505050565b6060600083839050905060008167ffffffffffffffff811115611cfe577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611d3757816020015b611d24613eac565b815260200190600190039081611d1c5790505b50905060005b828114611ddb57611d8c868683818110611d80577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201356127d1565b828281518110611dc5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181905250806001019050611d3d565b50809250505092915050565b602080528060005260406000206000915090505481565b601c5481565b60155481565b6000611e1582612f72565b9050919050565b600c5481565b611e2a612e88565b60008173ffffffffffffffffffffffffffffffffffffffff1647604051611e5090614daa565b60006040518083038185875af1925050503d8060008114611e8d576040519150601f19603f3d011682016040523d82523d6000602084013e611e92565b606091505b5050905080611ed6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecd906150ab565b60405180910390fd5b5050565b600b8054611ee7906154a3565b80601f0160208091040260200160405190810160405280929190818152602001828054611f13906154a3565b8015611f605780601f10611f3557610100808354040283529160200191611f60565b820191906000526020600020905b815481529060010190602001808311611f4357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fd0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b612029612e88565b61203360006133ea565b565b601f6020528060005260406000206000915090505481565b60225481565b6060600080600061206385611f68565b905060008167ffffffffffffffff8111156120a7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156120d55781602001602082028036833780820191505090505b5090506120e0613eac565b60006120ea612f6d565b90505b8386146121db576120fd816134b0565b915081604001511561210e576121d0565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461214e57816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156121cf57808387806001019850815181106121c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b5b8060010190506120ed565b508195505050505050919050565b6121f1612e88565b600082829050905060005b8181101561226f5761225c848483818110612240577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061225591906141c6565b6001613121565b808061226790615506565b9150506121fc565b5080601e600082825461228291906152b8565b92505081905550505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b6122c6612e88565b836015819055508260168190555085601381905550846014819055508160178190555080601881905550505050505050565b60175481565b60606003805461230d906154a3565b80601f0160208091040260200160405190810160405280929190818152602001828054612339906154a3565b80156123865780601f1061235b57610100808354040283529160200191612386565b820191906000526020600020905b81548152906001019060200180831161236957829003601f168201915b5050505050905090565b60608183106123cb576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806123d66134db565b90506123e0612f6d565b8510156123f2576123ef612f6d565b94505b808411156123fe578093505b600061240987611f68565b90508486101561242c576000868603905081811015612426578091505b50612431565b600090505b60008167ffffffffffffffff811115612473577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156124a15781602001602082028036833780820191505090505b50905060008214156124b957809450505050506125e9565b60006124c4886127d1565b9050600081604001516124d957816000015190505b60008990505b8881141580156124ef5750848714155b156125db576124fd816134b0565b925082604001511561250e576125d0565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461254e57826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125cf57808488806001019950815181106125c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b5b8060010190506124df565b508583528296505050505050505b9392505050565b80600760006125fd612f65565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166126aa612f65565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516126ef9190614e93565b60405180910390a35050565b60195481565b612709612e88565b6127138282613121565b80601e600082825461272591906152b8565b925050819055505050565b60105481565b61273e612e88565b826010819055508160118190555080601281905550505050565b612763848484611181565b60008373ffffffffffffffffffffffffffffffffffffffff163b146127c55761278e848484846134e4565b6127c4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b601d5481565b6127d9613eac565b6127e1613eac565b6127e9612f6d565b8310806127fd57506127f96134db565b8310155b1561280b5780915050612836565b612814836134b0565b90508060400151156128295780915050612836565b61283283613644565b9150505b919050565b60135481565b606061284c82612f06565b61288b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128829061504b565b60405180910390fd5b600080600b805461289b906154a3565b90501161293257600d80546128af906154a3565b80601f01602080910402602001604051908101604052809291908181526020018280546128db906154a3565b80156129285780601f106128fd57610100808354040283529160200191612928565b820191906000526020600020905b81548152906001019060200180831161290b57829003601f168201915b505050505061295e565b600b61293d84613664565b60405160200161294e929190614d7b565b6040516020818303038152906040525b905080915050919050565b600c5482602160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129b791906152b8565b11156129f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ef9061508b565b60405180910390fd5b600033604051602001612a0b9190614d60565b604051602081830303815290604052805190602001209050612a3082600f548361310a565b612a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6690614f8b565b60405180910390fd5b426017541115612ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aab906150cb565b60405180910390fd5b4260185411612af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aef90614fcb565b60405180910390fd5b601d5483601954612b0991906152b8565b1115612b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b419061510b565b60405180910390fd5b6000602060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546001612b989190615368565b905080841015612ba6578390505b60008185612bb49190615368565b602254612bc1919061530e565b9050601b5482601a54612bd491906152b8565b1115612c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0c90614f0b565b60405180910390fd5b81601a6000828254612c2791906152b8565b9250508190555081602060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c7d91906152b8565b9250508190555080341015612cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cbe90614eeb565b60405180910390fd5b612cd13386613121565b84602160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d2091906152b8565b925050819055505050505050565b600a5481565b601e5481565b612d42612e88565b8181600d9190612d53929190613e26565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60185481565b60145481565b612e00612e88565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6790614f4b565b60405180910390fd5b612e79816133ea565b50565b601a5481565b60115481565b612e90613788565b73ffffffffffffffffffffffffffffffffffffffff16612eae61228e565b73ffffffffffffffffffffffffffffffffffffffff1614612f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612efb9061500b565b60405180910390fd5b565b600081612f11612f6d565b11158015612f20575060005482105b8015612f5e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080612f81612f6d565b11613009576000548110156130085760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415613006575b6000811415612ffc576004600083600190039350838152602001908152602001600020549050612fd1565b809250505061303b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86130c8868684613790565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000826131178584613799565b1490509392505050565b613129613815565b600a548161313561116a565b61313f91906152b8565b1115613180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317790614fab565b60405180910390fd5b61318a8282613865565b613192613883565b5050565b60006131a183612f72565b905060008190506000806131b486613040565b91509150841561321d576131d081846131cb612f65565b613067565b61321c576131e5836131e0612f65565b612d58565b61321b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b61322b8360008860016130ab565b801561323657600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506132de8361329b856000886130b1565b7c02000000000000000000000000000000000000000000000000000000007c010000000000000000000000000000000000000000000000000000000017176130d9565b600460008881526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000085161415613366576000600187019050600060046000838152602001908152602001600020541415613364576000548114613363578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133d0836000886001613104565b600160008154809291906001019190505550505050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6134b8613eac565b6134d4600460008481526020019081526020016000205461388d565b9050919050565b60008054905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261350a612f65565b8786866040518563ffffffff1660e01b815260040161352c9493929190614dda565b602060405180830381600087803b15801561354657600080fd5b505af192505050801561357757506040513d601f19601f820116820180604052508101906135749190614526565b60015b6135f1573d80600081146135a7576040519150601f19603f3d011682016040523d82523d6000602084013e6135ac565b606091505b506000815114156135e9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b61364c613eac565b61365d61365883612f72565b61388d565b9050919050565b60606000600161367384613943565b01905060008167ffffffffffffffff8111156136b8577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156136ea5781602001600182028036833780820191505090505b509050600082602001820190505b60011561377d578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581613767577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b04945060008514156137785761377d565b6136f8565b819350505050919050565b600033905090565b60009392505050565b60008082905060005b845181101561380a576137f5828683815181106137e8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151613b7a565b9150808061380290615506565b9150506137a2565b508091505092915050565b6002600954141561385b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613852906150eb565b60405180910390fd5b6002600981905550565b61387f828260405180602001604052806000815250613ba5565b5050565b6001600981905550565b613895613eac565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106139c7577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816139bd577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506040810190505b6d04ee2d6d415b85acef81000000008310613a2a576d04ee2d6d415b85acef81000000008381613a20577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506020810190505b662386f26fc100008310613a7f57662386f26fc100008381613a75577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506010810190505b6305f5e1008310613ace576305f5e1008381613ac4577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506008810190505b6127108310613b19576127108381613b0f577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506004810190505b60648310613b625760648381613b58577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506002810190505b600a8310613b71576001810190505b80915050919050565b6000818310613b9257613b8d8284613c42565b613b9d565b613b9c8383613c42565b5b905092915050565b613baf8383613c59565b60008373ffffffffffffffffffffffffffffffffffffffff163b14613c3d57600080549050600083820390505b613bef60008683806001019450866134e4565b613c25576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110613bdc578160005414613c3a57600080fd5b50505b505050565b600082600052816020526040600020905092915050565b6000805490506000821415613c9a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613ca760008483856130ab565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613d1e83613d0f60008660006130b1565b613d1885613e16565b176130d9565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114613dbf57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613d84565b506000821415613dfb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050613e116000848385613104565b505050565b60006001821460e11b9050919050565b828054613e32906154a3565b90600052602060002090601f016020900481019282613e545760008555613e9b565b82601f10613e6d57803560ff1916838001178555613e9b565b82800160010185558215613e9b579182015b82811115613e9a578235825591602001919060010190613e7f565b5b509050613ea89190613efb565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115613f14576000816000905550600101613efc565b5090565b6000613f2b613f2684615186565b615161565b90508083825260208201905082856020860282011115613f4a57600080fd5b60005b85811015613f7a5781613f6088826140d4565b845260208401935060208301925050600181019050613f4d565b5050509392505050565b6000613f97613f92846151b2565b615161565b905082815260208101848484011115613faf57600080fd5b613fba848285615461565b509392505050565b600081359050613fd1816159c4565b92915050565b600081359050613fe6816159db565b92915050565b60008083601f840112613ffe57600080fd5b8235905067ffffffffffffffff81111561401757600080fd5b60208301915083602082028301111561402f57600080fd5b9250929050565b600082601f83011261404757600080fd5b8135614057848260208601613f18565b91505092915050565b60008083601f84011261407257600080fd5b8235905067ffffffffffffffff81111561408b57600080fd5b6020830191508360208202830111156140a357600080fd5b9250929050565b6000813590506140b9816159f2565b92915050565b6000815190506140ce816159f2565b92915050565b6000813590506140e381615a09565b92915050565b6000813590506140f881615a20565b92915050565b60008151905061410d81615a20565b92915050565b600082601f83011261412457600080fd5b8135614134848260208601613f84565b91505092915050565b60008135905061414c81615a37565b92915050565b60008083601f84011261416457600080fd5b8235905067ffffffffffffffff81111561417d57600080fd5b60208301915083600182028301111561419557600080fd5b9250929050565b6000813590506141ab81615a4e565b92915050565b6000815190506141c081615a4e565b92915050565b6000602082840312156141d857600080fd5b60006141e684828501613fc2565b91505092915050565b60006020828403121561420157600080fd5b600061420f84828501613fd7565b91505092915050565b6000806040838503121561422b57600080fd5b600061423985828601613fc2565b925050602061424a85828601613fc2565b9150509250929050565b60008060006060848603121561426957600080fd5b600061427786828701613fc2565b935050602061428886828701613fc2565b92505060406142998682870161419c565b9150509250925092565b600080600080608085870312156142b957600080fd5b60006142c787828801613fc2565b94505060206142d887828801613fc2565b93505060406142e98782880161419c565b925050606085013567ffffffffffffffff81111561430657600080fd5b61431287828801614113565b91505092959194509250565b6000806040838503121561433157600080fd5b600061433f85828601613fc2565b9250506020614350858286016140aa565b9150509250929050565b6000806040838503121561436d57600080fd5b600061437b85828601613fc2565b925050602061438c8582860161419c565b9150509250929050565b6000806000606084860312156143ab57600080fd5b60006143b986828701613fc2565b93505060206143ca8682870161419c565b92505060406143db8682870161419c565b9150509250925092565b600080602083850312156143f857600080fd5b600083013567ffffffffffffffff81111561441257600080fd5b61441e85828601613fec565b92509250509250929050565b6000806020838503121561443d57600080fd5b600083013567ffffffffffffffff81111561445757600080fd5b61446385828601614060565b92509250509250929050565b60006020828403121561448157600080fd5b600061448f848285016140bf565b91505092915050565b6000602082840312156144aa57600080fd5b60006144b8848285016140d4565b91505092915050565b600080604083850312156144d457600080fd5b60006144e2858286016140d4565b92505060206144f3858286016140d4565b9150509250929050565b60006020828403121561450f57600080fd5b600061451d848285016140e9565b91505092915050565b60006020828403121561453857600080fd5b6000614546848285016140fe565b91505092915050565b6000806040838503121561456257600080fd5b60006145708582860161413d565b925050602061458185828601613fc2565b9150509250929050565b6000806020838503121561459e57600080fd5b600083013567ffffffffffffffff8111156145b857600080fd5b6145c485828601614152565b92509250509250929050565b6000602082840312156145e257600080fd5b60006145f08482850161419c565b91505092915050565b60006020828403121561460b57600080fd5b6000614619848285016141b1565b91505092915050565b6000806040838503121561463557600080fd5b60006146438582860161419c565b925050602083013567ffffffffffffffff81111561466057600080fd5b61466c85828601614036565b9150509250929050565b60008060006060848603121561468b57600080fd5b60006146998682870161419c565b93505060206146aa8682870161419c565b92505060406146bb8682870161419c565b9150509250925092565b60008060008060008060c087890312156146de57600080fd5b60006146ec89828a0161419c565b96505060206146fd89828a0161419c565b955050604061470e89828a0161419c565b945050606061471f89828a0161419c565b935050608061473089828a0161419c565b92505060a061474189828a0161419c565b9150509295509295509295565b600061475a8383614c7a565b60808301905092915050565b60006147728383614d33565b60208301905092915050565b6147878161539c565b82525050565b6147968161539c565b82525050565b6147ad6147a88261539c565b61554f565b82525050565b60006147be82615218565b6147c8818561525e565b93506147d3836151e3565b8060005b838110156148045781516147eb888261474e565b97506147f683615244565b9250506001810190506147d7565b5085935050505092915050565b600061481c82615223565b614826818561526f565b9350614831836151f3565b8060005b838110156148625781516148498882614766565b975061485483615251565b925050600181019050614835565b5085935050505092915050565b614878816153c0565b82525050565b614887816153c0565b82525050565b614896816153cc565b82525050565b60006148a78261522e565b6148b18185615280565b93506148c1818560208601615470565b6148ca81615600565b840191505092915050565b60006148e082615239565b6148ea818561529c565b93506148fa818560208601615470565b61490381615600565b840191505092915050565b600061491982615239565b61492381856152ad565b9350614933818560208601615470565b80840191505092915050565b6000815461494c816154a3565b61495681866152ad565b945060018216600081146149715760018114614982576149b5565b60ff198316865281860193506149b5565b61498b85615203565b60005b838110156149ad5781548189015260018201915060208101905061498e565b838801955050505b50505092915050565b60006149cb600c8361529c565b91506149d68261561e565b602082019050919050565b60006149ee602c8361529c565b91506149f982615647565b604082019050919050565b6000614a1160108361529c565b9150614a1c82615696565b602082019050919050565b6000614a3460268361529c565b9150614a3f826156bf565b604082019050919050565b6000614a5760148361529c565b9150614a628261570e565b602082019050919050565b6000614a7a60138361529c565b9150614a8582615737565b602082019050919050565b6000614a9d60188361529c565b9150614aa882615760565b602082019050919050565b6000614ac060178361529c565b9150614acb82615789565b602082019050919050565b6000614ae3601b8361529c565b9150614aee826157b2565b602082019050919050565b6000614b066005836152ad565b9150614b11826157db565b600582019050919050565b6000614b2960208361529c565b9150614b3482615804565b602082019050919050565b6000614b4c601d8361529c565b9150614b578261582d565b602082019050919050565b6000614b6f602f8361529c565b9150614b7a82615856565b604082019050919050565b6000614b92601e8361529c565b9150614b9d826158a5565b602082019050919050565b6000614bb560138361529c565b9150614bc0826158ce565b602082019050919050565b6000614bd8600083615291565b9150614be3826158f7565b600082019050919050565b6000614bfb60108361529c565b9150614c06826158fa565b602082019050919050565b6000614c1e60218361529c565b9150614c2982615923565b604082019050919050565b6000614c41601f8361529c565b9150614c4c82615972565b602082019050919050565b6000614c64601b8361529c565b9150614c6f8261599b565b602082019050919050565b608082016000820151614c90600085018261477e565b506020820151614ca36020850182614d51565b506040820151614cb6604085018261486f565b506060820151614cc96060850182614d24565b50505050565b608082016000820151614ce5600085018261477e565b506020820151614cf86020850182614d51565b506040820151614d0b604085018261486f565b506060820151614d1e6060850182614d24565b50505050565b614d2d81615434565b82525050565b614d3c81615443565b82525050565b614d4b81615443565b82525050565b614d5a8161544d565b82525050565b6000614d6c828461479c565b60148201915081905092915050565b6000614d87828561493f565b9150614d93828461490e565b9150614d9e82614af9565b91508190509392505050565b6000614db582614bcb565b9150819050919050565b6000602082019050614dd4600083018461478d565b92915050565b6000608082019050614def600083018761478d565b614dfc602083018661478d565b614e096040830185614d42565b8181036060830152614e1b818461489c565b905095945050505050565b6000604082019050614e3b600083018561478d565b614e486020830184614d42565b9392505050565b60006020820190508181036000830152614e6981846147b3565b905092915050565b60006020820190508181036000830152614e8b8184614811565b905092915050565b6000602082019050614ea8600083018461487e565b92915050565b6000602082019050614ec3600083018461488d565b92915050565b60006020820190508181036000830152614ee381846148d5565b905092915050565b60006020820190508181036000830152614f04816149be565b9050919050565b60006020820190508181036000830152614f24816149e1565b9050919050565b60006020820190508181036000830152614f4481614a04565b9050919050565b60006020820190508181036000830152614f6481614a27565b9050919050565b60006020820190508181036000830152614f8481614a4a565b9050919050565b60006020820190508181036000830152614fa481614a6d565b9050919050565b60006020820190508181036000830152614fc481614a90565b9050919050565b60006020820190508181036000830152614fe481614ab3565b9050919050565b6000602082019050818103600083015261500481614ad6565b9050919050565b6000602082019050818103600083015261502481614b1c565b9050919050565b6000602082019050818103600083015261504481614b3f565b9050919050565b6000602082019050818103600083015261506481614b62565b9050919050565b6000602082019050818103600083015261508481614b85565b9050919050565b600060208201905081810360008301526150a481614ba8565b9050919050565b600060208201905081810360008301526150c481614bee565b9050919050565b600060208201905081810360008301526150e481614c11565b9050919050565b6000602082019050818103600083015261510481614c34565b9050919050565b6000602082019050818103600083015261512481614c57565b9050919050565b60006080820190506151406000830184614ccf565b92915050565b600060208201905061515b6000830184614d42565b92915050565b600061516b61517c565b905061517782826154d5565b919050565b6000604051905090565b600067ffffffffffffffff8211156151a1576151a06155d1565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156151cd576151cc6155d1565b5b6151d682615600565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006152c382615443565b91506152ce83615443565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561530357615302615573565b5b828201905092915050565b600061531982615443565b915061532483615443565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561535d5761535c615573565b5b828202905092915050565b600061537382615443565b915061537e83615443565b92508282101561539157615390615573565b5b828203905092915050565b60006153a782615414565b9050919050565b60006153b982615414565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061540d8261539c565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062ffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561548e578082015181840152602081019050615473565b8381111561549d576000848401525b50505050565b600060028204905060018216806154bb57607f821691505b602082108114156154cf576154ce6155a2565b5b50919050565b6154de82615600565b810181811067ffffffffffffffff821117156154fd576154fc6155d1565b5b80604052505050565b600061551182615443565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561554457615543615573565b5b600182019050919050565b600061555a82615561565b9050919050565b600061556c82615611565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f76616c7565206e6f742065710000000000000000000000000000000000000000600082015250565b7f746f74616c2077686974654c6973744e756d206c74206f72206571206d61785760008201527f686974656c6973744e756d200000000000000000000000000000000000000000602082015250565b7f4f674d696e742068617320656e64656400000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5075626c69634d696e742068617320656e646564000000000000000000000000600082015250565b7f566572696669636174696f6e206661696c656400000000000000000000000000600082015250565b7f4e756d206d757374206c6f776572206d6178537570706c790000000000000000600082015250565b7f57686974656c6973744d696e742068617320656e646564000000000000000000600082015250565b7f4f67744d696e7420686173206e6f742073746172746564207965740000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f56616c7565206d757374206571207075626c696350726963652a6e756d000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5075626c69634d696e7420686173206e6f742073746172746564207965740000600082015250565b7f4e756d206d757374206c74206f72206571203300000000000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f57686974656c6973744d696e7420686173206e6f74207374617274656420796560008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4e756d206d757374206c6f776572206d61785075626c69634e756d0000000000600082015250565b6159cd8161539c565b81146159d857600080fd5b50565b6159e4816153ae565b81146159ef57600080fd5b50565b6159fb816153c0565b8114615a0657600080fd5b50565b615a12816153cc565b8114615a1d57600080fd5b50565b615a29816153d6565b8114615a3457600080fd5b50565b615a4081615402565b8114615a4b57600080fd5b50565b615a5781615443565b8114615a6257600080fd5b5056fea264697066735822122037e77e83415ffbf4ee0fc3af41c2957c31e05775fe6cbc2faa2c593a4913bb1664736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000034697066732f516d637372616f6d437462683459797731346e675a323136336654537656314438754e764a47447a6d4779546f512f000000000000000000000000

-----Decoded View---------------
Arg [0] : uri (string): ipfs/QmcsraomCtbh4Yyw14ngZ2163fTSvV1D8uNvJGDzmGyToQ/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000034
Arg [2] : 697066732f516d637372616f6d437462683459797731346e675a323136336654
Arg [3] : 537656314438754e764a47447a6d4779546f512f000000000000000000000000


Deployed Bytecode Sourcemap

94687:7910:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52582:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97318:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53484:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59975:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59408:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95021:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49235:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63614:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;98061:1010;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95159:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;100369:678;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;101365:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;94911:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;94852:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;101665:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66535:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;96445:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;101181:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;101055:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95595:40;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95347:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;101815:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89805:528;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95537:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95386:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95120:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54877:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;94822:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;101469:188;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;94794:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50419:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33361:103;;;;;;;;;;;;;:::i;:::-;;95486:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95644:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93681:900;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97813:240;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32713:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;94883:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96799:511;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95196:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53660:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90721:2513;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60533:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95278:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97635:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;94948:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96538:253;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67326:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95415:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89218:428;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95052:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;102143:451;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;99079:1282;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;94763:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95451:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;101915:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60924:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95238:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95087:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33619:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95311:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;94983:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52582:639;52667:4;53006:10;52991:25;;:11;:25;;;;:102;;;;53083:10;53068:25;;:11;:25;;;;52991:102;:179;;;;53160:10;53145:25;;:11;:25;;;;52991:179;52971:199;;52582:639;;;:::o;97318:108::-;32599:13;:11;:13::i;:::-;97405::::1;97390:12;:28;;;;97318:108:::0;:::o;53484:100::-;53538:13;53571:5;53564:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53484:100;:::o;59975:218::-;60051:7;60076:16;60084:7;60076;:16::i;:::-;60071:64;;60101:34;;;;;;;;;;;;;;60071:64;60155:15;:24;60171:7;60155:24;;;;;;;;;;;:30;;;;;;;;;;;;60148:37;;59975:218;;;:::o;59408:408::-;59497:13;59513:16;59521:7;59513;:16::i;:::-;59497:32;;59569:5;59546:28;;:19;:17;:19::i;:::-;:28;;;59542:175;;59594:44;59611:5;59618:19;:17;:19::i;:::-;59594:16;:44::i;:::-;59589:128;;59666:35;;;;;;;;;;;;;;59589:128;59542:175;59762:2;59729:15;:24;59745:7;59729:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;59800:7;59796:2;59780:28;;59789:5;59780:28;;;;;;;;;;;;59408:408;;;:::o;95021:22::-;;;;:::o;49235:323::-;49296:7;49524:15;:13;:15::i;:::-;49509:12;;49493:13;;:28;:46;49486:53;;49235:323;:::o;63614:2825::-;63756:27;63786;63805:7;63786:18;:27::i;:::-;63756:57;;63871:4;63830:45;;63846:19;63830:45;;;63826:86;;63884:28;;;;;;;;;;;;;;63826:86;63926:27;63955:23;63982:35;64009:7;63982:26;:35::i;:::-;63925:92;;;;64117:68;64142:15;64159:4;64165:19;:17;:19::i;:::-;64117:24;:68::i;:::-;64112:180;;64205:43;64222:4;64228:19;:17;:19::i;:::-;64205:16;:43::i;:::-;64200:92;;64257:35;;;;;;;;;;;;;;64200:92;64112:180;64323:1;64309:16;;:2;:16;;;64305:52;;;64334:23;;;;;;;;;;;;;;64305:52;64370:43;64392:4;64398:2;64402:7;64411:1;64370:21;:43::i;:::-;64506:15;64503:2;;;64646:1;64625:19;64618:30;64503:2;65043:18;:24;65062:4;65043:24;;;;;;;;;;;;;;;;65041:26;;;;;;;;;;;;65112:18;:22;65131:2;65112:22;;;;;;;;;;;;;;;;65110:24;;;;;;;;;;;65434:146;65471:2;65520:45;65535:4;65541:2;65545:19;65520:14;:45::i;:::-;45634:8;65492:73;65434:18;:146::i;:::-;65405:17;:26;65423:7;65405:26;;;;;;;;;;;:175;;;;65751:1;45634:8;65700:19;:47;:52;65696:627;;;65773:19;65805:1;65795:7;:11;65773:33;;65962:1;65928:17;:30;65946:11;65928:30;;;;;;;;;;;;:35;65924:384;;;66066:13;;66051:11;:28;66047:242;;66246:19;66213:17;:30;66231:11;66213:30;;;;;;;;;;;:52;;;;66047:242;65924:384;65696:627;;66370:7;66366:2;66351:27;;66360:4;66351:27;;;;;;;;;;;;66389:42;66410:4;66416:2;66420:7;66429:1;66389:20;:42::i;:::-;63614:2825;;;;;;:::o;98061:1010::-;98180:8;;98172:4;98152:5;:17;98158:10;98152:17;;;;;;;;;;;;;;;;:24;;;;:::i;:::-;:36;;98144:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;98223:12;98265:10;98248:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;98238:39;;;;;;98223:54;;98310:40;98329:6;98337;;98345:4;98310:18;:40::i;:::-;98288:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;98431:15;98416:11;;:30;;98408:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;98509:15;98497:9;;:27;98489:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;98598:12;;98590:4;98578:9;;:16;;;;:::i;:::-;:32;;98556:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;98676:17;98700:7;:19;98708:10;98700:19;;;;;;;;;;;;;;;;98696:1;:23;;;;:::i;:::-;98676:43;;98741:9;98734:4;:16;98730:65;;;98779:4;98767:16;;98730:65;98805:18;98849:9;98842:4;:16;;;;:::i;:::-;98826:12;;:33;;;;:::i;:::-;98805:54;;98881:9;98872:5;;:18;;;;;;;:::i;:::-;;;;;;;;98924:9;98901:7;:19;98909:10;98901:19;;;;;;;;;;;;;;;;:32;;;;;;;:::i;:::-;;;;;;;;98965:10;98952:9;:23;;98944:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;99003:22;99008:10;99020:4;99003;:22::i;:::-;99059:4;99038:5;:17;99044:10;99038:17;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;98061:1010;;;;;:::o;95159:28::-;;;;:::o;100369:678::-;100465:8;;100457:4;100437:5;:17;100443:10;100437:17;;;;;;;;;;;;;;;;:24;;;;:::i;:::-;:36;;100429:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;100557:4;100543:11;;:18;;;;:::i;:::-;100530:9;:31;100508:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;100672:15;100653;;:34;;100631:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;100780:15;100764:13;;:31;100756:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;100873:12;;100865:4;100853:9;;:16;;;;:::i;:::-;:32;;100831:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;100951:22;100956:10;100968:4;100951;:22::i;:::-;100997:4;100984:9;;:17;;;;;;;:::i;:::-;;;;;;;;101035:4;101014:5;:17;101020:10;101014:17;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;100369:678;:::o;101365:96::-;32599:13;:11;:13::i;:::-;101444:9:::1;101433:8;:20;;;;101365:96:::0;:::o;94911:28::-;;;;:::o;94852:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;101665:142::-;32599:13;:11;:13::i;:::-;101746:6:::1;:15;;;101762:3;101767:6;:16;;;101792:4;101767:31;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;101746:53;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;101665:142:::0;;:::o;66535:193::-;66681:39;66698:4;66704:2;66708:7;66681:39;;;;;;;;;;;;:16;:39::i;:::-;66535:193;;;:::o;96445:85::-;96502:20;96508:7;96517:4;96502:5;:20::i;:::-;96445:85;:::o;101181:176::-;32599:13;:11;:13::i;:::-;101301:7:::1;101292:6;:16;;;;101335:14;101319:13;:30;;;;101181:176:::0;;:::o;101055:118::-;32599:13;:11;:13::i;:::-;101151:14:::1;101135:13;:30;;;;101055:118:::0;:::o;95595:40::-;;;;;;;;;;;;;;;;;:::o;95347:30::-;;;;:::o;101815:92::-;32599:13;:11;:13::i;:::-;101896:3:::1;;101886:7;:13;;;;;;;:::i;:::-;;101815:92:::0;;:::o;89805:528::-;89949:23;90015:22;90040:8;;:15;;90015:40;;90070:34;90128:14;90107:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;90070:73;;90163:9;90158:125;90179:14;90174:1;:19;90158:125;;90235:32;90255:8;;90264:1;90255:11;;;;;;;;;;;;;;;;;;;;;90235:19;:32::i;:::-;90219:10;90230:1;90219:13;;;;;;;;;;;;;;;;;;;;;:48;;;;90195:3;;;;;90158:125;;;;90304:10;90297:17;;;;89805:528;;;;:::o;95537:49::-;;;;;;;;;;;;;;;;;:::o;95386:20::-;;;;:::o;95120:30::-;;;;:::o;54877:152::-;54949:7;54992:27;55011:7;54992:18;:27::i;:::-;54969:52;;54877:152;;;:::o;94822:23::-;;;;:::o;101469:188::-;32599:13;:11;:13::i;:::-;101542:12:::1;101560:3;:8;;101576:21;101560:42;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101541:61;;;101621:7;101613:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;32623:1;101469:188:::0;:::o;94794:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50419:233::-;50491:7;50532:1;50515:19;;:5;:19;;;50511:60;;;50543:28;;;;;;;;;;;;;;50511:60;44578:13;50589:18;:25;50608:5;50589:25;;;;;;;;;;;;;;;;:55;50582:62;;50419:233;;;:::o;33361:103::-;32599:13;:11;:13::i;:::-;33426:30:::1;33453:1;33426:18;:30::i;:::-;33361:103::o:0;95486:42::-;;;;;;;;;;;;;;;;;:::o;95644:27::-;;;;:::o;93681:900::-;93759:16;93813:19;93847:25;93887:22;93912:16;93922:5;93912:9;:16::i;:::-;93887:41;;93943:25;93985:14;93971:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93943:57;;94015:31;;:::i;:::-;94066:9;94078:15;:13;:15::i;:::-;94066:27;;94061:472;94110:14;94095:11;:29;94061:472;;94162:15;94175:1;94162:12;:15::i;:::-;94150:27;;94200:9;:16;;;94196:73;;;94241:8;;94196:73;94317:1;94291:28;;:9;:14;;;:28;;;94287:111;;94364:9;:14;;;94344:34;;94287:111;94441:5;94420:26;;:17;:26;;;94416:102;;;94497:1;94471:8;94480:13;;;;;;94471:23;;;;;;;;;;;;;;;;;;;;;:27;;;;;94416:102;94061:472;94126:3;;;;;94061:472;;;;94554:8;94547:15;;;;;;;93681:900;;;:::o;97813:240::-;32599:13;:11;:13::i;:::-;97894:11:::1;97908:8;;:15;;97894:29;;97941:9;97936:81;97960:3;97956:1;:7;97936:81;;;97985:20;97990:8;;97999:1;97990:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;98003:1;97985:4;:20::i;:::-;97965:3;;;;;:::i;:::-;;;;97936:81;;;;98042:3;98027:11;;:18;;;;;;;:::i;:::-;;;;;;;;32623:1;97813:240:::0;;:::o;32713:87::-;32759:7;32786:6;;;;;;;;;;;32779:13;;32713:87;:::o;94883:21::-;;;;:::o;96799:511::-;32599:13;:11;:13::i;:::-;97077:16:::1;97059:15;:34;;;;97120:14;97104:13;:30;;;;97159:12;97145:11;:26;;;;97194:10;97182:9;:22;;;;97236:19;97215:18;:40;;;;97285:17;97266:16;:36;;;;96799:511:::0;;;;;;:::o;95196:33::-;;;;:::o;53660:104::-;53716:13;53749:7;53742:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53660:104;:::o;90721:2513::-;90864:16;90931:4;90922:5;:13;90918:45;;90944:19;;;;;;;;;;;;;;90918:45;90978:19;91012:17;91032:14;:12;:14::i;:::-;91012:34;;91132:15;:13;:15::i;:::-;91124:5;:23;91120:87;;;91176:15;:13;:15::i;:::-;91168:23;;91120:87;91283:9;91276:4;:16;91272:73;;;91320:9;91313:16;;91272:73;91359:25;91387:16;91397:5;91387:9;:16::i;:::-;91359:44;;91581:4;91573:5;:12;91569:278;;;91606:19;91635:5;91628:4;:12;91606:34;;91677:17;91663:11;:31;91659:111;;;91739:11;91719:31;;91659:111;91569:278;;;;91830:1;91810:21;;91569:278;91861:25;91903:17;91889:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91861:60;;91961:1;91940:17;:22;91936:78;;;91990:8;91983:15;;;;;;;;91936:78;92158:31;92192:26;92212:5;92192:19;:26::i;:::-;92158:60;;92233:25;92478:9;:16;;;92473:92;;92535:9;:14;;;92515:34;;92473:92;92584:9;92596:5;92584:17;;92579:478;92608:4;92603:1;:9;;:45;;;;;92631:17;92616:11;:32;;92603:45;92579:478;;;92686:15;92699:1;92686:12;:15::i;:::-;92674:27;;92724:9;:16;;;92720:73;;;92765:8;;92720:73;92841:1;92815:28;;:9;:14;;;:28;;;92811:111;;92888:9;:14;;;92868:34;;92811:111;92965:5;92944:26;;:17;:26;;;92940:102;;;93021:1;92995:8;93004:13;;;;;;92995:23;;;;;;;;;;;;;;;;;;;;;:27;;;;;92940:102;92579:478;92650:3;;;;;92579:478;;;;93159:11;93149:8;93142:29;93207:8;93200:15;;;;;;;;90721:2513;;;;;;:::o;60533:234::-;60680:8;60628:18;:39;60647:19;:17;:19::i;:::-;60628:39;;;;;;;;;;;;;;;:49;60668:8;60628:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;60740:8;60704:55;;60719:19;:17;:19::i;:::-;60704:55;;;60750:8;60704:55;;;;;;:::i;:::-;;;;;;;;60533:234;;:::o;95278:24::-;;;;:::o;97635:170::-;32599:13;:11;:13::i;:::-;97747:20:::1;97752:8;97762:4;97747;:20::i;:::-;97793:4;97778:11;;:19;;;;;;;:::i;:::-;;;;;;;;97635:170:::0;;:::o;94948:26::-;;;;:::o;96538:253::-;32599:13;:11;:13::i;:::-;96699:12:::1;96685:11;:26;;;;96739:15;96722:14;:32;;;;96775:8;96765:7;:18;;;;96538:253:::0;;;:::o;67326:407::-;67501:31;67514:4;67520:2;67524:7;67501:12;:31::i;:::-;67565:1;67547:2;:14;;;:19;67543:183;;67586:56;67617:4;67623:2;67627:7;67636:5;67586:30;:56::i;:::-;67581:145;;67670:40;;;;;;;;;;;;;;67581:145;67543:183;67326:407;;;;:::o;95415:27::-;;;;:::o;89218:428::-;89302:21;;:::i;:::-;89336:31;;:::i;:::-;89392:15;:13;:15::i;:::-;89382:7;:25;:54;;;;89422:14;:12;:14::i;:::-;89411:7;:25;;89382:54;89378:103;;;89460:9;89453:16;;;;;89378:103;89503:21;89516:7;89503:12;:21::i;:::-;89491:33;;89539:9;:16;;;89535:65;;;89579:9;89572:16;;;;;89535:65;89617:21;89630:7;89617:12;:21::i;:::-;89610:28;;;89218:428;;;;:::o;95052:26::-;;;;:::o;102143:451::-;102245:13;102298:17;102306:8;102298:7;:17::i;:::-;102276:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;102403:22;102452:1;102434:7;102428:21;;;;;:::i;:::-;;;:25;:130;;102548:10;102428:130;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102493:7;102502:19;:8;:17;:19::i;:::-;102476:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;102428:130;102403:155;;102578:8;102571:15;;;102143:451;;;:::o;99079:1282::-;99228:8;;99220:4;99200:5;:17;99206:10;99200:17;;;;;;;;;;;;;;;;:24;;;;:::i;:::-;:36;;99192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;99271:12;99313:10;99296:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;99286:39;;;;;;99271:54;;99358:47;99377:6;99385:13;;99400:4;99358:18;:47::i;:::-;99336:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;99507:15;99485:18;;:37;;99463:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;99621:15;99602:16;;:34;99594:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;99719:12;;99711:4;99699:9;;:16;;;;:::i;:::-;:32;;99677:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;99797:17;99821:14;:26;99836:10;99821:26;;;;;;;;;;;;;;;;99817:1;:30;;;;:::i;:::-;99797:50;;99869:9;99862:4;:16;99858:65;;;99907:4;99895:16;;99858:65;99935:18;99979:9;99972:4;:16;;;;:::i;:::-;99956:12;;:33;;;;:::i;:::-;99935:54;;100050:15;;100037:9;100022:12;;:24;;;;:::i;:::-;:43;;100000:137;;;;;;;;;;;;:::i;:::-;;;;;;;;;100164:9;100148:12;;:25;;;;;;;:::i;:::-;;;;;;;;100214:9;100184:14;:26;100199:10;100184:26;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;100255:10;100242:9;:23;;100234:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;100293:22;100298:10;100310:4;100293;:22::i;:::-;100349:4;100328:5;:17;100334:10;100328:17;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;99079:1282;;;;;:::o;94763:24::-;;;;:::o;95451:26::-;;;;:::o;101915:112::-;32599:13;:11;:13::i;:::-;102008:11:::1;;101995:10;:24;;;;;;;:::i;:::-;;101915:112:::0;;:::o;60924:164::-;61021:4;61045:18;:25;61064:5;61045:25;;;;;;;;;;;;;;;:35;61071:8;61045:35;;;;;;;;;;;;;;;;;;;;;;;;;61038:42;;60924:164;;;;:::o;95238:31::-;;;;:::o;95087:24::-;;;;:::o;33619:201::-;32599:13;:11;:13::i;:::-;33728:1:::1;33708:22;;:8;:22;;;;33700:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;33784:28;33803:8;33784:18;:28::i;:::-;33619:201:::0;:::o;95311:27::-;;;;:::o;94983:29::-;;;;:::o;32878:132::-;32953:12;:10;:12::i;:::-;32942:23;;:7;:5;:7::i;:::-;:23;;;32934:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32878:132::o;61346:282::-;61411:4;61467:7;61448:15;:13;:15::i;:::-;:26;;:66;;;;;61501:13;;61491:7;:23;61448:66;:153;;;;;61600:1;45354:8;61552:17;:26;61570:7;61552:26;;;;;;;;;;;;:44;:49;61448:153;61428:173;;61346:282;;;:::o;83654:105::-;83714:7;83741:10;83734:17;;83654:105;:::o;48751:92::-;48807:7;48751:92;:::o;56032:1275::-;56099:7;56119:12;56134:7;56119:22;;56202:4;56183:15;:13;:15::i;:::-;:23;56179:1061;;56236:13;;56229:4;:20;56225:1015;;;56274:14;56291:17;:23;56309:4;56291:23;;;;;;;;;;;;56274:40;;56408:1;45354:8;56380:6;:24;:29;56376:845;;;57045:113;57062:1;57052:6;:11;57045:113;;;57105:17;:25;57123:6;;;;;;;57105:25;;;;;;;;;;;;57096:34;;57045:113;;;57191:6;57184:13;;;;;;56376:845;56225:1015;;56179:1061;57268:31;;;;;;;;;;;;;;56032:1275;;;;:::o;62509:485::-;62611:27;62640:23;62681:38;62722:15;:24;62738:7;62722:24;;;;;;;;;;;62681:65;;62899:18;62876:41;;62956:19;62950:26;62931:45;;62861:126;;;;:::o;61737:659::-;61886:11;62051:16;62044:5;62040:28;62031:37;;62211:16;62200:9;62196:32;62183:45;;62361:15;62350:9;62347:30;62339:5;62328:9;62325:20;62322:56;62312:66;;61919:470;;;;;:::o;68395:159::-;;;;;:::o;82963:311::-;83098:7;83118:16;45758:3;83144:19;:41;;83118:68;;45758:3;83212:31;83223:4;83229:2;83233:9;83212:10;:31::i;:::-;83204:40;;:62;;83197:69;;;82963:311;;;;;:::o;57855:450::-;57935:14;58103:16;58096:5;58092:28;58083:37;;58280:5;58266:11;58241:23;58237:41;58234:52;58227:5;58224:63;58214:73;;57971:327;;;;:::o;69219:158::-;;;;;:::o;22246:190::-;22371:4;22424;22395:25;22408:5;22415:4;22395:12;:25::i;:::-;:33;22388:40;;22246:190;;;;;:::o;97434:193::-;20423:21;:19;:21::i;:::-;97545:9:::1;;97537:4;97521:13;:11;:13::i;:::-;:20;;;;:::i;:::-;:33;;97513:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;97594:25;97604:8;97614:4;97594:9;:25::i;:::-;20467:20:::0;:18;:20::i;:::-;97434:193;;:::o;78183:3081::-;78263:27;78293;78312:7;78293:18;:27::i;:::-;78263:57;;78333:12;78364:19;78333:52;;78399:27;78428:23;78455:35;78482:7;78455:26;:35::i;:::-;78398:92;;;;78507:13;78503:316;;;78628:68;78653:15;78670:4;78676:19;:17;:19::i;:::-;78628:24;:68::i;:::-;78623:184;;78720:43;78737:4;78743:19;:17;:19::i;:::-;78720:16;:43::i;:::-;78715:92;;78772:35;;;;;;;;;;;;;;78715:92;78623:184;78503:316;78831:51;78853:4;78867:1;78871:7;78880:1;78831:21;:51::i;:::-;78975:15;78972:2;;;79115:1;79094:19;79087:30;78972:2;79793:1;44843:3;79763:1;:26;;79762:32;79734:18;:24;79753:4;79734:24;;;;;;;;;;;;;;;;:60;;;;;;;;;;;80061:176;80098:4;80169:53;80184:4;80198:1;80202:19;80169:14;:53::i;:::-;45634:8;45354;80122:43;80121:101;80061:18;:176::i;:::-;80032:17;:26;80050:7;80032:26;;;;;;;;;;;:205;;;;80408:1;45634:8;80357:19;:47;:52;80353:627;;;80430:19;80462:1;80452:7;:11;80430:33;;80619:1;80585:17;:30;80603:11;80585:30;;;;;;;;;;;;:35;80581:384;;;80723:13;;80708:11;:28;80704:242;;80903:19;80870:17;:30;80888:11;80870:30;;;;;;;;;;;:52;;;;80704:242;80581:384;80353:627;;81035:7;81031:1;81008:35;;81017:4;81008:35;;;;;;;;;;;;81054:50;81075:4;81089:1;81093:7;81102:1;81054:20;:50::i;:::-;81231:12;;:14;;;;;;;;;;;;;78183:3081;;;;;;:::o;33980:191::-;34054:16;34073:6;;;;;;;;;;;34054:25;;34099:8;34090:6;;:17;;;;;;;;;;;;;;;;;;34154:8;34123:40;;34144:8;34123:40;;;;;;;;;;;;33980:191;;:::o;55480:161::-;55548:21;;:::i;:::-;55589:44;55608:17;:24;55626:5;55608:24;;;;;;;;;;;;55589:18;:44::i;:::-;55582:51;;55480:161;;;:::o;48922:103::-;48977:7;49004:13;;48997:20;;48922:103;:::o;69817:716::-;69980:4;70026:2;70001:45;;;70047:19;:17;:19::i;:::-;70068:4;70074:7;70083:5;70001:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;69997:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70301:1;70284:6;:13;:18;70280:235;;;70330:40;;;;;;;;;;;;;;70280:235;70473:6;70467:13;70458:6;70454:2;70450:15;70443:38;69997:529;70170:54;;;70160:64;;;:6;:64;;;;70153:71;;;69817:716;;;;;;:::o;55218:166::-;55288:21;;:::i;:::-;55329:47;55348:27;55367:7;55348:18;:27::i;:::-;55329:18;:47::i;:::-;55322:54;;55218:166;;;:::o;16184:716::-;16240:13;16291:14;16328:1;16308:17;16319:5;16308:10;:17::i;:::-;:21;16291:38;;16344:20;16378:6;16367:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16344:41;;16400:11;16529:6;16525:2;16521:15;16513:6;16509:28;16502:35;;16566:288;16573:4;16566:288;;;16598:5;;;;;;;;16740:8;16735:2;16728:5;16724:14;16719:30;16714:3;16706:44;16796:2;16787:11;;;;;;;;;;;;;;;;;16830:1;16821:5;:10;16817:21;;;16833:5;;16817:21;16566:288;;;16875:6;16868:13;;;;;16184:716;;;:::o;31264:98::-;31317:7;31344:10;31337:17;;31264:98;:::o;82664:147::-;82801:6;82664:147;;;;;:::o;23113:296::-;23196:7;23216:20;23239:4;23216:27;;23259:9;23254:118;23278:5;:12;23274:1;:16;23254:118;;;23327:33;23337:12;23351:5;23357:1;23351:8;;;;;;;;;;;;;;;;;;;;;;23327:9;:33::i;:::-;23312:48;;23292:3;;;;;:::i;:::-;;;;23254:118;;;;23389:12;23382:19;;;23113:296;;;;:::o;20503:293::-;19905:1;20637:7;;:19;;20629:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;19905:1;20770:7;:18;;;;20503:293::o;77486:112::-;77563:27;77573:2;77577:8;77563:27;;;;;;;;;;;;:9;:27::i;:::-;77486:112;;:::o;20804:213::-;19861:1;20987:7;:22;;;;20804:213::o;57406:366::-;57472:31;;:::i;:::-;57549:6;57516:9;:14;;:41;;;;;;;;;;;45237:3;57602:6;:33;;57568:9;:24;;:68;;;;;;;;;;;57694:1;45354:8;57666:6;:24;:29;;57647:9;:16;;:48;;;;;;;;;;;45758:3;57735:6;:28;;57706:9;:19;;:58;;;;;;;;;;;57406:366;;;:::o;13050:922::-;13103:7;13123:14;13140:1;13123:18;;13190:6;13181:5;:15;13177:102;;13226:6;13217:15;;;;;;;;;;;;;;;;;13261:2;13251:12;;;;13177:102;13306:6;13297:5;:15;13293:102;;13342:6;13333:15;;;;;;;;;;;;;;;;;13377:2;13367:12;;;;13293:102;13422:6;13413:5;:15;13409:102;;13458:6;13449:15;;;;;;;;;;;;;;;;;13493:2;13483:12;;;;13409:102;13538:5;13529;:14;13525:99;;13573:5;13564:14;;;;;;;;;;;;;;;;;13607:1;13597:11;;;;13525:99;13651:5;13642;:14;13638:99;;13686:5;13677:14;;;;;;;;;;;;;;;;;13720:1;13710:11;;;;13638:99;13764:5;13755;:14;13751:99;;13799:5;13790:14;;;;;;;;;;;;;;;;;13833:1;13823:11;;;;13751:99;13877:5;13868;:14;13864:66;;13913:1;13903:11;;;;13864:66;13958:6;13951:13;;;13050:922;;;:::o;30153:149::-;30216:7;30247:1;30243;:5;:51;;30274:20;30289:1;30292;30274:14;:20::i;:::-;30243:51;;;30251:20;30266:1;30269;30251:14;:20::i;:::-;30243:51;30236:58;;30153:149;;;;:::o;76713:689::-;76844:19;76850:2;76854:8;76844:5;:19::i;:::-;76923:1;76905:2;:14;;;:19;76901:483;;76945:11;76959:13;;76945:27;;76991:13;77013:8;77007:3;:14;76991:30;;77040:233;77071:62;77110:1;77114:2;77118:7;;;;;;77127:5;77071:30;:62::i;:::-;77066:167;;77169:40;;;;;;;;;;;;;;77066:167;77268:3;77260:5;:11;77040:233;;77355:3;77338:13;;:20;77334:34;;77360:8;;;77334:34;76901:483;;;76713:689;;;:::o;30310:268::-;30378:13;30485:1;30479:4;30472:15;30514:1;30508:4;30501:15;30555:4;30549;30539:21;30530:30;;30457:114;;;;:::o;70995:2966::-;71068:20;71091:13;;71068:36;;71131:1;71119:8;:13;71115:44;;;71141:18;;;;;;;;;;;;;;71115:44;71172:61;71202:1;71206:2;71210:12;71224:8;71172:21;:61::i;:::-;71716:1;44716:2;71686:1;:26;;71685:32;71673:8;:45;71647:18;:22;71666:2;71647:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;71995:139;72032:2;72086:33;72109:1;72113:2;72117:1;72086:14;:33::i;:::-;72053:30;72074:8;72053:20;:30::i;:::-;:66;71995:18;:139::i;:::-;71961:17;:31;71979:12;71961:31;;;;;;;;;;;:173;;;;72151:16;72182:11;72211:8;72196:12;:23;72182:37;;72732:16;72728:2;72724:25;72712:37;;73104:12;73064:8;73023:1;72961:25;72902:1;72841;72814:335;73475:1;73461:12;73457:20;73415:346;73516:3;73507:7;73504:16;73415:346;;73734:7;73724:8;73721:1;73694:25;73691:1;73688;73683:59;73569:1;73560:7;73556:15;73545:26;;73415:346;;;73419:77;73806:1;73794:8;:13;73790:45;;;73816:19;;;;;;;;;;;;;;73790:45;73868:3;73852:13;:19;;;;70995:2966;;73893:60;73922:1;73926:2;73930:12;73944:8;73893:20;:60::i;:::-;70995:2966;;;:::o;58407:324::-;58477:14;58710:1;58700:8;58697:15;58671:24;58667:46;58657:56;;58579:145;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:655:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:2;;;414:1;411;404:12;350:2;450:1;435:238;460:6;457:1;454:13;435:238;;;528:3;557:37;590:3;578:10;557:37;:::i;:::-;552:3;545:50;624:4;619:3;615:14;608:21;;658:4;653:3;649:14;642:21;;495:178;482:1;479;475:9;470:14;;435:238;;;439:14;126:553;;;;;;;:::o;685:343::-;762:5;787:65;803:48;844:6;803:48;:::i;:::-;787:65;:::i;:::-;778:74;;875:6;868:5;861:21;913:4;906:5;902:16;951:3;942:6;937:3;933:16;930:25;927:2;;;968:1;965;958:12;927:2;981:41;1015:6;1010:3;1005;981:41;:::i;:::-;768:260;;;;;;:::o;1034:139::-;1080:5;1118:6;1105:20;1096:29;;1134:33;1161:5;1134:33;:::i;:::-;1086:87;;;;:::o;1179:155::-;1233:5;1271:6;1258:20;1249:29;;1287:41;1322:5;1287:41;:::i;:::-;1239:95;;;;:::o;1357:367::-;1430:8;1440:6;1490:3;1483:4;1475:6;1471:17;1467:27;1457:2;;1508:1;1505;1498:12;1457:2;1544:6;1531:20;1521:30;;1574:18;1566:6;1563:30;1560:2;;;1606:1;1603;1596:12;1560:2;1643:4;1635:6;1631:17;1619:29;;1697:3;1689:4;1681:6;1677:17;1667:8;1663:32;1660:41;1657:2;;;1714:1;1711;1704:12;1657:2;1447:277;;;;;:::o;1747:303::-;1818:5;1867:3;1860:4;1852:6;1848:17;1844:27;1834:2;;1885:1;1882;1875:12;1834:2;1925:6;1912:20;1950:94;2040:3;2032:6;2025:4;2017:6;2013:17;1950:94;:::i;:::-;1941:103;;1824:226;;;;;:::o;2073:367::-;2146:8;2156:6;2206:3;2199:4;2191:6;2187:17;2183:27;2173:2;;2224:1;2221;2214:12;2173:2;2260:6;2247:20;2237:30;;2290:18;2282:6;2279:30;2276:2;;;2322:1;2319;2312:12;2276:2;2359:4;2351:6;2347:17;2335:29;;2413:3;2405:4;2397:6;2393:17;2383:8;2379:32;2376:41;2373:2;;;2430:1;2427;2420:12;2373:2;2163:277;;;;;:::o;2446:133::-;2489:5;2527:6;2514:20;2505:29;;2543:30;2567:5;2543:30;:::i;:::-;2495:84;;;;:::o;2585:137::-;2639:5;2670:6;2664:13;2655:22;;2686:30;2710:5;2686:30;:::i;:::-;2645:77;;;;:::o;2728:139::-;2774:5;2812:6;2799:20;2790:29;;2828:33;2855:5;2828:33;:::i;:::-;2780:87;;;;:::o;2873:137::-;2918:5;2956:6;2943:20;2934:29;;2972:32;2998:5;2972:32;:::i;:::-;2924:86;;;;:::o;3016:141::-;3072:5;3103:6;3097:13;3088:22;;3119:32;3145:5;3119:32;:::i;:::-;3078:79;;;;:::o;3176:271::-;3231:5;3280:3;3273:4;3265:6;3261:17;3257:27;3247:2;;3298:1;3295;3288:12;3247:2;3338:6;3325:20;3363:78;3437:3;3429:6;3422:4;3414:6;3410:17;3363:78;:::i;:::-;3354:87;;3237:210;;;;;:::o;3453:165::-;3512:5;3550:6;3537:20;3528:29;;3566:46;3606:5;3566:46;:::i;:::-;3518:100;;;;:::o;3638:352::-;3696:8;3706:6;3756:3;3749:4;3741:6;3737:17;3733:27;3723:2;;3774:1;3771;3764:12;3723:2;3810:6;3797:20;3787:30;;3840:18;3832:6;3829:30;3826:2;;;3872:1;3869;3862:12;3826:2;3909:4;3901:6;3897:17;3885:29;;3963:3;3955:4;3947:6;3943:17;3933:8;3929:32;3926:41;3923:2;;;3980:1;3977;3970:12;3923:2;3713:277;;;;;:::o;3996:139::-;4042:5;4080:6;4067:20;4058:29;;4096:33;4123:5;4096:33;:::i;:::-;4048:87;;;;:::o;4141:143::-;4198:5;4229:6;4223:13;4214:22;;4245:33;4272:5;4245:33;:::i;:::-;4204:80;;;;:::o;4290:262::-;4349:6;4398:2;4386:9;4377:7;4373:23;4369:32;4366:2;;;4414:1;4411;4404:12;4366:2;4457:1;4482:53;4527:7;4518:6;4507:9;4503:22;4482:53;:::i;:::-;4472:63;;4428:117;4356:196;;;;:::o;4558:278::-;4625:6;4674:2;4662:9;4653:7;4649:23;4645:32;4642:2;;;4690:1;4687;4680:12;4642:2;4733:1;4758:61;4811:7;4802:6;4791:9;4787:22;4758:61;:::i;:::-;4748:71;;4704:125;4632:204;;;;:::o;4842:407::-;4910:6;4918;4967:2;4955:9;4946:7;4942:23;4938:32;4935:2;;;4983:1;4980;4973:12;4935:2;5026:1;5051:53;5096:7;5087:6;5076:9;5072:22;5051:53;:::i;:::-;5041:63;;4997:117;5153:2;5179:53;5224:7;5215:6;5204:9;5200:22;5179:53;:::i;:::-;5169:63;;5124:118;4925:324;;;;;:::o;5255:552::-;5332:6;5340;5348;5397:2;5385:9;5376:7;5372:23;5368:32;5365:2;;;5413:1;5410;5403:12;5365:2;5456:1;5481:53;5526:7;5517:6;5506:9;5502:22;5481:53;:::i;:::-;5471:63;;5427:117;5583:2;5609:53;5654:7;5645:6;5634:9;5630:22;5609:53;:::i;:::-;5599:63;;5554:118;5711:2;5737:53;5782:7;5773:6;5762:9;5758:22;5737:53;:::i;:::-;5727:63;;5682:118;5355:452;;;;;:::o;5813:809::-;5908:6;5916;5924;5932;5981:3;5969:9;5960:7;5956:23;5952:33;5949:2;;;5998:1;5995;5988:12;5949:2;6041:1;6066:53;6111:7;6102:6;6091:9;6087:22;6066:53;:::i;:::-;6056:63;;6012:117;6168:2;6194:53;6239:7;6230:6;6219:9;6215:22;6194:53;:::i;:::-;6184:63;;6139:118;6296:2;6322:53;6367:7;6358:6;6347:9;6343:22;6322:53;:::i;:::-;6312:63;;6267:118;6452:2;6441:9;6437:18;6424:32;6483:18;6475:6;6472:30;6469:2;;;6515:1;6512;6505:12;6469:2;6543:62;6597:7;6588:6;6577:9;6573:22;6543:62;:::i;:::-;6533:72;;6395:220;5939:683;;;;;;;:::o;6628:401::-;6693:6;6701;6750:2;6738:9;6729:7;6725:23;6721:32;6718:2;;;6766:1;6763;6756:12;6718:2;6809:1;6834:53;6879:7;6870:6;6859:9;6855:22;6834:53;:::i;:::-;6824:63;;6780:117;6936:2;6962:50;7004:7;6995:6;6984:9;6980:22;6962:50;:::i;:::-;6952:60;;6907:115;6708:321;;;;;:::o;7035:407::-;7103:6;7111;7160:2;7148:9;7139:7;7135:23;7131:32;7128:2;;;7176:1;7173;7166:12;7128:2;7219:1;7244:53;7289:7;7280:6;7269:9;7265:22;7244:53;:::i;:::-;7234:63;;7190:117;7346:2;7372:53;7417:7;7408:6;7397:9;7393:22;7372:53;:::i;:::-;7362:63;;7317:118;7118:324;;;;;:::o;7448:552::-;7525:6;7533;7541;7590:2;7578:9;7569:7;7565:23;7561:32;7558:2;;;7606:1;7603;7596:12;7558:2;7649:1;7674:53;7719:7;7710:6;7699:9;7695:22;7674:53;:::i;:::-;7664:63;;7620:117;7776:2;7802:53;7847:7;7838:6;7827:9;7823:22;7802:53;:::i;:::-;7792:63;;7747:118;7904:2;7930:53;7975:7;7966:6;7955:9;7951:22;7930:53;:::i;:::-;7920:63;;7875:118;7548:452;;;;;:::o;8006:425::-;8092:6;8100;8149:2;8137:9;8128:7;8124:23;8120:32;8117:2;;;8165:1;8162;8155:12;8117:2;8236:1;8225:9;8221:17;8208:31;8266:18;8258:6;8255:30;8252:2;;;8298:1;8295;8288:12;8252:2;8334:80;8406:7;8397:6;8386:9;8382:22;8334:80;:::i;:::-;8316:98;;;;8179:245;8107:324;;;;;:::o;8437:425::-;8523:6;8531;8580:2;8568:9;8559:7;8555:23;8551:32;8548:2;;;8596:1;8593;8586:12;8548:2;8667:1;8656:9;8652:17;8639:31;8697:18;8689:6;8686:30;8683:2;;;8729:1;8726;8719:12;8683:2;8765:80;8837:7;8828:6;8817:9;8813:22;8765:80;:::i;:::-;8747:98;;;;8610:245;8538:324;;;;;:::o;8868:278::-;8935:6;8984:2;8972:9;8963:7;8959:23;8955:32;8952:2;;;9000:1;8997;8990:12;8952:2;9043:1;9068:61;9121:7;9112:6;9101:9;9097:22;9068:61;:::i;:::-;9058:71;;9014:125;8942:204;;;;:::o;9152:262::-;9211:6;9260:2;9248:9;9239:7;9235:23;9231:32;9228:2;;;9276:1;9273;9266:12;9228:2;9319:1;9344:53;9389:7;9380:6;9369:9;9365:22;9344:53;:::i;:::-;9334:63;;9290:117;9218:196;;;;:::o;9420:407::-;9488:6;9496;9545:2;9533:9;9524:7;9520:23;9516:32;9513:2;;;9561:1;9558;9551:12;9513:2;9604:1;9629:53;9674:7;9665:6;9654:9;9650:22;9629:53;:::i;:::-;9619:63;;9575:117;9731:2;9757:53;9802:7;9793:6;9782:9;9778:22;9757:53;:::i;:::-;9747:63;;9702:118;9503:324;;;;;:::o;9833:260::-;9891:6;9940:2;9928:9;9919:7;9915:23;9911:32;9908:2;;;9956:1;9953;9946:12;9908:2;9999:1;10024:52;10068:7;10059:6;10048:9;10044:22;10024:52;:::i;:::-;10014:62;;9970:116;9898:195;;;;:::o;10099:282::-;10168:6;10217:2;10205:9;10196:7;10192:23;10188:32;10185:2;;;10233:1;10230;10223:12;10185:2;10276:1;10301:63;10356:7;10347:6;10336:9;10332:22;10301:63;:::i;:::-;10291:73;;10247:127;10175:206;;;;:::o;10387:433::-;10468:6;10476;10525:2;10513:9;10504:7;10500:23;10496:32;10493:2;;;10541:1;10538;10531:12;10493:2;10584:1;10609:66;10667:7;10658:6;10647:9;10643:22;10609:66;:::i;:::-;10599:76;;10555:130;10724:2;10750:53;10795:7;10786:6;10775:9;10771:22;10750:53;:::i;:::-;10740:63;;10695:118;10483:337;;;;;:::o;10826:395::-;10897:6;10905;10954:2;10942:9;10933:7;10929:23;10925:32;10922:2;;;10970:1;10967;10960:12;10922:2;11041:1;11030:9;11026:17;11013:31;11071:18;11063:6;11060:30;11057:2;;;11103:1;11100;11093:12;11057:2;11139:65;11196:7;11187:6;11176:9;11172:22;11139:65;:::i;:::-;11121:83;;;;10984:230;10912:309;;;;;:::o;11227:262::-;11286:6;11335:2;11323:9;11314:7;11310:23;11306:32;11303:2;;;11351:1;11348;11341:12;11303:2;11394:1;11419:53;11464:7;11455:6;11444:9;11440:22;11419:53;:::i;:::-;11409:63;;11365:117;11293:196;;;;:::o;11495:284::-;11565:6;11614:2;11602:9;11593:7;11589:23;11585:32;11582:2;;;11630:1;11627;11620:12;11582:2;11673:1;11698:64;11754:7;11745:6;11734:9;11730:22;11698:64;:::i;:::-;11688:74;;11644:128;11572:207;;;;:::o;11785:550::-;11878:6;11886;11935:2;11923:9;11914:7;11910:23;11906:32;11903:2;;;11951:1;11948;11941:12;11903:2;11994:1;12019:53;12064:7;12055:6;12044:9;12040:22;12019:53;:::i;:::-;12009:63;;11965:117;12149:2;12138:9;12134:18;12121:32;12180:18;12172:6;12169:30;12166:2;;;12212:1;12209;12202:12;12166:2;12240:78;12310:7;12301:6;12290:9;12286:22;12240:78;:::i;:::-;12230:88;;12092:236;11893:442;;;;;:::o;12341:552::-;12418:6;12426;12434;12483:2;12471:9;12462:7;12458:23;12454:32;12451:2;;;12499:1;12496;12489:12;12451:2;12542:1;12567:53;12612:7;12603:6;12592:9;12588:22;12567:53;:::i;:::-;12557:63;;12513:117;12669:2;12695:53;12740:7;12731:6;12720:9;12716:22;12695:53;:::i;:::-;12685:63;;12640:118;12797:2;12823:53;12868:7;12859:6;12848:9;12844:22;12823:53;:::i;:::-;12813:63;;12768:118;12441:452;;;;;:::o;12899:990::-;13003:6;13011;13019;13027;13035;13043;13092:3;13080:9;13071:7;13067:23;13063:33;13060:2;;;13109:1;13106;13099:12;13060:2;13152:1;13177:53;13222:7;13213:6;13202:9;13198:22;13177:53;:::i;:::-;13167:63;;13123:117;13279:2;13305:53;13350:7;13341:6;13330:9;13326:22;13305:53;:::i;:::-;13295:63;;13250:118;13407:2;13433:53;13478:7;13469:6;13458:9;13454:22;13433:53;:::i;:::-;13423:63;;13378:118;13535:2;13561:53;13606:7;13597:6;13586:9;13582:22;13561:53;:::i;:::-;13551:63;;13506:118;13663:3;13690:53;13735:7;13726:6;13715:9;13711:22;13690:53;:::i;:::-;13680:63;;13634:119;13792:3;13819:53;13864:7;13855:6;13844:9;13840:22;13819:53;:::i;:::-;13809:63;;13763:119;13050:839;;;;;;;;:::o;13895:307::-;14028:10;14049:110;14155:3;14147:6;14049:110;:::i;:::-;14191:4;14186:3;14182:14;14168:28;;14039:163;;;;:::o;14208:179::-;14277:10;14298:46;14340:3;14332:6;14298:46;:::i;:::-;14376:4;14371:3;14367:14;14353:28;;14288:99;;;;:::o;14393:108::-;14470:24;14488:5;14470:24;:::i;:::-;14465:3;14458:37;14448:53;;:::o;14507:118::-;14594:24;14612:5;14594:24;:::i;:::-;14589:3;14582:37;14572:53;;:::o;14631:157::-;14736:45;14756:24;14774:5;14756:24;:::i;:::-;14736:45;:::i;:::-;14731:3;14724:58;14714:74;;:::o;14870:988::-;15053:3;15082:86;15162:5;15082:86;:::i;:::-;15184:118;15295:6;15290:3;15184:118;:::i;:::-;15177:125;;15326:88;15408:5;15326:88;:::i;:::-;15437:7;15468:1;15453:380;15478:6;15475:1;15472:13;15453:380;;;15554:6;15548:13;15581:127;15704:3;15689:13;15581:127;:::i;:::-;15574:134;;15731:92;15816:6;15731:92;:::i;:::-;15721:102;;15513:320;15500:1;15497;15493:9;15488:14;;15453:380;;;15457:14;15849:3;15842:10;;15058:800;;;;;;;:::o;15894:732::-;16013:3;16042:54;16090:5;16042:54;:::i;:::-;16112:86;16191:6;16186:3;16112:86;:::i;:::-;16105:93;;16222:56;16272:5;16222:56;:::i;:::-;16301:7;16332:1;16317:284;16342:6;16339:1;16336:13;16317:284;;;16418:6;16412:13;16445:63;16504:3;16489:13;16445:63;:::i;:::-;16438:70;;16531:60;16584:6;16531:60;:::i;:::-;16521:70;;16377:224;16364:1;16361;16357:9;16352:14;;16317:284;;;16321:14;16617:3;16610:10;;16018:608;;;;;;;:::o;16632:99::-;16703:21;16718:5;16703:21;:::i;:::-;16698:3;16691:34;16681:50;;:::o;16737:109::-;16818:21;16833:5;16818:21;:::i;:::-;16813:3;16806:34;16796:50;;:::o;16852:118::-;16939:24;16957:5;16939:24;:::i;:::-;16934:3;16927:37;16917:53;;:::o;16976:360::-;17062:3;17090:38;17122:5;17090:38;:::i;:::-;17144:70;17207:6;17202:3;17144:70;:::i;:::-;17137:77;;17223:52;17268:6;17263:3;17256:4;17249:5;17245:16;17223:52;:::i;:::-;17300:29;17322:6;17300:29;:::i;:::-;17295:3;17291:39;17284:46;;17066:270;;;;;:::o;17342:364::-;17430:3;17458:39;17491:5;17458:39;:::i;:::-;17513:71;17577:6;17572:3;17513:71;:::i;:::-;17506:78;;17593:52;17638:6;17633:3;17626:4;17619:5;17615:16;17593:52;:::i;:::-;17670:29;17692:6;17670:29;:::i;:::-;17665:3;17661:39;17654:46;;17434:272;;;;;:::o;17712:377::-;17818:3;17846:39;17879:5;17846:39;:::i;:::-;17901:89;17983:6;17978:3;17901:89;:::i;:::-;17894:96;;17999:52;18044:6;18039:3;18032:4;18025:5;18021:16;17999:52;:::i;:::-;18076:6;18071:3;18067:16;18060:23;;17822:267;;;;;:::o;18119:845::-;18222:3;18259:5;18253:12;18288:36;18314:9;18288:36;:::i;:::-;18340:89;18422:6;18417:3;18340:89;:::i;:::-;18333:96;;18460:1;18449:9;18445:17;18476:1;18471:137;;;;18622:1;18617:341;;;;18438:520;;18471:137;18555:4;18551:9;18540;18536:25;18531:3;18524:38;18591:6;18586:3;18582:16;18575:23;;18471:137;;18617:341;18684:38;18716:5;18684:38;:::i;:::-;18744:1;18758:154;18772:6;18769:1;18766:13;18758:154;;;18846:7;18840:14;18836:1;18831:3;18827:11;18820:35;18896:1;18887:7;18883:15;18872:26;;18794:4;18791:1;18787:12;18782:17;;18758:154;;;18941:6;18936:3;18932:16;18925:23;;18624:334;;18438:520;;18226:738;;;;;;:::o;18970:366::-;19112:3;19133:67;19197:2;19192:3;19133:67;:::i;:::-;19126:74;;19209:93;19298:3;19209:93;:::i;:::-;19327:2;19322:3;19318:12;19311:19;;19116:220;;;:::o;19342:366::-;19484:3;19505:67;19569:2;19564:3;19505:67;:::i;:::-;19498:74;;19581:93;19670:3;19581:93;:::i;:::-;19699:2;19694:3;19690:12;19683:19;;19488:220;;;:::o;19714:366::-;19856:3;19877:67;19941:2;19936:3;19877:67;:::i;:::-;19870:74;;19953:93;20042:3;19953:93;:::i;:::-;20071:2;20066:3;20062:12;20055:19;;19860:220;;;:::o;20086:366::-;20228:3;20249:67;20313:2;20308:3;20249:67;:::i;:::-;20242:74;;20325:93;20414:3;20325:93;:::i;:::-;20443:2;20438:3;20434:12;20427:19;;20232:220;;;:::o;20458:366::-;20600:3;20621:67;20685:2;20680:3;20621:67;:::i;:::-;20614:74;;20697:93;20786:3;20697:93;:::i;:::-;20815:2;20810:3;20806:12;20799:19;;20604:220;;;:::o;20830:366::-;20972:3;20993:67;21057:2;21052:3;20993:67;:::i;:::-;20986:74;;21069:93;21158:3;21069:93;:::i;:::-;21187:2;21182:3;21178:12;21171:19;;20976:220;;;:::o;21202:366::-;21344:3;21365:67;21429:2;21424:3;21365:67;:::i;:::-;21358:74;;21441:93;21530:3;21441:93;:::i;:::-;21559:2;21554:3;21550:12;21543:19;;21348:220;;;:::o;21574:366::-;21716:3;21737:67;21801:2;21796:3;21737:67;:::i;:::-;21730:74;;21813:93;21902:3;21813:93;:::i;:::-;21931:2;21926:3;21922:12;21915:19;;21720:220;;;:::o;21946:366::-;22088:3;22109:67;22173:2;22168:3;22109:67;:::i;:::-;22102:74;;22185:93;22274:3;22185:93;:::i;:::-;22303:2;22298:3;22294:12;22287:19;;22092:220;;;:::o;22318:400::-;22478:3;22499:84;22581:1;22576:3;22499:84;:::i;:::-;22492:91;;22592:93;22681:3;22592:93;:::i;:::-;22710:1;22705:3;22701:11;22694:18;;22482:236;;;:::o;22724:366::-;22866:3;22887:67;22951:2;22946:3;22887:67;:::i;:::-;22880:74;;22963:93;23052:3;22963:93;:::i;:::-;23081:2;23076:3;23072:12;23065:19;;22870:220;;;:::o;23096:366::-;23238:3;23259:67;23323:2;23318:3;23259:67;:::i;:::-;23252:74;;23335:93;23424:3;23335:93;:::i;:::-;23453:2;23448:3;23444:12;23437:19;;23242:220;;;:::o;23468:366::-;23610:3;23631:67;23695:2;23690:3;23631:67;:::i;:::-;23624:74;;23707:93;23796:3;23707:93;:::i;:::-;23825:2;23820:3;23816:12;23809:19;;23614:220;;;:::o;23840:366::-;23982:3;24003:67;24067:2;24062:3;24003:67;:::i;:::-;23996:74;;24079:93;24168:3;24079:93;:::i;:::-;24197:2;24192:3;24188:12;24181:19;;23986:220;;;:::o;24212:366::-;24354:3;24375:67;24439:2;24434:3;24375:67;:::i;:::-;24368:74;;24451:93;24540:3;24451:93;:::i;:::-;24569:2;24564:3;24560:12;24553:19;;24358:220;;;:::o;24584:398::-;24743:3;24764:83;24845:1;24840:3;24764:83;:::i;:::-;24757:90;;24856:93;24945:3;24856:93;:::i;:::-;24974:1;24969:3;24965:11;24958:18;;24747:235;;;:::o;24988:366::-;25130:3;25151:67;25215:2;25210:3;25151:67;:::i;:::-;25144:74;;25227:93;25316:3;25227:93;:::i;:::-;25345:2;25340:3;25336:12;25329:19;;25134:220;;;:::o;25360:366::-;25502:3;25523:67;25587:2;25582:3;25523:67;:::i;:::-;25516:74;;25599:93;25688:3;25599:93;:::i;:::-;25717:2;25712:3;25708:12;25701:19;;25506:220;;;:::o;25732:366::-;25874:3;25895:67;25959:2;25954:3;25895:67;:::i;:::-;25888:74;;25971:93;26060:3;25971:93;:::i;:::-;26089:2;26084:3;26080:12;26073:19;;25878:220;;;:::o;26104:366::-;26246:3;26267:67;26331:2;26326:3;26267:67;:::i;:::-;26260:74;;26343:93;26432:3;26343:93;:::i;:::-;26461:2;26456:3;26452:12;26445:19;;26250:220;;;:::o;26548:866::-;26699:4;26694:3;26690:14;26786:4;26779:5;26775:16;26769:23;26805:63;26862:4;26857:3;26853:14;26839:12;26805:63;:::i;:::-;26714:164;26970:4;26963:5;26959:16;26953:23;26989:61;27044:4;27039:3;27035:14;27021:12;26989:61;:::i;:::-;26888:172;27144:4;27137:5;27133:16;27127:23;27163:57;27214:4;27209:3;27205:14;27191:12;27163:57;:::i;:::-;27070:160;27317:4;27310:5;27306:16;27300:23;27336:61;27391:4;27386:3;27382:14;27368:12;27336:61;:::i;:::-;27240:167;26668:746;;;:::o;27492:876::-;27653:4;27648:3;27644:14;27740:4;27733:5;27729:16;27723:23;27759:63;27816:4;27811:3;27807:14;27793:12;27759:63;:::i;:::-;27668:164;27924:4;27917:5;27913:16;27907:23;27943:61;27998:4;27993:3;27989:14;27975:12;27943:61;:::i;:::-;27842:172;28098:4;28091:5;28087:16;28081:23;28117:57;28168:4;28163:3;28159:14;28145:12;28117:57;:::i;:::-;28024:160;28271:4;28264:5;28260:16;28254:23;28290:61;28345:4;28340:3;28336:14;28322:12;28290:61;:::i;:::-;28194:167;27622:746;;;:::o;28374:105::-;28449:23;28466:5;28449:23;:::i;:::-;28444:3;28437:36;28427:52;;:::o;28485:108::-;28562:24;28580:5;28562:24;:::i;:::-;28557:3;28550:37;28540:53;;:::o;28599:118::-;28686:24;28704:5;28686:24;:::i;:::-;28681:3;28674:37;28664:53;;:::o;28723:105::-;28798:23;28815:5;28798:23;:::i;:::-;28793:3;28786:36;28776:52;;:::o;28834:256::-;28946:3;28961:75;29032:3;29023:6;28961:75;:::i;:::-;29061:2;29056:3;29052:12;29045:19;;29081:3;29074:10;;28950:140;;;;:::o;29096:695::-;29374:3;29396:92;29484:3;29475:6;29396:92;:::i;:::-;29389:99;;29505:95;29596:3;29587:6;29505:95;:::i;:::-;29498:102;;29617:148;29761:3;29617:148;:::i;:::-;29610:155;;29782:3;29775:10;;29378:413;;;;;:::o;29797:379::-;29981:3;30003:147;30146:3;30003:147;:::i;:::-;29996:154;;30167:3;30160:10;;29985:191;;;:::o;30182:222::-;30275:4;30313:2;30302:9;30298:18;30290:26;;30326:71;30394:1;30383:9;30379:17;30370:6;30326:71;:::i;:::-;30280:124;;;;:::o;30410:640::-;30605:4;30643:3;30632:9;30628:19;30620:27;;30657:71;30725:1;30714:9;30710:17;30701:6;30657:71;:::i;:::-;30738:72;30806:2;30795:9;30791:18;30782:6;30738:72;:::i;:::-;30820;30888:2;30877:9;30873:18;30864:6;30820:72;:::i;:::-;30939:9;30933:4;30929:20;30924:2;30913:9;30909:18;30902:48;30967:76;31038:4;31029:6;30967:76;:::i;:::-;30959:84;;30610:440;;;;;;;:::o;31056:332::-;31177:4;31215:2;31204:9;31200:18;31192:26;;31228:71;31296:1;31285:9;31281:17;31272:6;31228:71;:::i;:::-;31309:72;31377:2;31366:9;31362:18;31353:6;31309:72;:::i;:::-;31182:206;;;;;:::o;31394:501::-;31601:4;31639:2;31628:9;31624:18;31616:26;;31688:9;31682:4;31678:20;31674:1;31663:9;31659:17;31652:47;31716:172;31883:4;31874:6;31716:172;:::i;:::-;31708:180;;31606:289;;;;:::o;31901:373::-;32044:4;32082:2;32071:9;32067:18;32059:26;;32131:9;32125:4;32121:20;32117:1;32106:9;32102:17;32095:47;32159:108;32262:4;32253:6;32159:108;:::i;:::-;32151:116;;32049:225;;;;:::o;32280:210::-;32367:4;32405:2;32394:9;32390:18;32382:26;;32418:65;32480:1;32469:9;32465:17;32456:6;32418:65;:::i;:::-;32372:118;;;;:::o;32496:222::-;32589:4;32627:2;32616:9;32612:18;32604:26;;32640:71;32708:1;32697:9;32693:17;32684:6;32640:71;:::i;:::-;32594:124;;;;:::o;32724:313::-;32837:4;32875:2;32864:9;32860:18;32852:26;;32924:9;32918:4;32914:20;32910:1;32899:9;32895:17;32888:47;32952:78;33025:4;33016:6;32952:78;:::i;:::-;32944:86;;32842:195;;;;:::o;33043:419::-;33209:4;33247:2;33236:9;33232:18;33224:26;;33296:9;33290:4;33286:20;33282:1;33271:9;33267:17;33260:47;33324:131;33450:4;33324:131;:::i;:::-;33316:139;;33214:248;;;:::o;33468:419::-;33634:4;33672:2;33661:9;33657:18;33649:26;;33721:9;33715:4;33711:20;33707:1;33696:9;33692:17;33685:47;33749:131;33875:4;33749:131;:::i;:::-;33741:139;;33639:248;;;:::o;33893:419::-;34059:4;34097:2;34086:9;34082:18;34074:26;;34146:9;34140:4;34136:20;34132:1;34121:9;34117:17;34110:47;34174:131;34300:4;34174:131;:::i;:::-;34166:139;;34064:248;;;:::o;34318:419::-;34484:4;34522:2;34511:9;34507:18;34499:26;;34571:9;34565:4;34561:20;34557:1;34546:9;34542:17;34535:47;34599:131;34725:4;34599:131;:::i;:::-;34591:139;;34489:248;;;:::o;34743:419::-;34909:4;34947:2;34936:9;34932:18;34924:26;;34996:9;34990:4;34986:20;34982:1;34971:9;34967:17;34960:47;35024:131;35150:4;35024:131;:::i;:::-;35016:139;;34914:248;;;:::o;35168:419::-;35334:4;35372:2;35361:9;35357:18;35349:26;;35421:9;35415:4;35411:20;35407:1;35396:9;35392:17;35385:47;35449:131;35575:4;35449:131;:::i;:::-;35441:139;;35339:248;;;:::o;35593:419::-;35759:4;35797:2;35786:9;35782:18;35774:26;;35846:9;35840:4;35836:20;35832:1;35821:9;35817:17;35810:47;35874:131;36000:4;35874:131;:::i;:::-;35866:139;;35764:248;;;:::o;36018:419::-;36184:4;36222:2;36211:9;36207:18;36199:26;;36271:9;36265:4;36261:20;36257:1;36246:9;36242:17;36235:47;36299:131;36425:4;36299:131;:::i;:::-;36291:139;;36189:248;;;:::o;36443:419::-;36609:4;36647:2;36636:9;36632:18;36624:26;;36696:9;36690:4;36686:20;36682:1;36671:9;36667:17;36660:47;36724:131;36850:4;36724:131;:::i;:::-;36716:139;;36614:248;;;:::o;36868:419::-;37034:4;37072:2;37061:9;37057:18;37049:26;;37121:9;37115:4;37111:20;37107:1;37096:9;37092:17;37085:47;37149:131;37275:4;37149:131;:::i;:::-;37141:139;;37039:248;;;:::o;37293:419::-;37459:4;37497:2;37486:9;37482:18;37474:26;;37546:9;37540:4;37536:20;37532:1;37521:9;37517:17;37510:47;37574:131;37700:4;37574:131;:::i;:::-;37566:139;;37464:248;;;:::o;37718:419::-;37884:4;37922:2;37911:9;37907:18;37899:26;;37971:9;37965:4;37961:20;37957:1;37946:9;37942:17;37935:47;37999:131;38125:4;37999:131;:::i;:::-;37991:139;;37889:248;;;:::o;38143:419::-;38309:4;38347:2;38336:9;38332:18;38324:26;;38396:9;38390:4;38386:20;38382:1;38371:9;38367:17;38360:47;38424:131;38550:4;38424:131;:::i;:::-;38416:139;;38314:248;;;:::o;38568:419::-;38734:4;38772:2;38761:9;38757:18;38749:26;;38821:9;38815:4;38811:20;38807:1;38796:9;38792:17;38785:47;38849:131;38975:4;38849:131;:::i;:::-;38841:139;;38739:248;;;:::o;38993:419::-;39159:4;39197:2;39186:9;39182:18;39174:26;;39246:9;39240:4;39236:20;39232:1;39221:9;39217:17;39210:47;39274:131;39400:4;39274:131;:::i;:::-;39266:139;;39164:248;;;:::o;39418:419::-;39584:4;39622:2;39611:9;39607:18;39599:26;;39671:9;39665:4;39661:20;39657:1;39646:9;39642:17;39635:47;39699:131;39825:4;39699:131;:::i;:::-;39691:139;;39589:248;;;:::o;39843:419::-;40009:4;40047:2;40036:9;40032:18;40024:26;;40096:9;40090:4;40086:20;40082:1;40071:9;40067:17;40060:47;40124:131;40250:4;40124:131;:::i;:::-;40116:139;;40014:248;;;:::o;40268:419::-;40434:4;40472:2;40461:9;40457:18;40449:26;;40521:9;40515:4;40511:20;40507:1;40496:9;40492:17;40485:47;40549:131;40675:4;40549:131;:::i;:::-;40541:139;;40439:248;;;:::o;40693:351::-;40850:4;40888:3;40877:9;40873:19;40865:27;;40902:135;41034:1;41023:9;41019:17;41010:6;40902:135;:::i;:::-;40855:189;;;;:::o;41050:222::-;41143:4;41181:2;41170:9;41166:18;41158:26;;41194:71;41262:1;41251:9;41247:17;41238:6;41194:71;:::i;:::-;41148:124;;;;:::o;41278:129::-;41312:6;41339:20;;:::i;:::-;41329:30;;41368:33;41396:4;41388:6;41368:33;:::i;:::-;41319:88;;;:::o;41413:75::-;41446:6;41479:2;41473:9;41463:19;;41453:35;:::o;41494:311::-;41571:4;41661:18;41653:6;41650:30;41647:2;;;41683:18;;:::i;:::-;41647:2;41733:4;41725:6;41721:17;41713:25;;41793:4;41787;41783:15;41775:23;;41576:229;;;:::o;41811:307::-;41872:4;41962:18;41954:6;41951:30;41948:2;;;41984:18;;:::i;:::-;41948:2;42022:29;42044:6;42022:29;:::i;:::-;42014:37;;42106:4;42100;42096:15;42088:23;;41877:241;;;:::o;42124:164::-;42223:4;42246:3;42238:11;;42276:4;42271:3;42267:14;42259:22;;42228:60;;;:::o;42294:132::-;42361:4;42384:3;42376:11;;42414:4;42409:3;42405:14;42397:22;;42366:60;;;:::o;42432:141::-;42481:4;42504:3;42496:11;;42527:3;42524:1;42517:14;42561:4;42558:1;42548:18;42540:26;;42486:87;;;:::o;42579:146::-;42678:6;42712:5;42706:12;42696:22;;42685:40;;;:::o;42731:114::-;42798:6;42832:5;42826:12;42816:22;;42805:40;;;:::o;42851:98::-;42902:6;42936:5;42930:12;42920:22;;42909:40;;;:::o;42955:99::-;43007:6;43041:5;43035:12;43025:22;;43014:40;;;:::o;43060:145::-;43162:4;43194;43189:3;43185:14;43177:22;;43167:38;;;:::o;43211:113::-;43281:4;43313;43308:3;43304:14;43296:22;;43286:38;;;:::o;43330:216::-;43461:11;43495:6;43490:3;43483:19;43535:4;43530:3;43526:14;43511:29;;43473:73;;;;:::o;43552:184::-;43651:11;43685:6;43680:3;43673:19;43725:4;43720:3;43716:14;43701:29;;43663:73;;;;:::o;43742:168::-;43825:11;43859:6;43854:3;43847:19;43899:4;43894:3;43890:14;43875:29;;43837:73;;;;:::o;43916:147::-;44017:11;44054:3;44039:18;;44029:34;;;;:::o;44069:169::-;44153:11;44187:6;44182:3;44175:19;44227:4;44222:3;44218:14;44203:29;;44165:73;;;;:::o;44244:148::-;44346:11;44383:3;44368:18;;44358:34;;;;:::o;44398:305::-;44438:3;44457:20;44475:1;44457:20;:::i;:::-;44452:25;;44491:20;44509:1;44491:20;:::i;:::-;44486:25;;44645:1;44577:66;44573:74;44570:1;44567:81;44564:2;;;44651:18;;:::i;:::-;44564:2;44695:1;44692;44688:9;44681:16;;44442:261;;;;:::o;44709:348::-;44749:7;44772:20;44790:1;44772:20;:::i;:::-;44767:25;;44806:20;44824:1;44806:20;:::i;:::-;44801:25;;44994:1;44926:66;44922:74;44919:1;44916:81;44911:1;44904:9;44897:17;44893:105;44890:2;;;45001:18;;:::i;:::-;44890:2;45049:1;45046;45042:9;45031:20;;44757:300;;;;:::o;45063:191::-;45103:4;45123:20;45141:1;45123:20;:::i;:::-;45118:25;;45157:20;45175:1;45157:20;:::i;:::-;45152:25;;45196:1;45193;45190:8;45187:2;;;45201:18;;:::i;:::-;45187:2;45246:1;45243;45239:9;45231:17;;45108:146;;;;:::o;45260:96::-;45297:7;45326:24;45344:5;45326:24;:::i;:::-;45315:35;;45305:51;;;:::o;45362:104::-;45407:7;45436:24;45454:5;45436:24;:::i;:::-;45425:35;;45415:51;;;:::o;45472:90::-;45506:7;45549:5;45542:13;45535:21;45524:32;;45514:48;;;:::o;45568:77::-;45605:7;45634:5;45623:16;;45613:32;;;:::o;45651:149::-;45687:7;45727:66;45720:5;45716:78;45705:89;;45695:105;;;:::o;45806:109::-;45856:7;45885:24;45903:5;45885:24;:::i;:::-;45874:35;;45864:51;;;:::o;45921:126::-;45958:7;45998:42;45991:5;45987:54;45976:65;;45966:81;;;:::o;46053:91::-;46089:7;46129:8;46122:5;46118:20;46107:31;;46097:47;;;:::o;46150:77::-;46187:7;46216:5;46205:16;;46195:32;;;:::o;46233:101::-;46269:7;46309:18;46302:5;46298:30;46287:41;;46277:57;;;:::o;46340:154::-;46424:6;46419:3;46414;46401:30;46486:1;46477:6;46472:3;46468:16;46461:27;46391:103;;;:::o;46500:307::-;46568:1;46578:113;46592:6;46589:1;46586:13;46578:113;;;46677:1;46672:3;46668:11;46662:18;46658:1;46653:3;46649:11;46642:39;46614:2;46611:1;46607:10;46602:15;;46578:113;;;46709:6;46706:1;46703:13;46700:2;;;46789:1;46780:6;46775:3;46771:16;46764:27;46700:2;46549:258;;;;:::o;46813:320::-;46857:6;46894:1;46888:4;46884:12;46874:22;;46941:1;46935:4;46931:12;46962:18;46952:2;;47018:4;47010:6;47006:17;46996:27;;46952:2;47080;47072:6;47069:14;47049:18;47046:38;47043:2;;;47099:18;;:::i;:::-;47043:2;46864:269;;;;:::o;47139:281::-;47222:27;47244:4;47222:27;:::i;:::-;47214:6;47210:40;47352:6;47340:10;47337:22;47316:18;47304:10;47301:34;47298:62;47295:2;;;47363:18;;:::i;:::-;47295:2;47403:10;47399:2;47392:22;47182:238;;;:::o;47426:233::-;47465:3;47488:24;47506:5;47488:24;:::i;:::-;47479:33;;47534:66;47527:5;47524:77;47521:2;;;47604:18;;:::i;:::-;47521:2;47651:1;47644:5;47640:13;47633:20;;47469:190;;;:::o;47665:100::-;47704:7;47733:26;47753:5;47733:26;:::i;:::-;47722:37;;47712:53;;;:::o;47771:94::-;47810:7;47839:20;47853:5;47839:20;:::i;:::-;47828:31;;47818:47;;;:::o;47871:180::-;47919:77;47916:1;47909:88;48016:4;48013:1;48006:15;48040:4;48037:1;48030:15;48057:180;48105:77;48102:1;48095:88;48202:4;48199:1;48192:15;48226:4;48223:1;48216:15;48243:180;48291:77;48288:1;48281:88;48388:4;48385:1;48378:15;48412:4;48409:1;48402:15;48429:102;48470:6;48521:2;48517:7;48512:2;48505:5;48501:14;48497:28;48487:38;;48477:54;;;:::o;48537:94::-;48570:8;48618:5;48614:2;48610:14;48589:35;;48579:52;;;:::o;48637:162::-;48777:14;48773:1;48765:6;48761:14;48754:38;48743:56;:::o;48805:231::-;48945:34;48941:1;48933:6;48929:14;48922:58;49014:14;49009:2;49001:6;48997:15;48990:39;48911:125;:::o;49042:166::-;49182:18;49178:1;49170:6;49166:14;49159:42;49148:60;:::o;49214:225::-;49354:34;49350:1;49342:6;49338:14;49331:58;49423:8;49418:2;49410:6;49406:15;49399:33;49320:119;:::o;49445:170::-;49585:22;49581:1;49573:6;49569:14;49562:46;49551:64;:::o;49621:169::-;49761:21;49757:1;49749:6;49745:14;49738:45;49727:63;:::o;49796:174::-;49936:26;49932:1;49924:6;49920:14;49913:50;49902:68;:::o;49976:173::-;50116:25;50112:1;50104:6;50100:14;50093:49;50082:67;:::o;50155:177::-;50295:29;50291:1;50283:6;50279:14;50272:53;50261:71;:::o;50338:155::-;50478:7;50474:1;50466:6;50462:14;50455:31;50444:49;:::o;50499:182::-;50639:34;50635:1;50627:6;50623:14;50616:58;50605:76;:::o;50687:179::-;50827:31;50823:1;50815:6;50811:14;50804:55;50793:73;:::o;50872:234::-;51012:34;51008:1;51000:6;50996:14;50989:58;51081:17;51076:2;51068:6;51064:15;51057:42;50978:128;:::o;51112:180::-;51252:32;51248:1;51240:6;51236:14;51229:56;51218:74;:::o;51298:169::-;51438:21;51434:1;51426:6;51422:14;51415:45;51404:63;:::o;51473:114::-;51579:8;:::o;51593:166::-;51733:18;51729:1;51721:6;51717:14;51710:42;51699:60;:::o;51765:220::-;51905:34;51901:1;51893:6;51889:14;51882:58;51974:3;51969:2;51961:6;51957:15;51950:28;51871:114;:::o;51991:181::-;52131:33;52127:1;52119:6;52115:14;52108:57;52097:75;:::o;52178:177::-;52318:29;52314:1;52306:6;52302:14;52295:53;52284:71;:::o;52361:122::-;52434:24;52452:5;52434:24;:::i;:::-;52427:5;52424:35;52414:2;;52473:1;52470;52463:12;52414:2;52404:79;:::o;52489:138::-;52570:32;52596:5;52570:32;:::i;:::-;52563:5;52560:43;52550:2;;52617:1;52614;52607:12;52550:2;52540:87;:::o;52633:116::-;52703:21;52718:5;52703:21;:::i;:::-;52696:5;52693:32;52683:2;;52739:1;52736;52729:12;52683:2;52673:76;:::o;52755:122::-;52828:24;52846:5;52828:24;:::i;:::-;52821:5;52818:35;52808:2;;52867:1;52864;52857:12;52808:2;52798:79;:::o;52883:120::-;52955:23;52972:5;52955:23;:::i;:::-;52948:5;52945:34;52935:2;;52993:1;52990;52983:12;52935:2;52925:78;:::o;53009:148::-;53095:37;53126:5;53095:37;:::i;:::-;53088:5;53085:48;53075:2;;53147:1;53144;53137:12;53075:2;53065:92;:::o;53163:122::-;53236:24;53254:5;53236:24;:::i;:::-;53229:5;53226:35;53216:2;;53275:1;53272;53265:12;53216:2;53206:79;:::o

Swarm Source

ipfs://37e77e83415ffbf4ee0fc3af41c2957c31e05775fe6cbc2faa2c593a4913bb16
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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